:root {
  /* Colors - Modern Neutral Palette with Spiritual Purple */
  --primary-h: 278;
  --primary-s: 25%;
  --primary-l: 39%;
  --primary: hsl(var(--primary-h), var(--primary-s), var(--primary-l));
  --primary-alt: hsl(var(--primary-h), var(--primary-s), 30%);
  --primary-light: hsl(var(--primary-h), 40%, 90%);
  
  --secondary: #E6E2EB;
  --secondary-alt: #D1CCD9;
  --tertiary: #848B96;
  
  --surface: hsl(210, 20%, 98%);
  --on-surface: hsl(210, 15%, 15%);
  --on-surface-variant: hsl(210, 10%, 40%);

  /* Surface Tiers - Depth & Layering */
  --surface-lowest: #ffffff;
  --surface-low: hsl(210, 20%, 98%);
  --surface-high: hsl(210, 15%, 94%);
  --surface-highest: hsl(210, 15%, 90%);

  /* Accents */
  --accent: #D4AF37; /* Warm Gold */
  --accent-soft: rgba(212, 175, 55, 0.1);

  /* Typography */
  --font-display: 'Noto Serif', serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Spacing - Geometric scale */
  --spacing-1: 0.25rem;
  --spacing-2: 0.5rem;
  --spacing-3: 1rem;
  --spacing-4: 1.5rem;
  --spacing-5: 2rem;
  --spacing-6: 3rem;
  --spacing-8: 4rem;
  --spacing-10: 6rem;
  --spacing-12: 8rem;

  /* Shadows - Layered diffusion */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.02), 0 1px 1px rgba(0,0,0,0.02);
  --shadow-md: 0 10px 20px -5px rgba(0,0,0,0.04), 0 6px 6px -5px rgba(0,0,0,0.04);
  --shadow-lg: 0 25px 50px -12px rgba(0, 0, 0, 0.08);
  --shadow-glow: 0 0 20px rgba(109, 76, 125, 0.15);
}

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

body {
  font-family: var(--font-body);
  background-color: var(--surface);
  color: var(--on-surface);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

/* Typography Hierarchy - Editorial & Elegant */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 400; /* Serif looks better lighter */
  line-height: 1.15;
  color: var(--on-surface);
  text-wrap: balance;
}

.display-lg {
  font-size: clamp(2.5rem, 8vw, 4rem);
  letter-spacing: -0.02em;
  font-weight: 300;
}

.display-sm {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: var(--spacing-4);
  letter-spacing: -0.01em;
}

.label-md {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: var(--spacing-2);
}

.title-sm {
  font-size: 1.125rem;
  font-weight: 600;
  font-family: var(--font-body);
}

/* Elements - No Line Rule */
a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-4);
}

/* Buttons - Tactile & premium */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 1px solid transparent;
  position: relative;
  overflow: hidden;
}

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

.btn-primary:hover {
  background: var(--primary-alt);
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.btn-secondary {
  background-color: var(--surface-high);
  color: var(--on-surface);
  border: 1px solid var(--surface-highest);
}

.btn-secondary:hover {
  background-color: var(--surface-highest);
  transform: translateY(-2px);
}

.btn-tertiary {
  background: transparent;
  color: var(--on-surface);
  padding: var(--spacing-1) 0;
  border-bottom: 2px solid var(--primary);
  border-radius: 0;
}

.btn-tertiary:hover {
  color: var(--primary);
  border-bottom-color: var(--primary-alt);
}

/* Glassmorphism Navigation */
.nav-wrapper {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.25rem 0;
  transition: all 0.4s ease;
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

.nav-container {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
}

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

.nav-right {
  display: flex;
  justify-content: flex-end;
  gap: var(--spacing-4);
}

.nav-action-item {
  color: var(--on-surface);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
}

.nav-action-item:hover {
  color: var(--primary);
  transform: translateY(-2px);
}

.menu-trigger {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  color: var(--on-surface);
  display: flex;
  align-items: center;
}

.logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--primary);
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--on-surface);
  transition: all 0.3s;
  padding: 0.5rem 0;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s ease;
}

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

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

/* Sections & Depth */
.section {
  padding: var(--spacing-10) 0;
}

.surface-lowest {
  background-color: var(--surface-container-lowest);
}

.surface-low {
  background-color: var(--surface-container-low);
}

.surface-highest {
  background-color: var(--surface-container-highest);
}

/* Forms */
input, textarea, select {
  width: 100%;
  padding: var(--spacing-3) var(--spacing-4);
  background-color: var(--surface-container-low);
  border: none;
  font-family: var(--font-body);
  color: var(--on-surface);
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  margin-bottom: var(--spacing-3);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  background-color: var(--surface-container-lowest);
  box-shadow: 0 0 0 1px rgba(109, 76, 125, 0.2);
}

/* Product Grid - Elevated Presentation */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--spacing-6);
  margin-top: var(--spacing-6);
}

.product-card {
  display: flex;
  flex-direction: column;
  transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  background-color: var(--surface-lowest);
  border-radius: 1.5rem;
  padding: var(--spacing-3);
  border: 1px solid transparent;
}

.product-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary-light);
}

.product-image-wrapper {
  background-color: var(--surface-high);
  aspect-ratio: 4/5;
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: var(--spacing-4);
  position: relative;
}

.product-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.165, 0.84, 0.44, 1);
}

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

.product-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--spacing-2) 0;
}

.product-title {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: var(--spacing-1);
}

.product-price {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.95rem;
}

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: var(--spacing-5);
  right: var(--spacing-5);
  background-color: #25D366;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  box-shadow: 0 10px 30px rgba(89, 65, 58, 0.06);
  transition: all 0.3s ease;
  z-index: 1000;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 15px 40px rgba(89, 65, 58, 0.06);
}

/* Spiritual Accents */
.chakra-chip {
  display: inline-flex;
  align-items: center;
  gap: var(--spacing-2);
  padding: var(--spacing-1) var(--spacing-3);
  background-color: var(--surface-container-highest);
  border-radius: 1rem;
  font-size: 0.875rem;
}

.chakra-gem {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.crystal-tooltip {
  background: rgba(248, 249, 250, 0.8);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: opacity 200ms ease-in-out;
  padding: var(--spacing-3);
  border-radius: 0.5rem;
  box-shadow: 0 10px 30px rgba(89, 65, 58, 0.06);
}

.display-xl {
  font-size: 4.5rem;
  letter-spacing: 0.02em;
}

/* Premium Adjustments */
.text-gradient {
  background: linear-gradient(135deg, #d3c4e0, #ffffff);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.text-glow {
  text-shadow: 0 0 20px rgba(255, 255, 255, 0.4);
}
.hero-glow-text {
  color: #E6E2EB;
  text-shadow: 0 0 10px rgba(230, 226, 235, 0.3);
}

/* Hero Section - Midnight & Ethereal */
.hero-premium {
  position: relative;
  min-height: 95vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-color: #0c0a0e;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  z-index: 1;
}


.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(109, 76, 125, 0.4) 0%, rgba(12, 10, 14, 0.8) 50%, rgba(12, 10, 14, 1) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 5;
}


.hero-title {
  color: white;
  line-height: 1.05;
  margin-bottom: var(--spacing-4);
  font-weight: 300;
}

.hero-subtitle {
  font-size: 1.25rem;
  color: hsl(278, 20%, 85%);
  margin-bottom: var(--spacing-8);
  line-height: 1.7;
  max-width: 540px;
}

.btn-glowing {
  background: white;
  color: var(--on-surface);
  box-shadow: 0 0 30px rgba(255, 255, 255, 0.2);
}

.btn-glowing:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 0 40px rgba(109, 76, 125, 0.4);
}

.btn-outline-primary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: white;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.5rem;
  border-radius: 6rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1rem;
  transition: all 0.4s ease;
}

.btn-outline-primary:hover {
  background: white;
  color: var(--on-surface);
  border-color: white;
}

/* Categories Grid */
.category-parallax-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: var(--spacing-6);
  margin-top: var(--spacing-6);
}

@media (min-width: 768px) {
  .category-parallax-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Categories Grid - Immersive Experience */
.category-card {
  position: relative;
  border-radius: 2rem;
  overflow: hidden;
  height: 500px;
  display: flex;
  align-items: flex-end;
  transition: all 0.7s cubic-bezier(0.165, 0.84, 0.44, 1);
  box-shadow: var(--shadow-lg);
}

.category-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  z-index: 1;
  transition: background 0.5s ease;
}

.category-card:hover::after {
  background: rgba(0, 0, 0, 0.1);
}

.category-card:hover {
  transform: scale(0.98);
}

.category-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.5s cubic-bezier(0.165, 0.84, 0.44, 1);
  z-index: 1;
}

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

.category-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: var(--spacing-6);
  background: linear-gradient(to top, rgba(12, 10, 14, 1) 0%, rgba(12, 10, 14, 0.4) 60%, transparent 100%);
  color: white;
  transition: all 0.5s ease;
  text-shadow: 0 2px 15px rgba(0,0,0,0.5);
}

.category-content h3,
.category-content p {
  color: white !important;
}

.category-card:hover .category-content {
  padding-bottom: var(--spacing-8);
}

.category-desc {
  font-size: 0.8rem;
  line-height: 1.4;
  color: hsl(278, 20%, 80%);
  margin-top: var(--spacing-2);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.5s ease 0.1s;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.category-card:hover .category-desc {
  opacity: 1;
  transform: translateY(0);
}

.glass-panel {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.glass-panel-dark {
  background: rgba(12, 10, 14, 0.6);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

@media (min-width: 768px) {
  .category-parallax-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .category-card-offset {
    margin-top: var(--spacing-6);
  }
}

/* Animations */
.fade-in-up, .stagger-in {
  opacity: 0;
  animation: fadeInUp 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.fade-in {
  opacity: 0;
  animation: fadeIn 0.8s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.stagger-in:nth-child(2) { animation-delay: 0.1s; }
.stagger-in:nth-child(3) { animation-delay: 0.2s; }
.stagger-in:nth-child(4) { animation-delay: 0.3s; }
.stagger-in:nth-child(5) { animation-delay: 0.4s; }

@keyframes fadeInUp {
  0% { opacity: 0; transform: translateY(20px); }
  100% { opacity: 1; transform: translateY(0); }
}

@keyframes fadeIn {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.section-header {
  margin-bottom: var(--spacing-6);
  text-align: center;
}

.title-lg {
  font-size: 1.75rem;
  font-weight: 600;
  font-family: var(--font-display);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.placeholder-img {
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at center, #E6E2EB 0%, #D1CCD9 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.premium-shadow {
  box-shadow: 0 15px 35px rgba(109, 76, 125, 0.08);
}

.premium-about-section {
  position: relative;
  background-image: url('/public/img/hero_crystal.png');
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: var(--spacing-10) 0;
}

.premium-about-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 14, 21, 0.8);
}

.about-container {
  position: relative;
  z-index: 2;
  display: flex;
  justify-content: center;
}

.about-content {
  padding: var(--spacing-8);
  border-radius: 1rem;
  max-width: 800px;
  text-align: center;
}

/* Abstract Background Shapes */
.bg-shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  z-index: 1;
  opacity: 0.4;
  pointer-events: none;
}

.shape-1 {
  width: 400px;
  height: 400px;
  background: var(--primary-alt);
  top: -100px;
  right: -100px;
}

.shape-2 {
  width: 300px;
  height: 300px;
  background: #D1CCD9;
  bottom: -50px;
  left: -50px;
}

/* Premium Footer Redesign */
.premium-footer {
  background: linear-gradient(to bottom, #FDFCFB 0%, #F5F1EE 100%);
  padding-top: var(--spacing-10);
  padding-bottom: 7rem; /* Space for mobile nav */
  border-top: 1px solid rgba(109, 76, 125, 0.05);
  position: relative;
  overflow: hidden;
}

.premium-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  width: 80%;
  height: 1px;
  background: linear-gradient(to right, transparent, rgba(109, 76, 125, 0.1), transparent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 3fr;
  gap: var(--spacing-8);
  align-items: start;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--spacing-6);
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4);
}

.footer-logo {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 300;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: 0;
  text-transform: uppercase;
}

.footer-logo i {
  font-style: normal;
  font-weight: 500;
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--on-surface-variant);
  opacity: 0.8;
  max-width: 320px;
}

.footer-socials {
  display: flex;
  gap: var(--spacing-3);
  margin-top: var(--spacing-2);
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: white;
  color: var(--on-surface-variant);
  box-shadow: 0 4px 12px rgba(109, 76, 125, 0.04);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon:hover {
  background: var(--primary);
  color: white;
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(109, 76, 125, 0.15);
}

.footer-links-group {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--spacing-6);
}

@media (max-width: 768px) {
  .footer-links-group {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-4);
  }
}

@media (max-width: 480px) {
  .footer-links-group {
    grid-template-columns: 1fr;
  }
}

.footer-heading {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: var(--primary);
  margin-bottom: var(--spacing-5);
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 24px;
  height: 1px;
  background: var(--primary);
  opacity: 0.3;
}

.footer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spacing-3);
}

.footer-list li {
  display: flex;
  align-items: center;
}

.footer-list a {
  font-size: 0.875rem;
  color: var(--on-surface-variant);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all 0.3s ease;
  position: relative;
}

.footer-list a::before {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--primary);
  transition: width 0.3s ease;
}

.footer-list a:hover {
  color: var(--primary);
  padding-left: 4px;
}

.footer-list a:hover::before {
  width: 100%;
}

.footer-bottom {
  margin-top: var(--spacing-10);
  padding-top: var(--spacing-5);
  border-top: 1px solid rgba(109, 76, 125, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--spacing-3);
}

@media (max-width: 768px) {
  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

.copyright-text {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  color: var(--tertiary);
  text-transform: uppercase;
}

.footer-bottom-links {
  display: flex;
  gap: var(--spacing-4);
}

.footer-bottom-links a {
  font-size: 0.7rem;
  color: var(--tertiary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

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

/* Mobile Bottom Nav */
.mobile-bottom-nav {
  position: fixed;
  bottom: 1.5rem; /* Floating */
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 2rem);
  max-width: 450px;
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  display: none; /* Hidden on desktop */
  justify-content: space-around;
  align-items: center;
  padding: 0.75rem 1rem;
  z-index: 1000;
  border-radius: 2rem;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .mobile-bottom-nav {
    display: flex;
  }
  .custom-wa-float {
    bottom: 6.5rem; /* Higher to avoid overlap with floating nav on mobile */
  }
}

.mobile-nav-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--on-surface-variant);
  opacity: 0.6;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
  padding: 0.5rem;
}

.mobile-nav-item i, 
.mobile-nav-item svg {
  width: 20px;
  height: 20px;
  stroke-width: 1.5;
}

.mobile-nav-item.active {
  opacity: 1;
  color: var(--primary);
}

.mobile-nav-item.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  width: 4px;
  height: 4px;
  background-color: var(--primary);
  border-radius: 50%;
}

.nav-icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-text {
  font-size: 0.6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Responsive adjustments */

/* Responsive */
@media (max-width: 768px) {
  .display-lg {
    font-size: 2.5rem;
  }
  .display-sm {
    font-size: 2rem;
  }
  .display-xl {
    font-size: 3rem;
  }
  .nav-links {
    display: none;
  }
  .footer-grid {
    flex-direction: column;
    gap: var(--spacing-6);
  }
  .footer-links-group {
    flex-direction: column;
    gap: var(--spacing-6);
  }
}

/* --- Products Page Enhanced Styles --- */
.products-hero {
    position: relative;
    padding: var(--spacing-12) 0;
    background-color: #0c0a0e;
    background-image: url('/public/img/products_hero_bg.png');
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    overflow: hidden;
}

.products-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(12, 10, 14, 0.4) 0%, rgba(12, 10, 14, 0.8) 100%);
    z-index: 1;
}

.products-hero .container {
    position: relative;
    z-index: 2;
}

.products-hero-title {
    font-size: clamp(2.5rem, 8vw, 4.5rem);
    font-weight: 300;
    margin-bottom: var(--spacing-4);
    letter-spacing: -0.02em;
}

.products-hero-subtitle {
    font-size: 1.125rem;
    max-width: 600px;
    margin: 0 auto;
    opacity: 0.8;
    line-height: 1.6;
}

/* Category Pills & Controls */
.products-control-bar {
    background: var(--surface-lowest);
    padding: var(--spacing-4) 0;
    border-bottom: 1px solid var(--surface-highest);
    position: sticky;
    top: 60px; /* Below fixed nav */
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
}

.controls-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--spacing-4);
    flex-wrap: wrap;
}

.category-pills {
    display: flex;
    gap: var(--spacing-2);
    overflow-x: auto;
    padding-bottom: 4px;
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.category-pills::-webkit-scrollbar {
    display: none;
}

.pill {
    padding: 0.6rem 1.5rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    transition: all 0.3s ease;
    background: var(--surface-high);
    color: var(--on-surface-variant);
    border: 1px solid transparent;
}

.pill:hover {
    background: var(--surface-highest);
    transform: translateY(-2px);
}

.pill.active {
    background: var(--primary);
    color: white;
    box-shadow: 0 4px 12px rgba(109, 76, 125, 0.2);
}

.search-sort-group {
    display: flex;
    gap: var(--spacing-3);
    align-items: center;
}

.search-input-wrapper {
    position: relative;
    width: 240px;
}

.search-input-wrapper input {
    padding-left: 2.5rem;
    margin-bottom: 0;
    background: var(--surface-low);
    border: 1px solid var(--surface-highest);
    border-radius: 2rem;
    font-size: 0.9rem;
}

.search-input-wrapper i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--tertiary);
    pointer-events: none;
    font-size: 1.2rem;
}

.sort-select {
    width: auto;
    margin-bottom: 0;
    border-radius: 2rem;
    background: var(--surface-low);
    border: 1px solid var(--surface-highest);
    padding: 0.6rem 2rem 0.6rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Enhanced Cards */
.product-card-premium {
    background: var(--surface-lowest);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(0,0,0,0.03);
    position: relative;
}

.product-card-premium:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.card-image-box {
    aspect-ratio: 1/1;
    overflow: hidden;
    position: relative;
    background: #f8f8f8;
}

.card-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s ease;
}

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

.card-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: white;
    color: var(--primary);
    padding: 0.4rem 0.8rem;
    border-radius: 2rem;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    z-index: 2;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.card-actions-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, transparent 100%);
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    z-index: 3;
}

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

.btn-card {
    padding: 0.6rem 1.2rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    background: white;
    color: var(--on-surface);
    transition: all 0.3s;
}

.btn-card:hover {
    background: var(--primary);
    color: white;
}

.card-details {
    padding: 1.5rem;
    text-align: center;
}

.card-category {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--tertiary);
    margin-bottom: 0.5rem;
    display: block;
}

.card-title {
    font-family: var(--font-display);
    font-size: 1.15rem;
    margin-bottom: 0.75rem;
    font-weight: 500;
    color: var(--on-surface);
}

.card-price {
    font-weight: 700;
    color: var(--primary);
    font-size: 1.1rem;
}

.price-request {
    font-size: 0.85rem;
    color: var(--tertiary);
    font-style: italic;
}

/* Stagger animations */
.product-grid-stagger .product-card-premium {
    opacity: 0;
    transform: translateY(30px);
}

.product-grid-stagger .product-card-premium.reveal {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 991px) {
    .search-input-wrapper {
        width: 100%;
    }
    .products-control-bar {
        top: 60px;
    }
}

@media (max-width: 768px) {
    .controls-container {
        flex-direction: column;
        align-items: stretch;
    }
    .search-sort-group {
        flex-direction: column;
    }
    .category-pills {
        padding-bottom: var(--spacing-2);
    }
}

/* --- Category Drawer --- */
.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(12, 10, 14, 0.4);
    backdrop-filter: blur(4px);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.drawer-overlay.is-active {
    opacity: 1;
    visibility: visible;
}

.category-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    max-width: 450px;
    height: 100%;
    background: var(--surface-lowest);
    z-index: 2001;
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: -10px 0 30px rgba(0,0,0,0.05);
}

.category-drawer.is-active {
    transform: translateX(0);
}

.drawer-header {
    padding: var(--spacing-6);
    border-bottom: 1px solid var(--surface-highest);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.drawer-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--on-surface);
}

.drawer-close {
    background: none;
    border: none;
    color: var(--tertiary);
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s;
}

.drawer-close:hover {
    color: var(--primary);
}

.drawer-body {
    flex: 1;
    overflow-y: auto;
    padding: var(--spacing-6);
}

.drawer-search-wrapper {
    margin-bottom: var(--spacing-6);
    position: relative;
}

.drawer-search-wrapper input {
    padding: 0.8rem 1rem 0.8rem 2.8rem;
    background: var(--surface-low);
}

.drawer-search-wrapper i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--tertiary);
}

.drawer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.drawer-item {
    margin-bottom: 0.5rem;
}

.drawer-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    border-radius: 0.75rem;
    color: var(--on-surface);
    font-weight: 500;
    transition: all 0.3s;
    background: transparent;
}

.drawer-link:hover {
    background: var(--surface-low);
    color: var(--primary);
    padding-left: 1.5rem;
}

.drawer-link.active {
    background: var(--primary-light);
    color: var(--primary);
}

.drawer-link span {
    font-size: 0.75rem;
    color: var(--tertiary);
}

.pill-more {
    cursor: pointer;
    background: var(--surface-low);
    border: 1px dashed var(--primary-light);
    color: var(--primary);
}

.pill-more:hover {
    background: var(--primary-light);
    border-style: solid;
}

/* --- Celestial Dark Mode Overhaul --- */
.products-page-immersive {
    background-color: #0c0a0e;
    background-image: url('/public/img/celestial_bg.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    color: white;
    min-height: 100vh;
    padding-bottom: var(--spacing-12);
}

.celestial-header {
    padding: var(--spacing-4) 0 var(--spacing-2);
    text-align: center;
}

.celestial-logo {
    font-family: var(--font-display);
    font-size: 2.5rem;
    letter-spacing: 0.15em;
    color: white;
    margin-bottom: var(--spacing-6);
}

.prominent-search-box {
    max-width: 600px;
    margin: 0 auto var(--spacing-8);
    position: relative;
}

.prominent-search-box input {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 3rem;
    padding: 1.2rem 1.5rem 1.2rem 3.5rem;
    color: white;
    font-size: 1.1rem;
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    box-shadow: 0 15px 45px rgba(0,0,0,0.3);
}

.prominent-search-box i {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(255,255,255,0.6);
    font-size: 1.5rem;
}

/* Wrapped Category Pills */
.category-pills-wrapped {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.75rem;
    margin-bottom: 0;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.celestial-pill {
    padding: 0.7rem 1.8rem;
    border-radius: 2.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    display: inline-flex;
    align-items: center;
}

.celestial-pill:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.6);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.3);
}

.celestial-pill.active {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    box-shadow: 0 0 20px rgba(109, 76, 125, 0.4);
}

/* Celestial Cards */
.celestial-card {
    background: rgba(255, 255, 255, 0.04);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 2rem;
    padding: 1.25rem;
    transition: all 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.celestial-card:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

.celestial-card-img {
    border-radius: 1.5rem;
    aspect-ratio: 1/1;
    overflow: hidden;
    margin-bottom: 1.25rem;
    background: rgba(0,0,0,0.2);
}

.celestial-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: lighten; /* Makes spiritual lighting look better on dark */
}

.celestial-card-info {
    text-align: left;
}

.celestial-card-title {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    font-weight: 500;
}

.celestial-card-price {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.6);
}

.btn-enquire-glass {
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.75rem;
    background: rgba(255, 215, 0, 0.1);
    border: 1px solid rgba(255, 215, 0, 0.3);
    color: #D4AF37;
    float: right;
    transition: all 0.3s;
}

.btn-enquire-glass:hover {
    background: #D4AF37;
    color: black;
}

/* Drawer Dark Mode */
.category-drawer.celestial {
    background: rgba(12, 10, 14, 0.9) !important;
    backdrop-filter: blur(30px) !important;
    color: white !important;
    border-left: 1px solid rgba(255,255,255,0.1);
}

.category-drawer.celestial .drawer-title,
.category-drawer.celestial .drawer-link {
    color: white !important;
}

.category-drawer.celestial .drawer-link:hover {
    background: rgba(255,255,255,0.05);
}

.category-drawer.celestial .drawer-search-wrapper input {
    background: rgba(255,255,255,0.05);
    color: white;
    border: 1px solid rgba(255,255,255,0.1);
}

.category-drawer.celestial .drawer-header {
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* Star Decoration */
.celestial-star {
    position: absolute;
    color: rgba(255,223,0,0.4);
    font-size: 0.8rem;
    pointer-events: none;
}

/* --- Celestial Visibility & Layout Fixes --- */
.search-sort-master-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-4);
    margin-bottom: var(--spacing-8);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.prominent-search-box {
    flex: 1;
    margin-bottom: 0 !important;
}

.prominent-search-box input {
    background: rgba(255, 255, 255, 0.15) !important;
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    color: #ffffff !important;
    backdrop-filter: blur(30px) !important;
}

.prominent-search-box input::placeholder {
    color: rgba(255, 255, 255, 0.8) !important;
    opacity: 1 !important;
}

.celestial-sort-wrapper {
    width: 220px;
}

.sort-select-celestial {
    width: 100%;
    padding: 1.1rem 2rem 1.1rem 1.2rem;
    background: rgba(255, 255, 255, 0.1) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
    border-radius: 3rem;
    color: white !important;
    font-size: 0.9rem;
    backdrop-filter: blur(20px);
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.2rem;
}

.celestial-pill {
    background: rgba(255, 255, 255, 0.15) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3) !important;
}

.pill-more {
    border-style: solid !important;
    background: rgba(109, 76, 125, 0.3) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 768px) {
    .search-sort-master-row {
        flex-direction: column;
        gap: var(--spacing-3);
    }
    .celestial-sort-wrapper {
        width: 100%;
    }
}

/* --- Unified Controls Glass Shield --- */
.celestial-controls-glass {
    background: rgba(12, 10, 14, 0.4);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3rem;
    padding: var(--spacing-4) var(--spacing-6) var(--spacing-2);
    max-width: 1000px;
    margin: 0 auto var(--spacing-4);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.search-sort-master-row {
    margin-bottom: var(--spacing-4) !important;
}

.prominent-search-box input {
    background: rgba(0, 0, 0, 0.3) !important;
    border: 1px solid rgba(255, 255, 255, 0.3) !important;
}

.sort-select-celestial {
    background-color: rgba(0, 0, 0, 0.2) !important;
}

.celestial-pill {
    background: rgba(255, 255, 255, 0.08) !important;
    font-size: 0.8rem; /* Slightly smaller for better wrapping */
    padding: 0.5rem 1.25rem;
}

.celestial-pill:hover, .celestial-pill.active {
    background: var(--primary) !important;
    border-color: var(--primary) !important;
}

@media (max-width: 768px) {
    .celestial-controls-glass {
        padding: var(--spacing-4);
        border-radius: 2rem;
    }
}

/* --- Category Description Styling --- */
.category-description-celestial {
    margin-top: var(--spacing-4);
    color: rgba(255, 255, 255, 0.8);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    font-style: italic;
    opacity: 0.9;
}

/* --- About Page Styles --- */
.about-hero {
    position: relative;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
    text-align: center;
    margin-bottom: var(--spacing-10);
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/public/img/about_hero.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.about-hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(12, 10, 14, 0.3) 0%, rgba(12, 10, 14, 0.7) 100%);
    z-index: 2;
}

.about-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 var(--spacing-4);
}

.about-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-10);
    align-items: center;
}

@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: var(--spacing-6);
    }
    .about-hero {
        height: 50vh;
        min-height: 400px;
    }
}

.about-image-card {
    border-radius: 2rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    position: relative;
}

.about-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.5s ease;
}

.about-image-card:hover img {
    transform: scale(1.05);
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-4);
}

@media (max-width: 991px) {
    .philosophy-grid {
        grid-template-columns: 1fr;
    }
}

.philosophy-card {
    background: var(--surface-lowest);
    padding: var(--spacing-6);
    border-radius: 1.5rem;
    border: 1px solid var(--surface-high);
    transition: all 0.3s ease;
}

.philosophy-card:hover {
    border-color: var(--primary-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.philosophy-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: var(--spacing-4);
}
.philosophy-icon .material-symbols-outlined {
    font-size: 24px;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-6);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-2);
    opacity: 0.6;
}

.scroll-line {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, white, transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}

/* --- Contact Page Styles --- */
.contact-hero-premium {
    position: relative;
    height: 50vh;
    min-height: 450px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
    text-align: center;
    margin-top: -5rem; /* Offset main content padding */
}

.contact-hero-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/public/img/contact_hero.png');
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.contact-hero-premium::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(12, 10, 14, 0.2) 0%, rgba(12, 10, 14, 0.7) 100%);
    z-index: 2;
}

.contact-hero-content {
    position: relative;
    z-index: 3;
    max-width: 800px;
    padding: 0 var(--spacing-4);
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: var(--spacing-10);
    margin-top: calc(-1 * var(--spacing-12));
    position: relative;
    z-index: 10;
    padding-bottom: var(--spacing-12);
}

@media (max-width: 991px) {
    .contact-main-grid {
        grid-template-columns: 1fr;
        margin-top: var(--spacing-6);
    }
}

.contact-form-glass {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: var(--spacing-8);
    border-radius: 2.5rem;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.1);
}

.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-6);
}

.contact-method-card {
    background: var(--surface-lowest);
    padding: var(--spacing-5);
    border-radius: 1.5rem;
    display: flex;
    align-items: center;
    gap: var(--spacing-4);
    border: 1px solid var(--surface-high);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.contact-method-card:hover {
    transform: translateX(8px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-md);
}

.contact-method-icon {
    width: 52px;
    height: 52px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-method-icon .material-symbols-outlined {
    font-size: 24px;
}

.map-card {
    border-radius: 2rem;
    overflow: hidden;
    height: 300px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--surface-high);
}

.faq-premium-cta {
    background: var(--primary);
    color: white;
    padding: var(--spacing-10) var(--spacing-6);
    border-radius: 2.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.faq-premium-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255,255,255,0.1) 0%, transparent 70%);
    pointer-events: none;
}

