/* 
=============================================
   Antigravity Signature "Ultra-Luxury" Theme
   Frosted Pearl, Glassmorphism, Editorial Spreads
=============================================
*/

:root {
  /* Ultra-Premium Glass Palette */
  --bg-primary: #FAF9F6;
  --bg-gradient: linear-gradient(135deg, #FAF9F6 0%, #FFFFFF 50%, #F2EDE4 100%);
  --champagne-gold: #C9A957;
  --champagne-light: #F0E6D2;
  --liquid-gold: linear-gradient(135deg, #C9A957 0%, #E6D296 50%, #A68637 100%);
  --midnight-sapphire: #071526;
  --deep-espresso: #1B1512;
  --text-dark: #2A2E35;
  --text-muted: #7A818C;
  --wa-green: #25D366;
  
  /* Glassmorphism Tokens */
  --glass-bg: rgba(255, 255, 255, 0.65);
  --glass-border: rgba(255, 255, 255, 0.8);
  --glass-shadow: 0 15px 35px 0 rgba(7, 21, 38, 0.05);
  --glass-blur: blur(25px);

  /* Typography */
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Montserrat', 'Inter', sans-serif;
  
  /* Physics/Animation */
  --spring-smooth: cubic-bezier(0.25, 1, 0.3, 1);
  --transition-fast: 0.3s var(--spring-smooth);
  --transition-slow: 0.8s var(--spring-smooth);
}

/* Base Styles & Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  background: var(--bg-gradient);
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background: transparent;
  line-height: 1.8;
  overflow-x: hidden;
  position: relative;
}

/* Ambient Glowing Orbs Background */
body::before, body::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -2;
  animation: pulseOrb 12s infinite alternate;
}

body::before {
  top: -10%; left: -10%;
  width: 60vw; height: 60vw;
  background: rgba(201, 169, 87, 0.15);
}

body::after {
  bottom: 20%; right: -10%;
  width: 50vw; height: 50vw;
  background: rgba(7, 21, 38, 0.06);
  animation-delay: -6s;
}

@keyframes pulseOrb {
  0% { transform: scale(1) translate(0, 0); opacity: 0.6; }
  100% { transform: scale(1.1) translate(50px, -50px); opacity: 1; }
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  color: var(--midnight-sapphire);
  font-weight: 300;
}

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

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  position: relative;
}

/* =========================================
   Glass Panels (Core Antigravity Style)
========================================= */
.glass-panel {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  border-radius: 24px;
  position: relative;
  overflow: hidden;
}

/* =========================================
   Animated Liquid Buttons
========================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: 50px; /* Pill shape for modern lux */
  cursor: pointer;
  transition: all var(--transition-fast);
  position: relative;
  overflow: hidden;
  border: none;
  z-index: 1;
}

/* Button Sheen Effect */
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -150%; width: 100%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transform: skewX(-20deg);
  transition: none;
  z-index: -1;
}

.btn:hover::after {
  left: 200%;
  transition: left 0.8s ease-in-out;
}

.btn-primary, .btn-hero {
  background: var(--liquid-gold);
  color: var(--midnight-sapphire);
  padding: 18px 45px;
  box-shadow: 0 10px 30px rgba(201, 169, 87, 0.3);
}

.btn-primary:hover, .btn-hero:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 15px 40px rgba(201, 169, 87, 0.4);
}

.btn-whatsapp {
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--wa-green);
  padding: 18px 30px;
  backdrop-filter: blur(10px);
  box-shadow: var(--glass-shadow);
}

.btn-whatsapp:hover {
  background: var(--wa-green);
  color: white;
  border-color: var(--wa-green);
  transform: translateY(-4px);
}

.wa-icon {
  width: 20px;
  margin-right: 10px;
}

/* =========================================
   Floating WhatsApp Button
========================================= */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #25D366;
  border-radius: 50px;
  box-shadow: 2px 2px 15px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  animation: pulse-wa 2s infinite;
  transition: all 0.3s ease;
}

.whatsapp-float:hover {
  transform: translateY(-5px);
  background-color: #128C7E;
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

@keyframes pulse-wa {
  0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); }
  70% { transform: scale(1.05); box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
  100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* =========================================
   Live Rate Ticker
========================================= */
.live-rate-ticker {
  background: var(--champagne-light);
  color: var(--deep-espresso);
  padding: 8px 0;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-align: center;
  text-transform: uppercase;
}

/* =========================================
   Glass Header Navigation
========================================= */
.main-header {
  position: sticky;
  top: 15px;
  z-index: 90;
  margin: 0 15px; /* Floating header look */
  padding: 15px 0; /* Add proper breathing room for logo */
  transition: all var(--transition-slow);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 30px;
  position: relative;
}

.brand {
  display: flex;
  align-items: center;
  gap: 15px;
  flex-shrink: 0;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 15px;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  letter-spacing: 2px;
  color: var(--midnight-sapphire);
  margin: 0;
  line-height: 1;
}

.brand-subtitle {
  font-size: 1rem;
  letter-spacing: 5px;
  color: var(--champagne-gold);
  font-weight: 700;
}

/* Mobile: shrink logo area */
@media (max-width: 900px) {
  .site-logo { height: 70px !important; }
  .brand-title { font-size: 2rem !important; }
  .brand-subtitle { font-size: 0.75rem !important; letter-spacing: 3px !important; }
  .header-container { padding: 8px 16px !important; }
}
@media (max-width: 480px) {
  .site-logo { height: 55px !important; }
  .brand-title { font-size: 1.6rem !important; }
  .logo-link { gap: 10px !important; }
}

.site-logo {
  height: 110px;
  width: auto;
  /* Blend pure black logos perfectly into glass */
  mix-blend-mode: multiply; 
  transition: transform 0.3s ease;
  flex-shrink: 0;
  object-fit: contain;
}

.site-logo:hover {
  transform: scale(1.05);
}

.nav-links {
  display: flex;
  gap: 25px;
}

.nav-links a {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--midnight-sapphire);
  transition: color var(--transition-fast);
  position: relative;
  white-space: nowrap;
}

/* Mobile Nav Dropdown Fix */
@media (max-width: 900px) {
  .main-header { position: relative; top: 0; margin: 0; border-radius: 0; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: rgba(10, 20, 40, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    padding: 30px;
    border-radius: 0 0 20px 20px;
    text-align: center;
    z-index: 200;
    gap: 20px;
  }
  .nav-links.active {
    display: flex;
  }
  .nav-links a { color: #fff; }
  .mobile-menu-toggle { display: flex; }
}

.nav-links a::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 2px;
  bottom: -5px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--champagne-gold);
  transition: width var(--transition-fast);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-links a:hover {
  color: var(--champagne-gold);
}

.btn-header {
  background: var(--liquid-gold);
  color: var(--midnight-sapphire) !important;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 700;
  box-shadow: 0 5px 15px rgba(201, 169, 87, 0.3);
}

.btn-header::after {
  display: none !important; /* Hide underline for this button */
}

.btn-header:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(201, 169, 87, 0.4);
  color: var(--midnight-sapphire) !important;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  z-index: 999;
}

.mobile-menu-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--midnight-sapphire);
  transition: all 0.3s ease;
  transform-origin: 1px center;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  background-color: #fff;
}
.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}
.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  background-color: #fff;
}

/* =========================================
   Hero Section (Editorial Parallax - Original Design)
========================================= */
.hero-section {
  position: relative;
  min-height: 85vh;
  margin: 20px;
  border-radius: 30px;
  overflow: hidden;
  display: flex;
  align-items: center;
  box-shadow: 0 30px 60px rgba(0,0,0,0.08);
  background: var(--bg-gradient);
}

.hero-image-area {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  z-index: 1;
}

/* Remove dark cinematic overlay - keep image bright and warm */
.hero-image-area::after {
  display: none;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  animation: heroKenBurns 25s infinite alternate ease-in-out;
}

.hero-video {
  width: calc(100% - 40px);
  height: calc(100% - 40px);
  margin: 20px;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

@keyframes heroKenBurns {
  0% { transform: scale(1.0); }
  100% { transform: scale(1.08); }
}

.hero-content {
  position: static;
}

.hero-text-area {
  position: absolute;
  top: 50%;
  left: 8%;
  transform: translateY(-50%);
  z-index: 10;
  /* Warm semi-transparent cream/white glass box */
  background: rgba(255, 250, 240, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 60px 70px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 20px 60px rgba(0,0,0,0.1);
  max-width: 420px;
}

.headline {
  font-size: 5.5rem;
  line-height: 0.9;
  margin-bottom: 20px;
  color: var(--midnight-sapphire);  /* Dark navy, matches reference */
  font-weight: 700;
  letter-spacing: -2px;
  text-shadow: none;
}

.thin-lowercase {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: 3.5rem;
  letter-spacing: 1px;
  font-style: italic;
  display: block;
  color: var(--champagne-gold);
  margin-left: 10px;
  margin-top: 0;
}

/* =========================================
   Section Titles & Watermarks
========================================= */
.section-heading {
  position: relative;
  margin-bottom: 80px;
  z-index: 1;
}

.section-title {
  font-size: 2.5rem;
  color: var(--midnight-sapphire);
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 6px;
  text-align: center;
  position: relative;
}

/* Ultra-Luxury Watermark Behind Title */
.section-title[data-text]::before {
  content: attr(data-text);
  position: absolute;
  font-size: 8vw;
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 700;
  color: rgba(201, 169, 87, 0.04);
  top: -60%;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  z-index: -1;
  pointer-events: none;
}

/* =========================================
   Categories Slider (3D Tilt Rings)
========================================= */
.categories-section {
  padding: 60px 0 40px;
}

.categories-container {
  display: flex;
  flex-wrap: wrap; /* Fixes horizontal cutoff issues */
  justify-content: center;
  align-items: center;
  gap: 50px;
  padding: 40px 20px;
}

.categories-container::-webkit-scrollbar { display: none; }

.category-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 140px;
  perspective: 1000px; /* Enable 3D */
}

.category-circle {
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  padding: 5px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  margin-bottom: 25px;
  transition: all 0.6s var(--spring-smooth);
  overflow: hidden;
  position: relative;
}

/* Image perfectly fills the inner ring */
.category-circle img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  transition: transform 0.8s var(--spring-smooth);
}

.category-item:hover .category-circle {
  transform: translateY(-15px) rotateX(10deg) rotateY(-10deg);
  box-shadow: -15px 25px 40px rgba(201, 169, 87, 0.2);
  border-color: var(--champagne-gold);
}

.category-item:hover .category-circle img {
  transform: scale(1.1);
}

.category-item h3 {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  color: var(--text-dark);
}

/* =========================================
   Product Showcases (Asymmetrical Editorial)
========================================= */
.product-details-section {
  padding: 120px 0;
}

.product-container {
  display: grid;
  /* Asymmetrical: Image is 55%, Text is 45% */
  grid-template-columns: 55% 45%; 
  align-items: center;
  /* Overlapping magic */
  gap: 0;
}

/* Alternate Layout flips the grid */
.product-container.alt-layout {
  grid-template-columns: 45% 55%;
}

.product-gallery {
  z-index: 2;
  position: relative;
}

/* Frame hovering with glass */
.image-wrapper {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  padding: 20px;
  border: 1px solid var(--glass-border);
  box-shadow: 0 25px 60px rgba(7, 21, 38, 0.08);
  border-radius: 30px;
  border-top-right-radius: 4px; /* Brutalist elegant touch */
  transition: transform 0.8s var(--spring-smooth);
}

.image-wrapper:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 35px 70px rgba(201, 169, 87, 0.15);
}

.image-wrapper img {
  border-radius: 20px;
  border-top-right-radius: 2px;
}

/* Text Box Overlaps the Image */
.product-info {
  background: var(--glass-bg);
  backdrop-filter: blur(40px);
  padding: 80px 60px 80px 100px;
  border-radius: 30px;
  border-top-left-radius: 4px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
  z-index: 1;
  /* Pull it left directly under the image */
  margin-left: -80px; 
}

/* Reverse overlap for alt-layout */
.alt-layout .product-gallery {
  order: 2;
  z-index: 2;
}
.alt-layout .product-info {
  order: 1;
  margin-left: 0;
  margin-right: -80px; /* Pull it right under the image */
  padding: 80px 100px 80px 60px;
  border-radius: 30px;
  border-top-right-radius: 4px;
  border-top-left-radius: 30px;
}

.badges {
  display: flex;
  gap: 15px;
  margin-bottom: 30px;
}

.badge {
  padding: 8px 16px;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 50px;
  letter-spacing: 2px;
}

.gold-badge {
  background: var(--liquid-gold);
  color: var(--midnight-sapphire);
}

.authentic-badge {
  background: transparent;
  color: var(--midnight-sapphire);
  border: 1px solid var(--midnight-sapphire);
}

.product-title {
  font-size: 3rem;
  margin-bottom: 24px;
  line-height: 1.1;
  color: var(--midnight-sapphire);
  font-weight: 400;
}

.product-description {
  font-size: 1.05rem;
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 45px;
  font-weight: 300;
}

.product-actions {
  display: flex;
  gap: 20px;
}
.product-actions .btn {
  flex: 1;
}

/* =========================================
   Location / Map Section
========================================= */
.map-section {
  width: 90%;
  max-width: 1200px;
  height: 300px;
  margin: 0 auto 40px auto;
}

.map-section iframe {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}

/* =========================================
   Glass Footer
========================================= */
.main-footer {
  margin: 0;
  background: var(--midnight-sapphire);
  color: #fff;
  padding: 60px 40px 30px;
  position: relative;
  overflow: hidden;
  border-radius: 0;
}

.main-footer::before {
  content: "GPR";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-serif);
  font-size: 35vw;
  color: rgba(255, 255, 255, 0.03);
  z-index: 0;
  pointer-events: none;
  line-height: 1;
}

.footer-content {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 50px;
  align-items: start;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 60px;
  margin-bottom: 40px;
}

/* Brand column */
.footer-brand-wrap {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 20px;
}
.footer-brand-logo {
  height: 85px;
  object-fit: contain;
}
.footer-tagline-sub {
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  color: #d4af70;
  margin-top: 5px;
  font-style: italic;
}
.footer-since {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  margin-top: 10px;
}

/* Social column */
.footer-social-col h4 {
  color: var(--champagne-gold);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 25px;
  text-transform: uppercase;
}
.footer-social-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.footer-social-link {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.3s ease;
}
.footer-social-link:hover {
  color: var(--champagne-gold);
}

.footer-brand-col .footer-logo {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: var(--liquid-gold);
  line-height: 1;
  margin: 0;
}

.footer-brand-col .footer-subtitle {
  display: block;
  font-size: 0.85rem;
  letter-spacing: 8px;
  color: var(--pearl-white);
  margin-bottom: 25px;
  font-weight: 700;
}

.footer-tagline {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  line-height: 1.6;
  max-width: 300px;
}

.footer-links-col h4, .footer-contact-col h4 {
  color: var(--champagne-gold);
  font-family: var(--font-serif);
  font-size: 1.2rem;
  letter-spacing: 2px;
  margin-bottom: 25px;
  text-transform: uppercase;
}

.footer-links-col a {
  display: block;
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  margin-bottom: 15px;
  transition: color 0.3s ease;
}

.footer-links-col a:hover {
  color: var(--liquid-gold);
}

.footer-contact-col p {
  color: rgba(255,255,255,0.6);
  line-height: 1.8;
  margin-bottom: 20px;
}

.footer-wa {
  display: inline-block;
  color: var(--midnight-sapphire) !important;
  background: var(--liquid-gold);
  padding: 10px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.9rem;
  transition: transform 0.3s ease;
}

.footer-wa:hover {
  transform: translateY(-3px);
  color: var(--midnight-sapphire) !important;
}

.footer-copyright {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.85rem;
}

.designer-credit {
  letter-spacing: 1px;
}

.designer-link {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-decoration: none;
  font-weight: 800;
  font-size: 1.05em;
  transition: all 0.3s ease;
}

.designer-link:hover {
  filter: brightness(1.2);
}

/* =========================================
   Gallery Grid (For subpages)
========================================= */
.gallery-section { padding: 80px 0 120px; }
.gallery-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
}
.gallery-grid > * {
  width: calc(33.333% - 27px); /* 3 columns minus gap */
}

/* =========================================
   Media Queries (Responsive Magic)
========================================= */
@media (max-width: 1024px) {
  .product-container { grid-template-columns: 1fr; gap: 30px; }
  .product-container.alt-layout { grid-template-columns: 1fr; gap: 30px; }
  .product-info { margin-left: 0; padding: 40px; border-radius: 20px; margin-top: 0; }
  .alt-layout .product-info { margin-right: 0; padding: 40px; border-radius: 20px; margin-top: 0; }
  .alt-layout .product-gallery { order: 1; }
  .alt-layout .product-info { order: 2; }
  .section-title[data-text]::before { font-size: 10vw; top: -40%; }
  .gallery-grid > * { width: calc(50% - 20px); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-toggle { display: flex; }
  
  .hero-section { min-height: 500px; margin: 10px; border-radius: 20px; }
  .hero-text-area { 
    left: 50%; top: 50%; transform: translate(-50%, -50%); 
    padding: 30px 20px; width: 85%; text-align: center;
  }
  .headline { font-size: 3rem; }
  .thin-lowercase { font-size: 2rem; }
  
  .product-title { font-size: 2rem; }
  .product-actions { flex-direction: column; gap: 10px; align-items: flex-start; }
  .product-actions .btn { width: 100%; max-width: 250px; text-align: center; }
  .gallery-grid > * { width: 100%; }
  .map-section { width: 95%; padding: 0; height: 250px; margin-top: 30px; }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
    text-align: left;
  }
  .footer-brand-col { grid-column: 1 / -1; }
  .footer-brand-col > div { flex-direction: row !important; justify-content: flex-start; }
  .footer-tagline { margin: 0; }
  .footer-copyright {
    flex-direction: column;
    gap: 15px;
    text-align: center;
    font-size: 0.85rem;
    padding-top: 10px;
  }
}

/* =========================================
   Customer Reviews Section
========================================= */
.reviews-section {
  padding: 80px 0 60px;
  background: #ffffff;
}

.reviews-wrapper {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 70px;
}

.reviews-track-outer {
  overflow: hidden;
  width: 100%;
}

.reviews-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 20px;
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.3, 1);
  will-change: transform;
}

.review-card {
  flex: 0 0 calc(33.333% - 14px);
  background: transparent;
  backdrop-filter: none;
  border: none;
  border-radius: 0;
  padding: 20px 10px;
  text-align: center;
  box-shadow: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 0;
}

.review-stars {
  color: #ffc107;
  font-size: 1.1rem;
  letter-spacing: 4px;
  margin-bottom: 15px;
}

.review-text {
  font-size: 0.9rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 25px;
  font-style: normal;
  flex: 1;
}

.review-avatar-wrap {
  margin-bottom: 15px;
}

.review-avatar {
  width: 60px;
  height: 60px;
  min-width: 60px;
  min-height: 60px;
  flex-shrink: 0;
  border-radius: 50%;
  border: none;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f4f4f4;
  box-shadow: none;
}

.review-avatar svg,
.review-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.review-card:hover .review-avatar img {
  transform: scale(1.1);
}

.review-name {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: #333;
  margin-bottom: 0;
}

.review-nav-btn {
  position: absolute;
  bottom: 70px; /* Align vertically with the avatars below text */
  transform: translateY(50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: none;
  color: white;
}

.prev-btn { 
  left: 0; 
  background: #84a59d; /* Faded teal from screenshot */
}
.next-btn { 
  right: 0; 
  background: #0d4345; /* Dark teal from screenshot */
}

.review-nav-btn:hover {
  background: #0d4345;
  color: white;
  transform: translateY(-50%) scale(1.05);
}

@media (max-width: 900px) {
  .review-card {
    flex: 0 0 calc(50% - 10px);
  }
}
@media (max-width: 600px) {
  .review-card {
    flex: 0 0 100%;
    padding: 15px 5px;
  }
  .reviews-wrapper { padding: 0 40px; }
  .review-nav-btn { width: 36px; height: 36px; font-size: 0.9rem; }

  .main-footer { 
    margin: 0; 
    border-radius: 30px 30px 0 0; 
    padding: 60px 20px 30px; 
  }

  .whatsapp-float {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
  }
  .whatsapp-float svg { width: 26px; height: 26px; }
  
  .site-logo { height: 85px; }
  .brand-title { font-size: 1.8rem; }
  .brand-subtitle { font-size: 0.70rem; letter-spacing: 4px; }

  .categories-container { gap: 20px; }
  .category-item { min-width: 100px; }
  .category-circle { width: 110px; height: 110px; }
  .section-title { font-size: 2rem; }
}

@media (max-width: 480px) {
  .headline { font-size: 2.2rem; }
  .thin-lowercase { font-size: 1.5rem; }
  .section-title { font-size: 1.5rem; }
  .section-title[data-text]::before { display: none; }
  .hero-section { min-height: 400px; margin: 0; border-radius: 0; }
  .hero-text-area { width: 90% !important; padding: 24px 16px !important; }
  .product-info { padding: 30px 20px; }
  .alt-layout .product-info { padding: 30px 20px; }
  .footer-social { justify-content: center; }
  .footer-contact-col { text-align: center; }
}

.main-header.scrolled {
  background: rgba(10, 20, 40, 0.95);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 10px 0;
  box-shadow: 0 5px 20px rgba(0,0,0,0.5);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.main-header.scrolled .nav-links a { color: #ffffff; }
.main-header.scrolled .nav-links a::after { background-color: #ffffff; }
.main-header.scrolled .brand-title { color: #ffffff; }
.main-header.scrolled .site-logo { mix-blend-mode: normal; filter: drop-shadow(0 0 10px rgba(255,255,255,0.4)) brightness(1.2); }
.main-header.scrolled .mobile-menu-toggle span { background-color: #ffffff; }

@media (max-width: 500px) {
  .ticker-content { flex-direction: column; gap: 5px; text-align: center; padding: 10px 0; }
  .ticker-content .datetime-text { font-size: 0.75rem !important; }
  .ticker-content .rate-text { font-size: 0.85rem !important; line-height: 1.5; }
}

@media (max-width: 500px) {
  .nav-links { display: none !important; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    background: rgba(10, 20, 40, 0.98);
    backdrop-filter: blur(20px);
    padding: 30px;
    border-radius: 20px;
    text-align: center;
  }
  .nav-links a { color: #fff; }
  .mobile-menu-toggle { display: flex; }
}

/* =========================================
   Luxury Preloader
========================================= */
#lux-preloader {
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: var(--midnight-sapphire);
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: opacity 0.8s ease, visibility 0.8s;
}
#lux-preloader.loaded {
  opacity: 0;
  visibility: hidden;
}
.preloader-logo {
  height: 120px;
  animation: pulseLogo 2s infinite ease-in-out;
}
@keyframes pulseLogo {
  0% { transform: scale(0.95); opacity: 0.7; }
  50% { transform: scale(1.05); opacity: 1; }
  100% { transform: scale(0.95); opacity: 0.7; }
}

/* =========================================
   Video Popup Modal — Cinematic Welcome
========================================= */

/* Full-screen dark overlay */
.video-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(4, 12, 24, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease, visibility 0.5s ease;
  padding: 20px;
}

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

/* Animated gold corner brackets */
.modal-corner {
  position: fixed;
  width: 60px;
  height: 60px;
  border-color: var(--champagne-gold);
  border-style: solid;
  opacity: 0;
  transition: opacity 0.6s ease 0.3s;
}
.video-modal-overlay.active .modal-corner { opacity: 1; }

.modal-corner.tl { top: 20px; left: 20px; border-width: 2px 0 0 2px; }
.modal-corner.tr { top: 20px; right: 20px; border-width: 2px 2px 0 0; }
.modal-corner.bl { bottom: 20px; left: 20px; border-width: 0 0 2px 2px; }
.modal-corner.br { bottom: 20px; right: 20px; border-width: 0 2px 2px 0; }

/* Main modal box */
.video-modal-box {
  background: linear-gradient(145deg, rgba(10,20,38,0.98) 0%, rgba(25,18,10,0.98) 100%);
  border: 1px solid rgba(201, 169, 87, 0.35);
  border-radius: 20px;
  padding: 0;
  max-width: 900px;
  width: 100%;
  overflow: hidden;
  position: relative;
  box-shadow:
    0 0 0 1px rgba(201, 169, 87, 0.1),
    0 50px 100px rgba(0, 0, 0, 0.8),
    inset 0 1px 0 rgba(255,255,255,0.05);
  transform: scale(0.85) translateY(40px);
  transition: transform 0.55s cubic-bezier(0.25, 1, 0.3, 1);
  animation: none;
}

.video-modal-overlay.active .video-modal-box {
  transform: scale(1) translateY(0);
}

/* Animated gold glow border */
.video-modal-box::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: 20px;
  background: conic-gradient(
    from 0deg,
    transparent 0deg,
    rgba(201,169,87,0.8) 60deg,
    transparent 120deg,
    transparent 240deg,
    rgba(201,169,87,0.5) 300deg,
    transparent 360deg
  );
  z-index: 0;
  animation: spinBorder 6s linear infinite;
  opacity: 0;
  transition: opacity 0.5s ease 0.4s;
}
.video-modal-overlay.active .video-modal-box::before { opacity: 1; }

/* Mask so inner content shows properly */
.video-modal-box::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: 19px;
  background: linear-gradient(145deg, rgba(10,20,38,0.99), rgba(25,18,10,0.99));
  z-index: 1;
}

@keyframes spinBorder {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* All children above the glow layer */
.video-modal-header,
.video-frame-wrapper,
.video-modal-footer { position: relative; z-index: 2; }

/* Header: logo + title + close */
.video-modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid rgba(201,169,87,0.15);
}

.video-modal-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.vmodal-logo {
  height: 48px;
  width: auto;
  filter: drop-shadow(0 0 6px rgba(201,169,87,0.4));
}

.vmodal-title {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--champagne-gold);
  line-height: 1;
  font-weight: 700;
}

.vmodal-subtitle {
  font-family: var(--font-sans);
  font-size: 0.6rem;
  letter-spacing: 5px;
  color: rgba(255,255,255,0.5);
  font-weight: 600;
}

.vmodal-label {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 5px;
  color: var(--champagne-gold);
  text-transform: uppercase;
  animation: glowPulse 2s ease-in-out infinite;
}

@keyframes glowPulse {
  0%, 100% { text-shadow: 0 0 8px rgba(201,169,87,0.4); }
  50%       { text-shadow: 0 0 20px rgba(201,169,87,0.9), 0 0 40px rgba(201,169,87,0.3); }
}

/* Close Button */
.video-close-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(201,169,87,0.3);
  background: rgba(255,255,255,0.06);
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.video-close-btn:hover {
  background: var(--champagne-gold);
  color: var(--midnight-sapphire);
  border-color: var(--champagne-gold);
  transform: rotate(90deg);
}

/* Video frame wrapper */
.video-frame-wrapper {
  position: relative;
  background: #000;
  overflow: hidden;
}

/* Tap to Unmute button */
.unmute-btn {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: none; /* shown by JS if needed */
  align-items: center;
  gap: 10px;
  background: rgba(10, 20, 38, 0.85);
  border: 1px solid var(--champagne-gold);
  color: var(--champagne-gold);
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 10px 22px;
  border-radius: 50px;
  cursor: pointer;
  z-index: 10;
  backdrop-filter: blur(10px);
  animation: pulsePlay 2s infinite;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.unmute-btn:hover {
  background: var(--champagne-gold);
  color: var(--midnight-sapphire);
  transform: translateX(-50%) scale(1.05);
}

/* Animated shine sweep on load */
.video-shine {
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(201,169,87,0.08),
    transparent
  );
  z-index: 3;
  pointer-events: none;
  animation: shineSwipe 1.5s ease 0.7s forwards;
}

@keyframes shineSwipe {
  0%   { left: -100%; }
  100% { left: 150%; }
}

.story-video {
  width: 100%;
  display: block;
  max-height: 62vh;
  background: #000;
  outline: none;
}

/* Footer */
.video-modal-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  border-top: 1px solid rgba(201,169,87,0.12);
}

.video-caption {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 2px;
  font-style: italic;
  margin: 0;
}

.skip-text-btn {
  background: transparent;
  border: 1px solid rgba(201,169,87,0.3);
  color: rgba(201,169,87,0.8);
  font-family: var(--font-sans);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 8px 20px;
  border-radius: 30px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.skip-text-btn:hover {
  background: var(--champagne-gold);
  color: var(--midnight-sapphire);
  border-color: var(--champagne-gold);
}

@media (max-width: 768px) {
  .video-modal-box { border-radius: 14px; max-width: 100%; }
  .video-modal-header { padding: 14px 16px; }
  .vmodal-logo { height: 36px; }
  .vmodal-title { font-size: 1.2rem; }
  .vmodal-label { display: none; }
  .story-video { max-height: 50vh; }
  .video-modal-footer { padding: 10px 16px; }
  .modal-corner { width: 35px; height: 35px; top: 10px; }
  .modal-corner.tl { top:10px; left:10px; }
  .modal-corner.tr { top:10px; right:10px; }
  .modal-corner.bl { bottom:10px; left:10px; }
  .modal-corner.br { bottom:10px; right:10px; }
}


/* =========================================
   Infinite Marquee Scroll (Categories & Bridal)
========================================= */

/* Keyframe: left to right scroll */
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Keyframe: right to left scroll (bridal section) */
@keyframes marqueeScrollReverse {
  0%   { transform: translateX(-50%); }
  100% { transform: translateX(0); }
}

/* Outer container — hides overflow & adds edge fade */
.marquee-wrapper {
  width: 100%;
  overflow-x: hidden;
  overflow-y: visible;
  padding: 20px 0 60px;
  position: relative;
  /* Soft fade edges left & right */
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
          mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);
}

/* Scrolling track — holds doubled items for seamless loop */
.marquee-track {
  display: flex;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  align-items: flex-start;
  gap: 60px;
  width: max-content;
  min-width: 200%;
  padding: 20px 30px 10px;
  animation: marqueeScroll 20s linear infinite;
}

.marquee-track.marquee-reverse {
  animation: marqueeScrollReverse 18s linear infinite;
}

/* Pause on hover */
.marquee-wrapper:hover .marquee-track {
  animation-play-state: paused;
}

/* =========================================
   Gold Ticker Badge Strip
========================================= */
@keyframes badgeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.marquee-badge-strip {
  background: var(--liquid-gold);
  overflow: hidden;
  padding: 14px 0;
  width: 100%;
  position: relative;
}

.badge-track {
  display: flex;
  width: max-content;
  animation: badgeScroll 14s linear infinite;
  gap: 0;
}

.badge-track span {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--midnight-sapphire);
  padding: 0 40px;
  white-space: nowrap;
  border-right: 1px solid rgba(7, 21, 38, 0.2);
}

/* =========================================
   Bridal Circle (Larger, Gold Border)
========================================= */
.bridal-item .bridal-circle {
  width: 160px;
  height: 160px;
  border: 2px solid var(--champagne-gold);
  box-shadow: 0 0 0 6px rgba(201, 169, 87, 0.1), 0 15px 35px rgba(201, 169, 87, 0.2);
  position: relative;
}

/* Golden shimmer pulse on bridal circles */
.bridal-item .bridal-circle::after {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(from 0deg, transparent 0deg, rgba(201, 169, 87, 0.5) 60deg, transparent 120deg, transparent 360deg);
  animation: shimmerRing 3s linear infinite;
  z-index: -1;
}

@keyframes shimmerRing {
  0%   { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

.bridal-item:hover .bridal-circle {
  transform: translateY(-18px) scale(1.05);
  box-shadow: 0 0 0 8px rgba(201, 169, 87, 0.15), 0 25px 50px rgba(201, 169, 87, 0.3);
}

/* =========================================
   Scroll Reveal Animations
========================================= */
.fade-in {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s var(--spring-smooth), transform 1s var(--spring-smooth);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
