/*
Theme Name: Nüwa Premium Theme
Theme URI: https://eatnuwa.com
Author: Antigravity Team
Description: Tema e-commerce profesional de alto impacto UX/UI para NÜWA (Ramen instantáneo y pastas funcionales a base de Konjac).
Version: 3.2.0
Text Domain: nuwa
*/

@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&family=Outfit:wght@400;500;600;700;800;900&display=swap');

:root {
  --nuwa-teal: #16B4B6;
  --nuwa-teal-dark: #0F8F91;
  --nuwa-teal-light: #E0F7F7;
  
  --nuwa-purple: #6C4394;
  --nuwa-purple-dark: #523174;
  --nuwa-purple-light: #F2ECF8;

  --nuwa-yellow: #F6CB2F;
  --nuwa-yellow-dark: #D4A816;
  
  --nuwa-berry: #CD205D;
  --nuwa-berry-dark: #A51749;

  --nuwa-grey: #616160;
  --nuwa-grey-light: #F4F5F7;
  --nuwa-dark: #1E1E1E;
  --nuwa-white: #FFFFFF;
  --nuwa-cream: #FAF9F6;

  /* Typography Stack matching Brand Manual: Dunkin Sans (Headings) & Avenir (Body) */
  --font-heading: 'Outfit', 'Dunkin Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Avenir', 'Plus Jakarta Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 9999px;
  
  --shadow-sm: 0 4px 12px rgba(0,0,0,0.06);
  --shadow-md: 0 8px 24px rgba(0,0,0,0.12);
  --shadow-lg: 0 16px 40px rgba(0,0,0,0.18);
  --transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--nuwa-dark);
  line-height: 1.2;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

/* Announcement Top Bar */
.announcement-bar {
  background: var(--nuwa-berry);
  color: var(--nuwa-white);
  text-align: center;
  padding: 10px 16px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Header Component */
.header-main {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--nuwa-teal);
  color: var(--nuwa-white);
  padding: 12px 32px;
  box-shadow: 0 4px 20px rgba(22, 180, 182, 0.3);
}
.header-container {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header-logo-img {
  height: 72px;
  max-height: 80px;
  width: auto;
  object-fit: contain;
  display: block;
  transition: var(--transition);
}
.header-logo-img:hover {
  opacity: 0.95;
  transform: scale(1.03);
}

.footer-logo-img {
  height: 80px;
  max-height: 90px;
  width: auto;
  object-fit: contain;
  display: block;
}

.nav-menu {
  display: flex;
  gap: 28px;
  list-style: none;
}
.nav-menu a {
  color: var(--nuwa-white);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  opacity: 0.9;
}
.nav-menu a:hover, .nav-menu a.active {
  opacity: 1;
  color: var(--nuwa-yellow);
}

.header-icons {
  display: flex;
  align-items: center;
  gap: 16px;
}
.icon-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  display: grid;
  place-items: center;
  color: var(--nuwa-white);
  position: relative;
  cursor: pointer;
  transition: var(--transition);
}
.icon-btn svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}
.icon-btn:hover {
  background: var(--nuwa-white);
  color: var(--nuwa-teal);
}
.cart-count-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--nuwa-yellow);
  color: var(--nuwa-dark);
  font-size: 0.75rem;
  font-weight: 900;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: grid;
  place-items: center;
}

/* Floating Cart Widget (Bottom Right) */
.floating-cart-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--nuwa-purple);
  color: var(--nuwa-white);
  box-shadow: 0 8px 30px rgba(108, 67, 148, 0.5);
  display: grid;
  place-items: center;
  z-index: 999;
  cursor: pointer;
  transition: var(--transition);
  border: 3px solid var(--nuwa-white);
}
.floating-cart-btn:hover {
  transform: scale(1.08);
  background: var(--nuwa-berry);
}
.floating-cart-btn svg {
  width: 26px;
  height: 26px;
  fill: currentColor;
}
.floating-cart-count {
  position: absolute;
  top: -4px;
  right: -4px;
  background: var(--nuwa-yellow);
  color: var(--nuwa-dark);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.8rem;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 2px solid var(--nuwa-white);
}

/* Slide-out Side Cart Drawer Component */
.drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
  z-index: 2000;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.drawer-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.side-cart-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 440px;
  max-width: 90vw;
  background: var(--nuwa-white);
  z-index: 2001;
  box-shadow: -8px 0 30px rgba(0,0,0,0.2);
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
}
.side-cart-drawer.active {
  transform: translateX(0);
}

.drawer-header {
  background: var(--nuwa-teal);
  color: var(--nuwa-white);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.drawer-header h3 {
  color: var(--nuwa-white);
  font-size: 1.25rem;
  text-transform: uppercase;
}
.close-drawer-btn {
  background: rgba(255,255,255,0.2);
  color: var(--nuwa-white);
  border: none;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1.2rem;
  font-weight: 800;
  cursor: pointer;
  display: grid;
  place-items: center;
}

.drawer-shipping-notice {
  background: var(--nuwa-teal-light);
  color: var(--nuwa-teal-dark);
  padding: 12px 24px;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  border-bottom: 1px solid rgba(22, 180, 182, 0.2);
}

.drawer-body {
  flex: 1;
  overflow-y: auto;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.drawer-item {
  display: flex;
  gap: 16px;
  align-items: center;
  background: var(--nuwa-cream);
  padding: 14px;
  border-radius: var(--radius-md);
  border: 1px solid var(--nuwa-grey-light);
}
.drawer-item-img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--nuwa-teal);
  color: var(--nuwa-white);
  display: grid;
  place-items: center;
  font-weight: 900;
  font-size: 0.75rem;
  flex-shrink: 0;
}
.drawer-item-details {
  flex: 1;
}
.drawer-item-title {
  font-weight: 800;
  font-size: 0.95rem;
  margin-bottom: 4px;
}
.drawer-item-price {
  color: var(--nuwa-berry);
  font-weight: 800;
  font-size: 0.9rem;
}
.drawer-qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--nuwa-white);
  border: 1px solid #DDD;
  border-radius: var(--radius-pill);
  padding: 2px 8px;
  width: fit-content;
  margin-top: 6px;
}
.qty-btn {
  background: none;
  border: none;
  font-weight: 900;
  font-size: 1rem;
  cursor: pointer;
  padding: 0 4px;
}

.drawer-footer {
  padding: 24px;
  background: var(--nuwa-cream);
  border-top: 1px solid #E5E5E5;
}
.drawer-subtotal-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  font-weight: 900;
  margin-bottom: 16px;
}

/* Hero Section */
.hero-section {
  background: var(--nuwa-cream);
  padding: 60px 32px 80px;
  position: relative;
}
.hero-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero-title-main {
  font-size: 3.5rem;
  font-weight: 900;
  color: var(--nuwa-dark);
  line-height: 1.1;
  margin-bottom: 20px;
  letter-spacing: -1.5px;
}
.hero-desc-main {
  font-size: 1.2rem;
  color: var(--nuwa-grey);
  margin-bottom: 32px;
  max-width: 580px;
  line-height: 1.6;
}

.btn-purple-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--nuwa-purple);
  color: var(--nuwa-white);
  padding: 16px 36px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 8px 24px rgba(108, 67, 148, 0.35);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}
.btn-purple-pill:hover {
  background: var(--nuwa-purple-dark);
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(108, 67, 148, 0.45);
}

.nutrition-icons-bar {
  display: flex;
  gap: 20px;
  margin-top: 36px;
  flex-wrap: wrap;
}
.nutrition-pill-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.nutrition-circle-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2px solid var(--nuwa-teal);
  background: var(--nuwa-white);
  color: var(--nuwa-teal);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-sm);
}
.nutrition-circle-icon svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}
.nutrition-pill-label {
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--nuwa-dark);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Hero Product Visual Card & Sodium Octagonal Seal */
.hero-visual-card {
  position: relative;
  background: var(--nuwa-white);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow-lg);
  border: 3px solid var(--nuwa-teal-light);
  text-align: center;
}
.octagonal-seal {
  position: absolute;
  top: 16px;
  right: 16px;
  background: #000000;
  color: #FFFFFF;
  padding: 8px 12px;
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 0.75rem;
  line-height: 1.1;
  text-align: center;
  border: 2px solid #FFFFFF;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
  clip-path: polygon(30% 0%, 70% 0%, 100% 30%, 100% 70%, 70% 100%, 30% 100%, 0% 70%, 0% 30%);
  z-index: 20;
  text-transform: uppercase;
}
.octagonal-seal small {
  display: block;
  font-size: 0.55rem;
  font-weight: 700;
}

/* Section BUNDLES */
.bundles-section {
  background: var(--nuwa-teal);
  color: var(--nuwa-white);
  padding: 80px 32px;
}
.bundles-header {
  text-align: center;
  margin-bottom: 48px;
}
.bundles-header h2 {
  font-size: 2.75rem;
  color: var(--nuwa-white);
  letter-spacing: -1px;
}
.bundles-grid {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 32px;
}
.bundle-card {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.25);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
}
.bundle-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.18);
  border-color: var(--nuwa-yellow);
}
.bundle-best-value {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--nuwa-yellow);
  color: var(--nuwa-dark);
  font-weight: 900;
  font-size: 0.8rem;
  padding: 6px 16px;
  border-radius: var(--radius-pill);
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: var(--shadow-sm);
}
.bundle-title {
  font-size: 1.4rem;
  font-weight: 900;
  color: var(--nuwa-white);
  margin-bottom: 4px;
  text-transform: uppercase;
}
.bundle-subtitle {
  font-size: 0.9rem;
  opacity: 0.9;
  margin-bottom: 24px;
}
.bundle-discount-tag {
  position: absolute;
  top: 40px;
  right: 20px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  background: var(--nuwa-yellow);
  color: var(--nuwa-dark);
  font-weight: 900;
  font-size: 0.85rem;
  line-height: 1.1;
  display: grid;
  place-items: center;
  box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.bundle-price-box {
  background: var(--nuwa-yellow);
  color: var(--nuwa-dark);
  padding: 12px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 900;
  margin-bottom: 20px;
}
.bundle-price-box del {
  font-size: 1rem;
  opacity: 0.6;
  margin-right: 8px;
}

/* Functional By Nature & Comparison Table */
.functional-section {
  background: var(--nuwa-white);
  padding: 90px 32px;
}
.functional-container {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: center;
}
.bullet-oval-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.bullet-oval-graphic {
  width: 24px;
  height: 48px;
  background: var(--nuwa-teal);
  border-radius: 20px;
  flex-shrink: 0;
}
.bullet-oval-content h3 {
  font-size: 1.25rem;
  margin-bottom: 4px;
  color: var(--nuwa-dark);
}
.bullet-oval-content p {
  color: var(--nuwa-grey);
  font-size: 0.95rem;
}

/* Comparison Table */
.comparison-table-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.1);
}
.nuwa-comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--nuwa-white);
}
.nuwa-comparison-table th {
  background: var(--nuwa-purple);
  color: var(--nuwa-white);
  padding: 16px 20px;
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
}
.nuwa-comparison-table th:first-child {
  text-align: left;
}
.nuwa-comparison-table td {
  padding: 14px 20px;
  border-bottom: 1px solid #EEEEEE;
  font-size: 0.9rem;
  text-align: center;
  font-weight: 600;
}
.nuwa-comparison-table td:first-child {
  text-align: left;
  font-weight: 700;
  color: var(--nuwa-dark);
}
.nuwa-comparison-table .nuwa-col-highlight {
  background: var(--nuwa-teal-light);
  color: var(--nuwa-teal-dark);
  font-weight: 900;
}

/* FAQS Accordion (Yellow Buttons) */
.faqs-section-teal {
  background: var(--nuwa-teal);
  color: var(--nuwa-white);
  padding: 90px 32px;
}
.faqs-section-teal h2 {
  text-align: center;
  font-size: 2.75rem;
  color: var(--nuwa-white);
  margin-bottom: 48px;
}
.faqs-grid-two-col {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.faq-btn-yellow {
  width: 100%;
  background: var(--nuwa-yellow);
  color: var(--nuwa-dark);
  padding: 18px 24px;
  border-radius: var(--radius-md);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1rem;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  text-align: left;
}
.faq-btn-yellow:hover {
  background: var(--nuwa-yellow-dark);
  transform: translateY(-2px);
}
.faq-answer-box {
  background: rgba(255, 255, 255, 0.15);
  color: var(--nuwa-white);
  padding: 20px 24px;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  margin-top: -8px;
  font-size: 0.95rem;
  line-height: 1.6;
  display: none;
}
.faq-answer-box.open {
  display: block;
}

/* Reviews Carousel */
.reviews-section {
  background: var(--nuwa-cream);
  padding: 90px 32px;
}
.reviews-section h2 {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 48px;
}
.reviews-grid-cards {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 32px;
}
.review-card-white {
  background: var(--nuwa-white);
  padding: 32px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border-top: 5px solid var(--nuwa-purple);
}
.stars-rating {
  color: var(--nuwa-yellow);
  font-size: 1.2rem;
  margin-bottom: 12px;
}
.review-quote-text {
  font-style: italic;
  color: var(--nuwa-dark);
  font-size: 1rem;
  margin-bottom: 16px;
}
.review-author-name {
  font-weight: 800;
  color: var(--nuwa-teal);
  font-size: 0.9rem;
}

/* Purple Conversion Bottom Bar */
.bottom-cta-purple-bar {
  background: var(--nuwa-purple);
  color: var(--nuwa-white);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}
.bottom-cta-purple-bar h3 {
  color: var(--nuwa-white);
  font-size: 1.5rem;
  letter-spacing: 0.5px;
}
.btn-white-pill {
  background: var(--nuwa-white);
  color: var(--nuwa-purple);
  padding: 14px 32px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  text-transform: uppercase;
  transition: var(--transition);
}
.btn-white-pill:hover {
  background: var(--nuwa-yellow);
  color: var(--nuwa-dark);
}

/* Footer Main */
.footer-teal-dark {
  background: var(--nuwa-teal-dark);
  color: var(--nuwa-white);
  padding: 70px 32px 40px;
}
.footer-container-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-col-item h4 {
  color: var(--nuwa-white);
  font-size: 1.1rem;
  margin-bottom: 20px;
}
.footer-link-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-link-list a {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
}
.footer-link-list a:hover {
  color: var(--nuwa-yellow);
}

/* Product Catalog Showcase */
.catalog-section {
  background: var(--nuwa-white);
  padding: 90px 32px;
}
.catalog-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.tab-btn {
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  border: 2px solid var(--nuwa-grey-light);
  background: var(--nuwa-white);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.tab-btn.active, .tab-btn:hover {
  background: var(--nuwa-purple);
  color: var(--nuwa-white);
  border-color: var(--nuwa-purple);
  box-shadow: 0 6px 18px rgba(108, 67, 148, 0.3);
}

.products-grid {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 32px;
}

.product-card {
  background: var(--nuwa-white);
  border-radius: var(--radius-lg);
  border: 2px solid var(--nuwa-grey-light);
  padding: 24px;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: var(--nuwa-teal);
}

.product-image-wrap {
  background: var(--nuwa-cream);
  border-radius: var(--radius-md);
  padding: 24px;
  text-align: center;
  position: relative;
  margin-bottom: 20px;
  height: 220px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(0,0,0,0.04);
}
.product-placeholder-box {
  width: 110px;
  height: 110px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--nuwa-white);
  font-family: var(--font-heading);
  font-weight: 900;
  font-size: 1.1rem;
  letter-spacing: -0.5px;
  box-shadow: var(--shadow-md);
}
.product-meta-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--nuwa-teal-light);
  border: 1.5px solid var(--nuwa-teal);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.75rem;
  font-weight: 800;
  color: var(--nuwa-teal-dark);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.product-meta-badge .dot {
  width: 8px;
  height: 8px;
  background: var(--nuwa-yellow);
  border-radius: 50%;
}
.product-title {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.product-desc {
  font-size: 0.875rem;
  color: var(--nuwa-grey);
  margin-bottom: 16px;
}

.variant-selector {
  display: flex;
  background: var(--nuwa-cream);
  border: 1px solid var(--nuwa-grey-light);
  border-radius: var(--radius-pill);
  padding: 4px;
  margin-bottom: 16px;
}
.variant-opt {
  flex: 1;
  text-align: center;
  padding: 6px 0;
  font-size: 0.75rem;
  font-weight: 800;
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: var(--transition);
}
.variant-opt.active {
  background: var(--nuwa-teal);
  color: var(--nuwa-white);
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}
.product-price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--nuwa-dark);
}

.btn-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: var(--radius-pill);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: none;
  transition: var(--transition);
}
.btn-primary {
  background: var(--nuwa-purple);
  color: var(--nuwa-white);
  box-shadow: 0 4px 14px rgba(108, 67, 148, 0.3);
}
.btn-primary:hover {
  background: var(--nuwa-purple-dark);
  transform: translateY(-2px);
}

/* Responsive Media Queries */
@media (max-width: 992px) {
  .hero-container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .hero-title-main { font-size: 2.75rem; }
  .nutrition-icons-bar { justify-content: center; }
  .functional-container { grid-template-columns: 1fr; }
  .faqs-grid-two-col { grid-template-columns: 1fr; }
  .footer-container-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .header-main { padding: 12px 16px; }
  .nav-menu { display: none; }
  .hero-title-main { font-size: 2.2rem; }
  .bundles-grid { grid-template-columns: 1fr; }
  .footer-container-grid { grid-template-columns: 1fr; }
  .side-cart-drawer { width: 100vw; }
  .header-logo-img { height: 50px; }
  .footer-logo-img { height: 56px; }
}
