/* ==========================================================================
   LYLIA BRIDAL HANDBAGS - ULTRA LUXURY DESIGN SYSTEM
   Miraggio-Inspired Editorial Aesthetics & Logo Color-Graded Theme
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@300;400;500;600;700&display=swap');

:root {
  /* Logo Color Harmony: Plum, Burgundy, Rose-Gold & Champagne */
  --color-plum-950: #1C0710;
  --color-plum-900: #2C0B19;
  --color-plum-800: #3E0F23;
  --color-plum-700: #4A1226; /* Primary logo brand shade */
  --color-plum-600: #5C1733;
  --color-plum-500: #752044;
  --color-plum-100: #F6EBF0;
  --color-plum-50:  #FAF2F5;

  /* Rose Gold & Champagne Foils */
  --color-gold-300: #EED7C5;
  --color-gold-400: #DEB493;
  --color-gold-500: #C59B73; /* Primary metallic accent */
  --color-gold-600: #B2855B;
  --color-gold-700: #936942;
  --color-gold-gradient: linear-gradient(135deg, #ECC8AF 0%, #C59B73 50%, #AC7D54 100%);
  --color-gold-gradient-soft: linear-gradient(135deg, rgba(236,200,175,0.15) 0%, rgba(197,155,115,0.2) 100%);
  --color-gold-glow: 0 4px 20px rgba(197, 155, 115, 0.28);

  /* Silk Alabaster & Warm Ivory Canvas */
  --bg-body: #FAF7F5;
  --bg-surface: #FFFFFF;
  --bg-surface-alt: #F5EFEB;
  --bg-silk: #F9F4F0;
  --border-light: #EFE4DC;
  --border-gold: #E5CEBD;

  /* Typography */
  --text-main: #26121B;
  --text-muted: #6C5560;
  --text-light: #9B8690;
  --text-white: #FFFFFF;

  --font-serif: 'Playfair Display', 'Cormorant Garamond', Georgia, serif;
  --font-display: 'Cormorant Garamond', serif;
  --font-sans: 'Montserrat', 'Plus Jakarta Sans', -apple-system, sans-serif;

  /* Layout & Elevations */
  --max-width: 1340px;
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-full: 9999px;

  --shadow-sm: 0 2px 8px rgba(44, 11, 25, 0.04);
  --shadow-md: 0 8px 24px rgba(44, 11, 25, 0.08);
  --shadow-lg: 0 16px 40px rgba(44, 11, 25, 0.12);
  --shadow-luxury: 0 20px 48px rgba(74, 18, 38, 0.16);

  --transition: all 0.35s cubic-bezier(0.2, 0, 0.2, 1);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-body);
  color: var(--text-main);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

button {
  font-family: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ==========================================================================
   TOP ANNOUNCEMENT BAR (MIRAGGIO STYLE)
   ========================================================================== */
.announcement-bar {
  background: linear-gradient(90deg, var(--color-plum-900), var(--color-plum-800), var(--color-plum-900));
  color: var(--color-gold-300);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  padding: 0.55rem 1rem;
  border-bottom: 1px solid rgba(197, 155, 115, 0.25);
  position: relative;
  z-index: 100;
  overflow: hidden;
}

.announcement-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.announcement-ticker {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  margin: 0 auto;
}

.announcement-ticker .badge-pill {
  background: var(--color-gold-gradient);
  color: var(--color-plum-950);
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  letter-spacing: 0.08em;
}

.announcement-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.75rem;
}

.announcement-links a:hover {
  color: #FFFFFF;
}

/* ==========================================================================
   STICKY LUXURY HEADER & NAVIGATION (IPHONE FROSTED GLASS EFFECT)
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 95;
  background: rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(28px) saturate(200%);
  -webkit-backdrop-filter: blur(28px) saturate(200%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
  box-shadow: 0 8px 32px rgba(44, 11, 25, 0.05), inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: var(--transition);
}

.site-header.scrolled {
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(32px) saturate(210%);
  -webkit-backdrop-filter: blur(32px) saturate(210%);
  box-shadow: 0 10px 36px rgba(44, 11, 25, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.95);
  border-bottom: 1px solid rgba(239, 228, 220, 0.8);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1.5rem;
}

/* Left Nav Links - Clean & Elegantly Spaced */
.nav-center {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  flex-wrap: nowrap;
}

.nav-link {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-plum-900);
  position: relative;
  padding: 0.5rem 0.2rem;
  white-space: nowrap;
  transition: color 0.25s ease;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background: var(--color-gold-gradient);
  transition: width 0.3s cubic-bezier(0.2, 0, 0.2, 1);
  border-radius: 2px;
}

.nav-link:hover {
  color: var(--color-plum-600);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link.highlight {
  color: var(--color-plum-600);
  font-weight: 700;
}

/* Left Brand Logo */
.brand-logo-container {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
}

.brand-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: var(--radius-xs);
  filter: drop-shadow(0 2px 8px rgba(74, 18, 38, 0.15));
  transition: transform 0.3s ease;
}

.brand-logo:hover .brand-logo-img {
  transform: scale(1.04);
}

.brand-title-wrap {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-plum-800);
  line-height: 1;
}

.brand-tagline {
  font-family: var(--font-sans);
  font-size: 0.54rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-gold-600);
  margin-top: 3px;
}
  letter-spacing: 0.14em;
  color: var(--color-plum-800);
  line-height: 1;
}

.brand-tagline {
  font-family: var(--font-sans);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--color-gold-600);
  margin-top: 3px;
}

/* Right Nav Utilities */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
}

.nav-icon-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: var(--color-plum-800);
  position: relative;
  transition: var(--transition);
}

.nav-icon-btn:hover {
  background: var(--bg-surface-alt);
  color: var(--color-plum-600);
  transform: translateY(-1px);
}

.nav-icon-btn svg {
  width: 21px;
  height: 21px;
}

.nav-badge-count {
  position: absolute;
  top: 4px;
  right: 4px;
  background: var(--color-plum-600);
  color: #FFFFFF;
  font-size: 0.65rem;
  font-weight: 700;
  min-width: 18px;
  height: 18px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 4px;
  border: 2px solid #FFFFFF;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobile-toggle-btn {
  display: none;
}

/* ==========================================================================
   HERO EDITORIAL SHOWCASE (MIRAGGIO LUXE STYLE)
   ========================================================================== */
.hero-section {
  position: relative;
  background: linear-gradient(180deg, #FAF4F0 0%, #FAF7F5 100%);
  padding: 3rem 0 4rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border-light);
}

.hero-bg-accent {
  position: absolute;
  top: -100px;
  right: -80px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(236,200,175,0.3) 0%, rgba(250,247,245,0) 70%);
  filter: blur(50px);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 3.5rem;
}

.hero-content {
  max-width: 620px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(197, 155, 115, 0.16);
  border: 1px solid var(--border-gold);
  color: var(--color-plum-700);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 0.35rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.25rem;
}

.hero-eyebrow svg {
  width: 14px;
  height: 14px;
  color: var(--color-gold-600);
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 4.2vw, 3.8rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--color-plum-900);
  margin-bottom: 1.25rem;
}

.hero-title span {
  font-style: italic;
  background: var(--color-gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-weight: 400;
}

.hero-cta-group {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--color-plum-700);
  color: #FFFFFF;
  padding: 0.95rem 2rem;
  font-size: 0.84rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: var(--radius-full);
  box-shadow: 0 8px 24px rgba(74, 18, 38, 0.28);
  border: 1px solid transparent;
  transition: var(--transition);
}

.btn-primary:hover {
  background: var(--color-plum-800);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(74, 18, 38, 0.36);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: #FFFFFF;
  color: var(--color-plum-900);
  padding: 0.95rem 2rem;
  font-size: 0.84rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.btn-secondary:hover {
  background: var(--bg-surface-alt);
  border-color: var(--color-gold-500);
  color: var(--color-plum-700);
  transform: translateY(-2px);
}

.hero-trust-metrics {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.metric-item {
  display: flex;
  flex-direction: column;
}

.metric-number {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--color-plum-900);
  line-height: 1;
}

.metric-label {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-top: 4px;
}

/* Hero Visual Showcase */
.hero-visual {
  position: relative;
}

.hero-image-frame {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
  border: 4px solid #FFFFFF;
}

.hero-main-img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.hero-image-frame:hover .hero-main-img {
  transform: scale(1.04);
}

.hero-floating-card {
  position: absolute;
  bottom: 20px;
  left: -20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  animation: floatSlow 4s ease-in-out infinite;
}

@keyframes floatSlow {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.floating-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold-400);
}

.floating-card-info h4 {
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--color-plum-900);
}

.floating-card-info p {
  font-size: 0.72rem;
  color: var(--color-gold-700);
  font-weight: 600;
}

/* ==========================================================================
   CATEGORY HIGHLIGHTS / STORY BUBBLES (MIRAGGIO HIGHLIGHTS)
   ========================================================================== */
.stories-section {
  padding: 2.5rem 0 1.5rem;
  background: #FFFFFF;
  border-bottom: 1px solid var(--border-light);
}

.stories-slider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.2rem;
  overflow-x: auto;
  padding: 0.5rem 0 1rem;
  scrollbar-width: none;
}

.stories-slider::-webkit-scrollbar {
  display: none;
}

.story-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.6rem;
  text-align: center;
  cursor: pointer;
  flex-shrink: 0;
  transition: var(--transition);
}

.story-ring {
  width: 82px;
  height: 82px;
  border-radius: 50%;
  padding: 3px;
  background: var(--color-gold-gradient);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.story-item:hover .story-ring {
  transform: scale(1.08);
  box-shadow: var(--color-gold-glow);
}

.story-ring img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #FFFFFF;
}

.story-title {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--color-plum-900);
  letter-spacing: 0.04em;
}

.story-tag {
  font-size: 0.65rem;
  color: var(--color-gold-600);
  font-weight: 500;
  text-transform: uppercase;
}

/* ==========================================================================
   CURATED COLLECTION & PRODUCT SECTION
   ========================================================================== */
.collection-section {
  padding: 4.5rem 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.8rem;
}

.section-eyebrow {
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--color-gold-600);
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 600;
  color: var(--color-plum-900);
  line-height: 1.2;
}

.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin: 1rem 0;
}

.section-divider .line {
  width: 48px;
  height: 1px;
  background: var(--color-gold-400);
}

.section-divider .diamond {
  width: 8px;
  height: 8px;
  background: var(--color-plum-700);
  transform: rotate(45deg);
}

.section-subtitle {
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Filter Tabs */
.filter-tabs-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.8rem;
}

.filter-tab {
  padding: 0.6rem 1.4rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-light);
  background: #FFFFFF;
  color: var(--text-muted);
  cursor: pointer;
  transition: var(--transition);
}

.filter-tab:hover {
  border-color: var(--color-gold-500);
  color: var(--color-plum-700);
}

.filter-tab.active {
  background: var(--color-plum-700);
  color: #FFFFFF;
  border-color: var(--color-plum-700);
  box-shadow: 0 4px 14px rgba(74, 18, 38, 0.25);
}

/* Product Cards Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 2rem;
}

.product-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
  position: relative;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-luxury);
  border-color: var(--border-gold);
}

/* Card Media */
.product-media {
  position: relative;
  aspect-ratio: 1 / 1;
  background: #FAF7F5;
  overflow: hidden;
}

.product-img-primary,
.product-img-hover {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.5s ease, transform 0.6s cubic-bezier(0.2, 0, 0.2, 1);
}

.product-img-hover {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}

.product-card:hover .product-img-primary {
  transform: scale(1.06);
}

.product-card:hover .product-img-hover {
  opacity: 1;
  transform: scale(1.06);
}

/* Floating Badges */
.badge-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  z-index: 2;
  box-shadow: 0 2px 6px rgba(0,0,0,0.12);
}

.badge-gold {
  background: var(--color-gold-gradient);
  color: var(--color-plum-950);
}

.badge-plum {
  background: var(--color-plum-700);
  color: #FFFFFF;
}

.badge-rose {
  background: #8A465B;
  color: #FFFFFF;
}

/* Wishlist Button */
.btn-wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-plum-900);
  z-index: 2;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  transition: var(--transition);
}

.btn-wishlist:hover {
  background: #FFFFFF;
  color: #E63946;
  transform: scale(1.1);
}

.btn-wishlist.active {
  color: #E63946;
}

.btn-wishlist.active svg {
  fill: #E63946;
}

/* Quick View Overlay Button */
.btn-quick-view {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  color: var(--color-plum-900);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.6rem 1.2rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-gold);
  white-space: nowrap;
  box-shadow: 0 4px 14px rgba(0,0,0,0.1);
  transition: all 0.3s cubic-bezier(0.2, 0, 0.2, 1);
  z-index: 2;
}

.product-card:hover .btn-quick-view {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.btn-quick-view:hover {
  background: var(--color-plum-700);
  color: #FFFFFF;
  border-color: var(--color-plum-700);
}

/* Product Info */
.product-info {
  padding: 1.25rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.product-category-title {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-gold-600);
  font-weight: 600;
  margin-bottom: 0.25rem;
}

.product-title {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--color-plum-900);
  line-height: 1.35;
  margin-bottom: 0.5rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}

.stars {
  color: #D4AF37;
  letter-spacing: 1px;
}

.rating-score {
  font-weight: 700;
  color: var(--color-plum-900);
}

.review-count {
  color: var(--text-light);
  font-size: 0.7rem;
}

/* Swatches */
.product-swatches {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 1rem;
}

.swatch-dot {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 0 1px #D6C2B6;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.swatch-dot:hover,
.swatch-dot.active {
  transform: scale(1.2);
  box-shadow: 0 0 0 2px var(--color-plum-700);
}

/* Price Row */
.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 0.6rem;
  margin-bottom: 1rem;
  margin-top: auto;
}

.price-current {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-plum-900);
}

.price-original {
  font-size: 0.85rem;
  color: var(--text-light);
  text-decoration: line-through;
}

.price-discount {
  font-size: 0.7rem;
  font-weight: 700;
  color: #2E7D32;
  background: #E8F5E9;
  padding: 2px 6px;
  border-radius: var(--radius-xs);
}

/* Add to Bag Button */
.btn-add-to-bag {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--bg-surface-alt);
  color: var(--color-plum-900);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: var(--transition);
}

.btn-add-to-bag:hover {
  background: var(--color-plum-700);
  color: #FFFFFF;
  border-color: var(--color-plum-700);
  box-shadow: 0 4px 12px rgba(74, 18, 38, 0.22);
}

.btn-add-to-bag svg {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   CRAFTSMANSHIP & ATELIER SHOWCASE
   ========================================================================== */
.atelier-section {
  background: linear-gradient(135deg, var(--color-plum-950) 0%, var(--color-plum-900) 100%);
  color: #FFFFFF;
  padding: 5.5rem 0;
  position: relative;
  overflow: hidden;
}

.atelier-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  gap: 4rem;
}

.atelier-content .section-eyebrow {
  color: var(--color-gold-400);
}

.atelier-content .section-title {
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}

.atelier-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.8;
  margin-bottom: 2rem;
}

.craft-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
}

.craft-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.craft-icon-wrap {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(197, 155, 115, 0.15);
  border: 1px solid var(--color-gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-400);
  flex-shrink: 0;
}

.craft-icon-wrap svg {
  width: 20px;
  height: 20px;
}

.craft-feature-item h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.craft-feature-item p {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

.atelier-visual-collage {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 1.25rem;
}

.atelier-collage-col {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.atelier-img-box {
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0,0,0,0.3);
  border: 1px solid rgba(197, 155, 115, 0.3);
}

.atelier-img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.atelier-img-box:hover img {
  transform: scale(1.05);
}

/* ==========================================================================
   BRIDE REVIEWS & TESTIMONIALS (LOVED BY 10,000+ BRIDES)
   ========================================================================== */
.testimonials-section {
  padding: 5rem 0;
  background: var(--bg-surface-alt);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
}

.review-card {
  background: #FFFFFF;
  border-radius: var(--radius-md);
  border: 1px solid var(--border-light);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}

.review-stars {
  color: #D4AF37;
  font-size: 1.1rem;
  margin-bottom: 1rem;
}

.review-title {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-plum-900);
  margin-bottom: 0.75rem;
}

.review-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
  flex-grow: 1;
}

.review-author-row {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border-light);
}

.review-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--color-gold-400);
}

.review-author-meta h5 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-plum-900);
}

.review-author-meta span {
  font-size: 0.74rem;
  color: var(--text-light);
}

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 0.68rem;
  font-weight: 600;
  color: #2E7D32;
  margin-top: 2px;
}

/* ==========================================================================
   INSTAGRAM BRIDAL LOOKBOOK FEED
   ========================================================================== */
.lookbook-section {
  padding: 4rem 0;
  background: #FFFFFF;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.insta-item {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  border-radius: var(--radius-sm);
  cursor: pointer;
}

.insta-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.insta-item:hover img {
  transform: scale(1.08);
}

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(74, 18, 38, 0.75);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.insta-item:hover .insta-overlay {
  opacity: 1;
}

/* ==========================================================================
   LUXURY TRUST PILLARS (MIRAGGIO GUARANTEE)
   ========================================================================== */
.trust-pillars-section {
  background: #FAF5F1;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 2.5rem 0;
}

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.pillar-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pillar-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #FFFFFF;
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-plum-700);
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

.pillar-icon-box svg {
  width: 22px;
  height: 22px;
}

.pillar-item h4 {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--color-plum-900);
  margin-bottom: 2px;
}

.pillar-item p {
  font-size: 0.74rem;
  color: var(--text-muted);
}

/* ==========================================================================
   SITE FOOTER
   ========================================================================== */
.site-footer {
  background: var(--color-plum-950);
  color: rgba(255, 255, 255, 0.78);
  padding: 5rem 0 2rem;
  border-top: 2px solid var(--color-gold-500);
}

.footer-top-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 3.5rem;
  margin-bottom: 4rem;
}

.footer-brand .brand-logo-img {
  filter: brightness(1.2) drop-shadow(0 2px 10px rgba(197, 155, 115, 0.4));
  margin-bottom: 1.25rem;
}

.footer-brand p {
  font-size: 0.85rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.5rem;
}

.footer-heading {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: #FFFFFF;
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
  position: relative;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.65);
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--color-gold-400);
  transform: translateX(4px);
}

/* Newsletter Box */
.newsletter-desc {
  font-size: 0.84rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 1.2rem;
}

.newsletter-form {
  display: flex;
  gap: 0.5rem;
}

.newsletter-input {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(197, 155, 115, 0.3);
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  color: #FFFFFF;
  font-size: 0.84rem;
  outline: none;
}

.newsletter-input:focus {
  border-color: var(--color-gold-400);
}

.newsletter-btn {
  background: var(--color-gold-gradient);
  color: var(--color-plum-950);
  font-weight: 700;
  font-size: 0.78rem;
  padding: 0 1.4rem;
  border-radius: var(--radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.45);
}

.payment-badges-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.payment-pill {
  background: rgba(255, 255, 255, 0.1);
  padding: 4px 10px;
  border-radius: var(--radius-xs);
  font-size: 0.7rem;
  font-weight: 600;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

/* ==========================================================================
   SLIDE-OUT CART DRAWER (RIGHT SIDEBAR)
   ========================================================================== */
.cart-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 11, 25, 0.55);
  backdrop-filter: blur(4px);
  z-index: 998;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.cart-drawer-overlay.open {
  opacity: 1;
  visibility: visible;
}

.cart-drawer {
  position: fixed;
  top: 0;
  right: -480px;
  width: 100%;
  max-width: 440px;
  height: 100vh;
  background: #FFFFFF;
  z-index: 999;
  box-shadow: -8px 0 32px rgba(44, 11, 25, 0.2);
  display: flex;
  flex-direction: column;
  transition: right 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.cart-drawer.open {
  right: 0;
}

.cart-header {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-header h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--color-plum-900);
}

.btn-close-drawer {
  font-size: 1.5rem;
  color: var(--color-plum-900);
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.btn-close-drawer:hover {
  background: var(--bg-surface-alt);
}

/* Free Shipping Goal Bar */
.cart-shipping-goal {
  padding: 0.85rem 1.5rem;
  background: #FAF4F0;
  border-bottom: 1px solid var(--border-light);
}

.shipping-progress-text {
  font-size: 0.76rem;
  font-weight: 600;
  color: var(--color-plum-800);
  margin-bottom: 0.45rem;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.shipping-progress-track {
  width: 100%;
  height: 6px;
  background: #EFE4DC;
  border-radius: var(--radius-full);
  overflow: hidden;
}

.shipping-progress-bar {
  height: 100%;
  width: 60%;
  background: var(--color-gold-gradient);
  border-radius: var(--radius-full);
  transition: width 0.4s ease;
}

/* Cart Items Scroll List */
.cart-body {
  padding: 1.25rem 1.5rem;
  flex-grow: 1;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.cart-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
  padding: 2rem 1rem;
}

.cart-empty-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--bg-surface-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-gold-600);
  margin-bottom: 1.25rem;
}

.cart-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border-light);
}

.cart-item-img {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  border: 1px solid var(--border-light);
}

.cart-item-details h4 {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--color-plum-900);
  line-height: 1.3;
  margin-bottom: 0.25rem;
}

.cart-item-variant {
  font-size: 0.72rem;
  color: var(--text-light);
  margin-bottom: 0.5rem;
}

.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.cart-item-price {
  font-weight: 700;
  font-size: 0.92rem;
  color: var(--color-plum-900);
}

.quantity-stepper {
  display: flex;
  align-items: center;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xs);
  overflow: hidden;
}

.quantity-stepper button {
  width: 26px;
  height: 26px;
  background: var(--bg-surface-alt);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-plum-900);
}

.quantity-stepper button:hover {
  background: var(--color-plum-700);
  color: #FFFFFF;
}

.quantity-stepper span {
  width: 30px;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
}

.btn-remove-item {
  color: #E63946;
  font-size: 0.74rem;
  margin-left: 0.5rem;
}

/* Cart Footer & Checkout Action */
.cart-footer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid var(--border-light);
  background: #FAF7F5;
}

.coupon-box {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.coupon-input {
  flex-grow: 1;
  padding: 0.55rem 0.85rem;
  border: 1px dashed var(--border-gold);
  border-radius: var(--radius-xs);
  font-size: 0.8rem;
  text-transform: uppercase;
  background: #FFFFFF;
  outline: none;
}

.btn-apply-coupon {
  padding: 0.55rem 1rem;
  background: var(--color-plum-800);
  color: #FFFFFF;
  border-radius: var(--radius-xs);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.cart-summary-line {
  display: flex;
  justify-content: space-between;
  font-size: 0.84rem;
  margin-bottom: 0.4rem;
  color: var(--text-muted);
}

.cart-summary-line.total {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--color-plum-900);
  padding-top: 0.6rem;
  border-top: 1px solid var(--border-light);
  margin-top: 0.5rem;
  margin-bottom: 1rem;
}

.btn-checkout-now {
  width: 100%;
  padding: 0.95rem 1.5rem;
  background: var(--color-plum-700);
  color: #FFFFFF;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 8px 24px rgba(74, 18, 38, 0.28);
}

.btn-checkout-now:hover {
  background: var(--color-plum-800);
  transform: translateY(-2px);
}

/* ==========================================================================
   QUICK VIEW MODAL
   ========================================================================== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(30, 8, 17, 0.6);
  backdrop-filter: blur(6px);
  z-index: 995;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: var(--transition);
}

.modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.quick-view-modal {
  background: #FFFFFF;
  width: 100%;
  max-width: 880px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-luxury);
  border: 1px solid var(--border-gold);
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-height: 90vh;
}

.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #FAF7F5;
  color: var(--color-plum-900);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  font-size: 1.25rem;
}

.modal-gallery {
  background: #FAF5F1;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.modal-main-image {
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--border-light);
}

.modal-main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-thumb-row {
  display: flex;
  gap: 0.6rem;
}

.modal-thumb {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-xs);
  object-fit: cover;
  border: 2px solid transparent;
  cursor: pointer;
}

.modal-thumb.active {
  border-color: var(--color-plum-700);
}

.modal-info-panel {
  padding: 2.5rem 2rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
}

.modal-info-panel .product-title {
  font-size: 1.45rem;
  margin-bottom: 0.5rem;
}

.modal-desc {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 1rem 0;
}

.modal-specs-list {
  list-style: none;
  font-size: 0.82rem;
  color: var(--color-plum-900);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  background: var(--bg-surface-alt);
  padding: 1rem;
  border-radius: var(--radius-sm);
}

.modal-specs-list li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.modal-specs-list svg {
  color: var(--color-gold-600);
  flex-shrink: 0;
}

/* ==========================================================================
   SEARCH OVERLAY
   ========================================================================== */
.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  z-index: 996;
  opacity: 0;
  visibility: hidden;
  padding: 3rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: var(--transition);
}

.search-overlay.open {
  opacity: 1;
  visibility: visible;
}

.search-bar-wrap {
  width: 100%;
  max-width: 680px;
  position: relative;
  margin-bottom: 2rem;
}

.search-input-field {
  width: 100%;
  padding: 1.25rem 3.5rem 1.25rem 1.5rem;
  font-size: 1.2rem;
  font-family: var(--font-serif);
  border: none;
  border-bottom: 2px solid var(--color-gold-400);
  background: transparent;
  outline: none;
  color: var(--color-plum-900);
}

.search-close-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--color-plum-900);
}

.popular-search-tags {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
  max-width: 680px;
}

.popular-tag-pill {
  padding: 0.4rem 0.9rem;
  border-radius: var(--radius-full);
  background: var(--bg-surface-alt);
  font-size: 0.78rem;
  color: var(--color-plum-900);
  cursor: pointer;
}

.popular-tag-pill:hover {
  background: var(--color-gold-500);
  color: #FFFFFF;
}

/* ==========================================================================
   TOAST NOTIFICATION
   ========================================================================== */
.toast-notice {
  position: fixed;
  bottom: 24px;
  right: 24px;
  background: var(--color-plum-900);
  color: #FFFFFF;
  border-left: 4px solid var(--color-gold-400);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-luxury);
  display: flex;
  align-items: center;
  gap: 0.85rem;
  z-index: 1000;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.3s ease;
}

.toast-notice.show {
  transform: translateY(0);
  opacity: 1;
}

.toast-icon {
  color: var(--color-gold-400);
  font-size: 1.25rem;
}

/* ==========================================================================
   RESPONSIVE DESIGN (MOBILE & TABLET)
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-content {
    margin: 0 auto;
  }
  .hero-cta-group,
  .hero-trust-metrics {
    justify-content: center;
  }
  .hero-visual {
    max-width: 500px;
    margin: 0 auto;
  }
  .atelier-grid {
    grid-template-columns: 1fr;
  }
  .footer-top-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }
  .pillars-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .insta-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* ==========================================================================
   FLOATING WHATSAPP BUTTON (NUMBER: 7508162016)
   ========================================================================== */
.whatsapp-floating-wrap {
  position: fixed;
  bottom: 26px;
  left: 26px;
  z-index: 992;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  text-decoration: none;
  filter: drop-shadow(0 10px 24px rgba(37, 211, 102, 0.35));
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.whatsapp-floating-wrap:hover {
  transform: translateY(-4px) scale(1.03);
}

.whatsapp-circle-icon {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2.5px solid #FFFFFF;
  box-shadow: 0 4px 16px rgba(18, 140, 126, 0.4);
  position: relative;
}

.whatsapp-circle-icon::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(37, 211, 102, 0.5);
  animation: waPulse 2s cubic-bezier(0.24, 0, 0.38, 1) infinite;
}

@keyframes waPulse {
  0% { transform: scale(0.9); opacity: 1; }
  100% { transform: scale(1.4); opacity: 0; }
}

.whatsapp-circle-icon svg {
  width: 30px;
  height: 30px;
  fill: currentColor;
}

.whatsapp-glass-pill {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  padding: 0.55rem 1.1rem;
  box-shadow: 0 6px 20px rgba(44, 11, 25, 0.1);
  display: flex;
  flex-direction: column;
}

.whatsapp-glass-pill .wa-title {
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--color-plum-900);
  line-height: 1.2;
}

.whatsapp-glass-pill .wa-subtitle {
  font-size: 0.65rem;
  color: #128C7E;
  font-weight: 600;
  letter-spacing: 0.02em;
}

/* ==========================================================================
   IPHONE FROSTED GLASS MOBILE MENU DRAWER
   ========================================================================== */
.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 11, 25, 0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 994;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-menu-overlay.open {
  opacity: 1;
  visibility: visible;
}

.mobile-menu-drawer {
  position: fixed;
  top: 0;
  left: -380px;
  width: 100%;
  max-width: 340px;
  height: 100vh;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(35px) saturate(200%);
  -webkit-backdrop-filter: blur(35px) saturate(200%);
  border-right: 1px solid rgba(255, 255, 255, 0.7);
  box-shadow: 12px 0 40px rgba(44, 11, 25, 0.16), inset -1px 0 0 rgba(255, 255, 255, 0.8);
  z-index: 995;
  display: flex;
  flex-direction: column;
  transition: left 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  padding: 1.5rem;
}

.mobile-menu-drawer.open {
  left: 0;
}

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(197, 155, 115, 0.3);
  margin-bottom: 1.5rem;
}

.mobile-menu-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex-grow: 1;
}

.mobile-nav-item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-plum-900);
  background: rgba(255, 255, 255, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: var(--transition);
}

.mobile-nav-item a:hover {
  background: rgba(255, 255, 255, 0.95);
  color: var(--color-plum-600);
  border-color: var(--border-gold);
  transform: translateX(4px);
}

.mobile-contact-card {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-md);
  padding: 1.25rem;
  margin-top: auto;
  box-shadow: var(--shadow-sm);
}

.mobile-contact-card h5 {
  font-size: 0.82rem;
  color: var(--color-plum-900);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
  letter-spacing: 0.08em;
}

.mobile-contact-link {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
  transition: color 0.2s ease;
}

.mobile-contact-link:hover {
  color: var(--color-plum-700);
}

/* ==========================================================================
   BESPOKE BRIDAL ENQUIRY MODAL (EMAIL: lyliaofficiall@gmail.com)
   ========================================================================== */
.enquiry-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(44, 11, 25, 0.65);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 1050;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.enquiry-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}

.enquiry-modal-card {
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(30px) saturate(190%);
  -webkit-backdrop-filter: blur(30px) saturate(190%);
  border: 1px solid var(--border-gold);
  width: 100%;
  max-width: 560px;
  border-radius: var(--radius-lg);
  padding: 2.2rem;
  box-shadow: var(--shadow-luxury);
  position: relative;
  animation: modalPop 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@media (max-width: 768px) {
  .whatsapp-glass-pill {
    display: none;
  }
  .whatsapp-floating-wrap {
    bottom: 20px;
    left: 20px;
  }
  .nav-center {
    display: none;
  }
  .mobile-toggle-btn {
    display: flex !important;
  }
}

