/* ================================================================
   KaraconBaby.com — PREMIUM REDESIGN v2
   Editorial baby fashion — Clean, Frame-focused, Rich
   ================================================================ */

/* ----------------------------------------------------------------
   1. Google Fonts import (CSS'ten)
   ---------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300..700&family=Nunito:ital,wght@0,300..900;1,300..900&display=swap');

/* ----------------------------------------------------------------
   2. CSS Tokens
   ---------------------------------------------------------------- */
:root {
  /* Palette - Logo Colors */
  --cream:        #F5F8FA;        /* Light grayish blue matching modern clean design */
  --cream-dark:   #E1E8ED;
  --warm-white:   #FFFFFF;
  --navy:         #0C2035;        /* Deep elegant navy for high readability */
  --navy-light:   #12304F;
  --navy-muted:   #445D78;
  --gold:         #008CDB;        /* Brand Blue */
  --gold-light:   #33A3EF;
  --gold-pale:    #E6F4FD;
  --brand-red:    #E62129;        /* Brand Red */
  --brand-red-light: #FF3B43;
  --charcoal:     #1E293B;
  --text-body:    #334155;
  --text-muted:   #64748B;
  --border:       #CBD5E1;
  --border-light: #E2E8F0;
  --white:        #FFFFFF;
  --black:        #0F172A;

  /* Typography */
  --font-serif:   'Comfortaa', sans-serif;
  --font-sans:    'Nunito', sans-serif;

  /* Spacing */
  --container-max: 1320px;
  --container-pad: clamp(1.5rem, 5vw, 3rem);
  --nav-h:         76px;
  --section-pad:   clamp(5rem, 9vw, 8rem);

  /* Shadows */
  --shadow-xs: 0 1px 4px rgba(0,0,0,.06);
  --shadow-sm: 0 2px 12px rgba(0,0,0,.07);
  --shadow-md: 0 6px 24px rgba(0,0,0,.10);
  --shadow-lg: 0 16px 48px rgba(0,0,0,.13);
  --shadow-xl: 0 28px 72px rgba(0,0,0,.16);

  /* Radius */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   16px;
  --r-xl:   24px;
  --r-pill: 9999px;

  /* Transitions */
  --t-fast: 200ms ease;
  --t-base: 340ms ease;
  --t-slow: 600ms ease;

  /* Frame */
  --frame-border: 1px solid var(--border);
  --frame-offset: 10px;
}

/* ----------------------------------------------------------------
   3. Reset
   ---------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-body);
  background: var(--warm-white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img, video { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font: inherit; }
input, textarea, select { font: inherit; }

/* ----------------------------------------------------------------
   4. Layout
   ---------------------------------------------------------------- */
.container {
  width: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
}
.section { padding-block: var(--section-pad); }
.section--cream   { background: var(--cream); }
.section--navy    { background: var(--navy); color: var(--white); }
.section--white   { background: var(--white); }
.section--sm      { padding-block: clamp(3rem, 5vw, 5rem); }

/* ----------------------------------------------------------------
   5. Typography
   ---------------------------------------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  font-family: var(--font-sans);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
}
.eyebrow::before,
.eyebrow::after {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.heading-xl {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--navy);
  letter-spacing: -.02em;
}
.heading-lg {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 400;
  line-height: 1.15;
  color: var(--navy);
  letter-spacing: -.02em;
}
.heading-md {
  font-family: var(--font-serif);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -.01em;
}
.heading-sm {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--navy);
}

.body-lg { font-size: 1.05rem; line-height: 1.8; color: var(--text-body); }
.body-md { font-size: .95rem; line-height: 1.7; color: var(--text-body); }
.body-sm { font-size: .85rem; line-height: 1.65; color: var(--text-muted); }

em-navy  { color: var(--navy); font-style: italic; }
.italic  { font-style: italic; }
.gold    { color: var(--gold); }

/* ----------------------------------------------------------------
   6. Buttons
   ---------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  padding: .85rem 2rem;
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  border-radius: 0;               /* Sharp corners — editorial */
  transition: all var(--t-base);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,.08);
  opacity: 0;
  transition: opacity var(--t-fast);
}
.btn:hover::after { opacity: 1; }
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn-navy:hover { background: var(--navy-light); box-shadow: var(--shadow-md); }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); box-shadow: 0 8px 24px rgba(0, 140, 219, .35); }

.btn-red {
  background: var(--brand-red);
  color: var(--white);
  border-color: var(--brand-red);
}
.btn-red:hover { background: var(--brand-red-light); box-shadow: 0 8px 24px rgba(230, 33, 41, .35); }

.btn-outline {
  background: transparent;
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-outline-white {
  background: transparent;
  border-color: rgba(255,255,255,.5);
  color: var(--white);
}
.btn-outline-white:hover { background: var(--white); color: var(--navy); }

.btn-outline-gold {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold);
}
.btn-outline-gold:hover { background: var(--gold); color: var(--white); }

.btn-outline-red {
  background: transparent;
  border-color: var(--brand-red);
  color: var(--brand-red);
}
.btn-outline-red:hover { background: var(--brand-red); color: var(--white); }

.btn-sm { padding: .6rem 1.4rem; font-size: .72rem; }
.btn-lg { padding: 1.1rem 2.75rem; font-size: .85rem; }

/* ----------------------------------------------------------------
   7. Image Frame System
   ---------------------------------------------------------------- */
.frame {
  position: relative;
  display: block;
}
.frame::after {
  content: '';
  position: absolute;
  top: var(--frame-offset);
  left: var(--frame-offset);
  right: calc(var(--frame-offset) * -1);
  bottom: calc(var(--frame-offset) * -1);
  border: 1px solid var(--border);
  pointer-events: none;
  z-index: -1;
  transition: transform var(--t-base);
}
.frame:hover::after {
  transform: translate(2px, 2px);
}
.frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  display: block;
}

/* Frame variantları */
.frame--gold::after   { border-color: var(--gold); }
.frame--navy::after   { border-color: var(--navy); opacity: .3; }
.frame--red::after    { border-color: var(--brand-red); }
.frame--offset-sm { --frame-offset: 6px; }
.frame--offset-lg { --frame-offset: 16px; }

/* ----------------------------------------------------------------
   8. Navigation
   ---------------------------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  background: rgba(253, 250, 247, 0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-light);
  transition: box-shadow var(--t-base), background var(--t-base);
}
.site-header.scrolled {
  background: rgba(253, 250, 247, 0.99);
  box-shadow: 0 1px 20px rgba(0,0,0,.08);
}
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: var(--container-pad);
  gap: 2rem;
}
.nav-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}
.nav-logo-img {
  width: 170px;
  height: auto;
  max-height: 50px;
  object-fit: contain;
  display: block;
  transition: opacity var(--t-fast);
}
.nav-logo:hover .nav-logo-img { opacity: .8; }

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
  flex: 1;
  justify-content: center;
}
.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  padding: .5rem 1rem;
  font-family: var(--font-sans);
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--charcoal);
  transition: color var(--t-fast);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px; left: 1rem; right: 1rem;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--t-base);
}
.nav-link:hover,
.nav-link.active { color: var(--gold); }
.nav-link:hover::after,
.nav-link.active::after { transform: scaleX(1); }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute;
  top: calc(100% + 1rem);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  min-width: 230px;
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lg);
  padding: .75rem;
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-base);
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-link {
  display: block;
  padding: .65rem 1rem;
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .05em;
  text-transform: uppercase;
  color: var(--text-body);
  transition: all var(--t-fast);
  border-left: 2px solid transparent;
}
.dropdown-link:hover {
  color: var(--navy);
  background: var(--cream);
  border-left-color: var(--gold);
}

.nav-actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
}
.toggle-bar {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--charcoal);
  transition: transform var(--t-base), opacity var(--t-fast);
}

/* ----------------------------------------------------------------
   9. Announcement Bar
   ---------------------------------------------------------------- */
.announcement-bar {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  text-align: center;
  padding: .5rem var(--container-pad);
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

/* ----------------------------------------------------------------
   10. Hero — Full-width editorial split
   ---------------------------------------------------------------- */
.hero {
  padding-top: var(--nav-h);
  min-height: 540px;
  height: 600px;
  max-height: 650px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 3rem var(--container-pad) 3rem max(var(--container-pad), calc((100vw - var(--container-max)) / 2 + var(--container-pad)));
  position: relative;
  z-index: 2;
}
.hero-season {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.hero-season-line {
  width: 48px;
  height: 1px;
  background: var(--brand-red);
}
.hero-season-text {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--brand-red);
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.2vw, 3.5rem);
  font-weight: 300;
  line-height: 1.15;
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}
.hero-title em {
  font-style: italic;
  color: var(--brand-red);
  font-weight: 300;
}
.hero-desc {
  font-size: .95rem;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 44ch;
  margin-bottom: 1.75rem;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 300;
  color: var(--navy);
  line-height: 1;
}
.hero-stat-label {
  font-size: .65rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: .25rem;
}
.hero-image-panel {
  position: relative;
  overflow: hidden;
  height: 100%;
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
}
.hero-slide.active { opacity: 1; }
.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.hero-slide-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: .6rem;
  z-index: 10;
}
.hero-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.8);
  cursor: pointer;
  transition: all var(--t-base);
}
.hero-dot.active {
  background: var(--white);
  width: 20px;
  border-radius: 3px;
}
/* Dekoratif dikey çizgi */
.hero-divider {
  position: absolute;
  left: 50%;
  top: 0; bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--border), transparent);
  z-index: 5;
  pointer-events: none;
}

/* ----------------------------------------------------------------
   11. Section Headers
   ---------------------------------------------------------------- */
.section-header { margin-bottom: clamp(2.5rem, 4vw, 4rem); }
.section-header--center { text-align: center; }
.section-header--center .section-subtitle { margin-inline: auto; }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -.01em;
  margin-bottom: .75rem;
}
.section-title--white { color: var(--white); }

.section-subtitle {
  font-size: .95rem;
  color: var(--text-muted);
  max-width: 52ch;
  line-height: 1.75;
}
.section-subtitle--white { color: rgba(255,255,255,.65); }

/* ----------------------------------------------------------------
   12. Products Grid — 2 col × 4 row = 8 items
   ---------------------------------------------------------------- */
.products-section { background: var(--warm-white); }

.products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  flex-wrap: wrap;
  gap: 1.5rem;
}

.products-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 2rem;
}

.product-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
  align-items: center;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  transition: box-shadow var(--t-base), border-color var(--t-base);
  cursor: pointer;
  position: relative;
}
.product-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 2px solid var(--gold);
  opacity: 0;
  transition: opacity var(--t-base);
}
.product-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}
.product-card:hover::before { opacity: 1; }

.product-card-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream);
  position: relative;
}
.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.product-card:hover .product-card-image img { transform: scale(1.05); }

.product-card-body { padding: .5rem 0; }
.product-card-cat {
  font-size: .65rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: .5rem;
}
.product-card-name {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.25;
  margin-bottom: .75rem;
}
.product-card-desc {
  font-size: .82rem;
  color: var(--text-muted);
  line-height: 1.6;
  margin-bottom: 1.25rem;
}
.product-card-action {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--navy);
  transition: gap var(--t-fast), color var(--t-fast);
}
.product-card-action svg { flex-shrink: 0; }
.product-card:hover .product-card-action {
  gap: .85rem;
  color: var(--gold);
}

/* ----------------------------------------------------------------
   13. Brand Story — Full-width image sections
   ---------------------------------------------------------------- */
.story-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.story-split.reverse { direction: rtl; }
.story-split.reverse > * { direction: ltr; }

.story-image-wrap {
  position: relative;
  overflow: hidden;
  min-height: 500px;
}
.story-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 8s ease;
}
.story-image-wrap:hover img { transform: scale(1.04); }

.story-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(27,42,74,.5) 0%, transparent 70%);
  pointer-events: none;
}
.story-overlay.right {
  background: linear-gradient(to left, rgba(27,42,74,.5) 0%, transparent 70%);
}

.story-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(3rem, 6vw, 6rem) clamp(2rem, 5vw, 5rem);
  background: var(--navy);
  color: var(--white);
}
.story-content--cream {
  background: var(--cream);
  color: var(--navy);
}
.story-content .eyebrow { color: var(--gold-light); }
.story-content .eyebrow::before,
.story-content .eyebrow::after { background: var(--gold-light); }
.story-content--cream .eyebrow { color: var(--gold); }
.story-content--cream .eyebrow::before,
.story-content--cream .eyebrow::after { background: var(--gold); }

.story-heading {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  font-weight: 300;
  line-height: 1.18;
  margin-bottom: 1.25rem;
  letter-spacing: -.01em;
}
.story-content .story-heading { color: var(--white); }
.story-content--cream .story-heading { color: var(--navy); }

.story-body {
  font-size: .95rem;
  line-height: 1.8;
  margin-bottom: 2rem;
  opacity: .85;
}
.story-content--cream .story-body { color: var(--text-body); opacity: 1; }

.story-list {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  margin-bottom: 2rem;
}
.story-list-item {
  display: flex;
  align-items: center;
  gap: .9rem;
  font-size: .85rem;
  opacity: .9;
}
.story-list-item-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* ----------------------------------------------------------------
   14. Feature Bands
   ---------------------------------------------------------------- */
.features-band {
  background: var(--navy);
  padding: 4rem var(--container-pad);
  overflow: hidden;
}
.features-band-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  max-width: var(--container-max);
  margin: 0 auto;
}
.feature-item {
  padding: 2rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,.1);
  text-align: center;
  transition: background var(--t-base);
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: rgba(255,255,255,.04); }
.feature-icon-wrap {
  width: 52px;
  height: 52px;
  margin: 0 auto 1.25rem;
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
}
.feature-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: .5rem;
}
.feature-desc { font-size: .82rem; color: rgba(255,255,255,.55); line-height: 1.65; }

/* ----------------------------------------------------------------
   15. Collection Tabs (Modeller sayfası için)
   ---------------------------------------------------------------- */
.collection-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid var(--border);
  margin-bottom: 2.5rem;
  overflow-x: auto;
}
.collection-tab {
  padding: .85rem 1.75rem;
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: transparent;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  white-space: nowrap;
  transition: all var(--t-base);
  cursor: pointer;
}
.collection-tab:hover { color: var(--navy); }
.collection-tab.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

/* ----------------------------------------------------------------
   16. Models Gallery Grid
   ---------------------------------------------------------------- */
.models-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1.5rem;
}

.model-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  cursor: pointer;
  transition: all var(--t-base);
  position: relative;
  overflow: hidden;
}
.model-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.model-card-image {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--cream);
  position: relative;
}
.model-card-image::after {
  content: '';
  position: absolute;
  inset: 8px;
  border: 1px solid rgba(255,255,255,.3);
  pointer-events: none;
  z-index: 2;
  opacity: 0;
  transition: opacity var(--t-base);
}
.model-card:hover .model-card-image::after { opacity: 1; }

.model-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.model-card:hover .model-card-image img { transform: scale(1.07); }

.model-card-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(27,42,74,.9) 0%, transparent 60%);
  padding: 2rem 1.25rem 1.25rem;
  transform: translateY(20%);
  opacity: 0;
  transition: all var(--t-base);
}
.model-card:hover .model-card-overlay { transform: translateY(0); opacity: 1; }

.model-card-name {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: .2rem;
}
.model-card-cat {
  font-size: .68rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.model-card-info {
  padding: 1rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-light);
}
.model-card-info .name {
  font-weight: 500;
  font-size: .88rem;
  color: var(--navy);
}
.model-card-info .cat { font-size: .72rem; color: var(--text-muted); margin-top: .1rem; }
.model-card-arrow {
  width: 30px; height: 30px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all var(--t-fast);
}
.model-card:hover .model-card-arrow {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}

/* ----------------------------------------------------------------
   17. Lightbox
   ---------------------------------------------------------------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(17,17,17,.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--t-base);
}
.lightbox.active { opacity: 1; visibility: visible; }
.lightbox-inner {
  display: flex;
  gap: 1.5rem;
  width: 90vw;
  max-width: 1100px;
  max-height: 90vh;
}
.lightbox-main {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.lightbox-main img {
  max-height: 85vh;
  max-width: 100%;
  object-fit: contain;
  animation: lbIn .3s ease;
  border: 1px solid rgba(255,255,255,.08);
}
.lightbox-thumbs {
  display: flex;
  flex-direction: column;
  gap: .5rem;
  overflow-y: auto;
  max-height: 85vh;
}
.lightbox-thumbs::-webkit-scrollbar { width: 3px; }
.lightbox-thumbs::-webkit-scrollbar-thumb { background: rgba(255,255,255,.15); }
.lightbox-thumb {
  width: 72px; height: 96px;
  object-fit: cover;
  cursor: pointer;
  opacity: .4;
  border: 1px solid transparent;
  transition: all var(--t-fast);
  flex-shrink: 0;
}
.lightbox-thumb:hover,
.lightbox-thumb.active { opacity: 1; border-color: var(--gold); }
.lightbox-close {
  position: absolute;
  top: -2.5rem; right: 0;
  width: 36px; height: 36px;
  background: rgba(255,255,255,.1);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-fast);
  font-size: 1rem;
}
.lightbox-close:hover { background: rgba(255,255,255,.25); }
.lightbox-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 44px; height: 44px;
  background: rgba(255,255,255,.08);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--t-fast);
  z-index: 2;
}
.lightbox-btn:hover { background: rgba(255,255,255,.2); }
.lightbox-prev { left: -1.5rem; }
.lightbox-next { right: -1.5rem; }
.lightbox-info {
  position: absolute;
  bottom: -2rem; left: 0;
  font-size: .75rem;
  color: rgba(255,255,255,.4);
}

/* ----------------------------------------------------------------
   18. CTA Banner
   ---------------------------------------------------------------- */
.cta-banner {
  background: var(--cream);
  padding: clamp(4rem, 8vw, 7rem) var(--container-pad);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: 2rem; left: 2rem; right: 2rem; bottom: 2rem;
  border: 1px solid var(--border);
  pointer-events: none;
}
.cta-banner-eyebrow { margin-bottom: 1.5rem; }
.cta-banner-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--navy);
  margin-bottom: 1rem;
  letter-spacing: -.02em;
}
.cta-banner-title em { font-style: italic; color: var(--gold); }
.cta-banner-desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 52ch;
  margin: 0 auto 2.5rem;
  line-height: 1.75;
}
.cta-banner-actions { display: flex; gap: 1.25rem; justify-content: center; flex-wrap: wrap; }

/* ----------------------------------------------------------------
   19. Page Hero (İç sayfalar)
   ---------------------------------------------------------------- */
.page-hero {
  background: var(--navy);
  padding: calc(var(--nav-h) + 4rem) var(--container-pad) 4rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 2rem;
  border: 1px solid rgba(255,255,255,.08);
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(184,146,58,.12) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: .75rem;
  letter-spacing: -.02em;
}
.page-hero-sub { font-size: .95rem; color: rgba(255,255,255,.55); margin-bottom: 1.5rem; }
.breadcrumb {
  display: flex;
  justify-content: center;
  gap: .75rem;
  align-items: center;
  font-size: .72rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: color var(--t-fast); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb-sep { color: rgba(255,255,255,.25); }

/* ----------------------------------------------------------------
   20. Contact
   ---------------------------------------------------------------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 3rem; align-items: start; }
.contact-info-card {
  background: var(--navy);
  padding: 2.5rem;
  color: var(--white);
}
.contact-info-card .eyebrow { color: var(--gold-light); }
.contact-info-card .eyebrow::before,
.contact-info-card .eyebrow::after { background: var(--gold-light); }
.contact-info-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--white);
  margin-bottom: 2rem;
}
.contact-info-list { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item { display: flex; align-items: flex-start; gap: 1rem; }
.contact-info-icon {
  width: 40px; height: 40px;
  border: 1px solid rgba(184,146,58,.4);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
}
.contact-info-label { font-size: .65rem; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.4); margin-bottom: .25rem; }
.contact-info-value { font-size: .92rem; color: rgba(255,255,255,.85); }
.contact-info-value a:hover { color: var(--gold-light); }

.contact-form-wrap { background: var(--white); padding: 2.5rem; border: 1px solid var(--border); }
.contact-form-title {
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 300;
  color: var(--navy);
  margin-bottom: .5rem;
}
.contact-form-desc { font-size: .875rem; color: var(--text-muted); margin-bottom: 2rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-group { display: flex; flex-direction: column; gap: .4rem; margin-bottom: 1.25rem; }
.form-label { font-size: .7rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--charcoal); }
.form-control {
  padding: .85rem 1rem;
  border: 1px solid var(--border);
  border-radius: 0;
  background: var(--warm-white);
  color: var(--charcoal);
  font-size: .9rem;
  outline: none;
  width: 100%;
  transition: border-color var(--t-fast), box-shadow var(--t-fast), background var(--t-fast);
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,146,58,.1);
  background: var(--white);
}
textarea.form-control { resize: vertical; min-height: 130px; }
.form-success {
  display: none;
  padding: 1rem 1.25rem;
  background: #ecfdf5;
  border-left: 3px solid #059669;
  color: #065f46;
  font-size: .88rem;
  margin-top: 1rem;
}
.form-error {
  display: none;
  padding: 1rem 1.25rem;
  background: #fef2f2;
  border-left: 3px solid #dc2626;
  color: #991b1b;
  font-size: .88rem;
  margin-top: 1rem;
}

/* ----------------------------------------------------------------
   21. Footer — Redesigned premium
   ---------------------------------------------------------------- */
.site-footer {
  background: var(--white);
  color: var(--text-body);
  border-top: 1px solid var(--border-light);
}

.footer-upper {
  border-bottom: 1px solid var(--border-light);
  padding: 5rem 0 4rem;
}
.footer-upper-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 4rem;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--container-pad);
}

.footer-brand-logo img {
  width: 160px;
  height: auto;
  opacity: 1;
  margin-bottom: 1.5rem;
}
.footer-brand-desc {
  font-size: .875rem;
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 30ch;
  margin-bottom: 2rem;
}
.footer-social {
  display: flex;
  gap: .75rem;
}
.social-link {
  width: 38px; height: 38px;
  border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-muted);
  transition: all var(--t-fast);
  background: var(--white);
}
.social-link:hover {
  border-color: var(--brand-red);
  color: var(--white);
  background: var(--brand-red);
}

.footer-col-title {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 1.5rem;
  padding-bottom: .75rem;
  border-bottom: 1px solid var(--border-light);
}
.footer-links { display: flex; flex-direction: column; gap: .65rem; }
.footer-links a {
  font-size: .875rem;
  color: var(--text-body);
  transition: color var(--t-fast);
  display: flex;
  align-items: center;
  gap: .5rem;
}
.footer-links a::before {
  content: '—';
  font-size: .6rem;
  color: var(--brand-red);
  opacity: 0;
  transition: opacity var(--t-fast);
}
.footer-links a:hover { color: var(--brand-red); }
.footer-links a:hover::before { opacity: 1; }

.footer-contact-block { display: flex; flex-direction: column; gap: 1.1rem; }
.footer-contact-row {
  display: flex;
  gap: .9rem;
  align-items: flex-start;
}
.footer-contact-icon { color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-contact-label { font-size: .65rem; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); }
.footer-contact-val { font-size: .875rem; color: var(--navy); margin-top: .1rem; font-weight: 500; }
.footer-contact-val a:hover { color: var(--brand-red); }

.footer-lower {
  padding: 1.5rem 0;
  background: var(--cream);
  border-top: 1px solid var(--border-light);
}
.footer-lower-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-max);
  margin: 0 auto;
  padding-inline: var(--container-pad);
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-lower-copy {
  font-size: .78rem;
  color: var(--text-muted);
  letter-spacing: .02em;
}
.footer-lower-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  color: var(--navy);
  letter-spacing: .05em;
  text-transform: uppercase;
  font-weight: 600;
}
.footer-lower-badge::before {
  content: '✦';
  color: var(--brand-red);
  opacity: .5;
}

/* ----------------------------------------------------------------
   22. Scroll Top + WhatsApp
   ---------------------------------------------------------------- */
.scroll-top {
  position: fixed;
  bottom: 2rem; right: 2rem;
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lg);
  z-index: 999;
  opacity: 0; visibility: hidden;
  transform: translateY(10px);
  transition: all var(--t-base);
}
.scroll-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.scroll-top:hover { background: var(--gold); }

.whatsapp-float {
  position: fixed;
  bottom: 5.5rem; right: 2rem;
  width: 48px; height: 48px;
  background: #25D366;
  color: var(--white);
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  z-index: 999;
  border-radius: 50%;
  transition: transform var(--t-fast), box-shadow var(--t-fast);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 28px rgba(37,211,102,.55); }

/* ----------------------------------------------------------------
   23. Animations
   ---------------------------------------------------------------- */
@keyframes lbIn { from { opacity:0; transform: scale(.97); } to { opacity:1; transform: scale(1); } }
@keyframes fadeUp { from { opacity:0; transform: translateY(32px); } to { opacity:1; transform: translateY(0); } }

.animate-fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .75s ease, transform .75s ease;
}
.animate-fade-up.in-view { opacity: 1; transform: translateY(0); }
.delay-1 { transition-delay: .1s !important; }
.delay-2 { transition-delay: .2s !important; }
.delay-3 { transition-delay: .3s !important; }
.delay-4 { transition-delay: .4s !important; }
.delay-5 { transition-delay: .5s !important; }

/* ================================================================
   24. Premium Redesign - Specific Components
   ================================================================ */
.hero-premium {
  padding-top: calc(var(--nav-h) + 2rem);
  padding-bottom: 3.5rem;
  background: var(--cream);
  min-height: 520px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--border-light);
}
.hero-premium-container {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 4rem;
  align-items: center;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .75rem;
  font-weight: 600;
  color: var(--brand-red);
  letter-spacing: .15em;
  margin-bottom: 1rem;
}
.dot-icon {
  width: 6px; height: 6px;
  background: var(--brand-red);
  border-radius: 50%;
}
.hero-title-main {
  font-family: var(--font-serif);
  font-size: clamp(2.25rem, 4.5vw, 3.75rem);
  font-weight: 300;
  line-height: 1.1;
  color: var(--navy);
  margin-bottom: 1.5rem;
}
.hero-title-main em {
  font-style: italic;
  color: var(--brand-red);
  font-weight: 400;
}
.hero-description-main {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--text-body);
  max-width: 52ch;
  margin-bottom: 2rem;
}
.hero-button-group {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.hero-feature-badges {
  display: flex;
  gap: 2.5rem;
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
}
.badge-item {
  display: flex;
  flex-direction: column;
}
.badge-item strong {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--navy);
  font-weight: 400;
}
.badge-item span {
  font-size: .68rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  margin-top: 2px;
}
.hero-premium-image {
  max-width: 100%;
}

/* Season Banners */
.season-banners-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  margin-top: 2rem;
}
.season-banner {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 1.5rem;
}
.season-banner-image {
  aspect-ratio: 16/10;
  overflow: hidden;
}
.season-banner-image img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow);
}
.season-banner:hover .season-banner-image img {
  transform: scale(1.03);
}
.season-banner-content {
  margin-top: 2rem;
  padding-bottom: .5rem;
}
.season-banner-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: .5rem;
  font-weight: 500;
}
.season-banner-desc {
  font-size: .88rem;
  color: var(--text-body);
  margin-bottom: 1.25rem;
  line-height: 1.6;
}

/* Products Grid Premium - 2 Col x 4 Rows */
.products-grid-premium {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 2rem;
}
.product-card-premium {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 1.5rem;
  transition: box-shadow var(--t-base), border-color var(--t-base);
  cursor: pointer;
}
.product-card-premium:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}
.product-card-premium-image-wrap {
  aspect-ratio: 3/4;
  overflow: hidden;
}
.product-card-premium-image-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow);
}
.product-card-premium:hover .product-card-premium-image-wrap img {
  transform: scale(1.04);
}
.product-card-premium-info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.product-category-tag {
  font-size: .65rem;
  font-weight: 600;
  color: var(--gold); /* Brand Blue */
  text-transform: uppercase;
  letter-spacing: .15em;
  margin-bottom: .5rem;
}
.product-title-main {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: .75rem;
  font-weight: 500;
}
.product-desc-main {
  font-size: .85rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}
.product-action-footer {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--navy);
  margin-top: auto;
}
.product-action-footer .arrow-icon {
  transition: transform var(--t-fast);
}
.product-card-premium:hover .product-action-footer {
  color: var(--brand-red);
}
.product-card-premium:hover .product-action-footer .arrow-icon {
  transform: translateX(4px);
}

/* Story Premium Container */
.story-premium-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story-premium-image {
  max-width: 100%;
}
.story-premium-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.story-features-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.story-feature-inline {
  display: flex;
  align-items: center;
  gap: .75rem;
  font-size: .9rem;
  color: var(--text-body);
}
.story-feature-inline strong {
  font-weight: 500;
}
.check-icon {
  color: var(--brand-red);
  flex-shrink: 0;
  margin-top: 1px;
}

/* Premium CTA Banner */
.premium-cta-banner {
  background: var(--navy);
  padding: 5rem 0;
}
.cta-inner-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  background: rgba(255,255,255,.02);
  border: 1px solid rgba(255,255,255,.05);
  padding: 3rem;
}
.cta-button-side {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

/* Testimonials Premium */
.testimonials-grid-premium {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 3rem;
}
.testimonial-card-premium {
  background: var(--white);
  border: 1px solid var(--border-light);
  padding: 2.5rem;
  position: relative;
  transition: transform var(--t-base), box-shadow var(--t-base);
}
.testimonial-card-premium:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border);
}
.quote-mark-icon {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold-light);
  opacity: .35;
  position: absolute;
  top: 1rem;
  left: 1.5rem;
  pointer-events: none;
}
.testimonial-body-text {
  font-size: .95rem;
  line-height: 1.7;
  color: var(--text-body);
  position: relative;
  z-index: 2;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-user-info {
  border-top: 1px solid var(--border-light);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
}
.testimonial-user-info strong {
  font-size: .88rem;
  color: var(--navy);
  font-weight: 600;
}
.testimonial-user-info span {
  font-size: .75rem;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ----------------------------------------------------------------
   25. Admin Panel
   ---------------------------------------------------------------- */
.admin-body { min-height: 100vh; background: #F4F5F7; font-family: var(--font-sans); }
.admin-sidebar {
  position: fixed; top: 0; left: 0; bottom: 0; width: 260px;
  background: var(--navy); color: var(--white);
  z-index: 100; display: flex; flex-direction: column; overflow-y: auto;
}
.admin-logo { padding: 1.5rem 1.75rem; border-bottom: 1px solid rgba(255,255,255,.07); flex-shrink: 0; }
.admin-logo img { width: 150px; height: auto; filter: brightness(0) invert(1); opacity: .85; }
.admin-logo .logo-sub { font-size: .62rem; letter-spacing: .14em; text-transform: uppercase; color: var(--gold-light); margin-top: 4px; }
.admin-nav { padding: 1rem 0; flex: 1; }
.admin-nav-label { padding: .6rem 1.75rem .3rem; font-size: .63rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: rgba(255,255,255,.25); }
.admin-nav-item {
  display: flex; align-items: center; gap: .75rem; padding: .75rem 1.75rem;
  font-size: .84rem; font-weight: 500; color: rgba(255,255,255,.55);
  transition: all var(--t-fast); border-left: 2px solid transparent;
}
.admin-nav-item:hover { color: var(--white); background: rgba(255,255,255,.05); }
.admin-nav-item.active { color: var(--gold-light); border-left-color: var(--gold); background: rgba(184,146,58,.07); }
.admin-main { margin-left: 260px; min-height: 100vh; display: flex; flex-direction: column; }
.admin-topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 2rem; background: var(--white); border-bottom: 1px solid var(--border);
  position: sticky; top: 0; z-index: 50;
}
.admin-topbar-title { font-size: 1.1rem; font-weight: 600; color: var(--navy); }
.admin-content { padding: 2rem; flex: 1; }
.admin-card { background: var(--white); border: 1px solid var(--border); overflow: hidden; }
.admin-card-header { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--border-light); display: flex; align-items: center; justify-content: space-between; }
.admin-card-title { font-size: .95rem; font-weight: 600; color: var(--navy); }
.admin-card-body { padding: 1.5rem; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th { padding: .75rem 1rem; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--text-muted); text-align: left; border-bottom: 1px solid var(--border); }
.admin-table td { padding: .9rem 1rem; border-bottom: 1px solid var(--border-light); font-size: .875rem; color: var(--text-body); vertical-align: middle; }
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #F8F9FB; }
.admin-table-img { width: 52px; height: 68px; object-fit: cover; border: 1px solid var(--border); }
.badge { display: inline-block; padding: .22rem .65rem; font-size: .68rem; font-weight: 600; letter-spacing: .04em; }
.badge-success { background: #D1FAE5; color: #065F46; }
.badge-warning { background: #FEF3C7; color: #92400E; }
.badge-danger  { background: #FEE2E2; color: #991B1B; }
.admin-stat-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 1.25rem; margin-bottom: 2rem; }
.admin-stat-card { background: var(--white); border: 1px solid var(--border); padding: 1.5rem; display: flex; align-items: center; gap: 1rem; }
.admin-stat-icon { width: 46px; height: 46px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.admin-stat-icon.blue   { background: #DBEAFE; color: #1D4ED8; }
.admin-stat-icon.amber  { background: #FEF3C7; color: #D97706; }
.admin-stat-icon.green  { background: #D1FAE5; color: #059669; }
.admin-stat-icon.purple { background: #EDE9FE; color: #7C3AED; }
.admin-stat-num   { font-size: 1.75rem; font-weight: 700; color: var(--navy); line-height: 1; }
.admin-stat-label { font-size: .78rem; color: var(--text-muted); margin-top: .15rem; }
.upload-area { border: 1px dashed var(--border); padding: 2.5rem; text-align: center; cursor: pointer; transition: all var(--t-fast); background: var(--warm-white); }
.upload-area:hover, .upload-area.dragover { border-color: var(--gold); background: var(--gold-pale); }
.upload-preview { display: grid; grid-template-columns: repeat(auto-fill, minmax(100px,1fr)); gap: 1rem; margin-top: 1.25rem; }
.upload-preview-item { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--cream); }
.upload-preview-item img { width: 100%; height: 100%; object-fit: cover; }
.upload-preview-remove { position: absolute; top: .3rem; right: .3rem; width: 20px; height: 20px; background: rgba(0,0,0,.7); color: white; display: flex; align-items: center; justify-content: center; font-size: .65rem; cursor: pointer; }
.upload-preview-cover-badge { position: absolute; bottom: .3rem; left: .3rem; background: var(--gold); color: var(--white); font-size: .58rem; font-weight: 700; padding: .1rem .45rem; }
.admin-login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: var(--navy); padding: 1.5rem; }
.admin-login-box { width: 100%; max-width: 400px; background: var(--white); padding: 2.5rem; border: 1px solid var(--border); }

/* ----------------------------------------------------------------
   25. Utility
   ---------------------------------------------------------------- */
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.no-results { text-align: center; padding: 5rem 1rem; color: var(--text-muted); }
.text-center { text-align: center; }

/* ----------------------------------------------------------------
   26. Responsive
   ---------------------------------------------------------------- */
@media (max-width: 1024px) {
  .footer-upper-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .story-split { grid-template-columns: 1fr; }
  .story-image-wrap { min-height: 360px; }
  .features-band-grid { grid-template-columns: 1fr 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.1); }
  .feature-item:nth-child(odd) { border-right: 1px solid rgba(255,255,255,.1); }
  .feature-item:last-child { border-bottom: none; }
  .hero { grid-template-columns: 1fr; }
  .hero-image-panel { min-height: 55vw; }
  .contact-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: 1fr; }

  /* Premium Components 1024px */
  .hero-premium-container { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .hero-description-main { margin-inline: auto; }
  .hero-button-group { justify-content: center; }
  .hero-feature-badges { justify-content: center; }
  .hero-premium-image { max-width: 460px; margin: 0 auto; }
  .season-banners-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .products-grid-premium { grid-template-columns: 1fr; gap: 2rem; }
  .story-premium-container { grid-template-columns: 1fr; gap: 3rem; }
  .story-premium-image { max-width: 500px; margin: 0 auto; }
  .cta-inner-card { flex-direction: column; text-align: center; gap: 2rem; padding: 2rem; }
  .cta-button-side { justify-content: center; }
  .testimonials-grid-premium { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 768px) {
  :root { --nav-h: 68px; }
  .nav-logo-img { width: 140px; max-height: 44px; }
  .nav-links {
    display: none;
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    background: var(--warm-white);
    flex-direction: column; align-items: flex-start;
    padding: 1rem var(--container-pad) 1.5rem;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md); gap: 0;
  }
  .nav-links.open { display: flex; }
  .nav-link { width: 100%; }
  .dropdown-menu { position: static; transform: none !important; opacity: 1 !important; visibility: visible !important; box-shadow: none; border: none; padding: 0 0 0 1rem; background: transparent; display: none; }
  .nav-dropdown.open .dropdown-menu { display: block; }
  .nav-toggle { display: flex; }
  #nav-contact-btn { display: none; }
  .footer-upper-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-lower-inner { flex-direction: column; align-items: center; text-align: center; }
  .products-grid { grid-template-columns: 1fr; }
  .product-card { grid-template-columns: 120px 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .models-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
  .features-band-grid { grid-template-columns: 1fr; }
  .feature-item { border: none !important; border-bottom: 1px solid rgba(255,255,255,.08) !important; }
  .cta-banner::before { inset: 1rem; }
  .hero-stats { gap: 1.5rem; }

  /* Premium Components 768px */
  .product-card-premium { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.25rem; }
  .product-card-premium-image-wrap { aspect-ratio: 16/10; }
  .hero-premium { padding-top: calc(var(--nav-h) + 1.5rem); padding-bottom: 2.5rem; }
  .hero-feature-badges { gap: 1.5rem; }
}

@media (max-width: 480px) {
  .models-grid { grid-template-columns: 1fr; }
  .product-card { grid-template-columns: 1fr; }
  .product-card-image { aspect-ratio: 16/9; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
