/* ============================================
   GREEN LIFE HERBS & ACUPUNCTURE
   Premium Design System — style.css
   ============================================ */

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Montserrat', sans-serif;
  background-color: #F9F7F2;
  color: #1B3022;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', serif;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

p {
  font-family: 'Montserrat', sans-serif;
  font-weight: 400;
  line-height: 1.8;
  color: #3A4A40;
}

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

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

/* --- Custom Scrollbar --- */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: #F9F7F2; }
::-webkit-scrollbar-thumb { background: #7C9082; border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: #5E7264; }

::selection {
  background: rgba(197, 160, 89, 0.25);
  color: #1B3022;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(249, 247, 242, 0.72);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.15);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.nav.scrolled {
  background: rgba(249, 247, 242, 0.94);
  box-shadow: 0 4px 30px rgba(27, 48, 34, 0.08);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  background: none;
  border: none;
  outline: none;
}

.nav-logo-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C5A059, #7C9082);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(197, 160, 89, 0.3);
  transition: box-shadow 0.3s ease;
}

.nav-logo:hover .nav-logo-icon {
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.45);
}

.nav-logo-icon svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
}

.nav-logo-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.9375rem;
  font-weight: 600;
  color: #1B3022;
  line-height: 1.2;
}

.nav-logo-sub {
  font-size: 0.625rem;
  color: #7C9082;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-link {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8125rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: rgba(27, 48, 34, 0.7);
  transition: all 0.3s ease;
  cursor: pointer;
  background: none;
  border: none;
  font-family: 'Montserrat', sans-serif;
}

.nav-link:hover,
.nav-link.active {
  color: #1B3022;
  background: rgba(27, 48, 34, 0.05);
}

.nav-link.active {
  color: #C5A059;
  background: rgba(197, 160, 89, 0.1);
}

/* Hamburger */
.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
  flex-direction: column;
  gap: 6px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #1B3022;
  transition: all 0.3s ease;
  transform-origin: center;
}

.hamburger.open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

/* ============================================
   MOBILE MENU
   ============================================ */
.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 29, 21, 0.96);
  backdrop-filter: blur(24px);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.mobile-menu.active {
  opacity: 1;
  pointer-events: all;
}

.mobile-menu-close {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  background: none;
  border: none;
}

.mobile-menu-close svg {
  width: 24px;
  height: 24px;
  stroke: #F9F7F2;
  fill: none;
  stroke-width: 2;
}

.mobile-menu-link {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #F9F7F2;
  cursor: pointer;
  background: none;
  border: none;
  opacity: 0;
  transform: translateY(20px);
  transition: color 0.3s ease, opacity 0.4s ease, transform 0.4s ease;
  font-weight: 500;
}

.mobile-menu.active .mobile-menu-link {
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu-link:hover {
  color: #C5A059;
}

.mobile-menu-info {
  text-align: center;
  margin-top: 2rem;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.mobile-menu.active .mobile-menu-info {
  opacity: 1;
}

.mobile-menu-info p {
  color: #7C9082;
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
}

.mobile-menu-info .phone {
  font-family: 'Playfair Display', serif;
  color: #C5A059;
  font-size: 1.125rem;
  margin-top: 0.5rem;
  font-weight: 600;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: #1B3022;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 29, 21, 0.88) 0%,
    rgba(27, 48, 34, 0.72) 40%,
    rgba(42, 74, 56, 0.5) 100%
  );
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(197, 160, 89, 0.12) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 880px;
  padding: 0 1.5rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 2rem;
}

.hero-tag-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #C5A059;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.4); }
  50% { box-shadow: 0 0 0 8px rgba(197, 160, 89, 0); }
}

.hero-tag span {
  color: #C5A059;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero h1 {
  font-size: clamp(2.5rem, 5.5vw, 4.5rem);
  font-weight: 700;
  color: #F9F7F2;
  line-height: 1.1;
  margin-bottom: 1.5rem;
}

.text-gradient-gold {
  background: linear-gradient(135deg, #C5A059, #D4B76E, #C5A059);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: 1.125rem;
  color: rgba(249, 247, 242, 0.7);
  max-width: 640px;
  margin: 0 auto 2.5rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.hero-scroll span {
  font-size: 0.6875rem;
  color: rgba(249, 247, 242, 0.35);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-scroll-line {
  width: 1px;
  height: 32px;
  background: linear-gradient(to bottom, rgba(197, 160, 89, 0.6), transparent);
}

/* Floating orbs */
.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  pointer-events: none;
}

.hero-orb-1 {
  width: 320px;
  height: 320px;
  background: rgba(197, 160, 89, 0.06);
  top: 80px;
  right: 40px;
  animation: float 6s ease-in-out infinite;
}

.hero-orb-2 {
  width: 400px;
  height: 400px;
  background: rgba(124, 144, 130, 0.08);
  bottom: 80px;
  left: 40px;
  animation: float-delayed 5s ease-in-out 1s infinite;
}

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

@keyframes float-delayed {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============================================
   BUTTONS
   ============================================ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: linear-gradient(135deg, #C5A059 0%, #A8873F 100%);
  color: #fff;
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.3);
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.6s;
}

.btn-primary:hover::before { left: 100%; }

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(197, 160, 89, 0.45);
  color: #fff;
}

.btn-primary svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 50px;
  border: 2px solid #C5A059;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  color: #1B3022;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-secondary:hover {
  background: #C5A059;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(197, 160, 89, 0.3);
}

.btn-outline-light {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  border-radius: 50px;
  border: 2px solid rgba(249, 247, 242, 0.5);
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  font-weight: 600;
  font-size: 0.8125rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: transparent;
  color: #F9F7F2;
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-outline-light:hover {
  background: #F9F7F2;
  color: #1B3022;
  border-color: #F9F7F2;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 10px 24px;
  font-size: 0.75rem;
}

/* ============================================
   SECTIONS
   ============================================ */
.section {
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-label {
  font-size: 0.8125rem;
  color: #7C9082;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  font-family: 'Montserrat', sans-serif;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.25rem);
  font-weight: 700;
  color: #1B3022;
  margin-bottom: 1.5rem;
  letter-spacing: -0.02em;
}

.section-desc {
  font-size: 1.0625rem;
  color: #5E7264;
  max-width: 640px;
  margin: 0 auto;
  line-height: 1.8;
}

.gold-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, #C5A059, #D4B76E);
  border-radius: 2px;
  margin: 0 auto;
}

.gold-divider-left {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #C5A059, #D4B76E);
  border-radius: 2px;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   PREMIUM CARDS
   ============================================ */
.premium-card {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(124, 144, 130, 0.12);
  border-radius: 20px;
  box-shadow: 0 4px 24px rgba(27, 48, 34, 0.05), 0 1px 4px rgba(27, 48, 34, 0.03);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  overflow: hidden;
}

.premium-card:hover {
  box-shadow: 0 20px 60px rgba(27, 48, 34, 0.1), 0 8px 20px rgba(27, 48, 34, 0.06);
  transform: translateY(-6px);
  border-color: rgba(197, 160, 89, 0.25);
}

/* ============================================
   DUAL PATHWAY (HOME)
   ============================================ */
.dual-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

.dual-card-img {
  position: relative;
  height: 300px;
  overflow: hidden;
}

.dual-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.dual-card-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(27, 48, 34, 0.8) 0%, rgba(27, 48, 34, 0.2) 60%, transparent 100%);
}

.dual-card-img-content {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  right: 1.5rem;
}

.dual-card-badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.badge-green { background: rgba(197, 160, 89, 0.2); color: #C5A059; }
.badge-sage  { background: rgba(124, 144, 130, 0.25); color: #9DB0A4; }

.dual-card-img-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.dual-card-body {
  padding: 2rem;
}

.dual-card-body p {
  color: #5E7264;
  font-size: 0.9375rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.dual-card-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #C5A059;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: gap 0.3s ease;
}

.premium-card:hover .dual-card-link { gap: 14px; }

.dual-card-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ============================================
   ABOUT SECTION (HOME)
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-wrapper {
  position: relative;
}

.about-img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(27, 48, 34, 0.12);
}

.about-float-badge {
  position: absolute;
  bottom: -24px;
  right: 2rem;
  background: #fff;
  border-radius: 12px;
  padding: 20px 24px;
  box-shadow: 0 12px 40px rgba(27, 48, 34, 0.12);
  animation: float 6s ease-in-out infinite;
}

.about-float-badge .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #C5A059;
  display: block;
}

.about-float-badge .label {
  font-size: 0.6875rem;
  color: #7C9082;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
}

.about-corner {
  position: absolute;
  top: -16px;
  left: -16px;
  width: 80px;
  height: 80px;
  border-top: 2px solid rgba(197, 160, 89, 0.3);
  border-left: 2px solid rgba(197, 160, 89, 0.3);
  border-radius: 12px 0 0 0;
  pointer-events: none;
}

.about-text h2 { text-align: left; }

.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(124, 144, 130, 0.15);
}

.about-stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1B3022;
}

.about-stat-label {
  font-size: 0.6875rem;
  color: #7C9082;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 4px;
}

/* ============================================
   TESTIMONIALS (HOME)
   ============================================ */
.testimonials { background: #fff; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: #fff;
  border-radius: 16px;
  padding: 2rem;
  border: 1px solid rgba(124, 144, 130, 0.1);
  box-shadow: 0 2px 16px rgba(27, 48, 34, 0.04);
  position: relative;
  transition: all 0.4s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(27, 48, 34, 0.08);
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 4.5rem;
  color: #C5A059;
  opacity: 0.18;
  position: absolute;
  top: -8px;
  left: 20px;
  line-height: 1;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 1rem;
}

.stars svg {
  width: 16px;
  height: 16px;
  fill: #C5A059;
}

.testimonial-text {
  font-size: 0.875rem;
  color: #3A4A40;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 1rem;
  border-top: 1px solid rgba(124, 144, 130, 0.1);
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C5A059, #7C9082);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.testimonial-name {
  font-family: 'Playfair Display', serif;
  font-size: 0.875rem;
  font-weight: 600;
  color: #1B3022;
}

.testimonial-role {
  font-size: 0.75rem;
  color: #7C9082;
}

/* ============================================
   PAGE HERO (SERVICES / SHOP)
   ============================================ */
.page-hero {
  position: relative;
  padding: 10rem 1.5rem 5rem;
  overflow: hidden;
  background: #1B3022;
  text-align: center;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.18;
}

.page-hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(27, 48, 34, 0.6), #1B3022);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.page-hero h1 {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  color: #F9F7F2;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
}

.page-hero p {
  font-size: 1.0625rem;
  color: rgba(249, 247, 242, 0.6);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============================================
   SERVICE CARDS
   ============================================ */
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: #fff;
  border-radius: 20px;
  padding: 2.5rem;
  border: 1px solid rgba(124, 144, 130, 0.1);
  box-shadow: 0 2px 20px rgba(27, 48, 34, 0.04);
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: linear-gradient(180deg, #C5A059, #7C9082);
  transition: height 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  border-radius: 0 4px 4px 0;
}

.service-card:hover::before { height: 100%; }

.service-card:hover {
  box-shadow: 0 16px 48px rgba(27, 48, 34, 0.1);
  transform: translateY(-6px);
}

.service-card.popular {
  border: 2px solid rgba(197, 160, 89, 0.25);
}

.service-card.popular-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 16px;
  border-radius: 50px;
  background: linear-gradient(135deg, #C5A059, #D4B76E);
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  white-space: nowrap;
}

.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: #F9F7F2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.service-icon svg {
  width: 32px;
  height: 32px;
}

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1B3022;
  margin-bottom: 4px;
}

.service-card .service-subtitle {
  font-size: 0.8125rem;
  color: #7C9082;
  font-weight: 500;
  margin-bottom: 1rem;
}

.service-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.service-price .amount {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #C5A059;
}

.service-price .duration {
  font-size: 0.8125rem;
  color: #7C9082;
}

.service-card .desc {
  font-size: 0.875rem;
  color: #5E7264;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.service-features {
  list-style: none;
  margin-bottom: 2rem;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.8125rem;
  color: #3A4A40;
  padding: 6px 0;
}

.service-features li svg {
  width: 16px;
  height: 16px;
  fill: #C5A059;
  flex-shrink: 0;
  margin-top: 2px;
}

/* ============================================
   CONDITIONS GRID
   ============================================ */
.conditions-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.condition-chip {
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(124, 144, 130, 0.12);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  cursor: default;
}

.condition-chip:hover {
  border-color: rgba(197, 160, 89, 0.3);
}

.condition-chip span {
  font-size: 0.8125rem;
  font-weight: 500;
  color: #1B3022;
  transition: color 0.3s ease;
}

.condition-chip:hover span { color: #C5A059; }

/* ============================================
   SHOP
   ============================================ */
.shop-filters {
  position: sticky;
  top: 80px;
  z-index: 30;
  background: #fff;
  border-bottom: 1px solid rgba(124, 144, 130, 0.1);
  padding: 1rem 0;
}

.shop-filters-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  scrollbar-width: none;
}

.shop-filters-inner::-webkit-scrollbar { display: none; }

.filter-btn {
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: 50px;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  background: #F9F7F2;
  color: #5E7264;
}

.filter-btn:hover { background: rgba(27, 48, 34, 0.06); }

.filter-btn.active {
  background: #1B3022;
  color: #F9F7F2;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.product-card-wrapper {
  perspective: 1200px;
}

.product-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(124, 144, 130, 0.1);
  box-shadow: 0 4px 20px rgba(27, 48, 34, 0.05);
  transform-style: preserve-3d;
  will-change: transform;
  transition: box-shadow 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  position: relative;
}

.product-card:hover {
  box-shadow: 0 24px 64px rgba(27, 48, 34, 0.12), 0 8px 24px rgba(27, 48, 34, 0.08);
}

.product-card-shine {
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: 16px;
  opacity: 0;
  transition: opacity 0.5s;
  z-index: 2;
}

.product-card:hover .product-card-shine { opacity: 1; }

.product-card-img {
  position: relative;
  height: 210px;
  overflow: hidden;
}

.product-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.product-card-img-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.15), transparent);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 4px 12px;
  border-radius: 50px;
  background: #C5A059;
  color: #fff;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  z-index: 3;
}

.product-card-body {
  padding: 1.25rem;
  position: relative;
  z-index: 2;
}

.product-category {
  font-size: 0.6875rem;
  color: #7C9082;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.product-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #1B3022;
  margin-bottom: 8px;
}

.product-desc {
  font-size: 0.8125rem;
  color: #5E7264;
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: #C5A059;
  margin-bottom: 1rem;
}

.product-buttons {
  display: flex;
  gap: 0.75rem;
}

.btn-detail {
  flex: 1;
  padding: 10px 12px;
  border-radius: 50px;
  border: 2px solid #1B3022;
  background: transparent;
  color: #1B3022;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
}

.btn-detail:hover {
  background: #1B3022;
  color: #fff;
}

.btn-buy {
  flex: 1;
  padding: 10px 12px;
  border-radius: 50px;
  border: none;
  background: #C5A059;
  color: #fff;
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Montserrat', sans-serif;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.btn-buy:hover { background: #A8873F; }

.btn-buy svg {
  width: 12px;
  height: 12px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
}

/* ============================================
   MODAL
   ============================================ */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(6px);
}

.modal {
  position: relative;
  background: #fff;
  border-radius: 20px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.2);
  transform: translateY(20px) scale(0.96);
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

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

.modal-img {
  position: relative;
  height: 240px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}

.modal-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.modal-img-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.35), transparent);
}

.modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
  z-index: 5;
}

.modal-close svg {
  width: 16px;
  height: 16px;
  stroke: #1B3022;
  fill: none;
  stroke-width: 2;
}

.modal-body {
  padding: 2rem;
}

.modal-body .product-category { margin-bottom: 4px; }

.modal-body h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1B3022;
  margin-bottom: 4px;
}

.modal-body .product-price {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.modal-body .desc-full {
  font-size: 0.875rem;
  color: #5E7264;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.modal-features {
  list-style: none;
  margin-bottom: 2rem;
}

.modal-features li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: #3A4A40;
  padding: 4px 0;
}

.modal-features li svg {
  width: 16px;
  height: 16px;
  fill: #C5A059;
  flex-shrink: 0;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
  padding: 5rem 0;
  text-align: center;
}

.cta-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C5A059, #7C9082);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  animation: pulse-glow 2.5s ease-in-out infinite;
}

@keyframes pulse-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0.4); }
  50% { box-shadow: 0 0 0 14px rgba(197, 160, 89, 0); }
}

.cta-icon svg {
  width: 28px;
  height: 28px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  position: relative;
  background: #1B3022;
  overflow: hidden;
}

.footer-wave {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.footer-wave svg {
  display: block;
  width: calc(100% + 1px);
  height: 60px;
}

.footer-main {
  padding-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.25fr;
  gap: 3rem;
}

.footer-brand p {
  font-size: 0.875rem;
  color: rgba(249, 247, 242, 0.45);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.footer-social:hover {
  border-color: rgba(197, 160, 89, 0.3);
  background: rgba(197, 160, 89, 0.08);
}

.footer-social:hover svg { color: #C5A059; }

.footer-social svg {
  width: 16px;
  height: 16px;
  fill: rgba(249, 247, 242, 0.5);
  transition: color 0.3s ease;
}

.footer-col h4 {
  font-family: 'Montserrat', sans-serif;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #F9F7F2;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-links {
  list-style: none;
}

.footer-links li { margin-bottom: 0.75rem; }

.footer-links a {
  font-size: 0.8125rem;
  color: rgba(249, 247, 242, 0.45);
  transition: color 0.3s ease;
}

.footer-links a:hover { color: #C5A059; }

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
}

.footer-contact-item svg {
  width: 20px;
  height: 20px;
  stroke: #C5A059;
  fill: none;
  stroke-width: 1.5;
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-item p,
.footer-contact-item a {
  font-size: 0.8125rem;
  color: rgba(249, 247, 242, 0.55);
  line-height: 1.6;
}

.footer-contact-item a:hover { color: #C5A059; }

.footer-hours {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-hours h4 { margin-bottom: 0.75rem; }

.footer-hours p {
  font-size: 0.75rem;
  color: rgba(249, 247, 242, 0.4);
  line-height: 1.8;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.5rem 0;
  margin-top: 3rem;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: rgba(249, 247, 242, 0.3);
}

.footer-fda {
  max-width: 480px;
  text-align: right;
  font-size: 0.625rem;
  color: rgba(249, 247, 242, 0.22);
  line-height: 1.6;
}

.footer-fda strong {
  color: rgba(197, 160, 89, 0.4);
}

/* FDA Disclaimer Banner (Shop) */
.fda-banner {
  padding: 2rem 0;
  background: #1B3022;
  text-align: center;
}

.fda-banner p {
  font-size: 0.75rem;
  color: rgba(249, 247, 242, 0.4);
  max-width: 720px;
  margin: 0 auto;
  line-height: 1.7;
}

.fda-banner strong {
  color: rgba(197, 160, 89, 0.5);
}

/* ============================================
   BACK TO TOP
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #C5A059;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(197, 160, 89, 0.4);
  z-index: 40;
  opacity: 0;
  transform: translateY(16px);
  pointer-events: none;
  transition: all 0.4s ease;
}

.back-to-top.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: all;
}

.back-to-top svg {
  width: 20px;
  height: 20px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

/* ============================================
   PAGE LOADER
   ============================================ */
.page-loader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  background: #1B3022;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}

.page-loader.hidden {
  opacity: 0;
  pointer-events: none;
}

.loader-logo {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #C5A059, #7C9082);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.loader-logo svg {
  width: 24px;
  height: 24px;
  stroke: #fff;
  fill: none;
  stroke-width: 2;
}

.loader-text {
  font-size: 0.8125rem;
  color: #C5A059;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 1rem;
}

.loader-bar {
  width: 120px;
  height: 2px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.loader-bar-fill {
  width: 60%;
  height: 100%;
  background: #C5A059;
  border-radius: 2px;
  animation: loader-slide 1.2s ease-in-out infinite;
}

@keyframes loader-slide {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(200%); }
}

/* ============================================
   BG PATTERNS
   ============================================ */
.bg-grid {
  background-image:
    linear-gradient(rgba(124, 144, 130, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(124, 144, 130, 0.04) 1px, transparent 1px);
  background-size: 60px 60px;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }

  .nav-links { display: none; }
  .hamburger { display: flex; }

  .hero { min-height: 85vh; }

  .dual-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-img { height: 320px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .service-grid { grid-template-columns: 1fr; }
  .conditions-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-fda { text-align: center; max-width: none; }

  .hero-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .conditions-grid { grid-template-columns: 1fr; }
}
