/* Ultra-Luxury Light Theme Design System - Pure Alabaster & Royal Gold */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
  --bg-main: #faf9f6;
  --bg-card: #ffffff;
  --bg-card-alt: #f4f0e8;
  --bg-glass: rgba(255, 255, 255, 0.95);
  
  --gold-light: #d4af37;
  --gold-primary: #b8860b;
  --gold-dark: #8c6a15;
  --gold-gradient: linear-gradient(135deg, #e6c867 0%, #b8860b 50%, #8c6a15 100%);
  --gold-glow: rgba(184, 134, 11, 0.2);
  
  --text-main: #1c2029;
  --text-muted: #5e6677;
  --text-gold: #b8860b;
  
  --border-gold: rgba(184, 134, 11, 0.3);
  --border-subtle: rgba(0, 0, 0, 0.08);
  
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 20px;
  --radius-pill: 9999px;
  
  --shadow-gold: 0 8px 24px rgba(184, 134, 11, 0.2);
  --shadow-card: 0 10px 30px rgba(0, 0, 0, 0.04);
  --shadow-dark: 0 16px 40px rgba(0, 0, 0, 0.08);
  
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  background-color: var(--bg-main);
  color: var(--text-main);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 75px;
}

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-main);
}

.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

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

.desktop-only {
  display: inline;
}

/* Announcement Top Bar */
.announcement-bar {
  background: #1c2029;
  border-bottom: 1px solid var(--gold-primary);
  padding: 9px 0;
  text-align: center;
  font-size: 0.82rem;
  color: #f7e39b;
  font-weight: 500;
}

.announcement-bar strong {
  color: #fff;
  text-transform: uppercase;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--bg-glass);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border-subtle);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text-main);
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gold-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 1.25rem;
  box-shadow: 0 4px 12px var(--gold-glow);
}

.logo-title {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  letter-spacing: 0.5px;
}

.logo-subtitle {
  font-size: 0.68rem;
  color: var(--gold-primary);
  letter-spacing: 1px;
  text-transform: uppercase;
  display: block;
}

.nav-links {
  display: flex;
  gap: 24px;
  list-style: none;
}

.nav-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
  transition: color 0.2s ease;
}

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

.header-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cart-btn {
  background: rgba(184, 134, 11, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  padding: 8px 18px;
  border-radius: var(--radius-pill);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.88rem;
  transition: all 0.3s ease;
}

.cart-btn:hover {
  background: var(--gold-gradient);
  color: #fff;
}

.cart-count {
  background: #e11d48;
  color: #fff;
  font-size: 0.72rem;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
}

.mobile-menu-btn span {
  width: 24px;
  height: 2px;
  background: var(--text-main);
  border-radius: 2px;
}

/* Hero Section */
.hero {
  position: relative;
  padding: 40px 0 55px;
  background: linear-gradient(135deg, #faf8f4 0%, #f4efe4 100%);
  border-bottom: 1px solid var(--border-subtle);
}

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

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  background: rgba(184, 134, 11, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-pill);
  color: var(--gold-primary);
  font-size: 0.78rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
}

.hero-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
  line-height: 1.18;
}

.hero-description {
  font-size: 1.02rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

.hero-lifestyle-wrap {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 22px;
  box-shadow: var(--shadow-card);
  border: 1px solid var(--border-gold);
}

.hero-lifestyle-img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.hero-lifestyle-badge {
  position: absolute;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background: rgba(28, 32, 41, 0.85);
  backdrop-filter: blur(8px);
  color: #fff;
  font-size: 0.76rem;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  text-align: center;
  border: 1px solid var(--border-gold);
}

.hero-benefits {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 24px;
}

.benefit-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #ffffff;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  font-size: 0.85rem;
  font-weight: 500;
}

.hero-ctas {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: var(--gold-gradient);
  color: #ffffff;
  font-weight: 700;
  padding: 14px 26px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.96rem;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(184, 134, 11, 0.35);
}

.btn-outline {
  background: #ffffff;
  color: var(--text-main);
  font-weight: 600;
  padding: 14px 22px;
  border-radius: var(--radius-pill);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.92rem;
  border: 1px solid var(--border-gold);
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-outline:hover {
  background: rgba(184, 134, 11, 0.08);
}

/* Hero Showcase Card */
.hero-showcase {
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-card);
}

.showcase-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
}

.showcase-tag {
  color: var(--gold-primary);
  font-size: 0.75rem;
  text-transform: uppercase;
  font-weight: 700;
}

.showcase-price {
  font-size: 1.35rem;
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
}

.showcase-body {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.showcase-img-wrap {
  width: 180px;
  height: 190px;
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.showcase-img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.showcase-title {
  font-size: 1.25rem;
  margin-bottom: 4px;
}

.showcase-notes {
  font-size: 0.85rem;
  color: var(--gold-primary);
  margin-bottom: 8px;
  font-style: italic;
}

.showcase-purpose {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 18px;
}

.showcase-controls {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.swiper-nav {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--bg-main);
  border: 1px solid var(--border-subtle);
  color: var(--text-main);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.2rem;
  transition: all 0.2s ease;
  flex-shrink: 0;
}

.swiper-nav:hover {
  background: var(--gold-primary);
  color: #fff;
}

/* Section Common */
.section-padding {
  padding: 60px 0;
}

.section-header {
  text-align: center;
  max-width: 740px;
  margin: 0 auto 36px;
}

.section-subtitle {
  color: var(--gold-primary);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2.1rem;
  margin-bottom: 14px;
}

.section-desc {
  font-size: 0.98rem;
  color: var(--text-muted);
}

/* New 4-Step Harmony Grid (Mobile First) */
.grid-4-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px 20px;
  box-shadow: var(--shadow-card);
  position: relative;
  transition: all 0.3s ease;
}

.step-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
}

.step-num {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--gold-primary);
  margin-bottom: 8px;
  opacity: 0.85;
}

.step-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.step-title {
  font-size: 1.1rem;
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.86rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Quiz Section */
.quiz-wrapper {
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  box-shadow: var(--shadow-card);
  max-width: 800px;
  margin: 0 auto;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

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

.quiz-question {
  font-size: 1.25rem;
  margin-bottom: 20px;
  text-align: center;
}

.quiz-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 24px;
}

.quiz-option-btn {
  background: var(--bg-main);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 16px;
  color: var(--text-main);
  font-size: 0.88rem;
  font-family: var(--font-body);
  text-align: left;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  gap: 12px;
}

.quiz-option-btn:hover, .quiz-option-btn.selected {
  border-color: var(--gold-primary);
  background: rgba(184, 134, 11, 0.08);
}

.quiz-result-card {
  text-align: center;
  background: var(--bg-main);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--border-gold);
}

/* REVIEWS CAROUSEL SECTION WITH PAGINATION DOTS */
.reviews-carousel-wrapper {
  position: relative;
  overflow: hidden;
  padding: 10px 0 20px;
}

.reviews-slider {
  display: flex;
  gap: 20px;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  touch-action: pan-y;
}

.review-card {
  flex: 0 0 calc(33.333% - 14px);
  min-width: 290px;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 22px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.author-avatar-img {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-primary);
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(184, 134, 11, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

.author-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.author-meta {
  font-size: 0.72rem;
  color: var(--gold-primary);
}

.review-photo-wrap {
  margin: 10px 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  max-height: 160px;
}

.review-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.review-stars {
  color: var(--gold-primary);
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.review-text {
  font-size: 0.88rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Pagination Dots for Reviews */
.carousel-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 16px;
  margin-top: 24px;
}

.review-dots {
  display: flex;
  gap: 8px;
  align-items: center;
}

.review-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.15);
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
}

.review-dot.active {
  background: var(--gold-primary);
  transform: scale(1.3);
}

/* Monastery Story */
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
}

.story-img-wrap {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

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

.story-content h2 {
  font-size: 2.1rem;
  margin-bottom: 16px;
}

.story-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.story-stats {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 1.5rem;
  color: var(--gold-primary);
  font-weight: 700;
  font-family: var(--font-heading);
}

.stat-label {
  font-size: 0.78rem;
  color: var(--text-muted);
}

/* Catalog Filter Tabs */
.catalog-filters-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 32px;
}

.catalog-filters-wrapper::-webkit-scrollbar {
  display: none;
}

.catalog-filters {
  display: flex;
  gap: 8px;
  width: max-content;
  margin: 0 auto;
}

.filter-tab {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  padding: 9px 18px;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.85rem;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.filter-tab:hover, .filter-tab.active {
  background: var(--gold-gradient);
  color: #ffffff;
  border-color: transparent;
  font-weight: 700;
}

/* Products Grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.product-card {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 18px;
  display: flex;
  flex-direction: column;
  transition: all 0.3s ease;
  position: relative;
  box-shadow: var(--shadow-card);
}

.product-card:hover {
  border-color: var(--border-gold);
  transform: translateY(-4px);
  box-shadow: var(--shadow-dark);
}

.card-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(184, 134, 11, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
}

.card-img-wrap {
  width: 100%;
  height: 170px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  background: #ffffff;
}

.card-img {
  max-width: 85%;
  max-height: 100%;
  object-fit: contain;
}

.card-title {
  font-size: 1rem;
  margin-bottom: 4px;
  line-height: 1.3;
}

.card-notes {
  font-size: 0.78rem;
  color: var(--gold-primary);
  font-style: italic;
  margin-bottom: 6px;
}

.card-purpose {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 14px;
  flex-grow: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

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

.card-price {
  font-size: 1.15rem;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-main);
}

.card-add-btn {
  background: rgba(184, 134, 11, 0.1);
  border: 1px solid var(--border-gold);
  color: var(--gold-primary);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1.1rem;
  transition: all 0.2s ease;
}

.card-add-btn:hover {
  background: var(--gold-gradient);
  color: #fff;
}

/* Bundles Box */
.bundle-box {
  background: #ffffff;
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 36px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
  box-shadow: var(--shadow-card);
}

.bundle-badge {
  background: var(--gold-gradient);
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--radius-pill);
  font-size: 0.72rem;
  display: inline-block;
  margin-bottom: 12px;
}

.bundle-title {
  font-size: 1.8rem;
  margin-bottom: 12px;
}

.bundle-desc {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.bundle-price-tag {
  font-size: 2rem;
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
  margin-bottom: 10px;
}

.bundle-savings {
  color: var(--gold-primary);
  font-size: 0.88rem;
  margin-bottom: 20px;
}

.bundle-img-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.bundle-img-wrap img {
  max-height: 220px;
  max-width: 100%;
  object-fit: contain;
}

/* FAQ Accordion */
.faq-accordion {
  max-width: 780px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.faq-item.active {
  border-color: var(--border-gold);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 20px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
}

.faq-icon {
  font-size: 1.3rem;
  color: var(--gold-primary);
  transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
  transform: rotate(45deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 20px;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  padding-bottom: 18px;
}

.faq-answer p {
  color: var(--text-muted);
  font-size: 0.88rem;
  line-height: 1.5;
}

/* Sticky Mobile Bar */
.mobile-sticky-bar {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1500;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border-gold);
  padding: 10px 16px;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
}

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

.sticky-info {
  display: flex;
  flex-direction: column;
}

.sticky-label {
  font-size: 0.72rem;
  color: var(--text-muted);
}

.sticky-price {
  font-size: 1.05rem;
  font-family: var(--font-heading);
  color: var(--text-main);
  font-weight: 700;
}

/* Cart Drawer & Modals */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(6px);
  z-index: 2000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

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

.cart-drawer {
  position: fixed;
  top: 0;
  right: -440px;
  width: 420px;
  max-width: 100vw;
  height: 100vh;
  background: #ffffff;
  border-left: 1px solid var(--border-gold);
  z-index: 2001;
  display: flex;
  flex-direction: column;
  transition: right 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
}

.cart-drawer.active {
  right: 0;
}

.drawer-header {
  padding: 18px 20px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.drawer-title {
  font-size: 1.15rem;
}

.drawer-close {
  background: none;
  border: none;
  color: var(--text-muted);
  font-size: 1.4rem;
  cursor: pointer;
}

.drawer-body {
  padding: 18px 20px;
  overflow-y: auto;
  flex-grow: 1;
}

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

.cart-item-img {
  width: 46px;
  height: 55px;
  object-fit: contain;
}

.cart-item-info {
  flex-grow: 1;
}

.cart-item-title {
  font-size: 0.88rem;
  font-weight: 600;
}

.cart-item-price {
  color: var(--gold-primary);
  font-weight: 700;
  font-size: 0.85rem;
}

.cart-qty-ctrl {
  display: flex;
  align-items: center;
  gap: 4px;
  background: var(--bg-main);
  border-radius: var(--radius-pill);
  padding: 2px 8px;
}

.qty-btn {
  background: none;
  border: none;
  color: var(--text-main);
  cursor: pointer;
  font-size: 0.95rem;
  padding: 0 4px;
}

.drawer-footer {
  padding: 18px 20px;
  border-top: 1px solid var(--border-subtle);
  background: var(--bg-main);
}

.form-group {
  margin-bottom: 10px;
}

.form-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.form-input {
  width: 100%;
  background: #ffffff;
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 9px 12px;
  color: var(--text-main);
  font-family: var(--font-body);
  font-size: 0.88rem;
}

.form-input:focus {
  outline: none;
  border-color: var(--gold-primary);
}

/* Toast */
.toast-container {
  position: fixed;
  bottom: 80px;
  right: 16px;
  left: 16px;
  z-index: 3000;
  display: flex;
  flex-direction: column;
  gap: 8px;
  pointer-events: none;
}

.toast {
  background: #ffffff;
  border: 1px solid var(--border-gold);
  color: var(--text-main);
  padding: 12px 16px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-card);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.85rem;
  max-width: 380px;
  margin: 0 auto;
}

/* Footer */
.footer {
  background: #151821;
  color: #a6b0c2;
  padding: 40px 0 24px;
  font-size: 0.85rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-bottom: 30px;
}

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

.footer-links a {
  color: #a6b0c2;
  text-decoration: none;
  transition: color 0.2s ease;
}

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

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 20px;
  text-align: center;
  font-size: 0.78rem;
  color: #727b8c;
}

/* RESPONSIVE MEDIA QUERIES */
@media (max-width: 1024px) {
  .hero-grid, .story-grid, .bundle-box {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .grid-4-steps {
    grid-template-columns: 1fr 1fr;
  }

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

  .reviews-slider .review-card {
    flex: 0 0 calc(50% - 10px);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  .desktop-only {
    display: none;
  }

  .mobile-menu-btn {
    display: flex;
  }

  .mobile-sticky-bar {
    display: block;
  }

  .nav-container {
    position: fixed;
    top: 72px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 72px);
    background: #ffffff;
    flex-direction: column;
    padding: 24px;
    transition: left 0.3s ease;
    z-index: 999;
  }

  .nav-container.active {
    left: 0;
  }

  .nav-links {
    flex-direction: column;
    gap: 18px;
    font-size: 1.05rem;
  }

  .hero {
    padding: 30px 0 45px;
    text-align: center;
  }

  .hero-title {
    font-size: 1.95rem;
  }

  .grid-4-steps {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .hero-benefits {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    text-align: left;
  }

  .benefit-pill {
    padding: 8px 10px;
    font-size: 0.76rem;
  }

  .hero-ctas .btn-primary, .hero-ctas .btn-outline {
    width: 100%;
  }

  .reviews-slider .review-card {
    flex: 0 0 100%;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cart-drawer {
    width: 100vw;
  }
}
