/* ============================================================
   BR JEWELLERS — Global Design System
   Premium Luxury Jewelry Website
   ============================================================ */

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

/* ============================================================
   CSS Custom Properties — Design Tokens
   ============================================================ */
:root {
  /* Brand Colors */
  --cream: #F8F3E8;
  --cream-dark: #EDE4D0;
  --cream-light: #FDFAF5;
  --maroon: #5B1020;
  --maroon-dark: #3D0A15;
  --maroon-light: #7A1A2E;
  --gold: #D4AF37;
  --gold-light: #E8CC5E;
  --gold-dark: #B8941A;
  --gold-pale: #F0E4A8;
  --charcoal: #1A1A1A;
  --charcoal-light: #2D2D2D;
  --white: #FFFFFF;
  --off-white: #FAFAFA;

  /* Gradients */
  --grad-hero: linear-gradient(135deg, #3D0A15 0%, #5B1020 40%, #7A1A2E 70%, #2D0810 100%);
  --grad-gold: linear-gradient(135deg, #B8941A 0%, #D4AF37 40%, #E8CC5E 70%, #C8A228 100%);
  --grad-cream: linear-gradient(135deg, #F8F3E8 0%, #EDE4D0 100%);
  --grad-dark: linear-gradient(180deg, #1A1A1A 0%, #2D1A0A 100%);
  --grad-glass: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  --grad-maroon-cream: linear-gradient(135deg, #5B1020 0%, #7A1A2E 50%, #F8F3E8 100%);

  /* Typography */
  --font-cinzel: 'Cinzel', serif;
  --font-cormorant: 'Cormorant Garamond', serif;
  --font-playfair: 'Playfair Display', serif;
  --font-poppins: 'Poppins', sans-serif;
  --font-inter: 'Inter', sans-serif;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2rem;
  --space-xl: 3rem;
  --space-2xl: 5rem;
  --space-3xl: 8rem;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-gold: 0 0 30px rgba(212, 175, 55, 0.3), 0 4px 20px rgba(212, 175, 55, 0.15);
  --shadow-gold-hover: 0 0 50px rgba(212, 175, 55, 0.5), 0 8px 40px rgba(212, 175, 55, 0.3);
  --shadow-card: 0 4px 24px rgba(0,0,0,0.08), 0 1px 4px rgba(0,0,0,0.04);
  --shadow-card-hover: 0 16px 48px rgba(0,0,0,0.15), 0 4px 12px rgba(0,0,0,0.08);
  --shadow-maroon: 0 8px 32px rgba(91, 16, 32, 0.3);
  --shadow-deep: 0 20px 60px rgba(0,0,0,0.3);

  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-spring: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);

  /* Navbar */
  --navbar-height: 80px;
}

/* ============================================================
   Reset & Base
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-poppins);
  background-color: var(--cream-light);
  color: var(--charcoal);
  line-height: 1.7;
  overflow-x: hidden;
}

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

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

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

ul, ol {
  list-style: none;
}

/* ============================================================
   Loading Screen
   ============================================================ */
#loading-screen {
  position: fixed;
  inset: 0;
  background: var(--grad-hero);
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

#loading-screen.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.loader-logo {
  font-family: var(--font-cinzel);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.3em;
  text-transform: uppercase;
  animation: loaderPulse 1.5s ease-in-out infinite;
}

.loader-subtitle {
  font-family: var(--font-cormorant);
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-top: 0.5rem;
}

.loader-bar {
  width: 200px;
  height: 2px;
  background: rgba(212, 175, 55, 0.2);
  border-radius: 100px;
  margin-top: 2rem;
  overflow: hidden;
}

.loader-bar-fill {
  height: 100%;
  background: var(--grad-gold);
  border-radius: 100px;
  animation: loaderFill 2s ease forwards;
}

@keyframes loaderPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

@keyframes loaderFill {
  0% { width: 0%; }
  100% { width: 100%; }
}

/* ============================================================
   Navigation
   ============================================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--navbar-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  padding: 0 var(--space-lg);
  transition: all var(--transition-base);
}

.navbar.transparent {
  background: transparent;
}

.navbar.scrolled {
  background: rgba(91, 16, 32, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

.navbar.light-scrolled {
  background: rgba(248, 243, 232, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.08);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.nav-logo-main {
  font-family: var(--font-cinzel);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
  line-height: 1;
}

.nav-logo-sub {
  font-family: var(--font-cormorant);
  font-size: 0.65rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.35em;
  text-transform: uppercase;
}

.navbar.light-scrolled .nav-logo-sub {
  color: var(--maroon);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-family: var(--font-poppins);
  font-size: 0.78rem;
  font-weight: 500;
  color: rgba(255,255,255,0.88);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 0.5rem 0.75rem;
  border-radius: var(--radius-sm);
  position: relative;
  transition: color var(--transition-base);
}

.navbar.light-scrolled .nav-link {
  color: var(--charcoal);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width var(--transition-base);
}

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

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

.nav-link.active {
  color: var(--gold);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

/* ============================================================
   Hamburger (Mobile) — Bottom Right
   ============================================================ */
.hamburger-btn {
  display: none;
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 2000;
  width: 56px;
  height: 56px;
  background: transparent;
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  box-shadow: none;
  transition: all var(--transition-spring);
}

.hamburger-btn:hover {
  transform: scale(1.1);
  box-shadow: none;
}

.hamburger-btn span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: all var(--transition-base);
}

.hamburger-btn.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-btn.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}
.hamburger-btn.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Drawer */
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 1500;
  pointer-events: none;
}

.mobile-nav-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 26, 26, 0.7);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity var(--transition-base);
}

.mobile-nav-drawer {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: min(360px, 100vw);
  background: var(--grad-hero);
  transform: translateX(100%);
  transition: transform var(--transition-slow);
  display: flex;
  flex-direction: column;
  padding: 5rem 2rem 2rem;
  overflow-y: auto;
}

.mobile-nav.open {
  pointer-events: all;
}

.mobile-nav.open .mobile-nav-overlay {
  opacity: 1;
}

.mobile-nav.open .mobile-nav-drawer {
  transform: translateX(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-top: 2rem;
}

.mobile-nav-link {
  font-family: var(--font-cormorant);
  font-size: 1.6rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  padding: 0.75rem 0;
  border-bottom: 1px solid rgba(212, 175, 55, 0.15);
  transition: color var(--transition-base), padding-left var(--transition-base);
}

.mobile-nav-link:hover {
  color: var(--gold);
  padding-left: 0.5rem;
}

.mobile-nav-logo {
  font-family: var(--font-cinzel);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.1em;
}

.mobile-nav-social {
  display: flex;
  gap: 1rem;
  margin-top: auto;
  padding-top: 2rem;
}

.mobile-nav-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  transition: all var(--transition-base);
}

.mobile-nav-social a:hover {
  background: var(--gold);
  color: var(--maroon-dark);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-poppins);
  font-weight: 500;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  padding: 0.85rem 2rem;
  transition: all var(--transition-spring);
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 30%, rgba(255,255,255,0.3) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s ease;
}

.btn:hover::before {
  transform: translateX(100%);
}

.btn-gold {
  background: var(--grad-gold);
  color: var(--maroon-dark);
  box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
  transform: translateY(-2px) scale(1.02);
  box-shadow: var(--shadow-gold-hover);
}

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid var(--gold);
  box-shadow: none;
}

.btn-outline-gold:hover {
  background: var(--grad-gold);
  color: var(--maroon-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-gold);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.6);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-maroon {
  background: var(--maroon);
  color: var(--white);
  box-shadow: var(--shadow-maroon);
}

.btn-maroon:hover {
  background: var(--maroon-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(91, 16, 32, 0.4);
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 0.9rem;
}

.btn-sm {
  padding: 0.6rem 1.4rem;
  font-size: 0.78rem;
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  box-shadow: 0 0 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20bd5a;
  transform: translateY(-2px);
  box-shadow: 0 0 40px rgba(37, 211, 102, 0.5);
}

/* ============================================================
   Floating WhatsApp
   ============================================================ */
.whatsapp-float {
  position: fixed;
  bottom: 6.5rem;
  right: 2rem;
  z-index: 1900;
  width: 54px;
  height: 54px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all var(--transition-spring);
  animation: waPulse 2.5s ease-in-out infinite;
}

.whatsapp-float:hover {
  transform: scale(1.15);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
  animation: none;
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: white;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 12px rgba(37, 211, 102, 0.1); }
}

/* ============================================================
   Floating Social Icons
   ============================================================ */
.social-float {
  position: fixed;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 900;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  align-items: center;
}

.social-float::before,
.social-float::after {
  content: '';
  display: block;
  width: 1px;
  height: 40px;
  background: rgba(212, 175, 55, 0.4);
}

.social-float-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 0.9rem;
  transition: all var(--transition-spring);
  background: rgba(91, 16, 32, 0.3);
  backdrop-filter: blur(10px);
}

.social-float-icon:hover {
  background: var(--gold);
  color: var(--maroon-dark);
  transform: scale(1.2);
  border-color: var(--gold);
  box-shadow: var(--shadow-gold);
}

/* ============================================================
   Section Styles
   ============================================================ */
.section {
  padding: var(--space-3xl) var(--space-lg);
}

.section-sm {
  padding: var(--space-2xl) var(--space-lg);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  width: 100%;
}

.container-wide {
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}

/* Section Headers */
.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-eyebrow {
  font-family: var(--font-cinzel);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-family: var(--font-cormorant);
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.15;
}

.section-title.light {
  color: var(--white);
}

.section-title.gold {
  color: var(--gold);
}

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

.section-divider span {
  width: 60px;
  height: 1px;
  background: var(--gold);
}

.section-divider .diamond-icon {
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: rotate(45deg);
  flex-shrink: 0;
}

.section-subtitle {
  font-family: var(--font-poppins);
  font-size: 1rem;
  color: rgba(26, 26, 26, 0.65);
  max-width: 600px;
  margin: 1.5rem auto 0;
  line-height: 1.8;
}

.section-subtitle.light {
  color: rgba(255,255,255,0.7);
}

/* ============================================================
   Cards
   ============================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition-base);
  box-shadow: var(--shadow-card);
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-card-hover);
}

.card-glass {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: var(--radius-lg);
}

/* ============================================================
   Gold Animated Border
   ============================================================ */
.gold-border-animated {
  position: relative;
}

.gold-border-animated::before {
  content: '';
  position: absolute;
  inset: -1px;
  border-radius: inherit;
  background: conic-gradient(from var(--angle, 0deg), transparent 20%, var(--gold) 40%, transparent 60%);
  animation: rotateBorder 3s linear infinite;
  z-index: -1;
}

.gold-border-animated::after {
  content: '';
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  background: inherit;
  z-index: -1;
}

@property --angle {
  syntax: '<angle>';
  initial-value: 0deg;
  inherits: false;
}

@keyframes rotateBorder {
  to { --angle: 360deg; }
}

/* ============================================================
   Image Cards
   ============================================================ */
.img-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.img-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(61, 10, 21, 0.85) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--transition-base);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
}

.img-card:hover .img-card-overlay {
  opacity: 1;
}

/* ============================================================
   Shimmer Effect
   ============================================================ */
.shimmer {
  position: relative;
  overflow: hidden;
}

.shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 60%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmerMove 2.5s infinite;
}

@keyframes shimmerMove {
  0% { left: -100%; }
  100% { left: 200%; }
}

/* ============================================================
   Gold Particles Canvas
   ============================================================ */
#particles-canvas {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

/* ============================================================
   Scroll Reveal
   ============================================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ============================================================
   Page Hero Banner (inner pages)
   ============================================================ */
.page-hero {
  min-height: 50vh;
  background: var(--grad-hero);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: calc(var(--navbar-height) + 4rem) var(--space-lg) 4rem;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.08) 0%, transparent 70%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
}

.page-hero-eyebrow {
  font-family: var(--font-cinzel);
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.4em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 1rem;
}

.page-hero-title {
  font-family: var(--font-cormorant);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.1;
}

.page-hero-title span {
  color: var(--gold);
}

.page-hero-subtitle {
  font-family: var(--font-cormorant);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255,255,255,0.7);
  margin-top: 1rem;
  font-style: italic;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1.5rem;
  font-family: var(--font-poppins);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.breadcrumb a {
  color: rgba(255,255,255,0.5);
  transition: color var(--transition-base);
}

.breadcrumb a:hover {
  color: var(--gold);
}

.breadcrumb span {
  color: var(--gold);
}

/* ============================================================
   Footer
   ============================================================ */
.footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.75);
  padding: var(--space-3xl) var(--space-lg) var(--space-lg);
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--grad-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr repeat(3, 1fr) 1.5fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand-logo {
  font-family: var(--font-cinzel);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.08em;
}

.footer-brand-tagline {
  font-family: var(--font-cormorant);
  font-size: 1rem;
  color: rgba(255,255,255,0.5);
  margin-top: 0.25rem;
  font-style: italic;
}

.footer-brand-desc {
  font-size: 0.85rem;
  line-height: 1.8;
  margin-top: 1rem;
  color: rgba(255,255,255,0.55);
}

.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.footer-social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  transition: all var(--transition-base);
}

.footer-social-icon:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--maroon-dark);
  transform: translateY(-3px);
}

.footer-heading {
  font-family: var(--font-cinzel);
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: all var(--transition-base);
  position: relative;
  padding-left: 0;
}

.footer-links a::before {
  content: '›';
  position: absolute;
  left: -1rem;
  opacity: 0;
  color: var(--gold);
  transition: all var(--transition-base);
}

.footer-links a:hover {
  color: var(--gold);
  padding-left: 1rem;
}

.footer-links a:hover::before {
  opacity: 1;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.85rem;
}

.footer-contact-icon {
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 0.15rem;
}

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

.footer-bottom-links {
  display: flex;
  gap: 1.5rem;
}

.footer-bottom-links a {
  color: rgba(255,255,255,0.4);
  transition: color var(--transition-base);
}

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

/* ============================================================
   Swiper Custom Styles
   ============================================================ */
.swiper-pagination-bullet {
  background: rgba(212, 175, 55, 0.4) !important;
  width: 8px !important;
  height: 8px !important;
  transition: all var(--transition-base) !important;
}

.swiper-pagination-bullet-active {
  background: var(--gold) !important;
  width: 24px !important;
  border-radius: 4px !important;
}

.swiper-button-prev,
.swiper-button-next {
  color: var(--gold) !important;
  width: 44px !important;
  height: 44px !important;
  border-radius: 50% !important;
  border: 1px solid rgba(212, 175, 55, 0.4) !important;
  transition: all var(--transition-base) !important;
}

.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1rem !important;
  font-weight: 700 !important;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  background: var(--gold) !important;
  color: var(--maroon-dark) !important;
}

/* ============================================================
   Responsive Helpers
   ============================================================ */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--space-lg); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-lg); }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--space-lg); }

.text-center { text-align: center; }
.text-left { text-align: left; }

.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

/* ============================================================
   Stars
   ============================================================ */
.stars {
  display: flex;
  gap: 2px;
  color: var(--gold);
  font-size: 1rem;
}

/* ============================================================
   Scroll to Top
   ============================================================ */
.scroll-top {
  position: fixed;
  bottom: 10rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--maroon);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition-spring);
  z-index: 800;
  box-shadow: var(--shadow-maroon);
}

.scroll-top.visible {
  opacity: 1;
  transform: translateY(0);
}

.scroll-top:hover {
  transform: translateY(-4px);
  background: var(--maroon-dark);
}

/* ============================================================
   Product / Collection Cards
   ============================================================ */
.product-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: all var(--transition-base);
  position: relative;
}

.product-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-card-hover);
}

.product-card-image {
  position: relative;
  height: 280px;
  overflow: hidden;
  background: var(--cream);
}

.product-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover .product-card-image img {
  transform: scale(1.1);
}

.product-card-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--gold);
  color: var(--maroon-dark);
  font-family: var(--font-cinzel);
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: var(--radius-full);
}

.product-card-actions {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  opacity: 0;
  transform: translateX(10px);
  transition: all var(--transition-base);
}

.product-card:hover .product-card-actions {
  opacity: 1;
  transform: translateX(0);
}

.product-card-action-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-card);
  color: var(--maroon);
  font-size: 0.9rem;
  transition: all var(--transition-base);
}

.product-card-action-btn:hover {
  background: var(--gold);
  color: var(--maroon-dark);
}

.product-card-body {
  padding: 1.25rem;
}

.product-card-category {
  font-family: var(--font-cinzel);
  font-size: 0.65rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.product-card-title {
  font-family: var(--font-playfair);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-top: 0.25rem;
}

.product-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.75rem;
}

.product-card-inquiry {
  font-family: var(--font-cormorant);
  font-size: 1rem;
  color: var(--maroon);
  font-style: italic;
}

/* ============================================================
   Stats Counter
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-lg);
  text-align: center;
}

.stat-item {
  padding: var(--space-lg);
}

.stat-number {
  font-family: var(--font-cinzel);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
  display: block;
}

.stat-label {
  font-family: var(--font-poppins);
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  margin-top: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ============================================================
   Testimonial Card
   ============================================================ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2rem;
  box-shadow: var(--shadow-card);
  border: 1px solid rgba(212, 175, 55, 0.1);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-family: var(--font-playfair);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.12;
  position: absolute;
  top: 0.5rem;
  left: 1.5rem;
  line-height: 1;
}

.testimonial-text {
  font-family: var(--font-cormorant);
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--charcoal);
  font-style: italic;
  margin-top: 0.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
}

.testimonial-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--grad-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-cinzel);
  font-weight: 700;
  color: var(--maroon-dark);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-family: var(--font-poppins);
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--charcoal);
}

.testimonial-location {
  font-size: 0.78rem;
  color: rgba(26, 26, 26, 0.5);
  margin-top: 0.15rem;
}

/* ============================================================
   FAQ Accordion
   ============================================================ */
.faq-item {
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.25rem 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--font-poppins);
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--charcoal);
  background: none;
  cursor: pointer;
  transition: color var(--transition-base);
}

.faq-question:hover {
  color: var(--maroon);
}

.faq-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(212, 175, 55, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: all var(--transition-base);
}

.faq-item.open .faq-icon {
  background: var(--gold);
  color: var(--maroon-dark);
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-inner {
  padding: 0 0 1.25rem;
  font-size: 0.9rem;
  color: rgba(26, 26, 26, 0.65);
  line-height: 1.8;
}

.faq-item.open .faq-answer {
  max-height: 300px;
}

/* ============================================================
   Newsletter
   ============================================================ */
.newsletter-section {
  background: var(--grad-hero);
  padding: var(--space-2xl) var(--space-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212, 175, 55, 0.07) 0%, transparent 70%);
}

.newsletter-form {
  display: flex;
  gap: 1rem;
  max-width: 500px;
  margin: 2rem auto 0;
  position: relative;
  z-index: 1;
}

.newsletter-input {
  flex: 1;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-full);
  border: 1px solid rgba(212, 175, 55, 0.3);
  background: rgba(255,255,255,0.08);
  color: white;
  font-family: var(--font-poppins);
  font-size: 0.9rem;
  backdrop-filter: blur(10px);
  transition: border-color var(--transition-base);
  outline: none;
}

.newsletter-input::placeholder {
  color: rgba(255,255,255,0.45);
}

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

/* ============================================================
   Lightbox
   ============================================================ */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: rgba(0,0,0,0.95);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-base);
}

.lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-img {
  max-width: 90vw;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
}

.lightbox-close:hover {
  background: var(--maroon);
  border-color: var(--maroon);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-base);
}

.lightbox-nav:hover {
  background: var(--gold);
  color: var(--maroon-dark);
}

.lightbox-prev { left: 1.5rem; }
.lightbox-next { right: 1.5rem; }

/* ============================================================
   Contact Form
   ============================================================ */
.form-group {
  margin-bottom: 1.25rem;
}

.form-label {
  display: block;
  font-family: var(--font-poppins);
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  letter-spacing: 0.05em;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 0.85rem 1.25rem;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: var(--radius-md);
  font-family: var(--font-poppins);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--white);
  transition: all var(--transition-base);
  outline: none;
  appearance: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.12);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* ============================================================
   Utility Classes
   ============================================================ */
.bg-cream { background-color: var(--cream); }
.bg-cream-light { background-color: var(--cream-light); }
.bg-maroon { background: var(--grad-hero); }
.bg-charcoal { background-color: var(--charcoal); }
.bg-white { background-color: var(--white); }

.text-gold { color: var(--gold); }
.text-maroon { color: var(--maroon); }

.font-cinzel { font-family: var(--font-cinzel); }
.font-cormorant { font-family: var(--font-cormorant); }
.font-playfair { font-family: var(--font-playfair); }

/* ============================================================
   Responsive Design
   ============================================================ */
@media (max-width: 1200px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .nav-links { display: none; }
  .nav-cta { display: none; }
  .hamburger-btn { display: flex; }
  .social-float { display: none; }

  .grid-3, .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  :root {
    --space-3xl: 4rem;
    --space-2xl: 3rem;
  }
}

@media (max-width: 600px) {
  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .newsletter-form {
    flex-direction: column;
  }
  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
