/**
 * NURIPOLE E-COMMERCE STYLESHEET
 * Clean, high-performance CSS inspired by modern Shopify themes.
 * Zero bloat, responsive layout, accessible typography.
 */

:root {
  --color-primary: #dc2626;
  --color-primary-hover: #b91c1c;
  --color-primary-light: #fef2f2;
  --color-accent: #059669;
  --color-accent-light: #ecfdf5;
  --color-dark: #0f172a;
  --color-heading: #1e293b;
  --color-body: #475569;
  --color-muted: #64748b;
  --color-light-bg: #f8fafc;
  --color-border: #e2e8f0;
  --color-white: #ffffff;

  --font-main: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
  --shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.07), 0 2px 4px -2px rgb(0 0 0 / 0.05);
  --shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.08), 0 4px 6px -4px rgb(0 0 0 / 0.04);
  --shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.04);

  --radius-sm: 6px;
  --radius-md: 10px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  --container-width: 1200px;
  --transition: all 0.2s ease-in-out;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-main);
  background-color: #ffffff;
  color: var(--color-body);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
}

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

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

button, input, select, textarea {
  font: inherit;
}

.container {
  width: 100%;
  max-width: var(--container-width);
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* Top Announcement Bar */
.top-bar {
  background-color: #0f172a;
  color: #e2e8f0;
  font-size: 0.8125rem;
  padding: 8px 0;
  font-weight: 500;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.top-bar__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.top-bar__info {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar__badge {
  background: rgba(220, 38, 38, 0.25);
  color: #fca5a5;
  padding: 2px 8px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

.top-bar__phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: #cbd5e1;
  font-weight: 600;
}

.top-bar__phone:hover {
  color: var(--color-white);
}

/* Header & Nav */
.site-header {
  position: sticky;
  top: 0;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  z-index: 100;
  border-bottom: 1px solid var(--color-border);
  transition: box-shadow 0.2s ease;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow-sm);
}

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

.site-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.35rem;
  color: var(--color-heading);
  letter-spacing: -0.02em;
}

.site-logo__icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #dc2626 0%, #991b1b 100%);
  color: #ffffff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.2rem;
  box-shadow: 0 4px 10px rgba(220, 38, 38, 0.25);
}

.site-logo__sub {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1;
  margin-top: 2px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

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

.nav-link {
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--color-heading);
  padding: 6px 0;
  position: relative;
}

.nav-link:hover, .nav-link.is-active {
  color: var(--color-primary);
}

.nav-link.is-active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background-color: var(--color-primary);
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  color: var(--color-heading);
}

.nav-toggle svg {
  width: 26px;
  height: 26px;
  display: block;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.9375rem;
  font-weight: 700;
  border-radius: var(--radius-md);
  border: 1px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  text-align: center;
  line-height: 1.25;
}

.btn-primary {
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #ffffff;
  box-shadow: 0 4px 14px rgba(220, 38, 38, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #b91c1c 0%, #991b1b 100%);
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(220, 38, 38, 0.4);
}

.btn-outline {
  background: transparent;
  border-color: var(--color-border);
  color: var(--color-heading);
}

.btn-outline:hover {
  border-color: var(--color-heading);
  background-color: var(--color-light-bg);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.8125rem;
}

.btn-large {
  padding: 16px 32px;
  font-size: 1.0625rem;
  width: 100%;
}

.btn-outline-white {
  border-color: rgba(255, 255, 255, 0.4);
  color: #ffffff;
}

.btn-outline-white:hover {
  background-color: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
}

/* Badges & Tags */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge-success {
  background-color: var(--color-accent-light);
  color: #047857;
  border: 1px solid #a7f3d0;
}

.badge-primary {
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  border: 1px solid #fecaca;
}

.badge-neutral {
  background-color: var(--color-light-bg);
  color: var(--color-muted);
  border: 1px solid var(--color-border);
}

/* Hero Section */
.hero {
  padding: 40px 0 60px;
  background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
  border-bottom: 1px solid var(--color-border);
}

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

/* Gallery Component (5 offer photos) */
.product-gallery {
  position: sticky;
  top: 96px;
}

.gallery-main {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.25s ease;
}

.gallery-badges {
  position: absolute;
  top: 14px;
  left: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  z-index: 2;
}

.gallery-thumbs {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  margin-top: 14px;
}

.gallery-thumb {
  border: 2px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  background: #ffffff;
  padding: 2px;
  transition: var(--transition);
}

.gallery-thumb:hover {
  border-color: #cbd5e1;
}

.gallery-thumb.is-active {
  border-color: var(--color-primary);
  box-shadow: 0 0 0 2px rgba(220, 38, 38, 0.2);
}

.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: calc(var(--radius-md) - 3px);
}

/* Product Buy Box & Details */
.product-info {
  display: flex;
  flex-direction: column;
}

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

.stars {
  color: #f59e0b;
  display: flex;
  gap: 2px;
}

.rating-text {
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--color-heading);
}

.product-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-heading);
  letter-spacing: -0.02em;
  line-height: 1.2;
  margin-bottom: 12px;
}

.product-subtitle {
  font-size: 1.0625rem;
  color: var(--color-body);
  margin-bottom: 20px;
}

.price-card {
  background: var(--color-light-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.price-group {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.price-current {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-primary);
  line-height: 1;
}

.price-currency {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-heading);
}

.price-old {
  font-size: 1.125rem;
  color: var(--color-muted);
  text-decoration: line-through;
}

.price-discount {
  background-color: var(--color-primary);
  color: #ffffff;
  font-size: 0.8125rem;
  font-weight: 800;
  padding: 4px 10px;
  border-radius: var(--radius-full);
}

/* Key Highlights List */
.highlights-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 24px;
}

.highlight-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.9375rem;
  color: var(--color-heading);
}

.highlight-icon {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Order Form Box */
.order-card {
  background: #ffffff;
  border: 2px solid #e2e8f0;
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-md);
  margin-bottom: 24px;
  position: relative;
}

.order-card__header {
  margin-bottom: 18px;
  text-align: center;
}

.order-card__title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--color-heading);
  margin-bottom: 4px;
}

.order-card__desc {
  font-size: 0.875rem;
  color: var(--color-muted);
}

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

.form-label {
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 6px;
}

.form-input {
  width: 100%;
  height: 50px;
  padding: 10px 16px;
  font-size: 1rem;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  background-color: #ffffff;
  color: var(--color-heading);
  transition: var(--transition);
}

.form-input:focus {
  outline: none;
  border-color: var(--color-primary);
  box-shadow: 0 0 0 3px rgba(220, 38, 38, 0.15);
}

.form-input.is-invalid {
  border-color: #ef4444;
  background-color: #fef2f2;
}

.form-input.is-valid {
  border-color: #10b981;
}

.form-hint {
  font-size: 0.75rem;
  color: var(--color-muted);
  margin-top: 4px;
}

.field-error {
  display: none;
  color: #dc2626;
  font-size: 0.78rem;
  font-weight: 600;
  margin-top: 4px;
}

.field-error.is-visible {
  display: block;
}

.form-footer-security {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
  font-size: 0.78rem;
  color: var(--color-muted);
}

.form-footer-security span {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* Trust Features Grid */
.trust-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 10px;
  padding-top: 16px;
  border-top: 1px solid var(--color-border);
}

.trust-card {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8125rem;
  color: var(--color-heading);
  font-weight: 600;
}

.trust-card svg {
  width: 24px;
  height: 24px;
  color: var(--color-accent);
  flex-shrink: 0;
}

/* Section Common Styles */
.section {
  padding: 64px 0;
}

.section--light {
  background-color: var(--color-light-bg);
}

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

.section-tag {
  display: inline-block;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-primary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.section-title {
  font-size: 2rem;
  font-weight: 800;
  color: var(--color-heading);
  letter-spacing: -0.02em;
  line-height: 1.25;
  margin-bottom: 12px;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--color-body);
}

/* Ingredients Grid */
.ingredients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.ingredient-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.ingredient-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: #cbd5e1;
}

.ingredient-icon-box {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background-color: var(--color-primary-light);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}

.ingredient-icon-box svg {
  width: 24px;
  height: 24px;
}

.ingredient-title {
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--color-heading);
  margin-bottom: 8px;
}

.ingredient-latin {
  font-size: 0.8125rem;
  color: var(--color-muted);
  font-style: italic;
  margin-bottom: 10px;
  display: block;
}

.ingredient-text {
  font-size: 0.9375rem;
  color: var(--color-body);
  line-height: 1.55;
}

/* Benefits 2-Col Grid */
.benefits-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.benefits-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.benefit-item {
  display: flex;
  gap: 16px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  box-shadow: var(--shadow-sm);
}

.benefit-bullet {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-accent-light);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

.benefit-bullet svg {
  width: 18px;
  height: 18px;
}

.benefit-heading {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 4px;
}

.benefit-copy {
  font-size: 0.9rem;
  color: var(--color-body);
  line-height: 1.5;
}

/* How to Order Steps */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.step-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow-sm);
}

.step-number {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #ffffff;
  font-weight: 800;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-title {
  font-size: 1.125rem;
  font-weight: 700;
  color: var(--color-heading);
  margin-bottom: 8px;
}

.step-desc {
  font-size: 0.9rem;
  color: var(--color-body);
}

/* Customer Reviews */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.review-card {
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.review-stars {
  color: #f59e0b;
  display: flex;
  gap: 2px;
  margin-bottom: 12px;
}

.review-quote {
  font-size: 0.9375rem;
  color: var(--color-heading);
  line-height: 1.6;
  font-style: normal;
  margin-bottom: 16px;
}

.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--color-border);
}

.review-name {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--color-heading);
}

.review-location {
  font-size: 0.78rem;
  color: var(--color-muted);
}

.review-badge {
  font-size: 0.75rem;
  color: var(--color-accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 4px;
}

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

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

.faq-item details {
  padding: 0;
}

.faq-item summary {
  padding: 18px 20px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--color-heading);
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  user-select: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: '+';
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--color-muted);
  transition: transform 0.2s ease;
}

.faq-item details[open] summary::after {
  content: '−';
}

.faq-content {
  padding: 0 20px 20px 20px;
  font-size: 0.9375rem;
  color: var(--color-body);
  line-height: 1.6;
  border-top: 1px solid var(--color-border);
  padding-top: 14px;
}

/* Regulatory Healthcare Disclaimer Box */
.compliance-disclaimer-box {
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  border-left: 4px solid #64748b;
  border-radius: var(--radius-md);
  padding: 16px 20px;
  font-size: 0.8125rem;
  color: #475569;
  line-height: 1.6;
  margin-top: 40px;
}

.compliance-disclaimer-box strong {
  color: var(--color-heading);
}

/* Content Pages (About, Terms, Privacy, etc.) */
.page-hero {
  padding: 48px 0;
  background-color: var(--color-light-bg);
  border-bottom: 1px solid var(--color-border);
  text-align: center;
}

.page-title {
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--color-heading);
  margin-bottom: 10px;
}

.page-subtitle {
  font-size: 1.0625rem;
  color: var(--color-muted);
}

.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 48px 20px;
}

.legal-content h2 {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--color-heading);
  margin: 32px 0 12px;
}

.legal-content h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-heading);
  margin: 24px 0 10px;
}

.legal-content p, .legal-content ul, .legal-content ol {
  font-size: 0.96rem;
  color: var(--color-body);
  line-height: 1.7;
  margin-bottom: 16px;
}

.legal-content ul, .legal-content ol {
  padding-left: 24px;
}

.legal-content li {
  margin-bottom: 8px;
}

/* Footer */
.site-footer {
  background-color: #0f172a;
  color: #94a3b8;
  padding: 56px 0 32px;
  font-size: 0.875rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1.2fr 1.2fr 1.6fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-col-title {
  font-size: 0.9375rem;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  color: #94a3b8;
}

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

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #cbd5e1;
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: #f87171;
  flex-shrink: 0;
  margin-top: 3px;
}

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

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

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.8125rem;
  color: #64748b;
  text-align: center;
}

.footer-bottom-disclaimer {
  max-width: 900px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Thank You Page Styling */
.thanks-card {
  max-width: 640px;
  margin: 50px auto;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.thanks-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #ecfdf5;
  color: #059669;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.thanks-icon svg {
  width: 36px;
  height: 36px;
}

.thanks-title {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--color-heading);
  margin-bottom: 8px;
}

.thanks-order-box {
  background: var(--color-light-bg);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 20px;
  margin: 24px 0;
  text-align: left;
}

.order-detail-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.9375rem;
}

.order-detail-row:last-child {
  border-bottom: none;
  font-weight: 700;
  color: var(--color-heading);
  padding-top: 12px;
}

/* Floating Elements (Google Ads Compliant) */
/* 1. Cookie Notice */
.cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: rgba(15, 23, 42, 0.96);
  backdrop-filter: blur(8px);
  color: #f1f5f9;
  padding: 14px 0;
  z-index: 999;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.15);
}

.cookie-notice__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
}

.cookie-notice__text {
  font-size: 0.8125rem;
  line-height: 1.5;
  max-width: 820px;
}

.cookie-notice__text a {
  color: #f87171;
  text-decoration: underline;
}

/* 2. Non-intrusive Purchase Toast */
.purchase-toast {
  position: fixed;
  bottom: 24px;
  left: 24px;
  background: #ffffff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-xl);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 320px;
  z-index: 900;
  transform: translateY(120%);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
  pointer-events: none;
}

.purchase-toast.is-visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.toast-img {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  object-fit: cover;
  flex-shrink: 0;
  border: 1px solid var(--color-border);
}

.toast-content {
  flex: 1;
}

.toast-content-text {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--color-heading);
  line-height: 1.3;
}

.toast-content-time {
  font-size: 0.72rem;
  color: var(--color-muted);
  margin-top: 2px;
}

.toast-close {
  background: none;
  border: none;
  color: var(--color-muted);
  cursor: pointer;
  padding: 4px;
  line-height: 1;
  border-radius: 4px;
}

.toast-close:hover {
  color: var(--color-heading);
  background-color: var(--color-light-bg);
}

/* Responsive Media Queries */
@media (max-width: 991px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .product-gallery {
    position: static;
    max-width: 520px;
    margin: 0 auto;
  }

  .ingredients-grid, .reviews-grid, .steps-grid {
    grid-template-columns: 1fr 1fr;
  }

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

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

@media (max-width: 768px) {
  .site-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: #ffffff;
    flex-direction: column;
    align-items: flex-start;
    padding: 24px 20px;
    gap: 16px;
    border-bottom: 1px solid var(--color-border);
    box-shadow: var(--shadow-lg);
    transform: translateY(-120%);
    transition: transform 0.3s ease;
  }

  .site-nav.is-open {
    transform: translateY(0);
  }

  .nav-links {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .nav-toggle {
    display: block;
  }

  .ingredients-grid, .reviews-grid, .steps-grid {
    grid-template-columns: 1fr;
  }

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

  .trust-bar {
    grid-template-columns: 1fr;
  }

  .top-bar__inner {
    justify-content: center;
    text-align: center;
  }

  .top-bar__phone {
    display: none;
  }

  .purchase-toast {
    bottom: 16px;
    left: 16px;
    right: 16px;
    max-width: calc(100% - 32px);
  }
}
