/* --- Variables --- */
:root {
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --primary: #004200;
  --primary-hover: #002e00;
  --secondary: #e8f5e9;
  /* Very light green */
  --text: #1a1a1a;
  --text-muted: #555555;
  --border: #e0e0e0;
  --white: #ffffff;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  --shadow-hover: 0 10px 25px rgba(0, 0, 0, 0.1);
  --radius: 16px;
  /* Luxury Wellness Palette */
  --beige-light: #f9f7f2;
  --beige-soft: #f1ede2;
  --beige-dark: #e5dfd3;
  --luxury-green: #004200;
  --luxury-green-soft: rgba(0, 66, 0, 0.05);
  --text-charcoal: #333333;
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(255, 255, 255, 0.4);
}

.auth-btn-login {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #ffffff !important;
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  letter-spacing: 0.5px;
}

.auth-btn-login:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #ffffff;
  transform: translateY(-1px);
}

.auth-btn-register {
  background: #d4af37;
  color: #002e00 !important;
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
  letter-spacing: 0.5px;
}

.auth-btn-register:hover {
  background: #be9d31;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
}

/* --- User Dropdown --- */
.user-dropdown {
  position: relative;
  display: inline-block;
}

.user-trigger {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.user-trigger:hover {
  background: rgba(255, 255, 255, 0.1);
}

.user-avatar-header {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid #d4af37;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.user-trigger:hover .user-avatar-header {
  transform: scale(1.1);
  box-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

.dropdown-menu-auri {
  position: absolute;
  top: calc(100% + 15px);
  right: 0;
  background: #ffffff;
  min-width: 260px;
  border-radius: 20px;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 1000;
  overflow: hidden;
  animation: dropdownFade 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-menu-auri.show {
  display: block;
}

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

.dropdown-header-auri {
  padding: 25px 20px;
  background: #fdfdfd;
  border-bottom: 1px solid #f0f0f0;
}

.dropdown-header-auri h5 {
  margin: 0;
  color: var(--primary);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: -0.2px;
}

.dropdown-header-auri p {
  margin: 4px 0 0;
  color: #888;
  font-size: 0.8rem;
}

.dropdown-list-auri {
  padding: 10px 0;
}

.dropdown-item-auri {
  display: flex !important;
  align-items: center;
  gap: 15px;
  padding: 14px 25px;
  color: #333333 !important;
  font-size: 0.95rem;
  font-weight: 600;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.dropdown-item-auri:hover {
  background: #f8f8f8;
  color: #004200 !important;
  padding-left: 30px;
}

.dropdown-item-auri i {
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
  color: #d4af37 !important;
}

.dropdown-item-auri.logout {
  border-top: 1px solid #f5f5f5;
  color: #e53935;
  margin-top: 5px;
}

.dropdown-item-auri.logout i {
  color: #e53935;
}

.dropdown-item-auri.logout:hover {
  background: #fff5f5;
}

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

body {
  font-family: var(--font-body);
  color: var(--text);
  line-height: 1.6;
  background-color: var(--white);
  padding-top: 80px; /* Account for fixed header */
  overflow-x: hidden;
  font-size: 16px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}

ul {
  list-style: none;
}

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

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

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

section {
  padding: 60px 0;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
.sec-title {
  font-family: var(--font-heading);
  color: #092e09;
  font-weight: 600;
  line-height: 1.2;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

h2 {
  font-size: 2rem;
  margin-bottom: 32px;
  text-align: center;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 500;
  transition: 0.3s;
}

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

.btn-primary:hover {
  background: var(--primary-hover);
  transform: translateY(-2px);
}

.btn-outline {
  border: 2px solid var(--secondary);
  color: var(--secondary);
}

.btn-outline:hover {
  border: 2px solid var(--primary);
  background: var(--primary);
  color: var(--white);
}

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

.btn-white:hover {
  background: #f0f0f0;
}

.btn-outline-white {
  border: 2px solid var(--white);
  color: var(--white);
}

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

/* --- Header --- */
.top-bar {
  background: var(--white);
  color: var(--text);
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  font-size: 0.9rem;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.top-actions {
  display: flex;
  align-items: center;
}

.whatsapp-btn {
  color: #25d366;
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10000;
  background: var(--primary);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
  padding: 15px 0 22px;
  transition: all 0.3s ease;
}

header.scrolled {
  padding: 10px 0 14px;
  background: #003000; /* Darker green on scroll */
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

header .container {
  max-width: 95% !important;
  width: 95% !important;
}

.header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

nav {
  flex-grow: 1;
  display: flex;
  justify-content: center;
}

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

.nav-links a {
  font-weight: 500;
  font-size: 1rem;
  color: var(--white);
}

.nav-links a:hover {
  color: #f0e68c;
}

.header-icons {
  display: flex;
  gap: 25px;
  align-items: center;
  font-size: 1.25rem;
}

.header-icons a {
  color: var(--white);
}

.header-icons a:hover {
  color: #f0e68c;
}

.cart-widget {
  position: relative;
  display: flex;
  align-items: center;
}

.cart-count {
  position: absolute;
  top: -5px;
  right: -8px;
  background: #f0e68c;
  color: var(--primary);
  border-radius: 50%;
  width: 16px;
  height: 16px;
  font-size: 0.7rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

/* 1. Hero Section */
.hero-section {
  background:
    linear-gradient(rgba(0, 66, 0, 0.4), rgba(0, 66, 0, 0.4)),
    url("auri-images/background-main.png");
  background-size: cover;
  background-position: center;
  padding: 120px 0 140px;
  position: relative;
  overflow: hidden;
  color: #ffffff;
}

.hero-section h1,
.hero-section p {
  color: #ffffff !important;
}

.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* 50% Overlay on the Right Side with Slant */
  /* background: linear-gradient(105deg, transparent 50%, #c8e6c938 23%); */
  pointer-events: none;
  z-index: 0;

  /* Sliding Animation */
  transform: translateX(100%);
  animation: slideInOverlay 1.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.5s forwards;
}

@keyframes slideInOverlay {
  to {
    transform: translateX(0);
  }
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-txt h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.hero-txt p {
  font-size: 1.3rem;
  color: #555;
  margin-bottom: 32px;
  max-width: 550px;
}

.hero-image {
  position: relative;
}

.hero-image video {
  width: 100%;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 66, 0, 0.2);
  display: block;
  transform: scale(1.8) translate(45px, 0px);
  /* Scale and position */
  transform-origin: center center;
  transition: transform 0.3s ease;
}

#hero-video {
  display: none;
}

/* .hero-image::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 400px;
  height: 400px;
  background: #e0f2f12d;
  border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
  z-index: -1;
  animation: blob-float 10s infinite linear;
}

@keyframes blob-float {
  0% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transform: translate(-50%, -50%) rotate(0deg);
  }

  50% {
    border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    transform: translate(-50%, -50%) rotate(180deg);
  }

  100% {
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
    transform: translate(-50%, -50%) rotate(360deg);
  }
} */

/* --- 14. Luxury Product Detail Page (Premium Redesign) --- */
.luxury-detail-wrapper {
  background: var(--beige-light);
  color: var(--text-charcoal);
  padding-bottom: 80px;
}

.product-hero-premium {
  padding: 100px 0 60px;
  background: linear-gradient(to bottom, var(--white), var(--beige-light));
}

.hero-grid-luxury {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

/* Gallery Luxury */
.gallery-luxury {
  display: flex;
  gap: 30px;
  position: sticky;
  top: 120px;
}

.thumb-strip-vertical {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.v-thumb {
  width: 90px;
  height: 90px;
  background: var(--white);
  border-radius: 15px;
  padding: 10px;
  cursor: pointer;
  border: 1px solid var(--beige-dark);
  transition: all 0.3s ease;
}

.v-thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.v-thumb.active {
  border-color: var(--primary);
  box-shadow: 0 5px 15px rgba(0, 66, 0, 0.1);
  transform: translateX(5px);
}

.main-img-luxury {
  background: var(--white);
  flex: 1;
  border-radius: 30px;
  padding: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: var(--shadow);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.main-img-luxury img {
  max-width: 100%;
  max-height: 500px;
  object-fit: contain;
  transition: opacity 0.3s ease;
}

.zoom-indicator {
  position: absolute;
  top: 30px;
  right: 30px;
  color: #ccc;
  font-size: 1.2rem;
}

/* Info Side Luxury */
.luxury-breadcrumbs {
  margin-bottom: 25px;
  font-size: 0.85rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #888;
}

.luxury-breadcrumbs a {
  color: var(--primary);
  font-weight: 600;
}

.luxury-title {
  font-family: var(--font-serif);
  font-size: 3.8rem;
  line-height: 1.1;
  color: var(--primary);
  margin-bottom: 20px;
  font-weight: 700;
}

.luxury-rating {
  margin-bottom: 35px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.luxury-rating .stars {
  color: #d4af37;
  /* Luxury Gold */
  font-size: 1.1rem;
}

.review-count {
  font-size: 0.9rem;
  color: #777;
  font-weight: 500;
  margin-top: -5px;
}

.luxury-price-card {
  background: var(--white);
  padding: 30px;
  border-radius: 25px;
  box-shadow: var(--shadow);
  margin-bottom: 40px;
  border: 1px solid var(--beige-soft);
}

.luxury-price-card .price-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.luxury-price-card .label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: #999;
}

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

.price-badges {
  display: flex;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--beige-light);
}

.price-badges span {
  font-size: 0.85rem;
  color: #666;
  display: flex;
  align-items: center;
  gap: 8px;
}

.price-badges i {
  color: var(--primary);
}

.luxury-actions {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 40px;
}

.btn-premium-cart {
  background: var(--primary);
  color: var(--white);
  padding: 22px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  box-shadow: 0 10px 30px rgba(0, 66, 0, 0.2);
  transition: all 0.3s ease;
  letter-spacing: 1px;
}

.btn-premium-cart:hover {
  background: var(--primary-hover);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 66, 0, 0.3);
}

.contact-buttons-luxury {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.btn-lx-outline {
  border: 1.5px solid var(--primary);
  color: var(--primary);
  padding: 15px;
  border-radius: 40px;
  text-align: center;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
}

.btn-lx-outline:hover {
  background: var(--luxury-green-soft);
  border-color: var(--primary-hover);
}

.benefit-highlights-row {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.b-mini {
  font-size: 0.8rem;
  color: #888;
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
}

.b-mini i {
  color: var(--primary);
}

/* Benefits Section */
.benefits-luxury-sec {
  padding: 100px 0;
  background: var(--beige-soft);
}

.lx-sec-title {
  font-family: var(--font-serif);
  font-size: 2.8rem;
  color: var(--primary);
  margin-bottom: 50px;
  text-align: center;
}

.benefits-glass-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(10px);
  padding: 40px;
  border-radius: 30px;
  border: 1px solid var(--glass-border);
  text-align: center;
  transition: all 0.3s ease;
}

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

.glass-icon {
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 25px;
}

.glass-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.glass-card p {
  line-height: 1.7;
  color: #666;
}

/* Tabs Section */
.tabs-luxury-sec {
  padding: 100px 0;
  background: var(--white);
}

.lx-tabs-header {
  display: flex;
  justify-content: center;
  gap: 50px;
  border-bottom: 1px solid var(--beige-soft);
  margin-bottom: 60px;
}

.lx-tab-btn {
  padding: 20px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: #aaa;
  position: relative;
  transition: all 0.3s ease;
}

.lx-tab-btn.active {
  color: var(--primary);
}

.lx-tab-btn.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--primary);
}

.lx-content-pane {
  display: none;
  max-width: 800px;
  margin: 0 auto;
  line-height: 2;
  font-size: 1.1rem;
  color: #555;
}

.lx-content-pane.active {
  display: block;
  animation: fadeIn 0.5s ease;
}

.lx-spec-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
}

.spec-item {
  background: var(--beige-light);
  padding: 30px;
  border-radius: 20px;
  border: 1px solid var(--beige-soft);
}

.ing-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}

.ing-tags span {
  background: var(--secondary);
  color: var(--primary);
  padding: 10px 25px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
}

/* Origins Section */
.origins-luxury-sec {
  padding: 120px 0;
  background: linear-gradient(to bottom, var(--white), var(--beige-light));
  text-align: center;
}

.lx-sec-sub {
  color: #777;
  font-size: 1.1rem;
  margin-bottom: 60px;
}

.origins-circle-grid {
  display: flex;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
}

.origin-element {
  width: 150px;
  text-align: center;
  transition: 0.3s;
}

.origin-icon-wrap {
  width: 100px;
  height: 100px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.22rem;
  color: var(--primary);
  margin: 0 auto 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--beige-soft);
  transition: all 0.4s ease;
}

.origin-element:hover .origin-icon-wrap {
  background: var(--primary);
  color: var(--white);
  transform: scale(1.1);
}

.origin-element span {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
}

/* Trust Section */
.trust-lx-sec {
  padding: 60px 0;
  background: var(--primary);
  color: var(--white);
}

.lx-trust-flex {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.lx-trust-item {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 1.1rem;
  font-weight: 500;
  opacity: 0.9;
}

.lx-trust-item i {
  font-size: 1.5rem;
}

/* Related remedies */
.related-lx-sec {
  padding: 120px 0;
  background: var(--beige-light);
}

.lx-sec-header-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 60px;
}

.lx-link {
  color: var(--primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 1rem;
}

.related-lx-sec .product-grid {
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1200px) {
  .hero-grid-luxury {
    gap: 40px;
  }
}

@media (max-width: 1024px) {
  .hero-grid-luxury {
    grid-template-columns: 1fr;
  }

  .gallery-luxury {
    flex-direction: column-reverse;
    position: static;
  }

  .thumb-strip-vertical {
    flex-direction: row;
    justify-content: center;
  }

  .luxury-title {
    font-size: 3rem;
  }

  .benefits-glass-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .lx-tabs-header {
    gap: 20px;
    overflow-x: auto;
    padding-bottom: 15px;
    justify-content: flex-start;
  }

  .lx-tab-btn {
    white-space: nowrap;
    font-size: 0.95rem;
  }

  .benefits-glass-grid {
    grid-template-columns: 1fr;
  }

  .origins-circle-grid {
    gap: 30px;
  }

  .related-lx-sec .product-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* Brands Section Polished */
.brands-sec {
  padding: 60px 0;
  background: #fdfdfd;
  border-top: 1px solid #eee;
}

.brands-grid {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}

.brand-item {
  text-align: center;
  flex: 1;
  font-size: 2rem;
  color: var(--primary);
}

.brand-item i {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 15px;
  background: #fff;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  margin: 0 auto 15px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
}

.brand-item:hover i {
  background: var(--primary);
  color: #fff;
}

/* Related Products Ref */
.related-products-ref {
  padding: 80px 0;
  background: #fff;
}

.ref-sec-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.see-all {
  color: #888;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
}

.ref-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.ref-product-card {
  cursor: pointer;
  transition: all 0.3s ease;
}

.ref-product-card .p-img {
  background: #f9f9f9;
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 15px;
  text-align: center;
}

.ref-product-card .p-img img {
  height: 150px;
  object-fit: contain;
}

.ref-product-card .p-title {
  font-size: 1rem;
  color: #333;
  margin-bottom: 8px;
  font-weight: 600;
}

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

@media (max-width: 1024px) {
  .detail-main-grid {
    grid-template-columns: 1fr;
  }

  .gallery-side {
    position: static;
  }

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

@media (max-width: 768px) {
  .ref-product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}


.hero-image img {
  max-width: 100%;
  height: auto;
  filter: drop-shadow(0 20px 40px rgba(0, 66, 0, 0.2));
  transform: scale(1.1);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-image {
  position: relative;
  text-align: center;
}

.hero-image img {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  max-height: 400px;
  object-fit: contain;
}

.glow-effect {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 300px;
  height: 300px;
  opacity: 0.6;
  z-index: 1;
}

.float-herb {
  position: absolute;
  background: var(--white);
  color: var(--primary);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
  z-index: 3;
  animation: float 3s ease-in-out infinite;
}

.h1 {
  font-size: 2.5rem;
  margin-bottom: 24px;
}

.h2 {
  font-size: 2rem;
  margin-bottom: 32px;
  text-align: center;
}

/* 2. Categories */
.categories-section {
  padding: 40px 0;
}

.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 16px;
}

.cat-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: 0.3s;
}

.cat-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.cat-icon {
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 12px;
}

.cat-card span {
  font-weight: 500;
  font-size: 0.9rem;
}

/* 3. Trust Strip */
.trust-strip {
  background: var(--secondary);
  padding: 24px 0;
  border-top: 1px solid #c8e6c9;
  border-bottom: 1px solid #c8e6c9;
}

.trust-items {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
}

.t-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--primary);
}

/* 4. Products */
.sec-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.link-view-all {
  color: var(--primary);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  justify-content: center;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid transparent;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  border-color: #d1e7dd;
  box-shadow: var(--shadow-hover);
}

.p-img-wrap {
  padding: 24px;
  background: #fcfcfc;
  text-align: center;
  position: relative;
}

.p-img-wrap img {
  height: 180px;
  object-fit: contain;
  margin: 0 auto;
  transition: 0.3s;
}

.product-card:hover .p-img-wrap img {
  transform: scale(1.05);
}

.quick-view-btn {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 0.8rem;
  opacity: 0;
  transition: 0.3s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.p-img-wrap:hover .quick-view-btn {
  opacity: 1;
  bottom: 20px;
}

.p-info {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.p-title {
  color: var(--text);
  font-weight: 700;
  font-size: 1.15rem;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 2.8em;
  line-height: 1.4;
}

.p-rating {
  color: #fbc02d;
  font-size: 0.9rem;
  margin-bottom: 12px;
}

.p-bot {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid #f9f9f9;
}

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

.add-btn {
  background: var(--secondary);
  color: var(--primary);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
}

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

.add-btn-pill {
  background: var(--secondary);
  color: var(--primary);
  padding: 8px 18px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 8px;
  border: none;
  font-weight: 700;
  font-size: 0.85rem;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0, 66, 0, 0.05);
}

.add-btn-pill i {
  font-size: 0.9rem;
}

.add-btn-pill:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 66, 0, 0.15);
}

.add-btn-pill:active {
  transform: translateY(0);
}

/* 5. Education */
.education-section {
  background: linear-gradient(rgba(255, 255, 255, 0.945), rgba(255, 255, 255, 0.808)), url('auri-images/about/approach-bg.png');
  /* background: var(--secondary); */
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  padding: 40px 0 !important;
}


.edu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-bottom: 32px;
}

.edu-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  text-align: center;
  box-shadow: var(--shadow);
}

.edu-card h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.edu-action {
  text-align: center;
}

.learn-more {
  color: var(--primary);
  text-decoration: underline;
  font-weight: 600;
}

/* 6. Ingredients */
.ingredients-section {
  text-align: center;
}

.ing-scroller {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.ing-pill {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 8px 24px 8px 8px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: 0.3s;
}

.ing-pill:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.ing-pill img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.ing-txt {
  text-align: left;
  line-height: 1.2;
  font-size: 0.9rem;
}

.ing-txt span {
  font-size: 0.8rem;
  color: var(--text-muted);
  display: block;
}

/* 7. Steps */
.steps-section {
  background: #e8f5e9;
  padding: 60px 0;
}

.steps-flow {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: nowrap;
  gap: 0;
}

.step {
  text-align: center;
  flex: 0 0 auto;
  width: 180px;
  position: relative;
}

.step-num {
  width: 60px;
  height: 60px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 16px;
  font-size: 1.1rem;
  border: 4px solid #fff;
  box-shadow: 0 0 0 1px #e0e0e0;
  z-index: 2;
  position: relative;
}

.step h4 {
  color: var(--primary);
  font-size: 1rem;
  margin-bottom: 5px;
}

.step-sub {
  font-size: 0.85rem;
  color: #777;
  line-height: 1.4;
  display: block;
}

.step-line {
  flex: 1;
  height: 2px;
  background: #e0e0e0;
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

/* Mobile Adjustments for Steps */
@media (max-width: 768px) {
  .steps-flow {
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .step-line {
    display: none;
  }

  .step {
    width: 100%;
  }
}

/* 8. Testimonials */
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}

.review-card {
  background: var(--white);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.reviewer {
  margin-top: 16px;
  font-weight: 600;
  color: var(--primary);
  font-size: 0.9rem;
  text-align: right;
}

/* 9. FAQ */
.accordion {
  max-width: 100%;
  margin: 0 auto;
}

.acc-item {
  border-bottom: 1px solid #f0f0f0;
}

.acc-head {
  padding: 25px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.15rem;
  font-weight: 500;
  color: #1a1a1a;
}

.acc-head i {
  font-size: 1rem;
  color: #333;
  transition: transform 0.4s ease;
}

.acc-item.active .acc-head i {
  transform: rotate(180deg);
}

.acc-body {
  max-height: 0;
  overflow: hidden;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.acc-item.active .acc-body {
  max-height: 800px;
  padding-bottom: 25px;
}

.acc-body p {
  color: #555;
  line-height: 1.8;
  font-size: 1.05rem;
}

.faq-more {
  text-align: center;
}

/* 10. Final CTA */
.final-cta {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 80px 0;
}

.final-cta h2 {
  font-size: 2rem;
  margin-bottom: 32px;
  text-align: center;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* 11. Footer */
footer {
  background-color: #004200;
  color: #ffffff;
  padding: 20px 0 20px;
  font-size: 1rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 20px;
  margin-top: 20px;
}

.f-col h4 {
  color: #ffffff;
  font-weight: 700;
  font-size: 1.2rem;
  margin-bottom: 10px;
  text-transform: uppercase;
}

.f-line {
  width: 100%;
  height: 1px;
  background: #88aa88;
  margin-bottom: 20px;
}

.f-col ul li {
  margin-bottom: 12px;
}

.f-col ul li a {
  color: #ffffff;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
}

.f-col ul li a:hover {
  color: #f0e68c;
  text-decoration: underline;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
}

.contact-list i {
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
  color: #f0e68c;
}

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  background-color: #f0e68c;
  color: #004200;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  transition: 0.3s;
}

.social-icons a:hover {
  transform: scale(1.1);
  background-color: #ffffff;
}

.footer-copy {
  text-align: center;
  color: #aaaaaa;
  padding-top: 20px;
  border-top: 1px solid #005500;
  font-size: 0.9rem;
}

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

/* Modal */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
}

.modal-content {
  background: var(--white);
  padding: 40px;
  border-radius: var(--radius);
  max-width: 500px;
  width: 90%;
  position: relative;
  text-align: center;
}

.marquee-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: scroll-left 60s linear infinite;
  /* Slower for longer track */
}

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

@keyframes scroll-left {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-33.33%);
  }

  /* Move only 1/3 since we have 3 sets. Set 1 moves out, Set 2 takes place. */
}

.modal-content h2 {
  font-size: 2rem;
  margin-bottom: 32px;
  text-align: center;
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  font-size: 1.5rem;
}

/* Animation */
@keyframes float {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

/* Mobile */
@media (max-width: 768px) {
  .header-grid {
    flex-wrap: wrap;
    gap: 16px;
  }

  .search-bar {
    order: 3;
    min-width: 100%;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .hero-btns {
    justify-content: center;
  }

  .edu-grid,
  .steps-flow {
    grid-template-columns: 1fr;
  }

  .step-line {
    display: none;
  }
}

/* --- Premium Scroll To Top --- */

.premium-scroll-wrapper {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 1000;
  /* Wrapper ensures magnetic transform doesn't fight fixed positioning */
}

.premium-scroll-btn {
  width: 60px;
  height: 60px;
  background: #004200;
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0, 66, 0, 0.25);
  transition:
    transform 0.2s ease-out,
    opacity 0.4s ease;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
  visibility: hidden;
  color: #fff;
}

.premium-scroll-btn.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Progress Ring */
.progress-ring-circle {
  position: absolute;
  top: 0;
  left: 0;
  width: 60px;
  height: 60px;
  pointer-events: none;
  transform: rotate(-90deg);
  /* Start from top */
  z-index: 1;
}

.progress-ring__circle {
  transition: stroke-dashoffset 0.1s linear;
  /* Smooth fill */
  stroke-dasharray: 164;
  /* 2 * PI * 26 */
  stroke-dashoffset: 164;
  stroke: #81c784;
  /* Light Green */
}

/* Icons & Content */
.btn-content {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  width: 100%;
  height: 100%;
}

.leaf-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.scroll-percent {
  font-size: 0.85rem;
  font-weight: 600;
  opacity: 0;
  width: 0;
  overflow: hidden;
  white-space: nowrap;
  transition: all 0.4s ease;
  margin-left: 0;
}

/* Visible Text State */
.premium-scroll-btn.morphed .scroll-percent {
  opacity: 1;
  width: auto;
  margin-left: 6px;
}

/* Mobile Disable */
@media (max-width: 768px) {
  /* No specific mobile overrides needed for circular button */
}

/* --- Testimonials (Dark Green Grid) --- */
.reviews-section {
  padding: 100px 0;
  background: #ffffff;
  /* Deep Forest Green */
  overflow: hidden;
  position: relative;
}

.reviews-section .sec-head {
  display: block;
  /* Overriding global flex from line 462 */
  text-align: center;
  margin-bottom: 60px;
}

.reviews-section .sec-head h2 {
  font-size: 2rem;
  margin-bottom: 32px;
  text-align: center;
}

@media (max-width: 900px) {
  .reviews-section .sec-head {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.white-floating-card {
  /* background: #ffffff; */
  padding: 45px 35px;
  border-radius: 20px;
  /* box-shadow: 0 15px 45px rgba(0, 0, 0, 0.15); */
  border-top: 5px solid #81c784;
  /* Soft green top accent instead of left line */
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.5s cubic-bezier(0.2, 1, 0.2, 1);
  overflow: hidden;
  min-height: 300px;
  z-index: 2;
}

.white-floating-card:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
  border-top-color: #ffffff;
  /* Subtle color change on hover */
  background: #ffffff;
}

/* Subtle background texture or glow */
.white-floating-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at top right,
      rgba(129, 199, 132, 0.05),
      transparent);
  z-index: -1;
}

/* Watermark centered and artistic */
.quote-watermark {
  position: absolute;
  bottom: -10px;
  right: 10px;
  font-size: 10rem;
  color: rgba(0, 66, 0, 0.04);
  pointer-events: none;
  z-index: 0;
  line-height: 0;
  font-family: serif;
  transition: all 0.5s ease;
}

.white-floating-card:hover .quote-watermark {
  transform: translateY(-10px) rotate(-10deg);
  color: rgba(0, 66, 0, 0.07);
}

/* Reviewer Info at TOP */
.reviewer-top {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 25px;
  position: relative;
  z-index: 1;
}

.r-initials {
  width: 55px;
  height: 55px;
  background: #e8f5e9;
  /* Botanical light green */
  color: #004200;
  border-radius: 15px;
  /* Rounded square for modern look */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  font-weight: 800;
  border: 1px solid rgba(0, 66, 0, 0.08);
  box-shadow: 0 5px 15px rgba(0, 66, 0, 0.05);
}

.r-details {
  display: flex;
  flex-direction: column;
}

.r-name {
  font-weight: 700;
  color: #1a1a1a;
  font-size: 1.1rem;
}

.r-loc {
  font-size: 0.85rem;
  color: #668866;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  margin-top: 2px;
}

.stars {
  color: #ffd700;
  /* Gold */
  font-size: 1.1rem;
  letter-spacing: 2px;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.review-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
  font-style: normal;
  /* Readable, not italic */
  font-weight: 400;
  position: relative;
  z-index: 1;
}

/* Specific override for white cards text */
.white-floating-card .review-text {
  margin-bottom: 0;
}

@media (max-width: 900px) {
  .reviews-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .product-hero-premium {
  padding: 30px 0 60px;
  background: linear-gradient(to bottom, var(--white), var(--beige-light));
}
.benefits-luxury-sec {
  padding: 30px 0;
  background: var(--beige-soft);
}

}

/* --- Cinematic About Page Redesign --- */
:root {
  --font-body: 'Inter', sans-serif;
  --font-heading: 'Playfair Display', serif;
  --font-serif: "Playfair Display", serif;
  --accent-gold: #d4af37;
  --herbal-light: #f9fbf9;
}

.about-view {
  padding: 0;
  overflow-x: hidden;
}

/* Sections Spacer */
.about-view section {
  padding: 40px 0;
  position: relative;
}

/* Shared Components */
.about-view .sec-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: #092e09;
  margin-bottom: 24px;
  line-height: 1.2;
}

.about-view .sub-title,
.sub-title {
  font-size: 1.1rem;
  color: #004200;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-weight: 800;
  margin-bottom: 20px;
  display: block;
}

.about-view .p-text, .p-text {
  font-size: 1.1rem;
  line-height: 1.7;
  color: #1a1a1a;
  margin-bottom: 25px;
  max-width: 850px;
}

/* 1. Cinematic Hero */
.about-hero-sec {
  background:
    linear-gradient(rgba(0, 66, 0, 0.6), rgba(0, 66, 0, 0.6)),
    url("auri-images/headers/about_v2.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  text-align: center;
 padding: 120px 20px !important;
  color: #fff;
  overflow: hidden;
}

.about-hero-sec .sec-title,
.about-hero-sec .sub-title,
.about-hero-sec .p-text {
  color: #fff !important;
}

.hero-inner {
  max-width: 1000px;
  margin: 0 auto;
  z-index: 1;
  position: relative;
}

/* 2. Who We Are (Cinematic Split) */
.about-story-sec {
  background: #fff;
  overflow: hidden;
}

.about-split {
  display: flex;
  gap: 60px;
  align-items: center;
  justify-content: space-between;
}

.split-img {
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 66, 0, 0.15);
  position: relative;
}

.split-img::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(circle,
      rgba(129, 199, 132, 0.2) 0%,
      transparent 70%);
  z-index: -1;
}

.split-img img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
  transition: transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

/* --- 3. Advanced Radial Philosophy Section --- */
.advanced-philosophy-sec {
  background: linear-gradient(rgba(255, 255, 255, 0.945), rgba(255, 255, 255, 0.808)), url('auri-images/about/image\ copy.png');
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  padding: 40px 0 !important;
}

.advanced-philosophy-sec::before {
  content: "";
  position: absolute;
  top: 10%;
  left: 10%;
  width: 300px;
  height: 300px;
  background: url("https://www.transparenttextures.com/patterns/natural-paper.png");
  opacity: 0.1;
  pointer-events: none;
}

.radial-container {
  --orbit-radius: 320px;
  --hub-size: 230px;
  --node-size: 130px;
  position: relative;
  height: 800px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s ease;
}

.radial-centerpiece {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
}

.glow-core {
  position: absolute;
  width: calc(var(--hub-size) * 0.9);
  height: calc(var(--hub-size) * 0.9);
  background: radial-gradient(circle,
      rgba(129, 199, 132, 0.4) 0%,
      transparent 70%);
  border-radius: 50%;
  opacity: 0.4;
}

.center-hub {
  position: absolute;
  width: var(--hub-size);
  height: var(--hub-size);
  background: #fff;
  border: 1px solid rgba(0, 66, 0, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 10;
  box-shadow: 0 20px 50px rgba(0, 66, 0, 0.08);
  transition: all 0.5s ease;
}

.center-hub h3 {
  font-size: clamp(1.2rem, 5vw, 1.8rem);
  margin: 0;
  line-height: 1.2;
}

.radial-node {
  position: absolute;
  width: var(--node-size);
  height: var(--node-size);
  background: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.5s ease;
  z-index: 15;
  border: 1px solid rgba(0, 66, 0, 0.05);
  cursor: pointer;
}

.node-ether { transform: rotate(0deg) translate(var(--orbit-radius)) rotate(0deg); }
.node-air   { transform: rotate(72deg) translate(var(--orbit-radius)) rotate(-72deg); }
.node-fire  { transform: rotate(144deg) translate(var(--orbit-radius)) rotate(-144deg); }
.node-water { transform: rotate(216deg) translate(var(--orbit-radius)) rotate(-216deg); }
.node-earth { transform: rotate(288deg) translate(var(--orbit-radius)) rotate(-288deg); }

.radial-node i {
  font-size: calc(var(--node-size) * 0.35);
  color: var(--primary);
  margin-bottom: 5px;
}

.radial-node span {
  font-size: calc(var(--node-size) * 0.15);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #333;
}

.node-icon-vortex {
  width: calc(var(--node-size) * 0.5);
  height: calc(var(--node-size) * 0.5);
  margin-bottom: 5px;
  filter: brightness(0) saturate(100%) invert(11%) sepia(99%) saturate(1469%) hue-rotate(85deg) brightness(95%) contrast(116%);
}

.radial-node:hover,
.radial-node.active {
  box-shadow: 0 20px 40px rgba(0, 66, 0, 0.15);
  border-color: var(--primary);
  /* Transform removed to allow JS control */
}

/* Orbit Animation - Controlled by JS for Stepped Focus */
.radial-centerpiece.orbit-animation {
  /* No continuous animation, only JS-driven steps */
}

@keyframes orbitRotate {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

/* Orbit Popup Styling */
.orbit-popup {
  width: 400px;
  min-height: 200px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 30px;
  padding: 40px;
  border: 1px solid var(--primary-hover);
  box-shadow: 0 30px 80px rgba(0, 66, 0, 0.12);
  opacity: 0;
  visibility: hidden;
  transform: translateX(30px);
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
  z-index: 100;
}

.orbit-popup.active {
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
}

.popup-inner h4 {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--primary);
  margin-bottom: 15px;
}

.popup-inner p {
  color: #555;
  line-height: 1.8;
  font-size: 1.1rem;
}


@media (max-width: 1046px) {
  .radial-container {
    --orbit-radius: 190px;
    --hub-size: 160px;
    --node-size: 85px;
    height: 500px;
  }
}

@media (max-width: 768px) {
  .radial-container {
    --orbit-radius: 170px;
    --hub-size: 150px;
    --node-size: 120px;
    height: 520px;
  }
  
  .orbit-popup {
    width: 100% !important;
    max-width: 500px;
    margin: 30px auto 0;
    position: relative !important;
    padding: 25px !important;
    min-height: auto !important;
    transform: translateY(20px);
    transition: all 0.5s ease;
  }
  
  .orbit-popup.active {
    transform: translateY(0);
  }
}

@media (max-width: 480px) {
  .radial-container {
    --orbit-radius: 125px;
    --hub-size: 110px;
    --node-size: 90px;
    height: 400px;
  }
}

@media (max-width: 360px) {
  .radial-container {
    --orbit-radius: 105px;
    --hub-size: 100px;
    --node-size: 60px;
    height: 350px;
  }
}

  .center-hub h3 {
    font-size: 1rem;
  }

  .radial-node i {
    margin-bottom: 2px;
  }
  
  .radial-node span {
    font-size: 0.55rem;
  }


  /* Hide complex radial on mobile for better UX */
  .glass-philosophy-grid {
    grid-template-columns: 1fr;
  }

  .advanced-philosophy-sec .sec-title {
    font-size: 2.5rem;
  }


/* 5. Dosha Sections - Grid Layout with Floating Background */
.dosha-panels {
  padding: 50px 0 !important;
  background-image: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('auri-images/about/panchamahabhuta_bg.png');
  background-attachment: fixed;
  background-size: cover;
  background-position: center;
  position: relative;
}

.dosha-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  align-items: start;
}

.dosha-card {
  background: rgba(255, 255, 255, 0.95);
  border: 2.5px solid #004200;
  padding: 15px 20px;
  text-align: center;
  transition: all 0.5s ease;
  height: 100%;
  backdrop-filter: blur(5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.dosha-symbol {
  width: 120px;
  height: 120px;
  margin: 0 auto 30px;
  display: block;
}

.dosha-card-title {
  font-family: var(--font-serif);
  font-size: 3.5rem;
  color: #004200;
  margin-bottom: 20px;
  font-weight: 400;
}

.dosha-card-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
  text-align: left;
  /* Image shows justified/left-ish text */
}

@media (max-width: 1200px) {
  .dosha-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .dosha-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .dosha-card {
    padding: 40px 20px;
  }

  .dosha-card-title {
    font-size: 3rem;
  }
}

/* 6. Commitment */
.commitment-sec {
  text-align: center;
  background: #fff;
}

.com-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-top: 80px;
}

.com-item {
  padding: 20px;
}

.com-item i {
  font-size: 3rem;
  color: #81c784;
  margin-bottom: 20px;
  display: block;
}

.com-item h4 {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: #004200;
  margin-bottom: 15px;
}

/* 7. CTA */
.about-cta {
  background:
    linear-gradient(rgba(0, 66, 0, 0.8), rgba(0, 66, 0, 0.8)),
    url("auri-images/background-main.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 40px 0 !important;
  overflow: hidden;
}

.about-cta .sec-title {
  color: #fff;
}

.about-cta .cta-btns {
  margin-top: 40px;
}

/* Decorations */
.leaf-watermark-bot {
  position: absolute;
  opacity: 0.05;
  pointer-events: none;
  z-index: 0;
}

@media (max-width: 1024px) {

  .about-split,
  .dosha-strip,
  .com-list {
    grid-template-columns: 1fr !important;
  }

  .dosha-strip {
    height: auto;
    min-height: auto;
  }

  .dosha-info {
    padding: 60px 30px;
  }

  .elements-circle-wrap {
    width: 350px;
    height: 350px;
  }

  .center-circle {
    width: 140px;
    height: 140px;
    font-size: 1.2rem;
  }

  .element-node {
    width: 90px;
    height: 90px;
  }

  .about-view .sec-title {
    font-size: 2.8rem;
  }
}

/* ==========================================================================
   Shop Page Styles
   ========================================================================== */
.shop-hero {
  background:
    linear-gradient(rgba(0, 66, 0, 0.65), rgba(0, 66, 0, 0.65)),
    url("auri-images/headers/shop_v2.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.shop-hero .sec-title,
.shop-hero .sub-title,
.shop-hero .p-text {
  color: #fff !important;
}

.shop-controls {
  background: #fff;
  padding: 40px 0;
  border-bottom: 1px solid rgba(0, 66, 0, 0.05);
  position: sticky;
  top: 80px;
  z-index: 10;
}

.filter-bar {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.filter-pill {
  padding: 12px 28px;
  border-radius: 50px;
  background: #f5f5f5;
  border: 1px solid transparent;
  color: #555;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
}

.filter-pill:hover {
  background: #eee;
  color: var(--primary);
}

.filter-pill.active {
  background: var(--primary);
  color: #fff;
  box-shadow: 0 10px 20px rgba(0, 66, 0, 0.15);
}

.shop-main-section {
  padding: 100px 0;
  background: #fff;
}

/* ==========================================================================
   FAQ Page Styles
   ========================================================================== */
.faq-hero {
  background:
    linear-gradient(rgba(0, 66, 0, 0.7), rgba(0, 66, 0, 0.7)),
    url("auri-images/headers/faq_v2.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0;
  text-align: center;
  color: #fff;
  position: relative;
}

.faq-hero .sec-title,
.faq-hero .sub-title {
  color: #fff !important;
}

.faq-hero .p-text {
  color: rgba(255, 255, 255, 0.8);
  max-width: 700px;
  margin: 20px auto 0;
}

.faq-main-section {
  padding: 100px 0;
  background: #fdfdfd;
}

.faq-layout {
  max-width: 900px;
  margin: 0 auto;
}

.faq-categories h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.faq-categories ul {
  list-style: none;
  padding: 0;
}

.faq-categories li {
  padding: 15px 0;
  border-bottom: 1px solid rgba(0, 66, 0, 0.05);
  color: #666;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s;
  display: flex;
  align-items: center;
  gap: 10px;
}

.faq-categories li::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  opacity: 0;
  transition: 0.3s;
}

.faq-categories li:hover,
.faq-categories li.active {
  color: var(--primary);
  padding-left: 10px;
}

.faq-categories li:hover::before,
.faq-categories li.active::before {
  opacity: 1;
}

.faq-content {
  max-width: 900px;
}

@media (max-width: 992px) {
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .faq-categories {
    display: none;
    /* Keep it simpler on mobile */
  }
}

/* ==========================================================================
   Contact Page Styles
   ========================================================================== */
.contact-hero {
  background:
    linear-gradient(rgba(0, 66, 0, 0.7), rgba(0, 66, 0, 0.7)),
    url("auri-images/headers/contact-v2.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

/* Terms Page Styles */
.terms-hero {
  background:
    linear-gradient(rgba(0, 66, 0, 0.7), rgba(0, 66, 0, 0.7)),
    url("auri-images/headers/terms_v2.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.terms-main-section {
  background: #fff;
}

.terms-block p {
  margin-bottom: 15px;
}

/* Shipping Page Styles */
.shipping-hero {
  background:
    linear-gradient(rgba(0, 66, 0, 0.7), rgba(0, 66, 0, 0.7)),
    url("auri-images/headers/shipping_v2.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.shipping-main-section {
  background: #fff;
}

.shipping-card {
  transition: transform 0.4s ease;
}

.shipping-card:hover {
  transform: translateY(-5px);
}

/* Refund Page Styles */
.refund-hero {
  background:
    linear-gradient(rgba(0, 66, 0, 0.7), rgba(0, 66, 0, 0.7)),
    url("auri-images/headers/refund_v2.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.refund-main-section {
  background: #fff;
}

.refund-block p {
  margin-bottom: 15px;
}

/* Privacy Page Styles */
.privacy-hero {
  background:
    linear-gradient(rgba(0, 66, 0, 0.7), rgba(0, 66, 0, 0.7)),
    url("auri-images/headers/privacy_v2.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  padding: 120px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}

.privacy-main-section {
  background: #fff;
}

.privacy-block p {
  margin-bottom: 15px;
}

.contact-hero .sec-title,
.contact-hero .sub-title,
.contact-hero .p-text {
  color: #fff !important;
}

.contact-main-section {
  padding: 80px 0;
  background: #fff;
  position: relative;
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 80px;
  align-items: start;
}

.contact-form-card {
  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease;
}

.contact-form-card:hover {
  transform: translateY(-10px);
}

.premium-form .input-group input:focus,
.premium-form .input-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(0, 66, 0, 0.05);
}

.availability {
  display: block;
  margin-top: 5px;
  font-size: 0.85rem;
  color: #888;
}

@media (max-width: 1024px) {
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .contact-sidebar {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .contact-sidebar {
    grid-template-columns: 1fr;
  }

  .premium-form .form-row {
    grid-template-columns: 1fr !important;
  }
}

/* Reveal Animations
.reveal-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-on-scroll.revealed {
    opacity: 1;
    transform: translateY(0);
} */

/* --- 15. Luxury Footer --- */
footer {
  background: var(--luxury-green);
  color: var(--white);
  padding: 20px 0 20px;
  font-family: var(--font-body);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 80px;
  margin-bottom: 20px;
}

.footer-brand p {
  margin-top: 20px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.7);
  max-width: 320px;
  font-size: 1rem;
}

.f-col h4 {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--white);
  margin-bottom: 30px;
  letter-spacing: 1px;
}

.f-col ul li {
  margin-bottom: 15px;
}

.f-col ul li a {
  color: rgba(255, 255, 255, 0.7);
  transition: 0.3s;
  font-size: 0.95rem;
}

.f-col ul li a:hover {
  color: var(--white);
  padding-left: 5px;
}

.social-icons {
  display: flex;
  gap: 15px;
  margin-top: 30px;
}

.social-icons a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.3s;
  color: var(--white);
}

.social-icons a:hover {
  background: var(--white);
  color: var(--luxury-green);
  transform: translateY(-5px);
}

.footer-copy {
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .social-icons {
    justify-content: center;
  }
}

/* --- 16. Cart Page Styles --- */
.cart-page {
  padding: 120px 0 80px;
}

.page-title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--primary);
  margin-bottom: 40px;
  border-bottom: 2px solid var(--beige-soft);
  padding-bottom: 20px;
}

.empty-cart-state {
  padding: 150px 0;
  text-align: center;
  color: #777;
}

.empty-cart-icon i {
  font-size: 5rem;
  color: var(--beige-dark);
  margin-bottom: 20px;
}

.empty-cart-state h2 {
  font-size: 2rem;
  margin-bottom: 32px;
  text-align: center;
}

.empty-cart-state p {
  margin-bottom: 30px;
}

.cart-layout {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 50px;
}

.cart-items {
  background: var(--white);
  border-radius: 20px;
  box-shadow: var(--shadow);
  padding: 30px;
}

.cart-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.cart-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cart-item img {
  width: 80px;
  height: 80px;
  object-fit: contain;
  background: #f9f9f9;
  border-radius: 10px;
  padding: 5px;
}

.ci-info {
  flex: 1;
}

.ci-info h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.ci-price {
  color: #777;
  font-size: 0.95rem;
}

.ci-qty {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 5px;
  padding: 5px;
}

.ci-qty button {
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--primary);
  cursor: pointer;
  width: 25px;
}

.ci-qty span {
  font-weight: 600;
  width: 20px;
  text-align: center;
}

.ci-total {
  font-weight: 700;
  color: var(--primary);
  font-size: 1.1rem;
  width: 100px;
  text-align: right;
}

.ci-remove {
  background: none;
  border: none;
  font-size: 1.5rem;
  color: #ccc;
  cursor: pointer;
  margin-left: 20px;
  transition: 0.3s;
}

.ci-remove:hover {
  color: red;
}

.cart-summary {
  background: var(--beige-light);
  padding: 30px;
  border-radius: 20px;
  height: fit-content;
}

.cart-summary h3 {
  font-size: 1.5rem;
  margin-bottom: 16px;
}

.cs-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 15px;
  font-size: 0.95rem;
  color: #555;
}

.cs-total {
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 30px;
}

.btn-block {
  width: 100%;
  text-align: center;
}

@media (max-width: 900px) {
  .cart-layout {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .cart-item {
    flex-wrap: wrap;
  }

  .ci-info {
    width: 100%;
  }

  .ci-total {
    margin-left: auto;
  }
}
/* =============================================
   EXTRA STYLES - Laravel Integration
   ============================================= */

/* Site Alerts */
.site-alert {
    position: fixed;
    top: 90px;
    right: 30px;
    z-index: 9999;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    transition: opacity 0.5s ease;
    white-space: nowrap;
}
.site-alert-success { background: #2e7d32; color: #fff; }
.site-alert-error { background: #c62828; color: #fff; }

/* Filter Pills */
.filter-pill {
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid #ddd;
    background: #fff;
    color: #555;
    font-family: var(--font-main);
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease;
}
.filter-pill:hover, .filter-pill.active {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/* --- REFINED PRODUCT DETAIL STYLES --- */

.mobile-menu-toggle, .mobile-menu-close {
    display: none;
}

.main-img-luxury {
    position: relative;
    overflow: hidden;
}

.wishlist-overlay-badge-detail {
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 15;
}

.wishlist-detail-btn {
    width: 50px;
    height: 50px;
    background: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cc0000;
    font-size: 1.4rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wishlist-detail-btn:hover {
    transform: scale(1.15);
    background: #fff5f5;
}

.wishlist-detail-btn.active {
    background: #cc0000;
    color: #fff;
}

.container-qty-stepper {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    overflow: hidden;
    background: #fdfdfd;
    height: 48px;
    width: fit-content;
}

.stepper-btn {
    width: 48px;
    height: 100%;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 1.1rem;
    color: var(--primary);
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.stepper-btn:hover {
    background: #eee;
}

#qty-input {
    width: 60px;
    height: 100%;
    text-align: center;
    border: none;
    background: #fff;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary);
    padding: 0;
    margin: 0;
    -moz-appearance: textfield;
}

#qty-input::-webkit-outer-spin-button,
#qty-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.btn-premium-cart-lx {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 15px;
    background-color: var(--primary);
    color: white;
    padding: 18px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(0, 66, 0, 0.2);
    transition: 0.3s;
}

.btn-premium-cart-lx:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 66, 0, 0.3);
}

.btn-premium-buy-lx {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #d4af37; /* Gold */
    color: white;
    padding: 15px;
    border-radius: 50px;
    font-weight: 700;
    letter-spacing: 1px;
    border: none;
    cursor: pointer;
    box-shadow: 0 8px 15px rgba(212, 175, 55, 0.2);
    transition: 0.3s;
    font-size: 0.9rem;
}

.btn-premium-buy-lx:hover {
    background-color: #c19b2e;
    transform: translateY(-2px);
    box-shadow: 0 12px 20px rgba(212, 175, 55, 0.4);
}

.contact-buttons-luxury {
    display: flex;
    gap: 15px;
}

.btn-lx-outline {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 50px;
    color: #444;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.btn-lx-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: rgba(0, 66, 0, 0.05);
}

.btn-lx-outline i {
    font-size: 1.1rem;
}

.btn-lx-outline .fa-whatsapp {
    color: #25D366;
}

.btn-lx-outline .fa-phone-alt {
    color: var(--primary);
}

/* --- REFINED ACTION BUTTON FLEX --- */
.buy-now-wrapper-premium {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-premium-cart-lx, .btn-premium-buy-lx {
    flex: 1;
    min-width: 180px;
    white-space: nowrap;
}

@media (max-width: 480px) {
    .btn-premium-cart-lx, .btn-premium-buy-lx {
        min-width: 100%;
    }
}

/* --- WISHLIST OVERLAY FOR SHOP PAGE --- */
.p-img-wrap {
    position: relative;
    overflow: hidden;
}

.wishlist-overlay-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 10;
    width: 38px;
    height: 38px;
    background: #fff;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #cc0000;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 5px 15px rgba(0,0,0,0.15);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    padding: 0;
}

.wishlist-overlay-btn:hover {
    transform: scale(1.15);
    background: #fff;
    color: #ff0000;
}

.wishlist-overlay-btn i.fas {
    color: #cc0000;
}

/* --- MOBILE & TABLET RESPONSIVENESS FIXES --- */




@media (max-width: 1060px) {
    body {
        padding-top: 60px !important;
    }
    .header-wrapper {
        padding: 5px 0;
    }
    
    .nav-links {
        display: none !important; /* Hide desktop nav */
    }
    
    .auth-box {
        display: none !important; /* Hide desktop auth buttons */
    }
    
    .mobile-menu-toggle {
        display: block !important;
        color: #fff !important; 
        order: 1;
        margin-left: 15px;
        font-size: 1.5rem !important; /* Increased from default */
        background: none;
        border: none;
        padding: 0;
        cursor: pointer;
    }
    
    .header-icons {
        margin-left: auto;
        gap: 15px;
        order: 0;
    }

    /* Mobile Menu Drawer */
    .nav-links.mobile-open {
        display: flex !important;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        background: #fff;
        z-index: 2000;
        flex-direction: column;
        padding: 40px 30px;
        box-shadow: -10px 0 30px rgba(0,0,0,0.2);
        animation: slideInRight 0.3s ease forwards;
        gap: 0;
    }

    .mobile-menu-overlay {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.5);
        z-index: 1001;
        backdrop-filter: blur(3px);
    }
    
    .nav-links.mobile-open + .mobile-menu-overlay,
    .mobile-open ~ .mobile-menu-overlay {
        display: block !important;
    }
    
    /* Show mobile-only items */
    .mobile-logo-item, .mobile-auth-links {
        display: flex !important;
    }

    @keyframes slideInRight {
        from { transform: translateX(100%); }
        to { transform: translateX(0); }
    }

    .nav-links li {
        width: 100%;
    }

    .nav-links li a {
        color: var(--primary) !important;
        font-size: 1.1rem;
        font-weight: 600;
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
        display: block;
    }
    
    /* Close button for mobile menu */
    .mobile-menu-close {
        display: block;
        position: absolute;
        top: 20px;
        right: 20px;
        font-size: 1.5rem;
        color: var(--primary);
        cursor: pointer;
        background: none;
        border: none;
        padding: 5px;
        z-index: 2001;
    }

    /* Hero Section Fixes */
    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }
    
    .hero-txt h1 {
        font-size: 2.2rem;
    }
    
    .hero-txt p {
        margin: 0 auto 30px;
    }

    .hero-btns {
        flex-direction: column !important;
        align-items: center !important;
        gap: 15px !important;
    }

    .hero-btns .btn {
        margin: 0 !important;
        width: 100% !important;
        max-width: 300px;
        padding: 12px 20px !important; /* Smaller padding on mobile */
        font-size: 0.95rem !important;
    }
    
    .hero-image video {
        transform: scale(1) translate(0, 0) !important;
        max-width: 100%;
        height: auto;
    }

    /* Grid Fixes */
    .product-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    
    .reviews-grid, .edu-grid, .benefits-glass-grid, .dosha-grid, .com-list {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }
    
    .about-split {
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    .pancha-wrapper {
        flex-direction: column !important;
        gap: 30px !important;
    }
    
    .about-hero-sec h1 {
        font-size: 2.5rem !important;
    }
}

@media (max-width: 768px) {
    .hero-txt h1, .about-hero-sec h1 {
        font-size: 1.8rem !important;
    }
    
    .premium-scroll-wrapper {
        right: 15px !important;
        bottom: 15px !important;
        transform: scale(0.8);
    }
    
    .footer-grid {
        grid-template-columns: 1fr !important;
        text-align: center;
        gap: 40px !important;
    }
    
    .f-line {
        margin: 10px auto !important;
    }
    
    .reviews-grid, .edu-grid, .benefits-glass-grid, .dosha-grid, .com-list {
        grid-template-columns: 1fr !important;
    }

    .lx-sec-header-flex {
        flex-direction: column !important;
        gap: 15px !important;
        margin-bottom: 35px !important;
        text-align: center !important;
    }

    .lx-sec-title {
        font-size: 1.8rem !important;
        margin-bottom: 30px !important;
    }

    .lx-link {
        justify-content: center !important;
    }
}

@media (max-width: 480px) {
    .product-grid, .shop-main-section .product-grid, .shop-product-grid {
        grid-template-columns: 1fr !important;
    }
    
    .header-icons {
        gap: 10px;
    }
    
    .header-icons .wishlist-widget {
        margin-right: 5px !important;
    }
    
    .logo img {
        height: 40px !important;
    }
    
    .cat-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    
    .about-cta .cta-btns {
        flex-direction: column !important;
        gap: 15px !important;
        margin-top: 30px !important;
    }
    
    .about-cta .cta-btns a {
        margin-left: 0 !important;
        width: 100% !important;
    }
}

/* Ensure body doesn't horizontal scroll */
html, body {
    width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden !important;
    position: relative;
}

/* Fix for Premium Scroll Button positioning */
#premiumScrollWrapper {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 999;
}




/* Print Styles */
@media print {
    .d-print-none {
        display: none !important;
    }
    
    body {
        background-color: white !important;
        margin: 0 !important;
        padding: 0 !important;
    }
}
