/* ============================================
   MAHANT AYURVEDA — Premium Redesign
   Dark Forest Green + Gold Luxury Theme
   ============================================ */

/* ---------- Google Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400&family=Outfit:wght@200;300;400;500;600;700;800&display=swap');

/* ---------- Design Tokens ---------- */
:root {
  /* Brand Palette */
  --color-forest: #0B1A0B;
  --color-forest-mid: #132613;
  --color-forest-light: #1A3A1A;
  --color-emerald: #2D5A27;
  --color-emerald-light: #3D7A37;
  --color-gold: #C8A96E;
  --color-gold-light: #E2CC9C;
  --color-gold-dark: #A68B4B;
  --color-cream: #F5F0E8;
  --color-cream-dark: #E8DFD0;
  --color-sand: #FAF7F2;
  --color-white: #FFFFFF;
  --color-black: #050A05;

  /* Semantic Colors */
  --primary: var(--color-emerald);
  --primary-dark: var(--color-forest-light);
  --accent: var(--color-gold);
  --accent-light: var(--color-gold-light);
  --bg-body: var(--color-forest);
  --bg-section: var(--color-forest-mid);
  --bg-card: rgba(255, 255, 255, 0.04);
  --bg-card-hover: rgba(255, 255, 255, 0.08);
  --text-heading: var(--color-cream);
  --text-body: rgba(245, 240, 232, 0.7);
  --text-muted: rgba(245, 240, 232, 0.45);
  --border-subtle: rgba(200, 169, 110, 0.15);
  --border-gold: rgba(200, 169, 110, 0.3);

  /* Typography */
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Outfit', 'Manrope', sans-serif;

  /* Spacing */
  --container-width: 1320px;
  --header-height: 80px;
  --section-py: clamp(4rem, 8vw, 8rem);

  /* Effects */
  --glass-bg: rgba(11, 26, 11, 0.6);
  --glass-border: rgba(200, 169, 110, 0.1);
  --glass-blur: 20px;
  --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.3);
  --shadow-glow: 0 0 40px rgba(200, 169, 110, 0.08);
  --radius-sm: 0.5rem;
  --radius-md: 1rem;
  --radius-lg: 1.5rem;
  --radius-xl: 2rem;
  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  scrollbar-width: thin;
  scrollbar-color: var(--color-gold-dark) var(--color-forest);
}

html::-webkit-scrollbar { width: 8px; }
html::-webkit-scrollbar-track { background: var(--color-forest); }
html::-webkit-scrollbar-thumb { background: var(--color-gold-dark); border-radius: 4px; }

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

body.has-custom-cursor,
body.has-custom-cursor a, 
body.has-custom-cursor button, 
body.has-custom-cursor .slider-btn, 
body.has-custom-cursor .thumbnail, 
body.has-custom-cursor .play-overlay, 
body.has-custom-cursor input, 
body.has-custom-cursor select { 
  cursor: none; 
}

/* Custom Cursor Styles */
.custom-cursor {
  position: fixed;
  top: 0;
  left: 0;
  width: 12px;
  height: 12px;
  background-color: var(--color-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, background-color 0.3s;
  mix-blend-mode: difference;
}

.custom-cursor-follower {
  position: fixed;
  top: 0;
  left: 0;
  width: 40px;
  height: 40px;
  border: 1px solid var(--color-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s;
}

.custom-cursor.hover {
  width: 60px;
  height: 60px;
  background-color: rgba(200, 169, 110, 0.2);
  mix-blend-mode: normal;
  border: 1px solid var(--color-gold);
}
.custom-cursor-follower.hover {
  opacity: 0;
}

a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; font-family: inherit; background: transparent; }
img { max-width: 100%; display: block; }

.container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2rem);
}

/* ---------- Typography Utilities ---------- */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}
.section-label::before {
  content: '';
  width: 2rem;
  height: 1px;
  background: var(--accent);
}

.section-title {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 400;
  color: var(--text-heading);
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.01em;
}

.section-title em {
  font-style: italic;
  color: var(--accent);
}

.section-text {
  font-size: 1.0625rem;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 540px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-gold-dark), var(--color-gold));
  color: var(--color-forest);
  box-shadow: 0 4px 15px rgba(200, 169, 110, 0.25);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-light));
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 169, 110, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--color-gold);
  border: 1px solid var(--border-gold);
}
.btn-outline:hover {
  background: rgba(200, 169, 110, 0.1);
  border-color: var(--color-gold);
}

.btn-outline-light {
  background: transparent;
  color: var(--color-white);
  border: 1px solid rgba(255,255,255,0.3);
  padding: 0.875rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  transition: all var(--transition);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.6);
}

.btn-secondary {
  background: rgba(200, 169, 110, 0.15);
  color: var(--color-gold);
  border: 1px solid var(--border-gold);
}
.btn-secondary:hover {
  background: rgba(200, 169, 110, 0.25);
}

.btn-icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(200, 169, 110, 0.12);
  color: var(--accent);
  border: 1px solid var(--border-gold);
  transition: all var(--transition);
}
.btn-icon:hover {
  background: var(--color-gold);
  color: var(--color-forest);
  transform: scale(1.1);
}

/* ---------- Material Symbols ---------- */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 300, 'GRAD' 0, 'opsz' 24;
  font-size: 1.5rem;
}
.text-primary { color: var(--accent); }

/* ============================================
   NAVIGATION
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  background: transparent;
  transition: all 0.5s ease;
}

.navbar.scrolled {
  background: rgba(11, 26, 11, 0.85);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--glass-border);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: var(--header-height);
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.logo img { height: 38px; filter: brightness(1.2); }
.logo-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--color-cream);
  letter-spacing: 0.05em;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  color: rgba(245, 240, 232, 0.7);
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  position: relative;
  padding: 0.25rem 0;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--color-gold); }
.nav-links a:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-actions > a.btn-icon {
  background: transparent;
  border: none;
  color: var(--color-cream);
  width: 2.5rem;
  height: 2.5rem;
}
.nav-actions > a.btn-icon:hover { color: var(--accent); background: rgba(200,169,110,0.1); }

.mobile-menu-btn {
  display: block;
  padding: 0.5rem;
  color: var(--color-cream);
}

@media (min-width: 768px) {
  .nav-links { display: flex; }
  .mobile-menu-btn { display: none; }
}

.nav-links.active {
  display: flex !important;
  flex-direction: column;
  position: absolute;
  top: var(--header-height);
  left: 0;
  right: 0;
  background: rgba(11, 26, 11, 0.95);
  backdrop-filter: blur(20px);
  padding: 2rem;
  gap: 1.5rem;
  border-bottom: 1px solid var(--border-gold);
  animation: slideDown 0.3s ease;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(11, 26, 11, 0.92) 0%,
    rgba(11, 26, 11, 0.7) 40%,
    rgba(11, 26, 11, 0.3) 70%,
    transparent 100%
  );
  z-index: 1;
}
.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  animation: heroZoom 20s ease-in-out infinite alternate;
  z-index: 0;
}

@keyframes heroZoom {
  0% { transform: scale(1); }
  100% { transform: scale(1.08); }
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 640px;
  padding: 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1.25rem;
  border-radius: var(--radius-sm);
  background: rgba(200, 169, 110, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2rem;
  backdrop-filter: blur(10px);
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  color: var(--color-cream);
  line-height: 1.05;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}
.hero-title strong, .hero-title b { color: var(--accent); font-weight: 500; }

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(245, 240, 232, 0.6);
  margin-bottom: 2.5rem;
  font-weight: 300;
  line-height: 1.7;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ============================================
   PAGE DECORATIONS (Leaves)
   ============================================ */
.page-decorations {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.scatter-leaf {
  position: absolute;
  opacity: 0.06;
  filter: blur(1px) brightness(0.5) saturate(0.3);
  animation: floatLeaf 12s ease-in-out infinite;
}
.leaf-type-1 { width: 14rem; }
.leaf-type-2 { width: 9rem; }
.leaf-type-3 { width: 11rem; }

.pos-1  { top: -5%; left: -5%; transform: rotate(45deg); animation-delay: 0s; }
.pos-2  { top: 20%; right: -5%; transform: rotate(-15deg); animation-delay: 2s; }
.pos-3  { bottom: 10%; left: -2%; transform: rotate(30deg); animation-delay: 4s; }
.pos-4  { top: 50%; left: 10%; width: 6rem; transform: rotate(180deg); }
.pos-5  { top: 10%; left: 20%; width: 5rem; transform: rotate(12deg); animation-delay: 1s; }
.pos-6  { bottom: 30%; right: 10%; transform: rotate(-45deg); animation-delay: 3s; }
.pos-7  { top: 40%; right: 2%; transform: rotate(90deg); animation-delay: 5s; width: 6rem; }
.pos-8  { bottom: -5%; left: 30%; transform: rotate(-10deg); animation-delay: 2.5s; }
.pos-9  { top: 5%; right: 25%; transform: rotate(160deg); animation-delay: 1.5s; width: 8rem; }
.pos-10 { bottom: 20%; left: 15%; transform: rotate(20deg); animation-delay: 3.5s; }
.pos-11 { top: 60%; right: 30%; transform: rotate(-30deg); animation-delay: 4.5s; width: 5rem; }
.pos-12 { bottom: 50%; right: -2%; transform: rotate(5deg); animation-delay: 0.5s; width: 12rem; }

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

@media (max-width: 768px) {
  .scatter-leaf { opacity: 0.03; }
  .pos-2, .pos-12 { display: none; }
}

/* ============================================
   SECTIONS — General
   ============================================ */
.section {
  padding: var(--section-py) 0;
  position: relative;
  z-index: 10;
}

.bg-white { background-color: var(--color-forest-mid); }
.bg-sand { background-color: var(--bg-body); }
.bg-off-white { background-color: var(--color-forest-mid); }
.bg-light { background-color: var(--color-forest-mid); }

/* Ensure cards sit above decorations */
.product-card, .video-wrapper, .testimonial-card,
.consult-form-card, .map-container, .card, .services-content {
  position: relative;
  z-index: 10;
  background-color: var(--bg-card) !important;
  border: 1px solid var(--border-subtle);
}
.services-content{
  padding: 1.5rem;
  border-radius: 1rem;
}
/* ============================================
   PHILOSOPHY / MISSION SECTION
   ============================================ */
#philosophy .container { max-width: 90%; }

.section#philosophy {
  position: relative;
  z-index: 25;
  margin-top: -5rem;
  padding-top: 0;
  padding-bottom: var(--section-py);
  background: transparent;
}

.section#philosophy > .container {
  background: linear-gradient(135deg, rgba(19, 38, 19, 0.9), rgba(11, 26, 11, 0.95));
  backdrop-filter: blur(20px);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-glow), var(--shadow-card);
}

.philosophy-header { max-width: 100%; margin: 0 0 2rem 0;}

.philosophy-corner-img {
  position: absolute;
  top: -5vh;
  right: -9vw;
  opacity: 0.15;
  filter: brightness(0.4);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1rem;
  margin: 2rem 0;
  width: 100%;
}

@media (min-width: 1024px) {
  .services-grid { width: 65%; }
}

.service-item {
  background: rgba(200, 169, 110, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 1rem 1.25rem;
  transition: all var(--transition);
}
.service-item:hover {
  background: rgba(200, 169, 110, 0.12);
  border-color: var(--border-gold);
  transform: translateY(-3px);
}

.service-icon {
  display: flex;
  align-items: center;
  color: var(--accent);
}
.service-title {
  margin-left: 1rem;
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-heading);
}

.card-text {
  color: var(--text-body);
  line-height: 1.7;
}

.subtitle {
  display: block;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-bottom: 0.75rem;
}

/* ============================================
   PRODUCTS SECTION
   ============================================ */
.section-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 3rem;
}

.view-all {
  display: none;
  align-items: center;
  gap: 0.5rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.25rem;
  transition: all var(--transition);
}
.view-all:hover { border-bottom-color: var(--accent); }

@media (min-width: 768px) { .view-all { display: flex; } }

.product-card {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-subtle) !important;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  background: var(--bg-card-hover) !important;
  border-color: var(--border-gold) !important;
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
}

.product-image-wrapper {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: rgba(0,0,0,0.2);
}

.product-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.product-card:hover .product-image { transform: scale(1.08); }

.badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(200, 169, 110, 0.9);
  color: var(--color-forest);
  padding: 0.3rem 0.875rem;
  border-radius: var(--radius-sm);
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.product-details {
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.5rem;
}

.product-title {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-heading);
}

.rating {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
}

.product-desc {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 1rem;
  flex: 1;
  line-height: 1.6;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid var(--border-subtle);
  padding-top: 1rem;
}

.price-wrapper {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}
.price-original {
  text-decoration: line-through;
  color: var(--text-muted);
  font-size: 0.85rem;
}
.price-sale {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--accent);
}
.price-discount {
  background: rgba(200, 169, 110, 0.15);
  color: var(--accent);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.15rem 0.5rem;
  border-radius: var(--radius-sm);
}

/* Product Slider */
.product-slider-container {
  position: relative;
  max-width: 100%;
  padding: 0 1rem;
}
.product-slider { overflow: hidden; padding: 1rem 0 3rem; }
.product-track { display: flex; transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94); }
.product-slide { flex-shrink: 0; width: 100%; padding: 0 0.75rem; }

@media (min-width: 768px) { .product-slide { width: 50%; } }
@media (min-width: 1024px) { .product-slide { width: 33.333%; } }

.product-slide .product-card { height: 100%; }

/* ============================================
   VIDEO STORIES
   ============================================ */
.gap-24 { display: flex; flex-direction: column; gap: 6rem; }

.story-block {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 10;
}
.story-block.reverse { flex-direction: column; }

@media (min-width: 1024px) {
  .story-block, .story-block.reverse { flex-direction: row; }
  .story-block.reverse { flex-direction: row-reverse; }
}

.story-content { flex: 1; }
.story-label {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}
.story-line { width: 2rem; height: 1px; background: var(--accent); }
.story-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 400;
  color: var(--text-heading);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}
.story-text {
  font-size: 1.0625rem;
  color: var(--text-body);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}
.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 600;
  color: var(--accent);
  border-bottom: 1px solid var(--border-gold);
  padding-bottom: 0.25rem;
  transition: all var(--transition);
}
.link-btn:hover { color: var(--accent-light); gap: 0.75rem; }

.video-wrapper {
  flex: 1;
  width: 100%;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 16/9;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-gold) !important;
  background: rgba(0,0,0,0.3) !important;
}
.video-thumb {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.8s ease;
}
.video-wrapper:hover .video-thumb { transform: scale(1.05); }

.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.4s;
}
.video-wrapper:hover .play-overlay { background: rgba(0, 0, 0, 0.5); }
.play-btn {
  width: 4.5rem;
  height: 4.5rem;
  background: rgba(200, 169, 110, 0.2);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(200, 169, 110, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s;
  animation: pulse-gold 2s infinite;
}
.video-wrapper:hover .play-btn { transform: scale(1.1); background: rgba(200, 169, 110, 0.35); }

@keyframes pulse-gold {
  0% {
    box-shadow: 0 0 0 0 rgba(200, 169, 110, 0.4);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(200, 169, 110, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(200, 169, 110, 0);
  }
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonial-slider-container { position: relative; padding: 0 1rem; }
.testimonial-slider { overflow: hidden; padding: 1rem 0 3rem; }
.testimonial-track { display: flex; transition: transform 0.6s ease; }
.testimonial-slide { flex-shrink: 0; width: 100%; padding: 0 0.75rem; }

@media (min-width: 768px) { .testimonial-slide { width: 50%; } }
@media (min-width: 1024px) { .testimonial-slide { width: 33.333%; } }

.testimonial-card {
  background: var(--bg-card) !important;
  border: 1px solid var(--border-subtle) !important;
  padding: 2rem;
  border-radius: var(--radius-lg);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all var(--transition);
}
.testimonial-card:hover {
  border-color: var(--border-gold) !important;
  background: var(--bg-card-hover) !important;
}

.quote {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--text-body);
  font-size: 1.125rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.user-profile { display: flex; align-items: center; gap: 1rem; }
.avatar {
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background-size: cover;
  background-position: center;
  background-color: rgba(200, 169, 110, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border-gold);
  color: var(--accent);
  font-weight: 700;
}
.user-info p:first-child { font-weight: 600; color: var(--text-heading); font-size: 0.9rem; }
.user-info p:last-child { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.05em; }

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  background: var(--bg-card);
  color: var(--accent);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  cursor: pointer;
  transition: all var(--transition);
  backdrop-filter: blur(10px);
}
.slider-btn:hover {
  background: var(--color-gold);
  color: var(--color-forest);
  transform: translateY(-50%) scale(1.1);
}

.prev-btn, .product-prev-btn { left: -0.5rem; }
.next-btn, .product-next-btn { right: -0.5rem; }

@media (max-width: 768px) {
  .slider-btn { width: 2.5rem; height: 2.5rem; }
  .prev-btn, .product-prev-btn { left: 0; }
  .next-btn, .product-next-btn { right: 0; }
}

.slider-dots, .product-slider-dots { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1.5rem; }
.slider-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: rgba(200, 169, 110, 0.2);
  cursor: pointer;
  transition: all 0.3s;
}
.slider-dot.active {
  background: var(--accent);
  width: 1.5rem;
  border-radius: 0.25rem;
}

/* ============================================
   CONSULTATION SECTION
   ============================================ */
.bg-primary-light-alpha { background: rgba(45, 90, 39, 0.08); }

.consult-container {
  display: flex;
  flex-direction: column;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 10;
}
@media (min-width: 768px) { .consult-container { flex-direction: row; } }

.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: var(--text-body);
}
.check-list li .material-symbols-outlined { color: var(--accent); }

.consult-form-card {
  flex: 1;
  width: 100%;
  max-width: 28rem;
  background: var(--bg-card) !important;
  border: 1px solid var(--border-gold) !important;
  padding: 2.5rem;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(20px);
}

.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 0.5rem;
  letter-spacing: 0.03em;
}
.form-input {
  width: 100%;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  color: var(--text-heading);
  font-family: inherit;
  font-size: 0.9rem;
  transition: all var(--transition);
}
.form-input:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 2px rgba(200, 169, 110, 0.15);
  background: rgba(255, 255, 255, 0.06);
}
.form-input option { background: var(--color-forest); color: var(--text-heading); }

/* ============================================
   TRUST INDICATORS / FEATURES
   ============================================ */
.features {
  padding: 3rem 0;
  background: rgba(200, 169, 110, 0.04);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  position: relative;
  z-index: 10;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  text-align: center;
}
@media (min-width: 768px) { .features-grid { grid-template-columns: repeat(4, 1fr); } }

.feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.feature .material-symbols-outlined { color: var(--accent); font-size: 1.75rem; }
.feature span:last-child {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-body);
}

/* ============================================
   MAP / LOCATION
   ============================================ */
.map-container {
  border-radius: var(--radius-lg) !important;
  overflow: hidden;
  border: 1px solid var(--border-gold) !important;
  background: transparent !important;
}

/* ============================================
   FOOTER
   ============================================ */
footer {
  background: linear-gradient(180deg, var(--color-forest), #050A05);
  color: var(--color-cream);
  padding: 5rem 0 2.5rem;
  position: relative;
  z-index: 10;
  border-top: 1px solid var(--border-gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
@media (min-width: 768px) { .footer-grid { grid-template-columns: 1.5fr 1fr 1fr 1fr; } }

.footer-section h4 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--color-cream);
  margin-bottom: 1.5rem;
}
.footer-links li { margin-bottom: 0.75rem; color: var(--text-muted); font-size: 0.875rem; }
.footer-links a { color: var(--text-muted); font-size: 0.875rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--accent); }

.social-links { display: flex; gap: 0.75rem; }
.social-icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(200, 169, 110, 0.1);
  border: 1px solid var(--border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  transition: all 0.3s;
}
.social-icon:hover { background: var(--accent); color: var(--color-forest); }

.newsletter-form { display: flex; gap: 0.5rem; }
.newsletter-input {
  flex: 1;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.625rem 1rem;
  color: var(--color-cream);
  font-size: 0.875rem;
}
.newsletter-input:focus { outline: none; border-color: var(--accent); }
.newsletter-input::placeholder { color: var(--text-muted); }

.footer-bottom {
  border-top: 1px solid var(--border-subtle);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
.footer-bottom a { color: var(--text-muted); }
.footer-bottom a:hover { color: var(--accent); }
@media (min-width: 768px) { .footer-bottom { flex-direction: row; } }

/* ============================================
   ANIMATIONS
   ============================================ */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Staggered children */
.reveal-visible .product-card,
.reveal-visible .service-item,
.reveal-visible .testimonial-card {
  animation: fadeInUp 0.6s ease forwards;
}

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

/* Particle glow effect on sections */
.section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  opacity: 0.3;
}

/* ============================================
   GRID UTILITIES
   ============================================ */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

.grid-4 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* ============================================
   PAGE CONTENT (Inner Pages via Layout)
   ============================================ */
.page-content {
  padding-top: var(--header-height);
  min-height: 60vh;
}

/* Inner page navbar always has solid bg */
.scanned-nav, .scanned-nav.scrolled {
  background: rgba(11, 26, 11, 0.95) !important;
  backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--glass-border);
}

/* ============================================
   RESPONSIVE POLISH
   ============================================ */
@media (max-width: 768px) {
  .hero { min-height: 90vh; }
  .hero .container { width: 90% !important; }
  .services-content img { display: none; }
  .consult-form-card { max-width: 100%; }
}

@media (max-width: 480px) {
  .hero-content { padding: 0; width: 100%; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
}

/* ============================================
   NEXT.JS SPECIFIC ENHANCEMENTS
   ============================================ */

/* Scroll Progress Bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--color-gold-dark), var(--color-gold), var(--color-gold-light));
  z-index: 9999;
  transform-origin: left;
  transition: none;
}

/* Noise Texture Overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 1000;
  opacity: 0.4;
}

/* Availability Badge (Hero) */
.availability-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.875rem;
  border-radius: 100px;
  background: rgba(45, 90, 39, 0.2);
  border: 1px solid rgba(45, 90, 39, 0.4);
  color: #6ee7a0;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.availability-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #4ade80;
  box-shadow: 0 0 8px #4ade80;
  animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(0.8); }
}

/* Horizontal text ticker (hero) */
.hero-ticker {
  position: absolute;
  bottom: 8rem;
  left: 0;
  right: 0;
  overflow: hidden;
  background: rgba(11, 26, 11, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-top: 1px solid rgba(200, 169, 110, 0.25);
  border-bottom: 1px solid rgba(200, 169, 110, 0.25);
  padding: 0.85rem 0;
  z-index: 20;
}
.hero-ticker-track {
  display: flex;
  gap: 3rem;
  animation: ticker-scroll 25s linear infinite;
  white-space: nowrap;
}
.hero-ticker-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  flex-shrink: 0;
}
.hero-ticker-sep {
  color: var(--accent);
  font-size: 0.5rem;
}
@keyframes ticker-scroll {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Page transition */
.page-enter {
  opacity: 0;
  transform: translateY(16px);
  animation: page-enter 0.5s ease forwards;
}
@keyframes page-enter {
  to { opacity: 1; transform: translateY(0); }
}

/* Enhanced section separator */
.section-sep {
  width: 3rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  margin: 0 auto 2rem;
}

/* Video Player State */
.video-wrapper.playing .video-thumb,
.video-wrapper.playing .play-overlay {
  display: none !important;
}
.video-iframe.active,
.video-player.active {
  display: block !important;
}

/* Form success/error states */
.form-success {
  background: rgba(74, 222, 128, 0.1);
  border: 1px solid rgba(74, 222, 128, 0.3);
  color: #4ade80;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  text-align: center;
  margin-top: 1rem;
}
.form-error {
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.3);
  color: #f87171;
  padding: 0.75rem 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  text-align: center;
  margin-top: 1rem;
}

/* Supabase storage images */
img[src*="supabase.co"] {
  object-fit: cover;
}

/* Mobile Menu Enhanced */
.mobile-menu-open .nav-links {
  display: flex !important;
  flex-direction: column;
  position: fixed;
  top: var(--header-height);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(11, 26, 11, 0.98);
  backdrop-filter: blur(20px);
  padding: 3rem 2rem;
  gap: 2rem;
  border-bottom: 1px solid var(--border-gold);
  animation: slideDown 0.3s ease;
  z-index: 99;
  overflow-y: auto;
}
.mobile-menu-open .nav-links a {
  font-size: 1.5rem;
  font-family: var(--font-heading);
  color: var(--color-cream);
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-subtle);
}

/* Floating particles */
.particle {
  position: fixed;
  width: 2px;
  height: 2px;
  background: var(--color-gold);
  border-radius: 50%;
  opacity: 0;
  animation: float-particle 6s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}
@keyframes float-particle {
  0% { opacity: 0; transform: translateY(100vh) scale(0); }
  10% { opacity: 0.6; }
  90% { opacity: 0.2; }
  100% { opacity: 0; transform: translateY(-20vh) scale(1); }
}

/* Number counter */
.stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 500;
  color: var(--accent);
  line-height: 1;
}
.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

/* Marquee (horizontal scroll) */
.marquee-wrap {
  overflow: hidden;
  padding: 1rem 0;
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
  background: rgba(200, 169, 110, 0.03);
}
.marquee-track {
  display: flex;
  gap: 2rem;
  animation: marquee 20s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }
.marquee-item {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* Skeleton loading */
@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}
.skeleton {
  background: linear-gradient(90deg,
    rgba(255,255,255,0.03) 25%,
    rgba(200,169,110,0.06) 50%,
    rgba(255,255,255,0.03) 75%
  );
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */

/* Responsive 3-col grid */
.grid-3 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}
@media (min-width: 640px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

/* 2-col grid */
.grid-2 {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}
@media (min-width: 768px) { .grid-2 { grid-template-columns: repeat(2, 1fr); } }

/* Link button (gold underline) */
.link-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.04em;
  border-bottom: 1px solid transparent;
  padding-bottom: 0.125rem;
  transition: border-color var(--transition);
}
.link-btn:hover { border-bottom-color: var(--accent); }

/* Check list */
.check-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  margin-top: 1.5rem;
}
.check-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--text-body);
}
.check-list li .material-symbols-outlined {
  color: #4ade80;
  font-size: 1.25rem;
  flex-shrink: 0;
}

/* Consultation section layout */
.consult-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .consult-container { grid-template-columns: 1fr 480px; gap: 4rem; }
}

.bg-primary-light-alpha {
  background: linear-gradient(135deg, var(--color-forest-mid), var(--color-forest));
}

/* Consult form card */
.consult-form-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  backdrop-filter: blur(20px);
  position: relative;
  z-index: 10;
}

/* Form inputs */
.form-group { margin-bottom: 1.25rem; }
.form-label {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--color-gold);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}
.form-input {
  width: 100%;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.75rem 1rem;
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color var(--transition);
  appearance: none;
  -webkit-appearance: none;
}
.form-input::placeholder { color: rgba(245, 240, 232, 0.5); }
.form-input:focus {
  outline: none;
  border-color: var(--color-gold);
  background: rgba(200,169,110,0.05);
}
select.form-input {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='%23C8A96E'%3E%3Cpath d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2rem;
  cursor: pointer;
}
select.form-input option { background: var(--color-forest-mid); color: var(--color-cream); }

/* Newsletter Form */
.newsletter-form {
  display: flex;
  gap: 0.5rem;
}
.newsletter-input {
  flex: 1;
  background: rgba(255,255,255,0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 0.5rem 1rem;
  color: var(--color-cream);
  font-family: var(--font-body);
  font-size: 0.875rem;
  transition: border-color var(--transition);
  outline: none;
}
.newsletter-input::placeholder { color: rgba(245, 240, 232, 0.4); }
.newsletter-input:focus { border-color: var(--color-gold); background: rgba(200,169,110,0.05); }

/* Testimonial track */
.testimonial-slider-container { position: relative; padding: 0 1rem; }
.testimonial-slider { overflow: hidden; padding: 1rem 0 3rem; }
.testimonial-track { display: flex; }
.testimonial-slide { flex-shrink: 0; padding: 0 0.75rem; }


/* Services container */
.services-container { width: 100%; }

/* Responsive hero */
@media (max-width: 768px) {
  .hero-content { padding-top: 5rem; }
}

/* Badges */
.badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: var(--color-gold);
  color: var(--color-forest-dark);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

/* Material Symbols defaults */
.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  vertical-align: middle;
  line-height: 1;
}

/* Global Typography Resets for Color Consistency */
h1, h2, h3, h4, h5, h6 {
  color: var(--text-heading);
}

/* Light Background Scoped Styles (Admin & Checkout) */
.light-bg, .light-bg h1, .light-bg h2, .light-bg h3, .light-bg h4, .light-bg h5, .light-bg h6, .light-bg span, .light-bg p {
  color: var(--color-black) !important;
}

.light-bg .section-title {
  color: var(--color-black) !important;
}

.light-bg .form-label {
  color: var(--color-forest-light) !important;
  font-weight: 600;
}

.light-bg .form-input {
  background: var(--color-white) !important;
  border-color: #d1d5db !important;
  color: var(--color-black) !important;
}

.light-bg .form-input::placeholder {
  color: #9ca3af !important;
}

.light-bg .form-input:focus {
  border-color: var(--color-gold) !important;
  box-shadow: 0 0 0 2px rgba(200, 169, 110, 0.1) !important;
}

.cart-summary-item span {
  color: var(--color-black) !important;
}

