/* ================================================================
   MASWAN BABY — Premium E-Commerce Design System
   Krem · Koyu Lacivert · Altın
   ================================================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;500;600;700&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Inter:wght@300;400;500;600&display=swap');

/* ---------- Custom Properties ---------- */
:root {
  /* Colors */
  --cream:        #FAF7F2;
  --cream-soft:   #F7F3EB;
  --ivory:        #F0EAE0;
  --ivory-warm:   #E8E0D4;
  --navy:         #0A1628;
  --navy-medium:  #111D33;
  --navy-light:   #1A2A45;
  --gold:         #C9A96E;
  --gold-light:   #D4BA86;
  --gold-dark:    #B8944F;
  --gold-shimmer: #E2D0A8;
  --pink-soft:    #F2E4DC;
  --text-dark:    #0A1628;
  --text-muted:   #5A6478;
  --text-light:   #F5F0E8;
  --overlay-dark: rgba(10, 22, 40, 0.65);
  --overlay-gold: rgba(201, 169, 110, 0.08);

  /* Typography */
  --font-serif: 'Cormorant Garamond', 'Georgia', 'Times New Roman', serif;
  --font-sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-cinzel: 'Cinzel', serif;

  /* Spacing */
  --space-xs:  0.5rem;
  --space-sm:  1rem;
  --space-md:  1.5rem;
  --space-lg:  2.5rem;
  --space-xl:  4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Transitions */
  --ease-premium: cubic-bezier(0.25, 0.1, 0.25, 1);
  --ease-bounce:  cubic-bezier(0.34, 1.56, 0.64, 1);
  --duration:     0.5s;
  --duration-slow: 0.8s;

  /* Borders */
  --radius-sm:  8px;
  --radius-md:  16px;
  --radius-lg:  24px;
  --radius-xl:  40px;
}

/* ---------- Reset & Base ---------- */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: var(--cream);
  line-height: 1.7;
  font-weight: 400;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--duration) var(--ease-premium);
}

ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, textarea, select { font-family: inherit; }

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

h1 { font-size: clamp(2.4rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.5rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 2rem); }
h4 { font-size: clamp(1.1rem, 1.5vw, 1.4rem); }

p {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  color: var(--text-muted);
  max-width: 600px;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  display: inline-block;
}

.section-heading {
  margin-bottom: var(--space-md);
  color: var(--navy);
}

.section-heading span {
  color: var(--gold);
  font-style: italic;
}

/* ---------- Layout ---------- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section-padding {
  padding: var(--space-3xl) 0;
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mx-auto { margin-left: auto; margin-right: auto; }

/* ---------- Divider ---------- */
.gold-divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: var(--space-md) auto;
}

.swan-ornament {
  font-size: 1.5rem;
  color: var(--gold);
  text-align: center;
  margin: var(--space-md) 0;
  opacity: 0.6;
}

/* ==========================================================
   NAVIGATION
   ========================================================== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.2rem 0;
  transition: all var(--duration) var(--ease-premium);
}

.navbar.scrolled {
  background: rgba(250, 247, 242, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.8rem 0;
  box-shadow: 0 1px 30px rgba(10, 22, 40, 0.06);
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-logo svg {
  width: 36px;
  height: 36px;
  object-fit: contain;
  transition: transform var(--duration) var(--ease-premium);
}

.nav-logo img {
  height: 80px;
  width: auto;
  object-fit: contain;
  transition: transform var(--duration) var(--ease-premium);
}

.nav-logo:hover svg,
.nav-logo:hover img {
  transform: scale(1.05);
}

.nav-logo-text {
  font-family: var(--font-cinzel);
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--cream);
  transition: color var(--duration) var(--ease-premium);
}

.navbar.scrolled .nav-logo-text {
  color: var(--navy);
}

.navbar.scrolled .nav-logo svg path {
  fill: var(--navy);
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.85);
  position: relative;
  padding-bottom: 2px;
  transition: color var(--duration) var(--ease-premium);
}

.navbar.scrolled .nav-links a {
  color: var(--text-muted);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--duration) var(--ease-premium);
}

.nav-links a:hover {
  color: var(--gold);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  font-size: 0.8rem !important;
  padding: 0.6rem 1.5rem;
  border: 1px solid var(--gold);
  border-radius: 30px;
  color: var(--gold) !important;
  transition: all var(--duration) var(--ease-premium) !important;
}

.nav-cta:hover {
  background: var(--gold);
  color: var(--cream) !important;
}

/* Navigation Overlay */
.nav-overlay {
  position: fixed;
  inset: 0;
  background: rgba(10, 22, 40, 0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--duration) var(--ease-premium);
}

.nav-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--cream);
  transition: all 0.3s var(--ease-premium);
  border-radius: 2px;
}

.navbar.scrolled .hamburger span {
  background: var(--navy);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ==========================================================
   HERO SECTION
   ========================================================== */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-video-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 22, 40, 0.50) 0%,
    rgba(10, 22, 40, 0.70) 50%,
    rgba(10, 22, 40, 0.85) 100%
  );
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.particle {
  position: absolute;
  width: 3px;
  height: 3px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0;
  animation: particleFloat 8s infinite;
}

@keyframes particleFloat {
  0%   { opacity: 0; transform: translateY(100vh) scale(0); }
  10%  { opacity: 0.6; }
  90%  { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

.hero-content {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 0 var(--space-lg);
  max-width: 800px;
}

.hero-logo-icon {
  width: 270px;
  height: 180px;
  margin: 0 auto var(--space-lg);
  opacity: 0;
  animation: heroFadeIn 1.2s 0.3s var(--ease-premium) forwards;
}

.hero-logo-icon svg,
.hero-logo-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 20px rgba(201, 169, 110, 0.3));
}

.hero-brand {
  font-family: var(--font-cinzel);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: heroFadeIn 1.2s 0.5s var(--ease-premium) forwards;
}

.hero h1 {
  color: var(--cream);
  font-weight: 300;
  margin-bottom: var(--space-md);
  opacity: 0;
  animation: heroFadeIn 1.2s 0.7s var(--ease-premium) forwards;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-subtitle {
  font-size: clamp(1rem, 1.3vw, 1.2rem);
  color: rgba(250, 247, 242, 0.7);
  max-width: 520px;
  margin: 0 auto var(--space-xl);
  line-height: 1.8;
  opacity: 0;
  animation: heroFadeIn 1.2s 0.9s var(--ease-premium) forwards;
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  padding: 1rem 2.8rem;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cream);
  border: 1px solid var(--gold);
  border-radius: 50px;
  background: transparent;
  transition: all var(--duration) var(--ease-premium);
  opacity: 0;
  animation: heroFadeIn 1.2s 1.1s var(--ease-premium) forwards;
  position: relative;
  overflow: hidden;
}

.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--duration) var(--ease-premium);
  border-radius: 50px;
}

.hero-cta:hover::before {
  transform: scaleX(1);
}

.hero-cta span {
  position: relative;
  z-index: 1;
}

.hero-cta svg {
  position: relative;
  z-index: 1;
  transition: transform var(--duration) var(--ease-premium);
}

.hero-cta:hover svg {
  transform: translateX(4px);
}

@keyframes heroFadeIn {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  opacity: 0;
  animation: heroFadeIn 1.2s 1.5s var(--ease-premium) forwards;
}

.scroll-indicator span {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.5);
}

.scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
  50%      { opacity: 1;   transform: scaleY(1); }
}

/* ==========================================================
   BRAND STORY SECTION
   ========================================================== */
.brand-story {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.brand-story::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--overlay-gold) 0%, transparent 70%);
  pointer-events: none;
}

.brand-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.brand-story-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.brand-story-image img {
  width: 100%;
  border-radius: var(--radius-lg);
  transition: transform var(--duration-slow) var(--ease-premium);
}

.brand-story-image:hover img {
  transform: scale(1.03);
}

.brand-story-image::after {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(201, 169, 110, 0.2);
  border-radius: var(--radius-lg);
  pointer-events: none;
}

.brand-story-image.premium-frame {
  background: #ffffff;
  padding: var(--space-sm);
  border: 1px solid var(--gold);
  box-shadow: 0 20px 45px rgba(10, 22, 40, 0.04);
}

.brand-story-image.premium-frame img {
  border-radius: var(--radius-sm);
}

.brand-story-image.premium-frame::after {
  inset: 8px;
  border: 1px solid rgba(201, 169, 110, 0.4);
  border-radius: calc(var(--radius-lg) - 8px);
}

.brand-story-content {
  padding: var(--space-lg) 0;
}

.brand-story-content h2 {
  margin-bottom: var(--space-lg);
}

.brand-story-text {
  margin-bottom: var(--space-xl);
  line-height: 1.9;
}

/* Feature List */
.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm);
  border-radius: var(--radius-sm);
  transition: all var(--duration) var(--ease-premium);
}

.feature-item:hover {
  background: var(--overlay-gold);
}

.feature-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--cream);
  font-size: 1.1rem;
}

.feature-item h4 {
  font-size: 0.95rem;
  font-weight: 600;
  font-family: var(--font-sans);
  margin-bottom: 2px;
  color: var(--navy);
}

.feature-item p {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ==========================================================
   COLLECTION SECTION
   ========================================================== */
.collection {
  background: var(--ivory);
  position: relative;
}

.collection::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.collection-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.collection-showcase {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  margin-bottom: var(--space-2xl);
  box-shadow: 0 20px 60px rgba(10, 22, 40, 0.1);
}

.showcase-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.showcase-slides {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  width: 200%;
}

.showcase-slide {
  width: 50%;
  flex-shrink: 0;
  position: relative;
}

.showcase-slide img,
.showcase-slide video {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--navy);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 10;
}

.slider-btn:hover {
  background: var(--navy);
  color: var(--cream);
}

.prev-btn {
  left: 20px;
}

.next-btn {
  right: 20px;
}

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}

.slider-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
}

.slider-dots .dot.active {
  background: var(--navy);
  transform: scale(1.2);
}

/* Variant Cards */
.variant-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
}

.variant-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  padding: var(--space-lg) var(--space-md);
  text-align: center;
  transition: all var(--duration) var(--ease-premium);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid transparent;
}

.variant-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  transition: height var(--duration) var(--ease-premium);
}

.variant-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(10, 22, 40, 0.08);
  border-color: var(--gold);
}

.variant-card:hover::before {
  height: 6px;
}

.variant-card--ivory::before   { background: linear-gradient(90deg, #F5F0E8, #C9A96E); }
.variant-card--black::before   { background: linear-gradient(90deg, #1a1a1a, #C9A96E); }
.variant-card--pink::before    { background: linear-gradient(90deg, #F2D5D0, #F5F0E8); }
.variant-card--cappuccino::before { background: linear-gradient(90deg, #C4A882, #E8D5BC); }
.variant-card--gray::before    { background: linear-gradient(90deg, #A0A8B4, #F5F5F5); }

.variant-swatch {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  margin: 0 auto var(--space-sm);
  border: 2px solid rgba(201, 169, 110, 0.3);
  transition: transform var(--duration) var(--ease-premium);
}

.variant-card:hover .variant-swatch {
  transform: scale(1.1);
}

.variant-swatch--ivory   { background: linear-gradient(135deg, #F5F0E8, #FDFAF5); }
.variant-swatch--black   { background: linear-gradient(135deg, #0A1628, #1a1a2e); }
.variant-swatch--pink    { background: linear-gradient(135deg, #F2D5D0, #F8E8E4); }
.variant-swatch--cappuccino { background: linear-gradient(135deg, #C4A882, #D8C4A8); }
.variant-swatch--gray    { background: linear-gradient(135deg, #A0A8B4, #C8CDD4); }

.variant-card h4 {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--navy);
}

.variant-card p {
  font-size: 0.78rem;
  color: var(--text-muted);
  margin: 0 auto;
}

/* ==========================================================
   PRODUCT SPOTLIGHT SECTION
   ========================================================== */
.spotlight {
  background: var(--cream);
  position: relative;
}

.spotlight-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.spotlight-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}



.spotlight-details h3 {
  margin-bottom: var(--space-sm);
}

.spotlight-price {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: var(--space-lg);
}

.spotlight-features {
  margin-bottom: var(--space-xl);
}

.spotlight-feature {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-xs) 0;
  border-bottom: 1px solid rgba(201, 169, 110, 0.1);
}

.spotlight-feature:last-child {
  border-bottom: none;
}

.spotlight-feature-icon {
  color: var(--gold);
  font-size: 1rem;
  min-width: 24px;
}

.spotlight-feature span {
  font-size: 0.92rem;
  color: var(--text-muted);
}

.spotlight-dimensions {
  background: var(--ivory);
  border-radius: var(--radius-md);
  padding: var(--space-md);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm);
  text-align: center;
}

.dimension-item strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--navy);
  font-weight: 500;
}

.dimension-item span {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ==========================================================
   UNBOXING / VIDEO SECTION
   ========================================================== */
.unboxing {
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.unboxing::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 169, 110, 0.05) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 50%, rgba(201, 169, 110, 0.03) 0%, transparent 60%);
  pointer-events: none;
}

.unboxing-content {
  position: relative;
  z-index: 1;
  text-align: center;
}

.unboxing-content .section-heading {
  color: var(--cream);
}

.unboxing-content p {
  color: rgba(250, 247, 242, 0.6);
  margin: 0 auto var(--space-xl);
}

.unboxing-quote {
  position: relative;
  max-width: 800px;
  margin: var(--space-xl) auto 0;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  padding: var(--space-2xl) var(--space-xl);
  backdrop-filter: blur(15px);
  overflow: hidden;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.35);
}

.quote-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 75%);
  pointer-events: none;
}

.quote-content {
  position: relative;
  z-index: 1;
}

.quote-icon {
  font-family: var(--font-serif);
  font-size: 5rem;
  line-height: 1;
  color: var(--gold);
  opacity: 0.25;
  display: block;
  margin-bottom: -15px;
  text-align: center;
}

.unboxing-quote blockquote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  font-style: italic;
  color: var(--cream);
  margin-bottom: var(--space-lg);
  line-height: 1.55;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.quote-text {
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  color: rgba(250, 247, 242, 0.75);
  line-height: 1.8;
  margin-bottom: var(--space-md);
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.quote-subtext {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  color: var(--gold-light);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-xl);
  font-style: italic;
}

.quote-action {
  display: flex;
  justify-content: center;
  margin-top: var(--space-lg);
}

/* ==========================================================
   WHY MASWAN BABY SECTION
   ========================================================== */
.why-us {
  background: var(--cream-soft);
  position: relative;
}

.why-us-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
}

.why-card {
  background: #ffffff;
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-md);
  text-align: center;
  transition: all var(--duration) var(--ease-premium);
  border: 1px solid rgba(201, 169, 110, 0.14);
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(10, 22, 40, 0.03);
}

.why-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transition: transform var(--duration) var(--ease-premium);
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(10, 22, 40, 0.06);
  border-color: rgba(201, 169, 110, 0.2);
}

.why-card:hover::after {
  transform: scaleX(1);
}

.why-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 169, 110, 0.1), rgba(201, 169, 110, 0.05));
  color: var(--gold);
  font-size: 1.5rem;
  transition: all var(--duration) var(--ease-premium);
}

.why-card:hover .why-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--cream);
  transform: scale(1.1);
}

.why-card h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 500;
  margin-bottom: var(--space-xs);
  color: var(--navy);
}

.why-card p {
  font-size: 0.85rem;
  margin: 0 auto;
  line-height: 1.6;
}

/* ==========================================================
   ORDER / CONTACT SECTION
   ========================================================== */
.order {
  background: var(--ivory);
  position: relative;
}

.order::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.order-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: start;
}

.order-info {
  padding-top: var(--space-md);
}

.order-info h2 {
  margin-bottom: var(--space-md);
}

.order-info > p {
  margin-bottom: var(--space-xl);
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

.contact-item-icon {
  width: 44px;
  height: 44px;
  min-width: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.1);
  color: var(--gold);
  font-size: 1rem;
}

.contact-item span {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Order Form */
.order-form-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: var(--space-xl);
  box-shadow: 0 10px 40px rgba(10, 22, 40, 0.04);
  border: 1px solid rgba(201, 169, 110, 0.1);
}

.order-form-card h3 {
  margin-bottom: var(--space-lg);
  text-align: center;
}

.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid var(--ivory-warm);
  border-radius: var(--radius-sm);
  background: var(--cream-soft);
  font-size: 0.95rem;
  color: var(--navy);
  transition: all var(--duration) var(--ease-premium);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.form-group textarea {
  min-height: 100px;
  resize: vertical;
}

/* Payment Section & Credit Card Preview */
.payment-section {
  margin-top: var(--space-lg);
  border-top: 1px solid var(--ivory-warm);
  padding-top: var(--space-lg);
}

.payment-title {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  font-size: 1.15rem;
  margin-bottom: var(--space-md);
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* Card 3D Flip Wrapper */
.credit-card-wrap {
  perspective: 1000px;
  width: 100%;
  margin-bottom: var(--space-md);
}

.credit-card-inner {
  position: relative;
  width: 100%;
  aspect-ratio: 1.586;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  transform-style: preserve-3d;
}

.credit-card-inner.flipped {
  transform: rotateY(180deg);
}

.credit-card-front,
.credit-card-back {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  backface-visibility: hidden;
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: 0 10px 30px rgba(10, 22, 40, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.credit-card-front {
  background: linear-gradient(135deg, #0A1628, #1E2D44);
  color: var(--cream);
  z-index: 2;
  transform: rotateY(0deg);
}

.credit-card-back {
  background: linear-gradient(135deg, #1E2D44, #0A1628);
  color: var(--cream);
  transform: rotateY(180deg);
  padding: var(--space-md) 0;
  justify-content: flex-start;
  gap: var(--space-md);
}

.credit-card-front::before,
.credit-card-back::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.card-chip {
  width: 40px;
  height: 30px;
  background: linear-gradient(135deg, #D4AF37, #F5D77F);
  border-radius: 6px;
  box-shadow: inset 0 1px 1px rgba(255,255,255,0.4);
}

.card-number-display {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.25rem;
  letter-spacing: 2px;
  margin: var(--space-sm) 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.4);
  color: #FAF7F2;
}

.card-info-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.card-holder-display {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  max-width: 75%;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: rgba(250, 247, 242, 0.85);
}

.card-expiry-display {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.9rem;
  color: rgba(250, 247, 242, 0.85);
}

.card-magnetic-strip {
  width: 100%;
  height: 40px;
  background: #111;
  margin-top: 10px;
}

.card-signature-area {
  margin: 0 var(--space-lg);
  height: 40px;
  background: #eee;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 0 10px;
}

.card-cvc-display {
  font-family: 'Courier New', Courier, monospace;
  font-size: 1.1rem;
  color: #111;
  letter-spacing: 2px;
  font-weight: bold;
}

/* Color Selector */
.color-selector {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

.color-option {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all var(--duration) var(--ease-premium);
  position: relative;
}

.color-option:hover,
.color-option.active {
  border-color: var(--gold);
  transform: scale(1.1);
}

.color-option.active::after {
  content: '✓';
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  font-weight: 700;
}

.color-option--ivory     { background: linear-gradient(135deg, #F5F0E8, #FDFAF5); }
.color-option--ivory.active::after { color: var(--navy); }

.color-option--black     { background: linear-gradient(135deg, #0A1628, #1a1a2e); }
.color-option--black.active::after { color: var(--cream); }

.color-option--pink      { background: linear-gradient(135deg, #F2D5D0, #F8E8E4); }
.color-option--pink.active::after  { color: var(--navy); }

.color-option--cappuccino { background: linear-gradient(135deg, #C4A882, #D8C4A8); }
.color-option--cappuccino.active::after { color: var(--cream); }

.color-option--gray      { background: linear-gradient(135deg, #A0A8B4, #C8CDD4); }
.color-option--gray.active::after  { color: var(--navy); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

/* Buttons */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  width: 100%;
  padding: 1.1rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border: none;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all var(--duration) var(--ease-premium);
  position: relative;
  overflow: hidden;
  margin-top: var(--space-md);
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-dark), var(--navy));
  opacity: 0;
  transition: opacity var(--duration) var(--ease-premium);
}

.btn-primary:hover::before {
  opacity: 1;
}

.btn-primary span,
.btn-primary svg {
  position: relative;
  z-index: 1;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(201, 169, 110, 0.3);
}

.btn-whatsapp {
  background: linear-gradient(135deg, #25D366, #128C7E);
  margin-top: var(--space-sm);
}

.btn-whatsapp::before {
  background: linear-gradient(135deg, #128C7E, #075E54);
}

/* ==========================================================
   FOOTER
   ========================================================== */
.footer {
  background: var(--navy);
  padding: var(--space-2xl) 0 var(--space-lg);
  position: relative;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.footer-content {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand .nav-logo {
  margin-bottom: var(--space-md);
}

.footer-brand p {
  color: rgba(250, 247, 242, 0.5);
  font-size: 0.88rem;
  line-height: 1.7;
}

.footer-col h4 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-md);
}

.footer-col ul li {
  margin-bottom: var(--space-xs);
}

.footer-col ul li a {
  font-size: 0.88rem;
  color: rgba(250, 247, 242, 0.5);
  transition: color var(--duration) var(--ease-premium);
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-md);
}

.social-icon {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid rgba(201, 169, 110, 0.2);
  color: var(--gold);
  font-size: 1rem;
  transition: all var(--duration) var(--ease-premium);
}

.social-icon:hover {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--space-lg);
  border-top: 1px solid rgba(250, 247, 242, 0.06);
}

.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(250, 247, 242, 0.35);
}

/* ==========================================================
   SCROLL ANIMATIONS
   ========================================================== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-premium), transform 0.9s var(--ease-premium);
}

.reveal.revealed {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-50px);
  transition: opacity 0.9s var(--ease-premium), transform 0.9s var(--ease-premium);
}

.reveal-left.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(50px);
  transition: opacity 0.9s var(--ease-premium), transform 0.9s var(--ease-premium);
}

.reveal-right.revealed {
  opacity: 1;
  transform: translateX(0);
}

.reveal-scale {
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 0.9s var(--ease-premium), transform 0.9s var(--ease-premium);
}

.reveal-scale.revealed {
  opacity: 1;
  transform: scale(1);
}

.stagger-1 { transition-delay: 0.1s; }
.stagger-2 { transition-delay: 0.2s; }
.stagger-3 { transition-delay: 0.3s; }
.stagger-4 { transition-delay: 0.4s; }
.stagger-5 { transition-delay: 0.5s; }

/* ==========================================================
   RESPONSIVE
   ========================================================== */
@media (max-width: 1024px) {
  .brand-story-grid,
  .spotlight-grid,
  .order-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .variant-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
  }

  .spotlight-images {
    order: -1;
  }
}

@media (max-width: 768px) {
  :root {
    --space-3xl: 5rem;
    --space-2xl: 3.5rem;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--cream);
    flex-direction: column;
    justify-content: center;
    gap: 2rem;
    padding: 2rem;
    transition: right 0.4s var(--ease-premium);
    box-shadow: -10px 0 40px rgba(10, 22, 40, 0.1);
    z-index: 1000;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links a {
    color: var(--navy) !important;
    font-size: 1rem;
  }

  .nav-logo-text {
    font-size: 1.35rem;
  }

  .hamburger {
    display: flex;
  }

  /* Hero Mobile Adjustments */
  .hero {
    height: 100dvh;
    min-height: 520px;
  }

  .hero-logo-icon {
    width: 120px;
    height: 80px;
    margin-bottom: var(--space-md);
  }

  .hero h1 {
    font-size: 2.2rem;
    line-height: 1.3;
  }

  .hero-subtitle {
    font-size: 0.95rem;
    margin-bottom: var(--space-lg);
  }

  .hero-cta {
    padding: 0.9rem 2.2rem;
    font-size: 0.8rem;
  }

  /* Explore Section Mobile Styling */
  .explore-card-content {
    padding: var(--space-lg) var(--space-md);
  }

  .explore-card-content h3 {
    font-size: 1.4rem;
  }

  .explore-card-content p {
    font-size: 0.85rem;
  }

  /* Grids */
  .variant-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .why-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .feature-list {
    grid-template-columns: 1fr;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  /* Swipeable Product Spotlight Gallery on Mobile */
  .spotlight-images {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: var(--space-sm);
    padding-bottom: var(--space-sm);
    margin: 0 calc(-1 * var(--space-lg)) var(--space-md);
    padding: 0 var(--space-lg);
    scrollbar-width: none; /* Firefox */
    -webkit-overflow-scrolling: touch;
  }

  .spotlight-images::-webkit-scrollbar {
    display: none; /* Safari and Chrome */
  }

  .spotlight-img {
    flex: 0 0 82%;
    scroll-snap-align: center;
    aspect-ratio: 4 / 3;
  }

  .spotlight-img--large {
    flex: 0 0 85%;
    aspect-ratio: 4 / 3;
    grid-column: auto;
  }

  .spotlight-dimensions {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-sm);
    text-align: center;
  }

  .nav-logo {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 var(--space-sm);
  }

  .variant-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }

  .hero h1 {
    font-size: 2rem;
  }

  .order-form-card {
    padding: var(--space-md);
  }

  .color-selector {
    justify-content: center;
  }
}

/* ==========================================================
   CUSTOM SCROLLBAR
   ========================================================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cream);
}

::-webkit-scrollbar-thumb {
  background: var(--gold);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-dark);
}

/* ==========================================================
   SELECTION
   ========================================================== */
::selection {
  background: var(--gold);
  color: var(--cream);
}

/* ==========================================================
   LOADING ANIMATION
   ========================================================== */
.page-loader {
  position: fixed;
  inset: 0;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.8s var(--ease-premium), visibility 0.8s;
}

.page-loader.loaded {
  opacity: 0;
  visibility: hidden;
}

.loader-content {
  text-align: center;
}

.loader-logo {
  width: 240px;
  height: 160px;
  margin: 0 auto var(--space-md);
  animation: loaderPulse 1.5s infinite;
}

.loader-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.loader-text {
  font-family: var(--font-cinzel);
  font-size: 1.2rem;
  color: var(--gold);
  letter-spacing: 0.3em;
  opacity: 0.7;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(1); opacity: 0.7; }
  50%      { transform: scale(1.1); opacity: 1; }
}

/* ==========================================================
   INNER PAGE HERO
   ========================================================== */
.page-hero {
  position: relative;
  height: 50vh;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

.page-hero.full-height {
  height: 100vh;
  min-height: 700px;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero-content {
  position: relative;
  z-index: 3;
  max-width: 700px;
  padding: 0 var(--space-lg);
}

.page-hero-content .hero-brand {
  opacity: 0;
  animation: heroFadeIn 1s 0.2s var(--ease-premium) forwards;
}

.page-hero-content h1 {
  color: var(--cream);
  font-weight: 300;
  opacity: 0;
  animation: heroFadeIn 1s 0.4s var(--ease-premium) forwards;
}

.page-hero-content h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.page-hero-content .page-hero-desc {
  color: rgba(250, 247, 242, 0.7);
  max-width: 500px;
  margin: var(--space-md) auto 0;
  font-size: clamp(0.95rem, 1.1vw, 1.1rem);
  line-height: 1.8;
  opacity: 0;
  animation: heroFadeIn 1s 0.6s var(--ease-premium) forwards;
}

/* Active nav link for multi-page */
.nav-links a.active {
  color: var(--gold) !important;
}

.nav-links a.active::after {
  width: 100%;
}

/* ==========================================================
   EXPLORE CARDS (HOMEPAGE)
   ========================================================== */
.explore {
  background: var(--cream);
  position: relative;
}

.explore-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.explore-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
}

.explore-card {
  position: relative;
  height: 380px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  display: block;
}

.explore-card-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s var(--ease-premium);
}

.explore-card:hover .explore-card-bg {
  transform: scale(1.08);
}

.explore-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,22,40,0.15) 0%, rgba(10,22,40,0.75) 100%);
  transition: background 0.5s var(--ease-premium);
}

.explore-card:hover .explore-card-overlay {
  background: linear-gradient(180deg, rgba(10,22,40,0.10) 0%, rgba(10,22,40,0.85) 100%);
}

.explore-card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: var(--space-xl) var(--space-lg);
  z-index: 2;
}

.explore-card-content h3 {
  font-family: var(--font-serif);
  color: var(--cream);
  font-size: 1.7rem;
  margin-bottom: 6px;
}

.explore-card-content p {
  color: rgba(250, 247, 242, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.explore-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-top: var(--space-sm);
  transition: gap 0.3s var(--ease-premium);
}

.explore-card:hover .explore-card-link {
  gap: 0.9rem;
}

/* ==========================================================
   PRODUCT CARDS (COLLECTION PAGE)
   ========================================================== */
/* ==========================================================
   PRODUCT CARDS (COLLECTION PAGE)
   ========================================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--space-lg);
}

.product-card {
  background: var(--cream);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all var(--duration) var(--ease-premium);
  border: 2px solid transparent;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 60px rgba(10,22,40,0.10);
  border-color: var(--gold);
}

.product-card-color-bar {
  height: 5px;
  width: 100%;
}

.product-card-image {
  height: 280px;
  overflow: hidden;
  position: relative;
  background: var(--ivory);
}

.product-image-container {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.product-quadrant-img {
  position: absolute;
  max-width: none !important;
  width: 200% !important;
  height: 200% !important;
  object-fit: cover;
  transition: transform var(--duration) var(--ease-premium);
}

/* Quadrant offsets for 2x2 grid (ChatGPT Image 5 Tem 2026 14_22_16.png) */
.quadrant-top-left {
  top: 0;
  left: 0;
}
.quadrant-top-right {
  top: 0;
  left: -100%;
}
.quadrant-bottom-left {
  top: -100%;
  left: 0;
}
.quadrant-bottom-right {
  top: -100%;
  left: -100%;
}

/* For pink variant showing the full beautiful pink image */
.product-full-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration) var(--ease-premium);
}

.product-card:hover .product-quadrant-img,
.product-card:hover .product-full-img {
  transform: scale(1.05);
}

/* Update Spotlight images styling in detaylar.html to display transparent pngs nicely */
.spotlight-img {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  background: var(--ivory);
  border: 1px solid rgba(201, 169, 110, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  aspect-ratio: 4 / 3;
}

.spotlight-img--large {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
}

.spotlight-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--duration-slow) var(--ease-premium);
}

.spotlight-img:hover img {
  transform: scale(1.04);
}


.product-card-body {
  padding: var(--space-lg) var(--space-md);
  text-align: center;
}

.product-card-body h4 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  margin-bottom: 4px;
  color: var(--navy);
}

.product-card-body .product-subtitle {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.product-card-features {
  display: flex;
  justify-content: center;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.product-card-features span {
  font-size: 0.75rem;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 4px;
}

.btn-select {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
  padding: 0.9rem 1.5rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  background: transparent;
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all var(--duration) var(--ease-premium);
  font-family: var(--font-sans);
}

.btn-select:hover {
  background: var(--gold);
  color: var(--cream);
}

.btn-select svg {
  transition: transform 0.3s var(--ease-premium);
}

.btn-select:hover svg {
  transform: translateX(4px);
}

/* ==========================================================
   ORDER PAGE
   ========================================================== */
.order-page-layout {
  background: var(--ivory);
}

.order-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: var(--space-3xl);
  align-items: start;
}

.selected-product-card {
  background: var(--cream);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(10,22,40,0.06);
  border: 1px solid rgba(201,169,110,0.15);
  position: sticky;
  top: 100px;
}

.selected-product-image {
  height: 320px;
  overflow: hidden;
  background: var(--ivory);
  display: flex;
  align-items: center;
  justify-content: center;
}

.selected-product-image .selected-swatch {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  border: 5px solid rgba(201,169,110,0.3);
}

.selected-product-info {
  padding: var(--space-xl);
}

.selected-product-info h3 {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  margin-bottom: var(--space-xs);
  color: var(--navy);
}

.selected-product-color-name {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
}

.selected-color-dot {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.selected-product-color-name span {
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 500;
}

.selected-product-specs {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.selected-product-specs .spec-item {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid rgba(201,169,110,0.08);
}

.selected-product-specs .spec-item:last-child {
  border-bottom: none;
}

.change-product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: var(--space-md);
  font-size: 0.82rem;
  color: var(--gold);
  font-weight: 500;
  letter-spacing: 0.05em;
  transition: gap 0.3s var(--ease-premium);
}

.change-product-link:hover {
  gap: 0.8rem;
}

/* No product selected state */
.no-product-selected {
  text-align: center;
  padding: var(--space-3xl) var(--space-xl);
}

.no-product-selected .no-product-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.no-product-selected h3 {
  margin-bottom: var(--space-sm);
}

.no-product-selected p {
  margin: 0 auto var(--space-lg);
}

.no-product-selected .btn-select {
  width: auto;
  padding: 0.9rem 2rem;
}

/* ==========================================================
   STORY PAGE EXPANDED
   ========================================================== */
.story-expanded {
  background: var(--cream);
}

.story-expanded-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-3xl);
  align-items: center;
}

.story-image-gallery {
  display: grid;
  gap: var(--space-md);
}

.story-image-gallery img {
  width: 100%;
  border-radius: var(--radius-md);
  transition: transform var(--duration-slow) var(--ease-premium);
}

.story-image-gallery img:hover {
  transform: scale(1.02);
}

.story-timeline {
  position: relative;
  padding-left: var(--space-xl);
  margin-top: var(--space-xl);
}

.story-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--gold), rgba(201,169,110,0.1));
}

.timeline-item {
  position: relative;
  margin-bottom: var(--space-xl);
  padding-left: var(--space-md);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: calc(-1 * var(--space-xl) - 5px);
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--gold);
  border: 3px solid var(--cream);
}

.timeline-item h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.timeline-item p {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ==========================================================
   EXPERIENCE PAGE
   ========================================================== */
.experience-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  margin-top: var(--space-2xl);
}

.stat-card {
  text-align: center;
  padding: var(--space-lg);
  background: #ffffff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(201,169,110,0.14);
  box-shadow: 0 8px 30px rgba(10, 22, 40, 0.03);
  transition: all var(--duration) var(--ease-premium);
}

.stat-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 35px rgba(10, 22, 40, 0.06);
  border-color: rgba(201, 169, 110, 0.25);
}

.stat-card .stat-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--gold);
  font-weight: 500;
  display: block;
}

.stat-card .stat-label {
  font-size: 0.82rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 4px;
}

/* ==========================================================
   MULTI-PAGE RESPONSIVE ADDITIONS
   ========================================================== */
@media (max-width: 1024px) {
  .explore-grid {
    grid-template-columns: 1fr;
  }

  .order-page-grid {
    grid-template-columns: 1fr;
  }

  .selected-product-card {
    position: static;
    max-width: 480px;
    margin: 0 auto var(--space-lg);
  }

  .story-expanded-grid {
    grid-template-columns: 1fr;
  }

  .story-image-gallery {
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
  }

  .experience-stats {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .page-hero {
    height: 45vh;
    min-height: 320px;
  }

  .explore-card {
    height: 300px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    max-width: 420px;
    margin: 0 auto;
  }

  .experience-stats {
    grid-template-columns: 1fr 1fr;
  }

  .story-timeline {
    padding-left: var(--space-lg);
  }
}

@media (max-width: 480px) {
  .explore-card {
    height: 250px;
  }

  .experience-stats {
    grid-template-columns: 1fr;
  }

  .story-image-gallery {
    grid-template-columns: 1fr; /* stack gallery images on very small screens */
  }
}

/* ==========================================================
   SUCCESS & CONFIRMATION PAGE
   ========================================================== */
.success-layout {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--space-3xl) + 80px) var(--space-md) var(--space-3xl);
  background: var(--ivory);
}

.success-card {
  background: var(--cream);
  max-width: 680px;
  width: 100%;
  border-radius: var(--radius-lg);
  padding: var(--space-2xl) var(--space-xl);
  box-shadow: 0 20px 60px rgba(10, 22, 40, 0.05);
  border: 1px solid rgba(201, 169, 110, 0.15);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.success-icon-wrap {
  width: 80px;
  height: 80px;
  margin: 0 auto var(--space-lg);
  position: relative;
}

.success-icon-circle {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-dasharray: 166;
  stroke-dashoffset: 166;
  stroke-linecap: round;
  animation: strokeCircle 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

.success-icon-check {
  transform-origin: 50% 50%;
  stroke-dasharray: 48;
  stroke-dashoffset: 48;
  stroke: var(--gold);
  stroke-width: 3;
  stroke-linecap: round;
  animation: strokeCheck 0.3s 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
}

@keyframes strokeCircle {
  to { stroke-dashoffset: 0; }
}

@keyframes strokeCheck {
  to { stroke-dashoffset: 0; }
}

.success-badge {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(201, 169, 110, 0.1);
  color: var(--gold-dark);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border-radius: var(--radius-xl);
  margin-bottom: var(--space-md);
}

.success-order-id {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--gold);
  margin-bottom: var(--space-lg);
}

.success-summary {
  background: var(--ivory);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  margin: var(--space-xl) 0;
  text-align: left;
  border: 1px solid rgba(201, 169, 110, 0.1);
}

.success-summary-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: var(--navy);
  margin-bottom: var(--space-md);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  padding-bottom: 6px;
}

.success-summary-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--space-xs);
}

.success-summary-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.88rem;
  padding: 4px 0;
}

.success-summary-item span:first-child {
  color: var(--text-muted);
}

.success-summary-item span:last-child {
  color: var(--navy);
  font-weight: 500;
}

.success-timeline {
  display: flex;
  justify-content: space-between;
  margin: var(--space-xl) 0;
  position: relative;
  padding: 0 var(--space-sm);
}

.success-timeline::before {
  content: '';
  position: absolute;
  top: 15px;
  left: 30px;
  right: 30px;
  height: 2px;
  background: rgba(201, 169, 110, 0.15);
  z-index: 1;
}

.success-timeline-step {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  flex: 1;
}

.timeline-dot {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream);
  border: 2px solid rgba(201, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  transition: all var(--duration) var(--ease-premium);
}

.success-timeline-step.active .timeline-dot {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--cream);
}

.timeline-label {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-weight: 500;
  text-align: center;
}

.success-timeline-step.active .timeline-label {
  color: var(--gold-dark);
}

.success-actions {
  display: flex;
  gap: var(--space-md);
  justify-content: center;
  margin-top: var(--space-xl);
}

.success-actions .btn-primary {
  width: auto;
  min-width: 180px;
}

.success-actions .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 1rem 1.8rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  background: transparent;
  border: 1.5px solid var(--navy);
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: all var(--duration) var(--ease-premium);
}

.success-actions .btn-secondary:hover {
  background: var(--navy);
  color: var(--cream);
}

@media (max-width: 580px) {
  .success-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .success-actions .btn-primary,
  .success-actions .btn-secondary {
    width: 100%;
  }
  .success-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-xs);
    overflow: visible;
  }
  .timeline-label {
    font-size: 0.7rem;
  }
  .timeline-dot {
    width: 28px;
    height: 28px;
    font-size: 0.75rem;
  }
  .success-timeline::before {
    top: 13px;
    left: 20px;
    right: 20px;
  }
  .success-card {
    padding: var(--space-xl) var(--space-md);
  }
}

/* ---------- brand font utility ---------- */
.brand-font {
  font-family: var(--font-cinzel) !important;
}

/* ================================================================
   MASWAN BABY — Customer Registration & Swan Success Modal Styles
   ================================================================ */

.register-section {
  background-color: var(--cream-soft);
  border-top: 1px solid rgba(201, 169, 110, 0.15);
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  position: relative;
  overflow: hidden;
}

.register-layout {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: var(--space-xl);
  align-items: center;
}

.register-info {
  padding-right: var(--space-md);
}

.register-info p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: var(--space-md);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.register-info-swan-icon {
  margin-top: var(--space-lg);
  opacity: 0.8;
  display: inline-block;
  animation: floatSwan 6s ease-in-out infinite;
}

@keyframes floatSwan {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

.register-form-card {
  background-color: var(--cream);
  border: 1px solid var(--ivory-warm);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: 0 20px 45px rgba(10, 22, 40, 0.04);
}

/* Swan Modal Overlay & Card Shape */
.swan-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 12000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: var(--space-md);
}

.swan-success-card {
  position: relative;
  background-color: var(--navy);
  border: 2px solid var(--gold);
  /* Distinct swan body curved shape (Asymmetrical egg curve) */
  border-radius: 160px 40px 140px 140px;
  padding: 4.5rem 3rem 3.5rem 3rem;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 30px 60px rgba(10, 22, 40, 0.5), inset 0 0 30px rgba(201, 169, 110, 0.15);
  text-align: center;
  color: var(--cream);
  animation: swanReveal 0.65s var(--ease-bounce) forwards;
  margin-top: 60px; /* Space for the floating swan head */
}

@keyframes swanReveal {
  from {
    opacity: 0;
    transform: scale(0.8) translateY(50px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.swan-neck-svg {
  position: absolute;
  top: -88px;
  left: 35px;
  width: 110px;
  height: 110px;
  overflow: visible;
  filter: drop-shadow(0 8px 12px rgba(0,0,0,0.4));
  z-index: 2;
}

.swan-wing-svg {
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 140px;
  height: 140px;
  opacity: 0.12;
  pointer-events: none;
}

.swan-success-card h3 {
  font-family: var(--font-cinzel);
  font-size: 1.8rem;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  letter-spacing: 1px;
}

.swan-success-card p {
  font-family: var(--font-sans);
  color: var(--cream-soft);
  opacity: 0.95;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: var(--space-lg);
}

.swan-modal-close {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(201, 169, 110, 0.15);
  border: 1px solid rgba(201, 169, 110, 0.3);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.3s var(--ease-premium);
  z-index: 10;
}

.swan-modal-close:hover {
  background: var(--gold);
  color: var(--navy);
  transform: rotate(90deg);
}

/* ================================================================
   MASWAN BABY — Auth Page (Login / Register)
   ================================================================ */

/* Nav User Icon */
.nav-user-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1.5px solid rgba(201, 169, 110, 0.5);
  transition: all var(--duration) var(--ease-premium);
  flex-shrink: 0;
}

.nav-user-link svg {
  width: 18px;
  height: 18px;
  stroke: var(--cream);
  transition: stroke var(--duration) var(--ease-premium);
}

.navbar.scrolled .nav-user-link svg {
  stroke: var(--text-muted);
}

.nav-user-link:hover {
  border-color: var(--gold);
  background: rgba(201, 169, 110, 0.1);
}

.nav-user-link:hover svg {
  stroke: var(--gold);
}

.nav-user-link::after {
  display: none !important;
}

/* Auth Page Layout */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cream);
  padding: calc(80px + var(--space-xl)) var(--space-md) var(--space-xl);
  position: relative;
  overflow: hidden;
}

.auth-page::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.auth-page::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(201, 169, 110, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.auth-container {
  position: relative;
  width: 100%;
  max-width: 460px;
  z-index: 1;
}

/* Swan Decoration */
.auth-swan-decor {
  position: absolute;
  top: -40px;
  right: -80px;
  width: 120px;
  height: 180px;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
}

.auth-swan-decor svg {
  width: 100%;
  height: 100%;
}

/* Auth Card */
.auth-card {
  background: #ffffff;
  border-radius: var(--radius-lg);
  padding: var(--space-xl) var(--space-lg);
  border: 1px solid rgba(201, 169, 110, 0.15);
  box-shadow: 0 20px 50px rgba(10, 22, 40, 0.04);
  position: relative;
  z-index: 1;
  animation: authFadeIn 0.5s var(--ease-premium) forwards;
}

.auth-card--animate {
  animation: authFadeIn 0.4s var(--ease-premium) forwards;
}

@keyframes authFadeIn {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Auth Card Header */
.auth-card-header {
  text-align: center;
  margin-bottom: var(--space-lg);
}

.auth-logo {
  height: 56px;
  width: auto;
  margin: 0 auto var(--space-sm);
  display: block;
}

.auth-card-header h1 {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--navy);
  margin-bottom: 0.3rem;
}

.auth-card-header p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

/* Auth Form */
.auth-form {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.auth-form-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.auth-form-group label {
  font-size: 0.82rem;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.02em;
}

.auth-form-group input,
.auth-form-group textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--ivory-warm);
  border-radius: var(--radius-sm);
  background: var(--cream-soft);
  color: var(--text-dark);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.3s var(--ease-premium), box-shadow 0.3s var(--ease-premium);
}

.auth-form-group textarea {
  min-height: 70px;
  resize: vertical;
}

.auth-form-group input:focus,
.auth-form-group textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 110, 0.1);
}

.auth-form-group input::placeholder,
.auth-form-group textarea::placeholder {
  color: var(--text-muted);
  opacity: 0.6;
}

/* Auth Buttons */
.auth-btn-primary {
  width: 100%;
  padding: 0.9rem;
  margin-top: var(--space-xs);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: #ffffff;
  border: none;
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.3s var(--ease-premium);
}

.auth-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 25px rgba(201, 169, 110, 0.35);
}

.auth-btn-primary:active {
  transform: translateY(0);
}

.auth-btn-outline {
  display: inline-block;
  padding: 0.7rem 2rem;
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.3s var(--ease-premium);
}

.auth-btn-outline:hover {
  background: var(--gold);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.3);
}

/* Auth Divider */
.auth-divider {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin: var(--space-md) 0;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--ivory-warm);
}

.auth-divider span {
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Auth Switch */
.auth-switch {
  text-align: center;
}

.auth-switch p {
  font-size: 0.88rem;
  color: var(--text-muted);
  margin-bottom: var(--space-xs);
}

/* Mobile Auth */
@media (max-width: 520px) {
  .auth-card {
    padding: var(--space-lg) var(--space-md);
  }

  .auth-card-header h1 {
    font-size: 1.5rem;
  }

  .auth-swan-decor {
    display: none;
  }
}

/* ================================================================
   MASWAN BABY — Admin Dashboard Styles
   ================================================================ */

.admin-body {
  --admin-bg:           var(--navy);
  --admin-card-bg:      var(--navy-medium);
  --admin-card-border:  rgba(201, 169, 110, 0.15);
  --admin-highlight:     var(--navy-light);
  --admin-text:         var(--cream);
  --admin-text-muted:   #8A94A8;
  --admin-table-hover:  rgba(201, 169, 110, 0.04);
  background-color:     var(--admin-bg);
  color:                var(--admin-text);
  min-height:           100vh;
  font-family:          var(--font-sans);
  transition: background-color 0.3s ease, color 0.3s ease;
}

.admin-body.light-theme {
  --admin-bg:           var(--cream);
  --admin-card-bg:      #ffffff;
  --admin-card-border:  rgba(201, 169, 110, 0.25);
  --admin-highlight:     var(--ivory);
  --admin-text:         var(--navy);
  --admin-text-muted:   var(--text-muted);
  --admin-table-hover:  rgba(10, 22, 40, 0.03);
}

/* Global Form Fields styling inside Admin to support Light/Dark mode variables */
.admin-body input, 
.admin-body select, 
.admin-body textarea {
  background-color: var(--admin-highlight) !important;
  color: var(--admin-text) !important;
  border: 1px solid var(--admin-card-border) !important;
  border-radius: var(--radius-sm);
  outline: none;
  transition: all 0.3s ease;
}

.admin-body input:focus, 
.admin-body select:focus, 
.admin-body textarea:focus {
  border-color: var(--gold) !important;
  box-shadow: 0 0 10px rgba(201, 169, 110, 0.15) !important;
}

.admin-body input[disabled] {
  background-color: rgba(10, 22, 40, 0.05) !important;
  color: var(--admin-text-muted) !important;
  opacity: 0.6;
}

/* Login Arka Plan */
.admin-login-layout {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, var(--admin-highlight) 0%, var(--admin-bg) 100%);
  padding: var(--space-md);
  transition: background 0.3s ease;
}

.admin-login-card {
  background-color: var(--admin-card-bg);
  border: 1px solid var(--admin-card-border);
  border-radius: var(--radius-md);
  padding: var(--space-xl) var(--space-lg);
  width: 100%;
  max-width: 440px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
  text-align: center;
  transition: all 0.3s ease;
}

.admin-login-logo {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--space-md) auto;
  filter: drop-shadow(0 4px 10px rgba(201,169,110,0.3));
}

.admin-login-card h2 {
  font-family: var(--font-cinzel);
  font-size: 1.6rem;
  color: var(--gold);
  margin-bottom: var(--space-xs);
}

.admin-login-card p {
  color: var(--admin-text-muted);
  opacity: 0.9;
  font-size: 0.9rem;
  margin-bottom: var(--space-lg);
}

/* Dashboard Panel Layout */
.admin-panel-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

.admin-sidebar {
  background-color: var(--admin-card-bg);
  border-right: 1px solid var(--admin-card-border);
  padding: var(--space-lg) var(--space-md);
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  transition: all 0.3s ease;
}

.admin-sidebar-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-left: 10px;
}

.admin-sidebar-brand img {
  width: 38px;
  height: 38px;
}

.admin-sidebar-brand span {
  font-family: var(--font-cinzel);
  font-size: 1.3rem;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 1px;
}

.admin-menu {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.admin-menu-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0.9rem 1.2rem;
  border-radius: var(--radius-sm);
  color: var(--admin-text);
  opacity: 0.85;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.3s var(--ease-premium);
}

.admin-menu-item:hover, .admin-menu-item.active {
  background-color: rgba(201, 169, 110, 0.12);
  color: var(--gold);
  opacity: 1;
  padding-left: 1.5rem;
}

.admin-sidebar-footer {
  margin-top: auto;
  padding-top: var(--space-md);
  border-top: 1px solid var(--admin-card-border);
}

.admin-logout-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #e74c3c;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 0.8rem 1.2rem;
  border-radius: var(--radius-sm);
  transition: all 0.3s ease;
}

.admin-logout-btn:hover {
  background: rgba(231, 76, 60, 0.1);
}

/* Dashboard Content Area */
.admin-main {
  padding: var(--space-xl) var(--space-lg);
  overflow-y: auto;
  background-color: var(--admin-bg);
  transition: background-color 0.3s ease;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--space-xl);
  border-bottom: 1px solid var(--admin-card-border);
  padding-bottom: var(--space-md);
}

.admin-header h1 {
  font-family: var(--font-cinzel);
  font-size: 1.8rem;
  color: var(--gold);
}

.admin-header-user {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--admin-card-bg);
  padding: 8px 16px;
  border-radius: 30px;
  border: 1px solid var(--admin-card-border);
  font-size: 0.85rem;
  color: var(--admin-text);
  transition: all 0.3s ease;
}

.admin-tab-content {
  display: none;
}

.admin-tab-content.active {
  display: block;
}

/* Stats / Cards Grid */
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-md);
  margin-bottom: var(--space-xl);
}

.admin-stat-card {
  background-color: var(--admin-card-bg);
  border: 1px solid var(--admin-card-border);
  border-radius: var(--radius-md);
  padding: var(--space-md) var(--space-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: all 0.3s ease;
}

.admin-stat-card .stat-label {
  font-size: 0.85rem;
  color: var(--admin-text-muted);
  opacity: 0.8;
  margin-bottom: 6px;
}

.admin-stat-card .stat-value {
  font-family: var(--font-cinzel);
  font-size: 1.8rem;
  color: var(--gold);
  font-weight: 700;
}

/* Section Card Form */
.admin-section-card {
  background-color: var(--admin-card-bg);
  border: 1px solid var(--admin-card-border);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
  margin-bottom: var(--space-xl);
  transition: all 0.3s ease;
}

.admin-section-card h3 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--gold);
  margin-bottom: var(--space-md);
  border-bottom: 1px solid var(--admin-card-border);
  padding-bottom: 8px;
}

/* Data Tables */
.admin-table-container {
  overflow-x: auto;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.9rem;
}

.admin-table th {
  padding: 1rem;
  background-color: var(--admin-highlight);
  color: var(--gold-dark);
  font-family: var(--font-cinzel);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.5px;
  border-bottom: 2px solid var(--admin-card-border);
  transition: all 0.3s ease;
}

.admin-table td {
  padding: 1rem;
  border-bottom: 1px solid var(--admin-card-border);
  color: var(--admin-text);
  vertical-align: middle;
  transition: all 0.3s ease;
}

.admin-table tr:hover {
  background-color: var(--admin-table-hover);
}

/* Status Badges */
.status-badge {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 30px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
}

.status-badge.status-yeni {
  background: rgba(201, 169, 110, 0.15);
  color: var(--gold);
  border: 1px solid var(--gold);
}

.status-badge.status-hazırlanıyor {
  background: rgba(52, 152, 219, 0.15);
  color: #3498db;
  border: 1px solid #3498db;
}

.status-badge.status-kargoda {
  background: rgba(241, 196, 15, 0.15);
  color: #f1c40f;
  border: 1px solid #f1c40f;
}

.status-badge.status-tamamlandı {
  background: rgba(46, 204, 113, 0.15);
  color: #2ecc71;
  border: 1px solid #2ecc71;
}

.status-badge.status-iptal {
  background: rgba(231, 76, 60, 0.15);
  color: #e74c3c;
  border: 1px solid #e74c3c;
}

/* Action buttons */
.admin-btn-action {
  background: rgba(201, 169, 110, 0.1);
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.3);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.admin-btn-action:hover {
  background: var(--gold);
  color: var(--navy);
}

.admin-btn-danger {
  background: rgba(231, 76, 60, 0.1);
  color: #e74c3c;
  border: 1px solid rgba(231, 76, 60, 0.3);
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  transition: all 0.2s ease;
}

.admin-btn-danger:hover {
  background: #e74c3c;
  color: var(--cream);
}

/* Modal Popup (for User Create password info and Editing) */
.admin-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 22, 40, 0.85);
  backdrop-filter: blur(8px);
  z-index: 13000;
  display: none;
  justify-content: center;
  align-items: center;
}

.admin-modal {
  background-color: var(--admin-card-bg);
  border: 2px solid var(--gold);
  border-radius: var(--radius-md);
  width: 100%;
  max-width: 500px;
  padding: var(--space-lg);
  color: var(--admin-text);
  position: relative;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.admin-modal-title {
  font-family: var(--font-cinzel);
  color: var(--gold);
  font-size: 1.4rem;
  margin-bottom: var(--space-md);
  border-bottom: 1px solid var(--admin-card-border);
  padding-bottom: 8px;
}

.admin-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 1.2rem;
  color: var(--admin-text);
  cursor: pointer;
  transition: color 0.3s;
}

.admin-modal-close:hover {
  color: var(--gold);
}

.password-box {
  background: var(--admin-highlight);
  border: 1px dashed var(--gold);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: var(--space-md) 0;
  font-size: 1.1rem;
}

.password-text {
  font-family: monospace;
  font-weight: 700;
  color: var(--admin-text);
  letter-spacing: 2px;
}

.admin-copy-btn {
  background: var(--gold);
  color: var(--navy);
  font-size: 0.8rem;
  padding: 6px 12px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: all 0.3s;
}

.admin-copy-btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.admin-filter-bar {
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  margin-bottom: var(--space-md);
}

.admin-search-input {
  background: var(--admin-card-bg);
  border: 1px solid var(--admin-card-border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1.2rem;
  color: var(--admin-text);
  font-size: 0.9rem;
  width: 320px;
  transition: all 0.3s;
}

.admin-search-input:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 10px rgba(201, 169, 110, 0.15);
}

.admin-select-input {
  background: var(--admin-card-bg);
  border: 1px solid var(--admin-card-border);
  border-radius: var(--radius-sm);
  padding: 0.7rem 1.2rem;
  color: var(--admin-text);
  font-size: 0.9rem;
  cursor: pointer;
}

.admin-select-input:focus {
  border-color: var(--gold);
  outline: none;
}

/* Responsiveness adjustments for Admin dashboard */
@media (max-width: 1024px) {
  .admin-panel-layout {
    grid-template-columns: 1fr;
  }
  .admin-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--admin-card-border);
  }
  .admin-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .register-layout {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  .admin-stats-grid {
    grid-template-columns: 1fr;
  }
  .admin-filter-bar {
    flex-direction: column;
  }
  .admin-search-input {
    width: 100%;
  }
}

/* Kategori Filtre Butonları (Koleksiyon Sayfası) */
.category-filter-container {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: var(--space-xl);
}

.category-filter-btn {
  padding: 0.6rem 1.4rem;
  border-radius: var(--radius-xl);
  background: transparent;
  border: 1px solid rgba(201, 169, 110, 0.3);
  color: var(--text-muted);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s var(--ease-premium);
}

.category-filter-btn:hover,
.category-filter-btn.active {
  background: var(--gold);
  color: var(--navy);
  border-color: var(--gold);
  box-shadow: 0 4px 20px rgba(201, 169, 110, 0.3);
  transform: translateY(-2px);
}

/* ================================================================
   SHOPPING CART DRAWER & BADGE STYLES
   ================================================================ */
.nav-cart-btn {
  background: transparent;
  border: none;
  color: var(--text-light);
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.4rem;
  transition: color 0.3s;
}

.nav-cart-btn:hover {
  color: var(--gold);
}

.cart-badge {
  position: absolute;
  top: -4px;
  right: -6px;
  background: var(--gold);
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  height: 18px;
  min-width: 18px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* Overlay & Drawer */
.cart-overlay {
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10, 22, 40, 0.6);
  backdrop-filter: blur(4px);
  z-index: 9998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.cart-overlay.open {
  opacity: 1;
  pointer-events: auto;
}

.cart-drawer {
  position: fixed;
  top: 0; right: -420px;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: #ffffff;
  z-index: 9999;
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.cart-drawer.open {
  right: 0;
}

.cart-drawer-header {
  padding: 1.5rem;
  background: var(--navy);
  color: var(--text-light);
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid var(--gold);
}

.cart-drawer-header h3 {
  font-family: var(--font-cinzel);
  font-size: 1.15rem;
  color: var(--gold);
}

.cart-close-btn {
  background: none;
  border: none;
  color: var(--text-light);
  font-size: 1.2rem;
  cursor: pointer;
}

.cart-drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 1.5rem;
}

.cart-empty-msg {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--text-muted);
}

.cart-item {
  display: flex;
  gap: 12px;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.cart-item img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(0,0,0,0.1);
}

.cart-item-info {
  flex: 1;
}

.cart-item-info h4 {
  font-size: 0.95rem;
  color: var(--navy);
  margin-bottom: 4px;
}

.cart-item-price {
  color: var(--gold-dark);
  font-weight: 700;
  font-size: 0.9rem;
}

.cart-item-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
}

.cart-qty-btn {
  background: var(--cream-soft);
  border: 1px solid #DDD;
  width: 24px;
  height: 24px;
  border-radius: 4px;
  cursor: pointer;
  font-weight: 700;
}

.cart-item-remove {
  background: none;
  border: none;
  color: #E74C3C;
  font-size: 0.8rem;
  cursor: pointer;
  margin-left: auto;
}

.cart-drawer-footer {
  padding: 1.5rem;
  background: var(--cream-soft);
  border-top: 1px solid rgba(0,0,0,0.08);
}

.cart-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.2rem;
  font-size: 1.1rem;
}

.cart-total-row strong {
  color: var(--navy);
  font-size: 1.3rem;
}

.btn-select {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--gold);
  background: transparent;
  color: var(--gold-dark);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s var(--ease-premium);
  margin-top: var(--space-md);
}

.btn-select:hover {
  background: var(--gold);
  color: var(--navy);
  box-shadow: 0 6px 20px rgba(201, 169, 110, 0.3);
  transform: translateY(-2px);
}

.btn-add-cart {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 0.75rem 1.2rem;
  border-radius: var(--radius-full);
  border: none;
  background: var(--navy);
  color: var(--gold);
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: all 0.3s var(--ease-premium);
  margin-top: 8px;
  margin-left: 0;
  box-shadow: 0 4px 15px rgba(10, 22, 40, 0.2);
}

.btn-add-cart:hover {
  background: #152844;
  color: #FFF;
  box-shadow: 0 6px 20px rgba(10, 22, 40, 0.35);
  transform: translateY(-2px);
}





