@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&family=Playfair+Display:wght@400;500;600;700&display=swap');

:root {
  --primary: #2b2535;
  --secondary: #4a3f6b;
  --accent: #e8547a;
  --accent-light: #f47d98;
  --accent-dark: #c93d62;
  --bg: #ffffff;
  --bg-2: #fdf5f7;
  --white: #ffffff;
  --text: #2b2535;
  --text-muted: #6e6880;
  --text-light: #a89fb8;
  --border: #ede8f2;
  --shadow-sm: 0 2px 8px rgba(43,37,53,0.06);
  --shadow-md: 0 8px 24px rgba(43,37,53,0.10);
  --shadow-lg: 0 20px 60px rgba(43,37,53,0.14);
  --shadow-accent: 0 8px 32px rgba(232,84,122,0.28);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }
input, button, select, textarea { font-family: inherit; }

/* SCROLLBAR */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-2); }
::-webkit-scrollbar-thumb { background: linear-gradient(180deg,var(--accent),var(--accent-dark)); border-radius: 3px; }

/* ===== ANNOUNCEMENT MARQUEE ===== */
.marquee-bar {
  background: linear-gradient(135deg, #c93d62, #e8547a, #a855f7, #e8547a);
  background-size: 300% 100%;
  animation: gradientShift 6s ease infinite;
  overflow: hidden; padding: 9px 0;
}
@keyframes gradientShift { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }
.marquee-track {
  display: flex; gap: 0;
  animation: marqueeScroll 28s linear infinite;
  width: max-content;
}
.marquee-track:hover { animation-play-state: paused; }
@keyframes marqueeScroll { from{transform:translateX(0)} to{transform:translateX(-50%)} }
.marquee-item {
  display: flex; align-items: center; gap: 10px;
  padding: 0 40px; font-size: 12px; font-weight: 700;
  color: var(--primary); letter-spacing: 0.5px; white-space: nowrap;
}
.marquee-sep { opacity: 0.4; font-size: 16px; }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all 0.4s ease;
}
.header-bar {
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(232,84,122,0.12);
  box-shadow: 0 2px 20px rgba(43,37,53,0.06);
  transition: all 0.4s ease;
}
.header.scrolled .header-bar { box-shadow: 0 4px 32px rgba(232,84,122,0.10); }
.header.scrolled .header-main { height: 62px; }

/* ===== MOBILE MENU ===== */
.mobile-menu-btn {
  display: none; background: none; border: none;
  cursor: pointer; padding: 4px; color: var(--primary);
  flex-direction: column; gap: 5px;
}
.mobile-menu-btn span {
  display: block; width: 24px; height: 2.5px;
  background: var(--primary); border-radius: 2px; transition: var(--transition);
}
.mobile-menu-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-menu-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-menu-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-nav-overlay {
  position: fixed; inset: 0; z-index: 990;
  background: rgba(0,0,0,0.6); backdrop-filter: blur(4px);
  opacity: 0; pointer-events: none; transition: opacity 0.3s ease;
}
.mobile-nav-overlay.open { opacity: 1; pointer-events: all; }
.mobile-nav {
  position: fixed; top: 0; left: 0; bottom: 0; z-index: 995;
  width: 300px; background: #fff;
  border-right: 1px solid rgba(201,169,110,0.15);
  box-shadow: 8px 0 48px rgba(0,0,0,0.12);
  display: flex; flex-direction: column;
  transform: translateX(-100%); transition: transform 0.4s cubic-bezier(0.4,0,0.2,1);
  overflow-y: auto;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav-head {
  padding: 20px 24px 18px;
  border-bottom: 1px solid #f0d8e2;
  display: flex; align-items: center; justify-content: space-between;
  background: linear-gradient(135deg,#fff5f8,#fdedf3);
}
.mobile-nav-close {
  width: 36px; height: 36px; background: #f5f2ed;
  border: none; border-radius: 8px; cursor: pointer; color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  transition: background 0.2s;
}
.mobile-nav-close:hover { background: var(--accent); color: white; }
.mobile-nav-links { padding: 16px 0; flex: 1; }
.mobile-nav-link {
  display: flex; align-items: center; gap: 14px;
  padding: 15px 24px; color: #3a3530; font-size: 15px; font-weight: 500;
  transition: var(--transition); cursor: pointer; border-bottom: 1px solid #f0ece5;
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--accent); background: rgba(201,169,110,0.07); }
.mobile-nav-link svg { width: 18px; height: 18px; flex-shrink: 0; }
.mobile-nav-section { padding: 12px 24px 20px; border-bottom: 1px solid #f0ece5; }
.mobile-nav-section-title { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--accent-dark); margin-bottom: 12px; }
.mobile-nav-accordion .mobile-nav-accordion-btn { width: 100%; text-align: left; background: none; border: none; color: var(--accent-dark); cursor: pointer; display: flex; justify-content: space-between; align-items: center; padding: 0 0 12px; }
.mobile-nav-accordion .accordion-arrow { transition: transform 0.2s; }
.mobile-nav-accordion.open .accordion-arrow { transform: rotate(-180deg); }
.mobile-nav-accordion .mobile-nav-cat-list { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; margin-bottom: 0; }
.mobile-nav-accordion.open .mobile-nav-cat-list { max-height: 280px; overflow-y: auto; }
.mobile-nav-cat-list { display: flex; flex-wrap: wrap; gap: 8px 16px; }
.mobile-nav-cat-link { display: inline-block; color: #6b6560; font-size: 13px; padding: 6px 0; transition: color 0.2s; }
.mobile-nav-cat-link:hover { color: var(--accent); }
.mobile-nav-footer { padding: 20px 24px; border-top: 1px solid #f0d8e2; background: #fff5f8; }
.mobile-nav-socials { display: flex; gap: 10px; margin-top: 16px; }
.mobile-nav-socials a {
  width: 36px; height: 36px; background: #fde8ef;
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: var(--accent-dark); transition: var(--transition);
}
.mobile-nav-socials a:hover { background: linear-gradient(135deg,#e8547a,#a855f7); color: white; }

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 800;
  width: 48px; height: 48px;
  background: linear-gradient(135deg, #e8547a, #a855f7);
  border: none; border-radius: 12px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: white; box-shadow: 0 8px 32px rgba(232,84,122,0.35);
  transform: translateY(80px) scale(0.8); opacity: 0;
  transition: all 0.4s cubic-bezier(0.4,0,0.2,1);
}
.back-to-top.visible { transform: translateY(0) scale(1); opacity: 1; }
.back-to-top:hover { transform: translateY(-4px) scale(1.05); box-shadow: 0 12px 40px rgba(168,85,247,0.5); }
.header-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 60px;
  height: 72px;
  gap: 40px;
}
.logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, #e8547a, #a855f7);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; color: white;
}
.logo-text { color: var(--primary); }
.logo-text span { display: block; }
.logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 22px; font-weight: 700;
  letter-spacing: 1px;
}
.logo-tag {
  font-size: 9px; font-weight: 600;
  letter-spacing: 3px; color: var(--accent);
  text-transform: uppercase;
}
.nav { display: flex; gap: 36px; }
.nav a {
  color: #3a3530;
  font-size: 13px; font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
}
.nav a::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 1px; background: var(--accent);
  transform: scaleX(0);
  transition: var(--transition);
}
.nav a:hover { color: var(--accent); }
.nav a:hover::after { transform: scaleX(1); }

/* Kategoriler dropdown */
.nav-cat-wrap { position: relative; }
.nav-cat-wrap .nav-link-cat { position: relative; color: #111 !important; font-size: 13px; font-weight: 600; }
.nav-cat-dropdown {
  position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(8px);
  min-width: 280px; max-width: 520px;
  max-height: 70vh;
  overflow-y: auto;
  background: var(--primary); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius); box-shadow: var(--shadow-lg);
  padding: 16px 20px;
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity 0.2s ease, visibility 0.2s, transform 0.2s ease;
  z-index: 100;
}
.nav-cat-wrap:hover .nav-cat-dropdown,
.nav-cat-wrap.open .nav-cat-dropdown {
  opacity: 1; visibility: visible; pointer-events: all;
  transform: translateX(-50%) translateY(4px);
}
.nav-cat-dropdown-inner {
  display: flex; flex-wrap: wrap; gap: 20px 28px; justify-content: flex-start;
}
.nav-cat-group { min-width: 120px; }
.nav-cat-group-title {
  display: block; font-size: 11px; font-weight: 700; text-transform: uppercase;
  letter-spacing: 0.08em; color: var(--accent); margin-bottom: 10px; padding-bottom: 4px;
}
.nav-cat-group a {
  display: block; color: rgba(255,255,255,0.85); font-size: 13px; padding: 4px 0;
  transition: color 0.2s;
}
.nav-cat-group a:hover { color: var(--accent); }

.header-actions { display: flex; align-items: center; gap: 16px; }
.header-search {
  position: relative; display: flex; align-items: center; gap: 10px;
  background: #fdf0f4;
  border: 1.5px solid #f0d8e2;
  border-radius: 12px; padding: 0 16px;
  transition: var(--transition);
}
.header-search:focus-within {
  background: white;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(232,84,122,0.12);
}
.header-search svg { color: #c49ab0; flex-shrink: 0; }
.header-search input {
  background: none; border: none; outline: none;
  color: var(--primary); font-size: 13px; width: 220px;
}
.header-search input::placeholder { color: #c4aabb; }

.icon-btn {
  width: 40px; height: 40px;
  background: #fdf0f4;
  border: 1.5px solid #f0d8e2;
  border-radius: 10px; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); transition: var(--transition);
}
.icon-btn:hover { background: var(--accent); border-color: var(--accent); color: white; transform: translateY(-2px); box-shadow: 0 4px 16px rgba(232,84,122,0.35); }
.icon-btn .badge {
  position: absolute; top: -6px; right: -6px;
  width: 18px; height: 18px;
  background: #e53e3e; color: white;
  border-radius: 50%; font-size: 10px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--primary);
}

/* ===== HERO PANELS ===== */
.hero-panels {
  margin-top: 120px;
  display: flex;
  height: calc(100vh - 120px);
  min-height: 560px;
  max-height: 860px;
  gap: 6px;
  padding: 16px;
  background: #1e1525;
}
.hp-card {
  flex: 1;
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  cursor: pointer;
  transition: flex 0.55s cubic-bezier(0.4, 0, 0.2, 1);
}
.hp-card:hover { flex: 1.85; }
.hp-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  filter: grayscale(100%) brightness(0.88);
  transition: filter 0.55s, transform 0.55s cubic-bezier(0.4,0,0.2,1);
}
.hp-card:hover .hp-img {
  filter: grayscale(30%) brightness(0.95);
  transform: scale(1.04);
}
.hp-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.15) 50%, transparent 100%);
}
.hp-info {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 28px 22px 26px;
  z-index: 1;
}
.hp-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 6px;
  white-space: nowrap;
}
.hp-sub {
  font-size: 13px; font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.3px;
  margin-bottom: 16px;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.35s 0.1s, transform 0.35s 0.1s;
}
.hp-card:hover .hp-sub { opacity: 1; transform: translateY(0); }
.hp-arrow {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff; font-size: 18px;
  opacity: 0; transform: translateX(-10px);
  transition: opacity 0.3s 0.15s, transform 0.3s 0.15s, background 0.2s;
}
.hp-card:hover .hp-arrow { opacity: 1; transform: translateX(0); }
.hp-arrow:hover { background: rgba(255,255,255,0.3); }
@media (max-width: 768px) {
  .hero-panels {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: auto;
    min-height: unset;
    max-height: unset;
    padding: 10px;
    gap: 8px;
    margin-top: 70px;
  }
  .hp-card {
    flex: none;
    width: 100%;
    aspect-ratio: 3/4;
    min-height: 0;
  }
  .hp-card:hover { flex: none; }
  .hp-sub { opacity: 1; transform: none; }
  .hp-arrow { opacity: 1; transform: none; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .hero-panels { min-height: 460px; }
}

/* ===== HERO (old – kept for JS compat) ===== */
.hero {
  margin-top: 120px;
  height: calc(100vh - 120px);
  min-height: 600px;
  position: relative;
  overflow: hidden;
  display: flex; align-items: center;
}
.hero-slides { position: absolute; inset: 0; }
.hero-slide {
  position: absolute; inset: 0;
  opacity: 0; transition: opacity 0.8s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero-slide::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(30,21,37,0.72) 40%, rgba(168,85,247,0.08) 100%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 60px;
  max-width: 680px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,169,110,0.15);
  border: 1px solid rgba(201,169,110,0.4);
  border-radius: 30px; padding: 6px 16px;
  font-size: 12px; font-weight: 600;
  color: var(--accent); letter-spacing: 1.5px;
  text-transform: uppercase; margin-bottom: 24px;
}
.hero-badge span { width: 6px; height: 6px; background: var(--accent); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity: 1; } 50% { opacity: 0.3; } }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(42px, 6vw, 80px);
  font-weight: 700; line-height: 1.1;
  color: var(--white); margin-bottom: 20px;
}
.hero-title em { font-style: italic; color: var(--accent); }
.hero-desc {
  font-size: 16px; color: rgba(255,255,255,0.75);
  margin-bottom: 36px; max-width: 480px; line-height: 1.8;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary {
  padding: 15px 36px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary);
  border: none; border-radius: 8px;
  font-size: 14px; font-weight: 700;
  letter-spacing: 0.5px;
  cursor: pointer; transition: var(--transition);
  box-shadow: var(--shadow-accent);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 12px 40px rgba(201,169,110,0.45); }
.btn-outline {
  padding: 15px 36px;
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
  border-radius: 8px;
  font-size: 14px; font-weight: 600;
  cursor: pointer; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }

.hero-dots {
  position: absolute; bottom: 36px; left: 60px; z-index: 2;
  display: flex; gap: 10px;
}
.hero-dot {
  width: 8px; height: 8px;
  background: rgba(255,255,255,0.3); border-radius: 50%;
  cursor: pointer; transition: var(--transition);
}
.hero-dot.active { background: var(--accent); width: 28px; border-radius: 4px; }

.hero-scroll {
  position: absolute; right: 60px; bottom: 36px; z-index: 2;
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.5); font-size: 10px; letter-spacing: 2px;
  text-transform: uppercase; cursor: pointer;
}
.hero-scroll-line {
  width: 1px; height: 48px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine { 0% { transform: scaleY(0); transform-origin: top; } 50% { transform: scaleY(1); transform-origin: top; } 51% { transform: scaleY(1); transform-origin: bottom; } 100% { transform: scaleY(0); transform-origin: bottom; } }

/* ===== CONTAINER ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===== TRUST BADGES (footer) ===== */
.trust-badges {
  display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 20px;
}
.trust-badge {
  padding: 6px 12px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  font-size: 11px; font-weight: 600;
  color: rgba(255,255,255,0.75);
}
.trust-badge-accent {
  background: rgba(201,169,110,0.12);
  border-color: rgba(201,169,110,0.25);
  color: var(--accent);
}
.trust-badge-green {
  background: rgba(34,197,94,0.08);
  border-color: rgba(34,197,94,0.15);
  color: #4ade80;
}

/* ===== SECTION COMMON ===== */
.section { padding: 80px 60px; }
.section-featured { padding-top: 96px; }
.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
  display: inline-block;
  font-size: 11px; font-weight: 700;
  letter-spacing: 3px; text-transform: uppercase;
  color: var(--accent); margin-bottom: 12px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 700; line-height: 1.2;
  color: var(--primary); margin-bottom: 16px;
}
.section-desc { font-size: 15px; color: var(--text-muted); max-width: 500px; margin: 0 auto; }
.section-divider {
  width: 60px; height: 2px;
  background: linear-gradient(to right, var(--accent), var(--accent-light));
  margin: 16px auto 0;
}

/* ===== GENDER CATEGORIES ===== */
.gender-cats-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr 0.85fr;
  grid-template-rows: auto;
  gap: 16px;
  align-items: stretch;
}
.gender-cat-card {
  position: relative; border-radius: 18px;
  overflow: hidden; cursor: pointer;
  transition: var(--transition);
  background: #111;
}
.gender-cat-card:hover { transform: translateY(-6px); box-shadow: 0 24px 64px rgba(0,0,0,0.22); }

/* KADIN — tall hero */
.gender-cat-card.kadin {
  grid-column: 1; grid-row: 1;
  min-height: 540px;
}
/* ERKEK — tall hero */
.gender-cat-card.erkek {
  grid-column: 2; grid-row: 1;
  min-height: 540px;
}
/* ÇOCUK — no image, gradient background */
.gender-cat-card.cocuk {
  grid-column: 3; grid-row: 1;
  min-height: 540px;
  background: linear-gradient(145deg, #ff9a9e 0%, #fad0c4 40%, #ffecd2 70%, #a18cd1 100%);
}
.gender-cat-card.cocuk .gender-cat-img { display: none; }

.gender-cat-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  transition: transform 0.7s cubic-bezier(0.4,0,0.2,1);
}
.gender-cat-card:hover .gender-cat-img { transform: scale(1.07); }

/* gradient overlays per gender */
.gender-cat-card.kadin::after    { content:''; position:absolute; inset:0; background: linear-gradient(to top, rgba(201,61,98,0.78) 0%, rgba(201,61,98,0.12) 55%, transparent 100%); }
.gender-cat-card.erkek::after    { content:''; position:absolute; inset:0; background: linear-gradient(to top, rgba(43,37,53,0.82) 0%, rgba(74,63,107,0.18) 55%, transparent 100%); }
.gender-cat-card.cocuk::after    { content:''; position:absolute; inset:0; background: linear-gradient(to top, rgba(100,30,80,0.75) 0%, rgba(120,50,100,0.25) 55%, transparent 100%); }

.gender-cat-content {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 1; padding: 28px 26px 30px;
}
.gender-cat-tag {
  display: inline-block;
  font-size: 10px; font-weight: 700; letter-spacing: 2.5px;
  text-transform: uppercase; margin-bottom: 8px;
  padding: 4px 12px; border-radius: 20px;
  border: 1px solid;
}
.kadin    .gender-cat-tag { color: var(--accent-light); border-color: rgba(232,196,122,0.45); background: rgba(201,169,110,0.12); }
.erkek    .gender-cat-tag { color: #93c5fd; border-color: rgba(147,197,253,0.35); background: rgba(59,130,246,0.10); }
.kiz-cocugu .gender-cat-tag  { color: #f9a8d4; border-color: rgba(249,168,212,0.35); background: rgba(236,72,153,0.10); }
.erkek-cocugu .gender-cat-tag { color: #6ee7b7; border-color: rgba(110,231,183,0.35); background: rgba(16,185,129,0.10); }

.gender-cat-name {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.5vw, 30px);
  font-weight: 700; color: #fff;
  line-height: 1.15; margin-bottom: 6px;
}
.gender-cat-desc { font-size: 12px; color: rgba(255,255,255,0.55); margin-bottom: 18px; font-weight: 500; }
.gender-cat-sub {
  display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 20px;
}
.gender-cat-sub span {
  padding: 3px 10px; border-radius: 20px;
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.13);
  font-size: 10px; font-weight: 600; color: rgba(255,255,255,0.65);
  letter-spacing: 0.3px;
  transition: var(--transition);
}
.gender-cat-card:hover .gender-cat-sub span { background: rgba(255,255,255,0.14); }
.gender-cat-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 10px 22px; border-radius: 8px;
  font-size: 12px; font-weight: 700; letter-spacing: 0.5px;
  border: none; cursor: pointer; transition: var(--transition);
}
.kadin    .gender-cat-btn { background: linear-gradient(135deg,#e8547a,#f47d98); color: white; border-color: transparent; }
.erkek    .gender-cat-btn { background: #2563eb; color: #fff; }
.kiz-cocugu  .gender-cat-btn { background: #db2777; color: #fff; }
.erkek-cocugu .gender-cat-btn { background: #059669; color: #fff; }
.gender-cat-btn:hover { transform: translateY(-2px); filter: brightness(1.1); }
.gender-cat-count {
  position: absolute; top: 18px; right: 18px; z-index: 2;
  background: rgba(0,0,0,0.55); backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 20px; padding: 4px 12px;
  font-size: 11px; font-weight: 700; color: rgba(255,255,255,0.8);
}

/* Nav tabs above categories */
.gender-nav {
  display: flex; gap: 6px; justify-content: center;
  margin-bottom: 36px; flex-wrap: wrap;
}
.gender-nav-btn {
  padding: 10px 28px; border-radius: 30px;
  border: 1.5px solid var(--border);
  background: transparent; font-size: 13px; font-weight: 600;
  color: var(--text-muted); cursor: pointer; transition: var(--transition);
  display: inline-flex; align-items: center; gap: 8px;
}
.gender-nav-btn:hover { border-color: var(--primary); color: var(--primary); background: rgba(10,10,10,0.04); }
.gender-nav-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.gender-nav-btn .gnb-dot {
  width: 8px; height: 8px; border-radius: 50%;
}
.gnb-kadin    .gnb-dot { background: var(--accent); }
.gnb-erkek    .gnb-dot { background: #3b82f6; }
.gnb-kiz      .gnb-dot { background: #ec4899; }
.gnb-erkek-c  .gnb-dot { background: #10b981; }

/* ===== RESPONSIVE GENDER CATS ===== */
@media (max-width: 1100px) {
  .gender-cats-grid {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .gender-cat-card.kadin  { min-height: 420px; }
  .gender-cat-card.erkek  { min-height: 420px; }
  .gender-cat-card.cocuk  { min-height: 420px; }
}
@media (max-width: 640px) {
  .gender-cats-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .gender-cat-card.kadin,
  .gender-cat-card.erkek,
  .gender-cat-card.cocuk  { min-height: 240px; }
  .gender-cat-content   { padding: 16px 14px 18px; }
  .gender-cat-name      { font-size: 18px; }
  .gender-cat-sub, .gender-cat-desc { display: none; }
  .gender-cat-btn       { padding: 8px 16px; font-size: 11px; }
  .gender-nav-btn       { padding: 8px 16px; font-size: 12px; }
}

/* keep old .categories-grid for admin references */
.categories-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 20px;
}
.category-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; cursor: pointer;
  aspect-ratio: 3/4;
  transition: var(--transition);
}
.category-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.category-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.category-card:hover img { transform: scale(1.08); }
.category-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,10,0.75) 40%, transparent 100%);
}
.category-info {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
  padding: 24px 20px;
}
.category-name {
  font-family: 'Playfair Display', serif;
  font-size: 18px; font-weight: 600; color: var(--white);
  margin-bottom: 4px;
}
.category-count { font-size: 12px; color: var(--accent); font-weight: 500; }

/* ===== PRODUCTS GRID ===== */
.products-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 36px; flex-wrap: wrap; gap: 20px;
}
.products-filters { display: flex; gap: 8px; flex-wrap: wrap; }
.filter-btn {
  padding: 8px 20px; border-radius: 30px;
  border: 1.5px solid var(--border);
  background: transparent; font-size: 13px; font-weight: 500;
  color: var(--text-muted); cursor: pointer; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active {
  background: var(--primary); border-color: var(--primary);
  color: var(--white);
}
.view-all {
  display: flex; align-items: center; gap: 6px;
  font-size: 13px; font-weight: 600;
  color: var(--accent); transition: var(--transition);
}
.view-all:hover { gap: 10px; }

.products-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.products-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 24px;
}
.products-empty-icon { font-size: 56px; margin-bottom: 16px; }
.products-empty h3 { font-family: 'Playfair Display', serif; font-size: 22px; margin-bottom: 8px; }
.products-empty p { color: var(--text-muted); margin-bottom: 24px; }
.product-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; transition: var(--transition);
  box-shadow: var(--shadow-sm); position: relative;
  cursor: pointer;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.product-img-wrap {
  position: relative; aspect-ratio: 3/4; overflow: hidden;
  background: var(--bg-2);
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-badges {
  position: absolute; top: 14px; left: 14px;
  display: flex; flex-direction: column; gap: 6px;
}
.badge-new, .badge-sale, .badge-hot {
  padding: 4px 12px; border-radius: 30px;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
}
.badge-new { background: var(--primary); color: var(--white); }
.badge-sale { background: #e53e3e; color: white; }
.badge-hot { background: var(--accent); color: var(--primary); }
.badge-trendyol {
  padding: 4px 10px; border-radius: 30px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.5px;
  background: #FF6000; color: white;
}
.product-actions {
  position: absolute; top: 14px; right: 14px;
  display: flex; flex-direction: column; gap: 8px;
  opacity: 0; transform: translateX(10px);
  transition: var(--transition);
}
.product-card:hover .product-actions { opacity: 1; transform: translateX(0); }
.product-action-btn {
  width: 36px; height: 36px;
  background: var(--white); border: none; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: var(--transition);
  box-shadow: var(--shadow-sm); color: var(--text);
}
.product-action-btn:hover { background: var(--primary); color: var(--white); }
.product-action-btn.liked { background: #fff0f0; color: #e53e3e; }
.quick-add {
  position: absolute; bottom: 0; left: 0; right: 0;
  background: var(--primary);
  color: var(--white); border: none;
  padding: 13px; font-size: 13px; font-weight: 600;
  letter-spacing: 0.5px; cursor: pointer;
  transform: translateY(100%); transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.product-card:hover .quick-add { transform: translateY(0); }
.quick-add:hover { background: var(--accent); color: var(--primary); }

.product-info { padding: 18px 18px 20px; }
.product-brand { font-size: 11px; font-weight: 600; color: var(--accent); letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
.product-name { font-size: 14px; font-weight: 600; color: var(--text); margin-bottom: 8px; line-height: 1.4; }
.product-rating { display: flex; align-items: center; gap: 6px; margin-bottom: 10px; }
.stars { display: flex; gap: 2px; color: #f59e0b; font-size: 12px; }
.rating-count { font-size: 11px; color: var(--text-light); }
.product-price { display: flex; align-items: center; gap: 10px; }
.price-current { font-size: 18px; font-weight: 800; color: var(--primary); }
.price-old { font-size: 13px; color: var(--text-light); text-decoration: line-through; }
.price-discount { font-size: 12px; font-weight: 700; color: #e53e3e; }

/* ===== BANNER SECTION ===== */
.banner-section { padding: 72px 60px 80px; }
.banner-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.banner-card {
  position: relative; border-radius: var(--radius-lg);
  overflow: hidden; cursor: pointer;
}
.banner-card img { width: 100%; height: 400px; object-fit: cover; transition: transform 0.6s ease; }
.banner-card:hover img { transform: scale(1.04); }
.banner-card::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(105deg, rgba(10,10,10,0.6) 30%, transparent 80%);
}
.banner-content {
  position: absolute; inset: 0; z-index: 1;
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 40px;
}
.banner-tag { font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--accent); margin-bottom: 12px; }
.banner-title { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; color: white; margin-bottom: 8px; line-height: 1.2; }
.banner-desc { font-size: 13px; color: rgba(255,255,255,0.75); margin-bottom: 24px; }
.banner-btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; background: var(--accent);
  color: var(--primary); border: none; border-radius: 8px;
  font-size: 13px; font-weight: 700; cursor: pointer;
  transition: var(--transition); width: fit-content;
  letter-spacing: 0.3px;
}
.banner-btn:hover { background: var(--accent-light); transform: translateX(4px); }

/* ===== TRENDING ===== */
.trending-section { background: var(--secondary); padding: 80px 60px; }
.trending-section .section-title { color: var(--white); }
.trending-section .section-desc { color: rgba(255,255,255,0.6); }
.trending-grid {
  display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 20px;
}
.trending-main {
  grid-row: span 2;
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius-lg);
  overflow: hidden; position: relative;
}
.trending-main img { width: 100%; height: 100%; object-fit: cover; min-height: 500px; }
.trending-main::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 40%, transparent 70%);
}
.trending-main-info {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 1;
  padding: 28px;
}
.trending-main-info .product-name { font-size: 18px; color: white; margin-bottom: 8px; }
.trending-main-info .product-price .price-current { color: var(--accent); }

.trending-card {
  background: rgba(255,255,255,0.05);
  border-radius: var(--radius);
  overflow: hidden; display: flex;
  align-items: center; gap: 16px;
  padding: 14px; cursor: pointer; transition: var(--transition);
}
.trending-card:hover { background: rgba(255,255,255,0.1); }
.trending-card-img { width: 80px; height: 80px; border-radius: 10px; object-fit: cover; flex-shrink: 0; }
.trending-card-info .product-name { font-size: 13px; color: rgba(255,255,255,0.9); margin-bottom: 4px; }
.trending-card-info .price-current { font-size: 15px; color: var(--accent); font-weight: 700; }
.trending-card-num {
  font-size: 28px; font-weight: 900; color: rgba(255,255,255,0.05);
  position: absolute; right: 14px; top: 10px;
  font-family: 'Playfair Display', serif;
}

/* ===== NEWSLETTER ===== */
.newsletter {
  padding: 80px 60px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  position: relative; overflow: hidden;
}
.newsletter::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(201,169,110,0.1) 0%, transparent 70%);
}
.newsletter-inner {
  max-width: 560px; margin: 0 auto; text-align: center;
  position: relative; z-index: 1;
}
.newsletter-icon {
  width: 64px; height: 64px;
  background: rgba(201,169,110,0.12); border: 1px solid rgba(201,169,110,0.3);
  border-radius: 16px; margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
}
.newsletter h2 {
  font-family: 'Playfair Display', serif;
  font-size: 36px; color: var(--white); margin-bottom: 14px;
}
.newsletter p { color: rgba(255,255,255,0.65); margin-bottom: 32px; font-size: 15px; }
.newsletter-form { display: flex; gap: 12px; }

/* ===== FOOTER ===== */
.footer { background: #060608; color: rgba(255,255,255,0.7); }
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-top {
  display: grid; grid-template-columns: 1.8fr 1fr 1.2fr;
  gap: 48px; padding: 64px 0 48px;
}
.footer-brand .logo-name { color: var(--white); }
.footer-desc { font-size: 13px; line-height: 1.8; margin: 20px 0 28px; color: rgba(255,255,255,0.5); }
.social-links { display: flex; gap: 12px; }
.social-link {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.5); transition: var(--transition); cursor: pointer;
}
.social-link:hover { background: var(--accent); border-color: var(--accent); color: var(--primary); }
.footer-col h4 {
  font-size: 13px; font-weight: 700; color: var(--white);
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 20px; padding-bottom: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { font-size: 13px; color: rgba(255,255,255,0.5); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--accent); padding-left: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 24px 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 16px;
}
.footer-bottom > p { justify-self: start; }
.footer-bottom .footer-made-by { justify-self: center; display: inline-flex; align-items: center; padding: 4px 0; }
.footer-bottom .payment-icons { justify-self: end; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,0.35); }
.payment-icons { display: flex; gap: 10px; align-items: center; }
.payment-icon {
  height: 26px; padding: 4px 10px;
  background: rgba(255,255,255,0.08); border-radius: 6px;
  font-size: 10px; font-weight: 700; color: rgba(255,255,255,0.5);
  display: flex; align-items: center;
}

/* ===== CART DRAWER ===== */
.overlay {
  position: fixed; inset: 0; z-index: 1100;
  background: rgba(0,0,0,0.5); opacity: 0; pointer-events: none;
  transition: opacity 0.3s ease; backdrop-filter: blur(4px);
}
.overlay.open { opacity: 1; pointer-events: all; }
.cart-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 1200;
  width: 420px; background: var(--white);
  display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: var(--shadow-lg);
}
.cart-drawer.open { transform: translateX(0); }
.cart-header {
  padding: 28px 28px 20px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.cart-header h3 { font-size: 18px; font-weight: 700; }
.cart-close {
  width: 36px; height: 36px;
  background: var(--bg-2); border: none; border-radius: 8px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--text); transition: var(--transition);
}
.cart-close:hover { background: var(--primary); color: var(--white); }
.cart-items { flex: 1; overflow-y: auto; padding: 20px 28px; }
.cart-item {
  display: flex; gap: 16px; padding: 16px 0;
  border-bottom: 1px solid var(--border);
}
.cart-item img { width: 80px; height: 96px; object-fit: cover; border-radius: 8px; flex-shrink: 0; }
.cart-item-info { flex: 1; }
.cart-item-name { font-size: 13px; font-weight: 600; margin-bottom: 4px; }
.cart-item-price { font-size: 15px; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.cart-item-qty {
  display: flex; align-items: center; gap: 12px;
}
.qty-btn {
  width: 28px; height: 28px;
  background: var(--bg-2); border: 1px solid var(--border);
  border-radius: 6px; cursor: pointer; display: flex; align-items: center;
  justify-content: center; font-size: 16px; color: var(--text); transition: var(--transition);
}
.qty-btn:hover { background: var(--primary); color: var(--white); border-color: var(--primary); }
.qty-num { font-size: 14px; font-weight: 700; width: 20px; text-align: center; }
.cart-remove { background: none; border: none; cursor: pointer; color: var(--text-light); transition: var(--transition); padding: 4px; }
.cart-remove:hover { color: #e53e3e; }
.cart-footer {
  padding: 20px 28px 28px;
  border-top: 1px solid var(--border);
}
.cart-subtotal {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 8px;
}
.cart-subtotal span { font-size: 13px; color: var(--text-muted); }
.cart-subtotal strong { font-size: 13px; }
.cart-total {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 20px; padding-top: 12px;
  border-top: 1px solid var(--border);
}
.cart-total span { font-size: 16px; font-weight: 700; }
.cart-total strong { font-size: 20px; font-weight: 800; color: var(--primary); }
.checkout-btn {
  width: 100%; padding: 16px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white); border: none; border-radius: 10px;
  font-size: 15px; font-weight: 700; cursor: pointer;
  transition: var(--transition); letter-spacing: 0.3px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
}
.checkout-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }

/* ===== PRODUCT PAGE ===== */
.page { display: none; }
.page.active { display: block; }
.products-page { padding: 120px 60px 80px; }
.page-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  margin-bottom: 36px; font-size: 13px; color: var(--text-muted);
}
.page-breadcrumb a { color: var(--accent); }
.page-breadcrumb span { color: var(--text-light); }
.products-page-layout { display: grid; grid-template-columns: 260px 1fr; gap: 36px; align-items: start; }
.sidebar {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 28px; box-shadow: var(--shadow-sm);
  position: sticky; top: 100px;
  max-height: calc(100vh - 120px);
  overflow-y: auto;
}
.sidebar-title { font-size: 16px; font-weight: 700; margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
/* Kategori listesi sabit yükseklikte, kendi içinde kayar – sidebar taşmasın */
.sidebar-cat-list {
  max-height: 280px;
  overflow-y: auto;
  overflow-x: hidden;
  margin-bottom: 4px;
  padding-right: 4px;
}
.sidebar-cat-list::-webkit-scrollbar { width: 5px; }
.sidebar-cat-list::-webkit-scrollbar-thumb { background: var(--border); border-radius: 3px; }
.filter-group { margin-bottom: 28px; }
.filter-group-title { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--text-muted); margin-bottom: 14px; }
.filter-option { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; cursor: pointer; }
.filter-option input { accent-color: var(--accent); width: 16px; height: 16px; cursor: pointer; }
.filter-option label { font-size: 13px; color: var(--text); cursor: pointer; }
.price-range { display: flex; flex-direction: column; gap: 10px; margin-top: 10px; }
.price-range input { width: 100%; padding: 8px 12px; border: 1px solid var(--border); border-radius: 8px; font-size: 13px; box-sizing: border-box; }
.size-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.size-btn {
  padding: 8px 4px; text-align: center;
  border: 1.5px solid var(--border); border-radius: 8px;
  font-size: 12px; font-weight: 600; cursor: pointer; transition: var(--transition);
}
.size-btn:hover, .size-btn.active {
  border-color: var(--primary); background: var(--primary); color: var(--white);
}
.color-grid { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 8px; }
.color-dot {
  width: 28px; height: 28px; border-radius: 50%;
  cursor: pointer; transition: var(--transition);
  border: 2px solid transparent;
}
.color-dot:hover, .color-dot.active { border-color: var(--primary); transform: scale(1.15); }

/* PRODUCT DETAIL */
.product-detail-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding: 120px 60px 80px; }
.product-gallery {}
.gallery-main { border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 14px; background: var(--bg-2); }
.gallery-main img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.gallery-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.gallery-thumb { border-radius: var(--radius); overflow: hidden; cursor: pointer; opacity: 0.6; transition: var(--transition); border: 2px solid transparent; }
.gallery-thumb:hover, .gallery-thumb.active { opacity: 1; border-color: var(--accent); }
.gallery-thumb img { width: 100%; aspect-ratio: 1; object-fit: cover; }
.product-detail-info {}
.product-detail-brand { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--accent); margin-bottom: 10px; }
.product-detail-name { font-family: 'Playfair Display', serif; font-size: 32px; font-weight: 700; margin-bottom: 16px; line-height: 1.2; }
.product-detail-rating { display: flex; align-items: center; gap: 10px; margin-bottom: 20px; }
.product-detail-price { display: flex; align-items: center; gap: 16px; margin-bottom: 28px; }
.product-detail-price .price-current { font-size: 32px; font-weight: 900; }
.product-detail-desc { font-size: 14px; color: var(--text-muted); line-height: 1.9; margin-bottom: 28px; padding-bottom: 28px; border-bottom: 1px solid var(--border); }
.size-selector, .color-selector { margin-bottom: 24px; }
.selector-label { font-size: 13px; font-weight: 700; margin-bottom: 12px; display: flex; justify-content: space-between; }
.selector-label a { color: var(--accent); font-weight: 500; }
.add-to-cart-section { display: flex; gap: 12px; align-items: center; }
.qty-control { display: flex; align-items: center; gap: 14px; background: var(--bg-2); border-radius: 10px; padding: 8px 16px; }
.add-to-cart-btn {
  flex: 1; padding: 16px 32px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: var(--white); border: none; border-radius: 10px;
  font-size: 15px; font-weight: 700; cursor: pointer; transition: var(--transition);
  display: flex; align-items: center; justify-content: center; gap: 10px;
}
.add-to-cart-btn:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); background: var(--accent); color: var(--primary); }
.wishlist-btn {
  width: 54px; height: 54px; flex-shrink: 0;
  background: var(--bg-2); border: 1.5px solid var(--border); border-radius: 10px;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
  color: var(--text-muted); transition: var(--transition);
}
.wishlist-btn:hover { border-color: #e53e3e; color: #e53e3e; background: #fff0f0; }

/* ===== TOAST ===== */
.toast {
  position: fixed; bottom: 28px; right: 28px; z-index: 9999;
  background: var(--primary); color: var(--white);
  padding: 16px 24px; border-radius: 12px;
  display: flex; align-items: center; gap: 12px;
  font-size: 14px; font-weight: 500;
  box-shadow: var(--shadow-lg);
  transform: translateY(80px); opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
.toast.show { transform: translateY(0); opacity: 1; }
.toast-icon { width: 32px; height: 32px; border-radius: 50%; background: var(--accent); color: var(--primary); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-weight: 700; }

/* ===== LOADING - TAMAMEN GİZLİ ===== */
#loading, .loading-overlay { display: none !important; visibility: hidden !important; opacity: 0 !important; pointer-events: none !important; }
.loading-logo {
  font-family: 'Playfair Display', serif;
  font-size: 48px; font-weight: 700;
  color: #2b2535; letter-spacing: 3px;
  animation: loadingPulse 1.5s ease-in-out infinite;
}
.loading-logo span { background: linear-gradient(135deg,#e8547a,#a855f7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.loading-bar { width: 200px; height: 2px; background: rgba(255,255,255,0.1); border-radius: 1px; overflow: hidden; }
.loading-bar-fill { height: 100%; background: var(--accent); border-radius: 1px; animation: loadFill 1.5s ease forwards; }
@keyframes loadFill { from { width: 0; } to { width: 100%; } }

/* ===== FLASH SALE ===== */
.flash-sale {
  padding: 80px 24px; background: var(--primary);
  position: relative; overflow: hidden;
}
.flash-sale::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 60% 50%, rgba(201,169,110,0.08) 0%, transparent 70%);
}
.flash-sale .container { position: relative; z-index: 1; }
.flash-sale-inner {
  display: grid; grid-template-columns: 1fr auto; gap: 48px;
  align-items: center;
}
.flash-sale-left { }
.flash-sale-right { text-align: right; }
.flash-sale-cta { margin-top: 20px; }
.flash-sale-label {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(229,62,62,0.15); border: 1px solid rgba(229,62,62,0.3);
  border-radius: 30px; padding: 5px 14px; color: #fc8181;
  font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 12px;
}
.flash-sale-label .dot { width: 7px; height: 7px; background: #fc8181; border-radius: 50%; animation: pulse 1.5s infinite; }
.flash-sale h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3.5vw, 42px); color: white; font-weight: 700; margin-bottom: 8px;
}
.flash-sale h2 span { color: var(--accent); }
.flash-sale p { font-size: 14px; color: rgba(255,255,255,0.55); }
.countdown-title {
  font-size: 11px; font-weight: 700; letter-spacing: 2px; color: rgba(255,255,255,0.4);
  text-transform: uppercase; margin-bottom: 14px;
}
.countdown-row { display: flex; gap: 12px; align-items: center; justify-content: flex-end; }
.countdown-block {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 12px; padding: 14px 18px; text-align: center; min-width: 70px;
}
.countdown-num {
  font-size: 32px; font-weight: 900; color: var(--accent); display: block;
  font-variant-numeric: tabular-nums; line-height: 1;
}
.countdown-label { font-size: 10px; color: rgba(255,255,255,0.4); font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-top: 4px; }
.countdown-sep { font-size: 28px; font-weight: 700; color: rgba(255,255,255,0.3); margin-bottom: 8px; }

/* ===== VALUE CARDS (Premium / Sustainable / Design) ===== */
.value-cards-section {
  padding: 80px 24px; background: linear-gradient(180deg, var(--bg-2) 0%, var(--bg) 100%);
}
.value-cards-section .container { padding: 0 24px; }
.value-cards {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
}
.value-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.value-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  opacity: 0; transition: var(--transition);
}
.value-card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
  border-color: rgba(201,169,110,0.25);
}
.value-card:hover::before { opacity: 1; }
.value-card-accent {
  background: linear-gradient(145deg, rgba(201,169,110,0.06), var(--white));
  border-color: rgba(201,169,110,0.2);
}
.value-card-accent::before { opacity: 1; }
.value-card-icon {
  width: 56px; height: 56px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 26px; margin-bottom: 20px;
  box-shadow: 0 6px 20px rgba(201,169,110,0.25);
}
.value-card h3 {
  font-size: 18px; font-weight: 700; margin-bottom: 10px; color: var(--text);
}
.value-card p {
  font-size: 14px; color: var(--text-muted); line-height: 1.75;
}

/* ===== COUNTERS SECTION ===== */
.counters-section {
  background: var(--white); padding: 56px 60px 64px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 0;
}
.counters-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.counter-item {
  text-align: center; padding: 0 20px;
  border-right: 1px solid var(--border);
}
.counter-item:last-child { border-right: none; }
.counter-num {
  font-family: 'Playfair Display', serif;
  font-size: 44px; font-weight: 700; color: var(--primary);
  display: block; line-height: 1; margin-bottom: 8px;
}
.counter-num span { color: var(--accent); }
.counter-label { font-size: 13px; color: var(--text-muted); font-weight: 500; }

/* ===== TESTIMONIALS ===== */
.testimonials-section { padding: 80px 60px; background: var(--bg-2); overflow: hidden; }
.testimonials-track { display: flex; gap: 24px; transition: transform 0.5s cubic-bezier(0.4,0,0.2,1); }
.testimonials-wrap { overflow: hidden; position: relative; }
.testimonials-wrap::before, .testimonials-wrap::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 80px; z-index: 2; pointer-events: none;
}
.testimonials-wrap::before { left: 0; background: linear-gradient(to right, var(--bg-2), transparent); }
.testimonials-wrap::after { right: 0; background: linear-gradient(to left, var(--bg-2), transparent); }
.testimonial-card {
  flex-shrink: 0; width: calc(33.333% - 16px);
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); transition: var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.testimonial-stars { color: #f59e0b; font-size: 16px; margin-bottom: 16px; }
.testimonial-text { font-size: 14px; color: var(--text-muted); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover; flex-shrink: 0;
  border: 2px solid var(--border);
}
.testimonial-name { font-size: 14px; font-weight: 700; margin-bottom: 2px; }
.testimonial-meta { font-size: 11px; color: var(--text-light); }
.testimonial-verified { display: inline-flex; align-items: center; gap: 4px; color: #22c55e; font-size: 10px; font-weight: 700; margin-top: 2px; }
.testimonials-nav { display: flex; gap: 10px; justify-content: center; margin-top: 32px; }
.testimonials-dot {
  width: 8px; height: 8px; background: var(--border); border-radius: 50%;
  cursor: pointer; transition: var(--transition);
}
.testimonials-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }

/* ===== BRANDS STRIP ===== */
.brands-section {
  padding: 44px 60px; background: var(--white);
  border-top: 1px solid var(--border); border-bottom: 1px solid var(--border);
}
.brands-label { text-align: center; font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--text-light); margin-bottom: 28px; }
.brands-track { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.brand-item {
  font-family: 'Playfair Display', serif;
  font-size: clamp(14px, 2vw, 20px); font-weight: 700;
  color: var(--text-light); letter-spacing: 2px; text-transform: uppercase;
  opacity: 0.5; transition: var(--transition); cursor: default;
}
.brand-item:hover { opacity: 1; color: var(--accent); }

/* ===== NEW ARRIVALS SCROLL ===== */
.arrivals-section { padding: 80px 0 80px 60px; overflow: hidden; }
.arrivals-section .section-header { padding-right: 60px; }
.arrivals-scroll {
  display: flex; gap: 20px; overflow-x: auto;
  padding: 8px 60px 20px 0;
  scrollbar-width: none; -ms-overflow-style: none;
  scroll-snap-type: x mandatory;
}
.arrivals-scroll::-webkit-scrollbar { display: none; }
.arrivals-scroll .product-card {
  flex-shrink: 0; width: 260px;
  scroll-snap-align: start;
}

/* ===== COOKIE CONSENT ===== */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 10000;
  background: rgba(10,10,14,0.97); backdrop-filter: blur(20px);
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 60px; display: flex; align-items: center;
  gap: 24px; justify-content: space-between; flex-wrap: wrap;
  transform: translateY(100%); transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.cookie-banner.show { transform: translateY(0); }
.cookie-text { font-size: 13px; color: rgba(255,255,255,0.65); max-width: 640px; line-height: 1.6; }
.cookie-text strong { color: white; }
.cookie-text a { color: var(--accent); }
.cookie-btns { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-btn-accept {
  padding: 10px 24px; background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary); border: none; border-radius: 8px;
  font-size: 13px; font-weight: 700; cursor: pointer; transition: var(--transition);
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
  min-height: 44px; min-width: 44px;
}
.cookie-btn-accept:hover { transform: translateY(-1px); }
.cookie-btn-decline {
  padding: 10px 24px; background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.6); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 8px; font-size: 13px; font-weight: 600; cursor: pointer; transition: var(--transition);
  touch-action: manipulation; -webkit-tap-highlight-color: transparent;
  min-height: 44px; min-width: 44px;
}
.cookie-btn-decline:hover { border-color: rgba(255,255,255,0.2); color: white; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .products-grid { grid-template-columns: repeat(3, 1fr); }
  .categories-grid { grid-template-columns: repeat(3, 1fr); }
  .trending-grid { grid-template-columns: 1fr 1fr; }
  .trending-main { grid-row: span 1; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .counter-item { border-right: none; border-bottom: 1px solid var(--border); padding-bottom: 20px; }
  .flash-sale-inner { grid-template-columns: 1fr; gap: 24px; }
  .flash-sale-right { text-align: center; }
  .countdown-row { justify-content: center; }
  .value-cards { grid-template-columns: 1fr; }
  .testimonial-card { width: calc(50% - 12px); }
}
@media (max-width: 768px) {
  .header-main { padding: 0 20px; gap: 16px; }
  .nav { display: none; }
  .header-search { display: none; }
  .mobile-menu-btn { display: flex; }
  .section { padding: 60px 20px; }
  .section-featured { padding-top: 64px; }
  .banner-section { padding: 48px 20px 60px; }
  .newsletter { padding: 0 20px 60px; }
  .footer-top { grid-template-columns: 1fr; padding: 48px 0; }
  .footer-bottom { padding: 20px 0; grid-template-columns: 1fr; justify-items: center; text-align: center; } .footer-bottom > p, .footer-bottom .footer-made-by, .footer-bottom .payment-icons { justify-self: center; }
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .banner-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 0 20px; }
  .hero-dots { left: 20px; }
  .hero-scroll { display: none; }
  .products-page { padding: 100px 20px 60px; }
  .products-page-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
  .product-detail-layout { grid-template-columns: 1fr; padding: 100px 20px 60px; gap: 32px; }
  .trending-grid { grid-template-columns: 1fr; }
  .cart-drawer { width: 100%; }
  .counters-section { padding: 40px 20px; }
  .counters-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .counter-item { border-right: none; }
  .counter-num { font-size: 32px; }
  .flash-sale { padding: 60px 20px; }
  .flash-sale-inner { grid-template-columns: 1fr; gap: 24px; }
  .flash-sale-right { text-align: center; }
  .countdown-row { justify-content: center; }
  .value-cards-section { padding: 56px 20px; }
  .value-cards { grid-template-columns: 1fr; gap: 20px; }
  .value-card { padding: 28px 20px; }
  .countdown-block { min-width: 56px; padding: 10px 12px; }
  .countdown-num { font-size: 24px; }
  .testimonials-section { padding: 60px 20px; }
  .testimonial-card { width: calc(85vw); }
  .brands-section { padding: 32px 20px; }
  .brands-track { gap: 28px; }
  .arrivals-section { padding: 60px 0 60px 20px; }
  .arrivals-scroll { padding-right: 20px; }
  .back-to-top { bottom: 20px; right: 20px; }
  .cookie-banner { display: none !important; }
}

/* ================================================================
   CHECKOUT
================================================================ */
.checkout-wrap {
  max-width: 1160px;
  margin: 0 auto;
  padding: 32px 24px 80px;
  margin-top: 120px;
}
.checkout-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--text-muted);
  margin-bottom: 32px;
}
.checkout-breadcrumb a { color: var(--text-muted); text-decoration: none; }
.checkout-breadcrumb a:hover { color: var(--accent); }
.checkout-breadcrumb span { color: rgba(0,0,0,0.25); }

.checkout-pos-notice {
  padding: 14px 18px; margin-bottom: 20px;
  background: rgba(201,169,110,0.12); border: 1px solid rgba(201,169,110,0.3);
  border-radius: var(--radius); font-size: 13px; color: var(--text);
}

/* Steps progress bar */
.checkout-steps {
  display: flex; align-items: center;
  margin-bottom: 40px; max-width: 520px;
}
.cs-step {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600;
  color: var(--text-muted);
  white-space: nowrap;
}
.cs-num {
  width: 34px; height: 34px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 13px; font-weight: 700;
  background: var(--bg-2);
  border: 2px solid var(--border);
  transition: all 0.3s;
}
.cs-step.active .cs-num {
  background: var(--primary); border-color: var(--primary); color: #fff;
}
.cs-step.done .cs-num {
  background: #16a34a; border-color: #16a34a; color: #fff;
}
.cs-step.active { color: var(--primary); }
.cs-step.done { color: #16a34a; }
.cs-line {
  flex: 1; height: 2px;
  background: var(--border);
  margin: 0 8px;
  transition: background 0.3s;
}
.cs-line.done { background: #16a34a; }

/* Layout */
.checkout-layout {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 32px;
  align-items: start;
}
.checkout-form-col { min-width: 0; }

/* Step panels */
.checkout-step-panel { display: none; }
.checkout-step-panel.active { display: block; }

/* Checkout card */
.checkout-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.checkout-card-header {
  display: flex; align-items: flex-start; gap: 16px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}
.checkout-card-icon { font-size: 28px; line-height: 1; }
.checkout-card-title {
  font-size: 18px; font-weight: 700;
  font-family: 'Playfair Display', serif;
  margin-bottom: 4px;
}
.checkout-card-sub { font-size: 13px; color: var(--text-muted); }

/* Form grid */
.co-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 24px;
}
.co-field { display: flex; flex-direction: column; gap: 6px; }
.co-field-full { grid-column: 1 / -1; }
.co-field label {
  font-size: 12px; font-weight: 700;
  color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px;
}
.co-field input,
.co-field select,
.co-field textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-size: 14px; font-family: inherit;
  background: #fafafa;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  resize: none;
}
.co-field input:focus,
.co-field select:focus,
.co-field textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(201,169,110,0.15);
  background: #fff;
}
.co-field input.error, .co-field select.error, .co-field textarea.error {
  border-color: #e53e3e;
}
.co-field-err { font-size: 11px; color: #e53e3e; font-weight: 600; min-height: 14px; }
.co-checkbox-label {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; color: var(--text-muted); cursor: pointer;
}
.co-checkbox-label input { accent-color: var(--accent); width: 16px; height: 16px; }

/* Actions row */
.co-actions {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: 24px; padding-top: 20px;
  border-top: 1px solid var(--border);
  gap: 12px;
}
.co-btn-back {
  padding: 12px 24px; border-radius: 10px; font-size: 13px; font-weight: 600;
  border: 1.5px solid var(--border); background: transparent; cursor: pointer;
  color: var(--text-muted); transition: all 0.2s;
}
.co-btn-back:hover { border-color: var(--primary); color: var(--primary); }
.co-btn-next, .co-confirm-btn {
  padding: 13px 32px; border-radius: 10px; font-size: 14px; font-weight: 700;
  border: none; background: var(--primary); color: #fff;
  cursor: pointer; display: flex; align-items: center; gap: 8px;
  transition: all 0.2s;
}
.co-btn-next:hover, .co-confirm-btn:hover {
  background: var(--primary-dark); transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}
.co-confirm-btn { background: linear-gradient(135deg, #16a34a, #15803d); }

/* Shipping options */
.co-option-card {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 20px; border-radius: 14px;
  border: 2px solid var(--border); background: #fafafa;
  cursor: pointer; margin-bottom: 10px;
  transition: all 0.2s;
}
.co-option-card input[type="radio"] { display: none; }
.co-option-card.selected {
  border-color: var(--accent);
  background: rgba(201,169,110,0.05);
  box-shadow: 0 0 0 1px var(--accent);
}
.co-option-card:hover { border-color: var(--accent-light); }
.co-option-icon { font-size: 24px; }
.co-option-info { flex: 1; }
.co-option-title { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.co-option-desc { font-size: 12px; color: var(--text-muted); }
.co-option-price { font-size: 14px; font-weight: 700; color: var(--accent); white-space: nowrap; }

/* Payment tabs */
.co-pay-tabs {
  display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap;
}
.co-pay-tab {
  display: flex; align-items: center; gap: 7px;
  padding: 10px 18px; border-radius: 10px;
  border: 1.5px solid var(--border); background: #fafafa;
  font-size: 13px; font-weight: 600; cursor: pointer;
  transition: all 0.2s; color: var(--text-muted);
}
.co-pay-tab.active {
  border-color: var(--primary); background: var(--primary); color: #fff;
}
.co-pay-tab:hover:not(.active) { border-color: var(--primary); color: var(--primary); }
.co-pay-panel { display: none; }
.co-pay-panel.active { display: block; }

/* Credit card visual */
.credit-card-visual {
  background: linear-gradient(135deg, #1a1d27 0%, #2d3250 100%);
  border-radius: 18px; padding: 28px 28px 24px;
  margin-bottom: 24px; position: relative; overflow: hidden;
  box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}
.credit-card-visual::before {
  content: ''; position: absolute;
  top: -40px; right: -40px;
  width: 180px; height: 180px; border-radius: 50%;
  background: rgba(255,255,255,0.04);
}
.credit-card-visual::after {
  content: ''; position: absolute;
  bottom: -60px; right: 20px;
  width: 240px; height: 240px; border-radius: 50%;
  background: rgba(255,255,255,0.03);
}
.ccv-chip {
  width: 42px; height: 32px; border-radius: 6px;
  background: linear-gradient(135deg, #c9a96e, #e8c47a);
  margin-bottom: 32px;
}
.ccv-number {
  font-size: 20px; font-weight: 700; letter-spacing: 4px;
  color: #fff; margin-bottom: 20px; font-family: 'Courier New', monospace;
}
.ccv-bottom { display: flex; justify-content: space-between; position: relative; z-index: 1; }
.ccv-label { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; color: rgba(255,255,255,0.5); text-transform: uppercase; margin-bottom: 4px; }
.ccv-value { font-size: 14px; font-weight: 700; color: #fff; letter-spacing: 1px; }

.cvv-hint {
  position: absolute; right: 12px; top: 50%; transform: translateY(-50%);
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--border); color: var(--text-muted);
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  cursor: help;
}
.co-secure-badge {
  display: flex; align-items: center; gap: 7px;
  font-size: 12px; color: #16a34a; font-weight: 600;
  margin-top: 16px;
}

/* Installment */
.co-field-label { font-size: 12px; font-weight: 700; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 10px; }
.co-installment { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
.co-installment-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 8px; }
.co-inst-opt {
  padding: 10px 8px; border-radius: 10px; border: 1.5px solid var(--border);
  text-align: center; cursor: pointer; transition: all 0.2s; font-size: 12px;
}
.co-inst-opt:hover, .co-inst-opt.active { border-color: var(--accent); background: rgba(201,169,110,0.06); }
.co-inst-opt .inst-count { font-weight: 700; font-size: 14px; margin-bottom: 2px; }
.co-inst-opt .inst-amount { font-size: 11px; color: var(--text-muted); }

/* Bank list */
.co-bank-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.co-bank-item {
  display: flex; align-items: center; gap: 16px;
  padding: 16px; border-radius: 12px;
  border: 1px solid var(--border); background: #fafafa;
}
.co-bank-logo {
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; font-weight: 900; color: #fff;
  flex-shrink: 0;
}
.co-bank-name { font-size: 14px; font-weight: 700; margin-bottom: 3px; }
.co-bank-iban { font-size: 12px; color: var(--text-muted); font-family: monospace; margin-bottom: 2px; }
.co-bank-acct { font-size: 11px; color: var(--text-muted); }
.co-transfer-note {
  display: flex; align-items: flex-start; gap: 8px;
  background: rgba(245,158,11,0.06);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 10px; padding: 12px 14px;
  font-size: 12px; color: #92400e; line-height: 1.6;
}

/* Kapıda ödeme */
.co-cod-box {
  text-align: center; padding: 32px 20px;
  background: linear-gradient(135deg, rgba(22,163,74,0.04), rgba(22,163,74,0.08));
  border: 1px solid rgba(22,163,74,0.15); border-radius: 14px;
}
.co-cod-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.co-cod-desc { font-size: 14px; color: var(--text-muted); margin-bottom: 14px; }
.co-cod-fee {
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 12px; color: #92400e; font-weight: 600;
  background: rgba(245,158,11,0.1); padding: 6px 14px; border-radius: 20px;
}

/* Order summary sidebar */
.checkout-summary { position: sticky; top: 100px; }
.co-summary-card {
  background: #fff; border: 1px solid var(--border);
  border-radius: 20px; padding: 28px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.05);
}
.co-summary-title {
  font-size: 16px; font-weight: 700;
  font-family: 'Playfair Display', serif;
  margin-bottom: 20px;
}
.co-summary-items { display: flex; flex-direction: column; gap: 14px; margin-bottom: 16px; }
.co-sum-item {
  display: flex; align-items: center; gap: 12px;
}
.co-sum-item-img {
  width: 52px; height: 64px; object-fit: cover;
  border-radius: 8px; flex-shrink: 0;
}
.co-sum-item-info { flex: 1; min-width: 0; }
.co-sum-item-name {
  font-size: 13px; font-weight: 600;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  margin-bottom: 2px;
}
.co-sum-item-meta { font-size: 11px; color: var(--text-muted); }
.co-sum-item-price { font-size: 13px; font-weight: 700; color: var(--accent); white-space: nowrap; }
.co-sum-item-qty {
  width: 22px; height: 22px; border-radius: 50%;
  background: var(--accent); color: #0a0a0a;
  font-size: 11px; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.co-summary-divider { height: 1px; background: var(--border); margin: 14px 0; }
.co-summary-row {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px; color: var(--text-muted); margin-bottom: 8px;
}
.co-summary-row strong { color: var(--primary); font-weight: 600; }
.co-summary-total {
  display: flex; align-items: center; justify-content: space-between;
  font-size: 17px; font-weight: 800;
}
.co-summary-total strong { color: var(--accent); }

/* Coupon */
.co-coupon {
  display: flex; gap: 8px; margin-top: 16px;
}
.co-coupon input {
  flex: 1; padding: 10px 12px; border-radius: 8px;
  border: 1.5px solid var(--border); font-size: 13px; outline: none;
  transition: border-color 0.2s;
}
.co-coupon input:focus { border-color: var(--accent); }
.co-coupon button {
  padding: 10px 16px; border-radius: 8px;
  background: var(--primary); color: #fff;
  font-size: 12px; font-weight: 700; border: none; cursor: pointer;
  transition: all 0.2s; white-space: nowrap;
}
.co-coupon button:hover { background: var(--primary-dark); }
.co-coupon-msg { font-size: 12px; margin-top: 6px; min-height: 16px; }

/* Trust badges */
.co-trust {
  display: flex; flex-direction: column; gap: 8px;
  margin-top: 20px; padding-top: 16px;
  border-top: 1px solid var(--border);
}
.co-trust-item {
  display: flex; align-items: center; gap: 8px;
  font-size: 12px; color: var(--text-muted); font-weight: 500;
}
.co-trust-item svg { color: #16a34a; flex-shrink: 0; }

/* Success screen */
.co-success-card { text-align: center; padding: 48px 32px; }
.co-success-anim {
  width: 80px; height: 80px; margin: 0 auto 24px;
}
.co-check-svg { width: 80px; height: 80px; }
.co-check-circle {
  stroke: #16a34a; stroke-width: 2;
  stroke-dasharray: 166; stroke-dashoffset: 166;
  animation: coCircle 0.6s ease forwards;
}
.co-check-tick {
  stroke: #16a34a; stroke-width: 2.5;
  stroke-dasharray: 48; stroke-dashoffset: 48;
  animation: coTick 0.4s 0.5s ease forwards;
}
@keyframes coCircle { to { stroke-dashoffset: 0; } }
@keyframes coTick   { to { stroke-dashoffset: 0; } }
.co-success-title {
  font-family: 'Playfair Display', serif;
  font-size: 28px; font-weight: 700; margin-bottom: 12px;
}
.co-success-desc { font-size: 15px; color: var(--text-muted); margin-bottom: 28px; }
.co-order-info {
  background: #f8f9fa; border-radius: 14px; padding: 20px 24px;
  margin-bottom: 28px; text-align: left;
  border: 1px solid var(--border);
}
.co-success-actions { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Responsive checkout */
@media (max-width: 900px) {
  .checkout-layout { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
  .checkout-wrap { margin-top: 70px; padding: 20px 16px 60px; }
}
@media (max-width: 540px) {
  .co-form-grid { grid-template-columns: 1fr; }
  .co-installment-grid { grid-template-columns: repeat(2, 1fr); }
  .co-pay-tabs { gap: 6px; }
  .co-pay-tab { padding: 8px 12px; font-size: 12px; }
  .checkout-card { padding: 20px 16px; }
}

/* ===== MOBILE BOTTOM NAV ===== */
.mobile-bottom-nav {
  display: none;
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 900;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(201,169,110,0.18);
  padding: 8px 0 env(safe-area-inset-bottom,8px);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.08);
}
.mobile-bottom-nav-inner {
  display: flex; align-items: center; justify-content: space-around;
}
.mbn-item {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 6px 12px; cursor: pointer; border: none; background: none;
  color: #9a9490; font-size: 10px; font-weight: 600; letter-spacing: 0.3px;
  transition: color 0.2s; position: relative; min-width: 56px;
}
.mbn-item svg { width: 22px; height: 22px; transition: transform 0.2s; }
.mbn-item:hover, .mbn-item.active { color: var(--accent); }
.mbn-item.active { background: linear-gradient(180deg,rgba(232,84,122,0.08),transparent); border-radius: 10px; }
.mbn-item:hover svg { transform: translateY(-2px); }
.mbn-item .mbn-badge {
  position: absolute; top: 4px; right: 10px;
  width: 17px; height: 17px; border-radius: 50%;
  background: linear-gradient(135deg,#e8547a,#a855f7); color: white;
  font-size: 9px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid white;
}
.mbn-cart-btn {
  display: flex; flex-direction: column; align-items: center; gap: 3px;
  padding: 0 4px; cursor: pointer; position: relative;
}
.mbn-cart-pill {
  background: linear-gradient(135deg, #e8547a, #a855f7);
  border-radius: 20px; padding: 10px 18px;
  display: flex; align-items: center; gap: 6px;
  color: white; font-size: 11px; font-weight: 700;
  box-shadow: 0 4px 16px rgba(232,84,122,0.40);
  transition: transform 0.2s, box-shadow 0.2s;
}
.mbn-cart-pill:hover { transform: translateY(-3px); box-shadow: 0 8px 24px rgba(168,85,247,0.5); }
.mbn-cart-pill svg { width: 18px; height: 18px; }
@media (max-width: 768px) {
  .mobile-bottom-nav { display: block; }
  body { padding-bottom: 72px; }
  .back-to-top { bottom: 90px; right: 16px; width: 42px; height: 42px; }
}

/* ===== PRODUCT CARD LIGHT ENHANCEMENTS ===== */
.product-card {
  background: #ffffff;
  border: 1px solid #f0e0e8;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(232,84,122,0.05);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1), box-shadow 0.35s;
}
.product-card:hover {
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 20px 56px rgba(43,37,53,0.10), 0 0 0 1.5px rgba(232,84,122,0.20);
}

/* ===== SMOOTH STAGGER ANIMATION ===== */
@keyframes fadeSlideUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.product-card { animation: fadeSlideUp 0.5s ease both; }
.product-card:nth-child(1)  { animation-delay: 0.04s; }
.product-card:nth-child(2)  { animation-delay: 0.08s; }
.product-card:nth-child(3)  { animation-delay: 0.12s; }
.product-card:nth-child(4)  { animation-delay: 0.16s; }
.product-card:nth-child(5)  { animation-delay: 0.20s; }
.product-card:nth-child(6)  { animation-delay: 0.24s; }
.product-card:nth-child(7)  { animation-delay: 0.28s; }
.product-card:nth-child(8)  { animation-delay: 0.32s; }

/* ===== FLOATING ANIMATION (hero decorations) ===== */
@keyframes floatY {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-14px); }
}
@keyframes floatRotate {
  0%,100% { transform: translateY(0) rotate(0deg); }
  50%      { transform: translateY(-10px) rotate(5deg); }
}
.float-anim  { animation: floatY 4s ease-in-out infinite; }
.float-anim2 { animation: floatY 5.5s ease-in-out infinite 1s; }

/* ===== SHIMMER SKELETON ===== */
@keyframes shimmer {
  0%   { background-position: -400px 0; }
  100% { background-position: 400px 0; }
}
.skeleton {
  background: linear-gradient(90deg, #f0ece5 25%, #faf7f2 50%, #f0ece5 75%);
  background-size: 800px 100%;
  animation: shimmer 1.4s infinite;
  border-radius: 8px;
}

/* ===== SECTION BACKGROUNDS ===== */
.section-featured { background: linear-gradient(180deg,#fff 0%,#fdf5f7 100%); border-radius: 32px; padding: 60px 48px; box-shadow: 0 2px 24px rgba(232,84,122,0.06); }
.counters-section { background: linear-gradient(135deg, #fdf0f4 0%, #f7eaff 50%, #fdf0f4 100%) !important; border-top: 1px solid #f0d8e2; border-bottom: 1px solid #f0d8e2; }
.counters-section .counter-item span { color: var(--primary) !important; }
.counters-section .counter-label { color: var(--text-muted) !important; }

/* ===== HERO PANEL LIGHT TOUCH ===== */
.hp-card { border-radius: 24px; overflow: hidden; }

/* ===== PILL TAGS ===== */
.section-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: linear-gradient(135deg,rgba(232,84,122,0.10),rgba(168,85,247,0.08));
  border: 1px solid rgba(232,84,122,0.25);
  color: var(--accent-dark);
  font-size: 11px; font-weight: 700; letter-spacing: 1.5px;
  text-transform: uppercase; border-radius: 30px;
  padding: 5px 14px; margin-bottom: 10px;
}

/* ===== SCROLL PROGRESS BAR ===== */
.scroll-progress {
  position: fixed; top: 0; left: 0; height: 3px; z-index: 9999;
  background: linear-gradient(90deg, #c93d62, #e8547a, #a855f7, #38bdf8);
  width: 0%; transition: width 0.1s linear;
  box-shadow: 0 0 10px rgba(232,84,122,0.7);
}

/* ===== FLASH SALE LIGHT ===== */
.flash-sale {
  background: linear-gradient(135deg, #1e1525 0%, #3d1a4a 40%, #1e1525 100%);
}

/* ===== TESTIMONIAL CARD LIGHT ===== */
.testimonial-card {
  background: #ffffff;
  border: 1px solid #f0e0e8;
  box-shadow: 0 4px 20px rgba(232,84,122,0.08);
}

/* ===== NEWSLETTER LIGHT ===== */
.newsletter { background: linear-gradient(135deg, #fff0f5 0%, #f7ebff 50%, #fff0f5 100%); border-top: 1px solid #f0d8e2; }
.newsletter h2 { color: var(--primary); }
.newsletter p { color: var(--text-muted); }
.newsletter-icon { font-size: 48px; }
.newsletter-form input {
  flex: 1; padding: 15px 20px;
  background: #fff;
  border: 1.5px solid #e8c8d8;
  border-radius: 8px; color: var(--primary);
  font-size: 14px; outline: none; transition: var(--transition);
}
.newsletter-form input:focus { border-color: var(--accent); background: #fff; box-shadow: 0 0 0 3px rgba(201,169,110,0.12); }
.newsletter-form input::placeholder { color: rgba(0,0,0,0.55); }

/* ===== BANNER CARD ===== */
.banner-card { border-radius: 20px; overflow: hidden; }

/* ===== FILTER BUTTON LIGHT ===== */
.filter-btn {
  padding: 8px 18px; border-radius: 30px;
  border: 1.5px solid #f0d8e2;
  background: white; color: var(--text-muted);
  font-size: 12px; font-weight: 600;
  cursor: pointer; transition: var(--transition);
}
.filter-btn:hover { border-color: var(--accent); color: var(--accent); background: #fff5f8; }
.filter-btn.active { background: linear-gradient(135deg,#e8547a,#a855f7); border-color: transparent; color: white; box-shadow: 0 4px 16px rgba(232,84,122,0.35); }

/* ===== SIDEBAR LIGHT ===== */
.sidebar {
  background: #ffffff;
  border: 1px solid #f0e0e8;
  border-radius: 20px;
  box-shadow: 0 2px 16px rgba(232,84,122,0.06);
}

/* ===== CART DRAWER LIGHT ===== */
.cart-drawer {
  background: #ffffff;
}
.cart-header {
  background: linear-gradient(135deg, #fff5f8, #f7ebff);
  border-bottom: 1px solid #f0d8e2;
}
.cart-header h3 { color: var(--primary); }

/* ===== FOOTER WARM DARK ===== */
.footer { background: linear-gradient(180deg, #1e1525 0%, #160f1c 100%); }

/* ===== PAGE BREADCRUMB ===== */
.page-breadcrumb a { color: var(--accent); }
.page-breadcrumb span { color: #9a9490; }

/* ===== ROSE-VIOLET THEME OVERRIDES ===== */
/* Gradient text utility */
.gradient-text {
  background: linear-gradient(135deg,#e8547a,#a855f7);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Button primary (buy now, etc) */
.btn-primary, .btn-buy, .add-to-cart-btn, .checkout-btn {
  background: linear-gradient(135deg, #e8547a 0%, #a855f7 100%) !important;
  border-color: transparent !important;
  color: white !important;
  box-shadow: 0 4px 20px rgba(232,84,122,0.35) !important;
}
.btn-primary:hover, .btn-buy:hover, .add-to-cart-btn:hover, .checkout-btn:hover {
  box-shadow: 0 8px 32px rgba(168,85,247,0.45) !important;
  transform: translateY(-2px) !important;
}

/* Sale badge */
.sale-badge, .badge-sale {
  background: linear-gradient(135deg,#e8547a,#c93d62) !important;
}

/* Star ratings */
.stars, .rating .star, .star-filled { color: #f59e0b !important; }

/* Category active / selected states */
.cat-active, .category-btn.active, .gender-filter.active {
  background: linear-gradient(135deg,#e8547a,#a855f7) !important;
  color: white !important;
  border-color: transparent !important;
}

/* Price color */
.price-current, .product-price { color: #e8547a !important; font-weight: 700; }
.price-old { color: #a89fb8 !important; text-decoration: line-through; }

/* Coupon / discount chip */
.discount-chip, .coupon-badge {
  background: linear-gradient(135deg,rgba(232,84,122,0.12),rgba(168,85,247,0.10)) !important;
  color: var(--accent-dark) !important;
  border: 1px solid rgba(232,84,122,0.25) !important;
}

/* Progress / stock bar */
.stock-bar-fill, .progress-fill {
  background: linear-gradient(90deg,#e8547a,#a855f7) !important;
}

/* Wishlist heart active */
.wishlist-btn.active svg, .fav-btn.active svg { fill: #e8547a !important; color: #e8547a !important; }

/* Section backgrounds alternating */
.section:nth-child(even) { background: #fdf8fa; }

/* Page hero / banner overlay soft */
.page-hero::after {
  background: linear-gradient(135deg, rgba(30,21,37,0.65) 0%, rgba(168,85,247,0.15) 100%) !important;
}

/* Input focus ring */
input:focus, select:focus, textarea:focus {
  border-color: var(--accent) !important;
  box-shadow: 0 0 0 3px rgba(232,84,122,0.12) !important;
  outline: none !important;
}

/* Checkbox / radio accent */
input[type=checkbox]:checked, input[type=radio]:checked {
  accent-color: var(--accent);
}

/* Tooltip / popover */
.tooltip { background: #2b2535 !important; }

/* Mobile bottom nav active glow */
.mbn-item.active svg {
  filter: drop-shadow(0 0 4px rgba(232,84,122,0.6));
}

/* ================================================================
   PROFESSIONAL UI ENHANCEMENTS
================================================================ */

/* ── Root refinements ── */
:root {
  --accent: #d94f72;
  --accent-light: #e8748f;
  --accent-dark: #b83a5e;
  --shadow-sm: 0 1px 6px rgba(43,37,53,0.07);
  --shadow-md: 0 6px 20px rgba(43,37,53,0.10);
  --shadow-lg: 0 16px 48px rgba(43,37,53,0.13);
}

/* ── Typography ── */
body { font-size: 15px; -webkit-font-smoothing: antialiased; }
.section-title { letter-spacing: -0.3px; }
.product-name  { letter-spacing: -0.1px; }
p, .section-desc, .footer-desc { line-height: 1.75; }

/* ── Header refinement ── */
.header-main { height: 68px; padding: 0 48px; }
.header-bar   { box-shadow: 0 1px 12px rgba(43,37,53,0.06); }
.logo-name    { font-size: 20px; letter-spacing: 0.5px; }
.logo-icon    { width: 38px; height: 38px; border-radius: 9px; font-size: 16px; }
.header-search input { width: 200px; font-size: 13.5px; }

/* ── Section spacing ── */
.section { padding: 72px 48px; }
.section-featured { padding: 72px 48px; }
.section-header   { margin-bottom: 48px; }
.banner-section   { padding: 64px 48px; }
.trending-section { padding: 72px 48px; }
.newsletter       { padding: 72px 48px; }
.arrivals-section { padding: 72px 0 72px 48px; }

/* ── Products grid tighter ── */
.products-grid { gap: 20px; }
.product-card  { border-radius: 16px; border: 1px solid #f5eaf0; }
.product-info  { padding: 14px 16px 16px; }
.product-brand { font-size: 10px; letter-spacing: 1.5px; }
.product-name  { font-size: 13.5px; margin-bottom: 6px; }
.price-current { font-size: 16px; font-weight: 800; }

/* ── Banner ── */
.banner-grid { gap: 20px; }
.banner-card img { height: 360px; }
.banner-title    { font-size: 28px; }

/* ── Footer ── */
.footer-top { padding: 56px 0 40px; gap: 40px; }
.footer-bottom { padding: 20px 0; }
.footer-col h4 { font-size: 12px; letter-spacing: 1px; }
.footer-col ul li a { font-size: 13px; }

/* ── Counters ── */
.counters-section { padding: 48px 48px 56px; }
.counter-num { font-size: 40px; }

/* ── Testimonials ── */
.testimonials-section { padding: 72px 48px; }
.testimonial-card { padding: 28px; }
.testimonial-text { font-size: 13.5px; }

/* ── Newsletter form ── */
.newsletter-form input { padding: 13px 18px; font-size: 13.5px; }

/* ── Value cards ── */
.value-card { padding: 32px 26px; }
.value-card h3 { font-size: 17px; }

/* ── Cart drawer ── */
.cart-header h3 { font-size: 17px; }

/* ── Breadcrumb ── */
.page-breadcrumb { font-size: 12.5px; }

/* ================================================================
   MOBILE IMPROVEMENTS  (≤ 768px)
================================================================ */
@media (max-width: 768px) {
  body { font-size: 14px; }

  /* Header */
  .header-main { height: 60px; padding: 0 16px; gap: 12px; }
  .logo-name   { font-size: 17px; }
  .logo-icon   { width: 34px; height: 34px; font-size: 14px; }
  .logo-tag    { font-size: 8px; letter-spacing: 2px; }

  /* Sections */
  .section           { padding: 52px 16px; }
  .section-featured  { padding: 52px 16px; border-radius: 20px; }
  .section-header    { margin-bottom: 36px; }
  .section-title     { font-size: clamp(22px, 6vw, 30px); }
  .section-desc      { font-size: 13.5px; }
  .banner-section    { padding: 40px 16px 52px; }
  .newsletter        { padding: 48px 16px; }
  .arrivals-section  { padding: 52px 0 52px 16px; }
  .trending-section  { padding: 52px 16px; }
  .counters-section  { padding: 36px 16px; }
  .testimonials-section { padding: 52px 16px; }

  /* Product grid — 2 columns, larger cards */
  .products-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  .product-img-wrap { aspect-ratio: 2/3; }
  .product-info     { padding: 10px 12px 13px; }
  .product-name     { font-size: 12.5px; line-height: 1.35; margin-bottom: 5px; }
  .product-brand    { font-size: 9px; margin-bottom: 4px; }
  .product-rating   { margin-bottom: 6px; }
  .price-current    { font-size: 14px; font-weight: 800; }
  .price-old        { font-size: 11px; }
  .quick-add        { font-size: 11.5px; padding: 11px; }
  .product-card:hover { transform: translateY(-4px); }
  .product-action-btn { width: 32px; height: 32px; }

  /* Hero panels */
  .hero-panels { gap: 6px; padding: 8px; margin-top: 60px; }
  .hp-title    { font-size: clamp(18px, 5vw, 26px); }
  .hp-info     { padding: 16px 14px 18px; }

  /* Gender cats */
  .gender-cats-grid { gap: 8px; }
  .gender-cat-card.kadin,
  .gender-cat-card.erkek,
  .gender-cat-card.cocuk { min-height: 200px; }
  .gender-cat-name { font-size: 17px; }
  .gender-cat-btn  { padding: 7px 14px; font-size: 11px; }

  /* Banner */
  .banner-card img  { height: 240px; }
  .banner-title     { font-size: 22px; }
  .banner-content   { padding: 24px 20px; }

  /* Footer */
  .footer-top    { padding: 40px 16px 32px; gap: 28px; }
  .footer-bottom { padding: 16px 0; gap: 12px; }

  /* Counters */
  .counter-num   { font-size: 30px; }
  .counter-label { font-size: 12px; }

  /* Newsletter */
  .newsletter-form      { flex-direction: column; gap: 10px; }
  .newsletter-form input { width: 100%; }
  .newsletter h2        { font-size: 26px; }

  /* Checkout */
  .checkout-wrap { padding: 16px 12px 60px; margin-top: 60px; }
  .checkout-card { padding: 18px 14px; }

  /* Sidebar */
  .sidebar { padding: 20px 16px; border-radius: 14px; }

  /* Cart drawer */
  .cart-drawer  { width: 100%; border-radius: 20px 20px 0 0; }
  .cart-items   { padding: 16px 20px; }
  .cart-footer  { padding: 16px 20px 20px; }

  /* Toast */
  .toast { bottom: 88px; right: 12px; left: 12px; font-size: 13px; padding: 13px 18px; }

  /* Back to top */
  .back-to-top { bottom: 86px; right: 12px; width: 40px; height: 40px; border-radius: 10px; }

  /* Value cards */
  .value-cards { gap: 14px; }
  .value-card  { padding: 24px 18px; }
  .value-card h3 { font-size: 16px; }
  .value-card-icon { width: 48px; height: 48px; font-size: 22px; border-radius: 13px; }

  /* Brands */
  .brands-track { gap: 20px; }
  .brand-item   { font-size: 13px; }

  /* Testimonials */
  .testimonial-card { padding: 22px 18px; }
  .testimonial-text { font-size: 13px; }

  /* Products page */
  .products-page { padding: 84px 12px 52px; }
  .products-page-layout { gap: 20px; }
  .page-breadcrumb { font-size: 12px; }

  /* Product detail */
  .product-detail-layout { padding: 84px 14px 52px; gap: 24px; }
  .product-detail-name   { font-size: 24px; }
  .product-detail-price .price-current { font-size: 26px; }
  .add-to-cart-btn { font-size: 14px; padding: 14px 20px; }

  /* Flash sale */
  .countdown-block { min-width: 52px; padding: 10px; }
  .countdown-num   { font-size: 22px; }
  .flash-sale h2   { font-size: clamp(20px, 5.5vw, 28px); }

  /* Mobile bottom nav */
  .mbn-item      { min-width: 48px; padding: 5px 8px; font-size: 9.5px; }
  .mbn-item svg  { width: 20px; height: 20px; }
  .mbn-cart-pill { padding: 9px 14px; font-size: 10.5px; }
}

/* ── Small screens (≤ 420px) ── */
@media (max-width: 420px) {
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .product-name  { font-size: 12px; }
  .price-current { font-size: 13px; }
  .arrivals-scroll .product-card { width: 200px; }
  .gender-cat-card.kadin,
  .gender-cat-card.erkek,
  .gender-cat-card.cocuk { min-height: 180px; }
  .section { padding: 44px 12px; }
}

/* ── Tablet (769px – 1024px) ── */
@media (min-width: 769px) and (max-width: 1024px) {
  .header-main      { padding: 0 28px; }
  .section          { padding: 64px 28px; }
  .section-featured { padding: 64px 28px; }
  .banner-section   { padding: 52px 28px; }
  .footer-top       { padding: 48px 28px 36px; }
  .footer-bottom    { padding: 18px 28px; }
  .trending-section { padding: 64px 28px; }
  .newsletter       { padding: 64px 28px; }
  .arrivals-section { padding: 64px 0 64px 28px; }
  .products-grid    { grid-template-columns: repeat(3, 1fr); gap: 18px; }
  .testimonial-card { width: calc(50% - 12px); }
  .banner-card img  { height: 320px; }
  .counters-section { padding: 44px 28px 52px; }
}

/* ── Responsive Güçlendirme ── */

/* Masaüstü header arama genişliği */
@media (min-width: 1025px) {
  .header-search input { width: 260px; }
  .header-actions { gap: 12px; }
}

/* Tablet landscape (1025px – 1280px) */
@media (min-width: 1025px) and (max-width: 1280px) {
  .header-main { padding: 0 32px; }
  .header-search input { width: 180px; }
  .products-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .section { padding: 64px 32px; }
  .banner-section { padding: 52px 32px; }
}

/* Tablet portrait (769px – 1024px) — ek iyileştirmeler */
@media (min-width: 769px) and (max-width: 1024px) {
  .header-search input { width: 160px; font-size: 13px; }
  .icon-btn { width: 38px; height: 38px; }
  .hero-panels { margin-top: 80px; }
  .products-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .product-card:hover { transform: translateY(-4px); }
  .gender-cats-grid { grid-template-columns: repeat(3, 1fr); }
  .banner-grid { grid-template-columns: repeat(2, 1fr); }
  .newsletter-form input { width: 260px; }
}

/* Mobil (≤ 768px) — ek iyileştirmeler */
@media (max-width: 768px) {
  /* Touch hedefleri min 44px */
  .icon-btn { width: 42px; height: 42px; }
  .btn-primary, .btn-outline { padding: 13px 24px; font-size: 13.5px; }

  /* Header search mobilde gizli, sadece ikon göster */
  .header-actions { gap: 8px; }

  /* Hero */
  .hero-title { font-size: clamp(28px, 8vw, 48px); }
  .hero-desc  { font-size: 14px; margin-bottom: 24px; }
  .hero-btns  { gap: 10px; }

  /* Hero panels — tek sütun çok küçük ekranlarda */
  .hp-card { aspect-ratio: 4/5; }

  /* Gender cat grid — 3 eşit sütun */
  .gender-cats-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .gender-cat-tag  { font-size: 10px; letter-spacing: 0.5px; }
  .gender-cat-name { font-size: 14px; }
  .gender-cat-btn  { font-size: 10px; padding: 6px 10px; }

  /* Products */
  .product-card { border-radius: 14px; }
  .quick-add    { padding: 10px; letter-spacing: 0; }

  /* Banner single col */
  .banner-grid { grid-template-columns: 1fr; gap: 12px; }
  .banner-card img { height: 200px; }

  /* Sidebar filter drawer */
  .sidebar { border-radius: 16px; }

  /* Ürün detayı */
  .product-thumb-gallery { gap: 6px; }
  .product-detail-name { font-size: clamp(20px, 5.5vw, 28px); }

  /* Flash sale */
  .flash-sale { padding: 48px 16px; }

  /* Newsletter input tam genişlik */
  .newsletter-form { gap: 8px; }
  .newsletter-form input,
  .newsletter-form button { width: 100%; border-radius: 10px; }
  .newsletter h2 { font-size: clamp(20px, 6vw, 28px); }

  /* Footer */
  .footer-brand { text-align: center; }
  .footer-col h4 { font-size: 13px; }
  .footer-col a  { font-size: 13px; line-height: 1.8; }
}

/* Küçük ekran (≤ 480px) */
@media (max-width: 480px) {
  .header-main { padding: 0 12px; gap: 8px; }
  .logo-name   { font-size: 15px; }

  /* Hero panels — 2 sütun küçük, 1 büyük */
  .hero-panels { grid-template-columns: 1fr 1fr; gap: 5px; padding: 6px; margin-top: 56px; }
  .hp-card     { aspect-ratio: 3/4; }

  /* Ürünler 2 kolon */
  .products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
  .product-info  { padding: 8px 10px 12px; }
  .product-name  { font-size: 12px; -webkit-line-clamp: 2; }
  .price-current { font-size: 13px; }

  /* Section padding */
  .section { padding: 40px 12px; }
  .section-featured { padding: 40px 12px; }
  .section-title { font-size: clamp(18px, 6vw, 24px); }

  /* Gender cat grid 3 sütun */
  .gender-cats-grid { gap: 5px; }
  .gender-cat-card.kadin,
  .gender-cat-card.erkek,
  .gender-cat-card.cocuk { min-height: 160px; }

  /* Checkout */
  .checkout-wrap { padding: 12px 10px 56px; }
  .checkout-card { padding: 16px 12px; }

  /* Cart drawer */
  .cart-header { padding: 16px 14px; }
  .cart-items  { padding: 12px 14px; }

  /* Counters 2 kolon */
  .counters-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .counter-num   { font-size: 28px; }
}

/* Çok küçük ekran (≤ 360px) */
@media (max-width: 360px) {
  .logo-name  { font-size: 13px; }
  .logo-tag   { display: none; }
  .icon-btn   { width: 36px; height: 36px; border-radius: 8px; }
  .header-actions { gap: 6px; }
  .products-grid  { gap: 6px; }
  .product-name   { font-size: 11px; }
  .price-current  { font-size: 12px; }
  .gender-cat-btn { display: none; }
}

/* ================================================================
   İLETİŞİM & YASAL SAYFALAR
   ================================================================ */

.legal-page-wrap {
  max-width: 960px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.page-breadcrumb {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; color: #999; margin-bottom: 32px;
}
.page-breadcrumb a { color: var(--accent); text-decoration: none; }
.page-breadcrumb a:hover { text-decoration: underline; }

/* ── İletişim Hero ── */
.contact-hero {
  text-align: center;
  padding: 48px 24px 40px;
  background: linear-gradient(135deg,#fdf0f4 0%,#fce8f0 100%);
  border-radius: 24px; margin-bottom: 48px;
}
.contact-hero-icon {
  width: 72px; height: 72px;
  background: white; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  box-shadow: 0 8px 32px rgba(232,84,122,0.15);
  color: var(--accent);
}
.contact-hero h1 { font-size: 32px; color: var(--dark); margin-bottom: 12px; }
.contact-hero p  { font-size: 16px; color: #777; max-width: 480px; margin: 0 auto; }

/* ── Contact Grid ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 32px; align-items: start;
}
.contact-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-card {
  display: flex; gap: 16px; align-items: flex-start;
  background: white; border: 1px solid #f0e4ea;
  border-radius: 16px; padding: 20px;
  transition: box-shadow .2s, transform .2s;
}
.contact-card:hover { box-shadow: 0 8px 24px rgba(232,84,122,0.1); transform: translateY(-2px); }
.contact-card-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
}
.contact-card-body h3 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 2px; }
.contact-card-body p  { font-size: 12px; color: #999; margin-bottom: 4px; }
.contact-card-body a  { font-size: 14px; font-weight: 600; color: var(--accent); text-decoration: none; display: block; }
.contact-card-body a:hover { text-decoration: underline; }
.contact-badge {
  display: inline-block; margin-top: 6px;
  font-size: 11px; color: #888;
  background: #f5f5f5; border-radius: 20px;
  padding: 3px 10px;
}

/* ── Contact Form ── */
.contact-form-wrap {
  background: white; border: 1px solid #f0e4ea;
  border-radius: 20px; padding: 32px;
}
.contact-form-wrap h2 { font-size: 22px; color: var(--dark); margin-bottom: 24px; font-weight: 700; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.cf-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.cf-group label { font-size: 13px; font-weight: 600; color: #444; }
.cf-group input,
.cf-group select,
.cf-group textarea {
  border: 1.5px solid #e8d8df;
  border-radius: 10px; padding: 11px 14px;
  font-size: 14px; color: var(--dark);
  outline: none; transition: border-color .2s;
  font-family: inherit; background: #fdfafb;
}
.cf-group input:focus,
.cf-group select:focus,
.cf-group textarea:focus { border-color: var(--accent); background: white; }
.cf-group textarea { resize: vertical; min-height: 120px; }
.cf-submit {
  width: 100%; padding: 14px;
  background: var(--accent); color: white;
  border: none; border-radius: 12px;
  font-size: 15px; font-weight: 700;
  cursor: pointer; display: flex;
  align-items: center; justify-content: center; gap: 10px;
  transition: background .2s, transform .15s;
}
.cf-submit:hover { background: #d4476a; transform: translateY(-1px); }

/* ── Legal Pages ── */
.legal-header {
  text-align: center;
  padding: 48px 24px 40px;
  background: linear-gradient(135deg,#f8f4ff 0%,#f0eaff 100%);
  border-radius: 24px; margin-bottom: 40px;
}
.legal-icon { font-size: 48px; margin-bottom: 16px; }
.legal-header h1 { font-size: 30px; color: var(--dark); margin-bottom: 8px; font-weight: 800; }
.legal-header p  { font-size: 14px; color: #999; }

.legal-content { display: flex; flex-direction: column; gap: 32px; }
.legal-section h2 {
  font-size: 17px; font-weight: 700;
  color: var(--dark); margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0e4ea;
}
.legal-section p  { font-size: 14.5px; color: #555; line-height: 1.8; margin-bottom: 10px; }
.legal-section ul { padding-left: 20px; }
.legal-section ul li { font-size: 14.5px; color: #555; line-height: 1.9; }

.legal-box {
  background: #fdf8fa; border: 1px solid #f0dde6;
  border-radius: 12px; padding: 20px 24px; margin-bottom: 16px;
}
.legal-box p { margin: 0; }

.legal-alert {
  background: #fff8f0; border: 1px solid #fdd9aa;
  border-radius: 12px; padding: 16px 20px; margin-top: 12px;
}
.legal-alert strong { display: block; margin-bottom: 8px; color: #e07a00; font-size: 14px; }
.legal-alert ul { margin: 0; padding-left: 18px; }
.legal-alert ul li { font-size: 13.5px; color: #666; }

.legal-table {
  width: 100%; border-collapse: collapse;
  font-size: 14px; margin-top: 8px;
}
.legal-table th {
  background: #f8f0f4; color: var(--dark);
  padding: 10px 16px; text-align: left; font-weight: 700;
  border: 1px solid #f0dde6;
}
.legal-table td {
  padding: 10px 16px; border: 1px solid #f0dde6;
  color: #555; line-height: 1.6;
}
.legal-table tr:nth-child(even) td { background: #fdf8fa; }

/* ── İade Adımları ── */
.legal-steps {
  display: flex; flex-direction: column; gap: 0;
  margin-bottom: 32px;
}
.legal-step {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 20px 0; position: relative;
}
.legal-step:not(:last-child)::after {
  content: ''; position: absolute;
  left: 19px; top: 60px; bottom: 0;
  width: 2px; background: #f0dde6;
}
.ls-num {
  width: 40px; height: 40px; flex-shrink: 0;
  background: var(--accent); color: white;
  border-radius: 50%; display: flex;
  align-items: center; justify-content: center;
  font-weight: 800; font-size: 16px; z-index: 1;
}
.ls-body h3 { font-size: 16px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.ls-body p  { font-size: 14px; color: #666; line-height: 1.7; margin: 0; }

/* ── Responsive ── */
@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .cf-row { grid-template-columns: 1fr; }
  .contact-hero h1 { font-size: 24px; }
  .legal-header h1 { font-size: 22px; }
  .contact-form-wrap { padding: 20px 16px; }
  .legal-page-wrap { padding: 24px 16px 60px; }
}
