/* ================================================================
   fatire — 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: 48px;
  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: 210px;
  height: 140px;
  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-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 fatire 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: 180px;
  height: 120px;
  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;
}

