/* =========================================
   VITALIXA - PREMIUM MAIN STYLESHEET
   ========================================= */

:root {
  --primary: #1B5E20;
  --primary-light: #4E8A52;
  --primary-dark: #0D3D12;
  --primary-soft: #E8F5E9;

  --accent: #FFD700;
  --accent-orange: #FF6B35;
  --accent-red: #E74C3C;

  --bg-cream: #FFFBF7;
  --bg-green: #F5F9F5;
  --bg-soft: #FAFCFA;
  --bg-card: #FFFFFF;
  --bg-dark: #173D16;

  --text-dark: #1A1A1A;
  --text-gray: #6B7280;
  --text-light: #9CA3AF;
  --text-muted: #667085;
  --white: #FFFFFF;

  --border: #E5E7EB;
  --border-soft: #DCE8DE;

  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 6px 18px rgba(16, 24, 40, 0.08);
  --shadow-lg: 0 14px 36px rgba(16, 24, 40, 0.12);
  --shadow-xl: 0 22px 60px rgba(0, 0, 0, 0.22);

  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;

  --container: 1200px;
  --transition: 0.28s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  word-wrap: break-word;
}

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

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

a:hover {
  text-decoration: none;
}

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

button {
  cursor: pointer;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0 0 12px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  color: var(--text-dark);
}

h1,
h2.section-title,
.hero h1,
.modal h3,
.logo,
footer strong {
  font-family: 'Playfair Display', serif;
}

h1 {
  font-size: clamp(2.1rem, 4.3vw, 3.8rem);
}

h2 {
  font-size: clamp(1.55rem, 2.8vw, 2.3rem);
}

h3 {
  font-size: 1.2rem;
}

h4 {
  font-size: 1rem;
}

p {
  margin: 0 0 14px;
  color: var(--text-gray);
}

strong {
  color: var(--text-dark);
}

/* =========================================
   LAYOUT
   ========================================= */

.container {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 72px 0;
}

.section.center {
  text-align: center;
}

.section-title {
  color: var(--primary);
  margin-bottom: 12px;
}

.section-intro {
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-muted);
}

.section-label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.75);
  border: 1px solid rgba(27, 94, 32, 0.08);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

/* =========================================
   HEADER
   ========================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
}

.header-inner {
  width: min(var(--container), calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-width: 0;
}

.logo {
  font-size: 1.55rem;
  font-weight: 800;
  color: var(--primary);
  letter-spacing: -0.02em;
  white-space: nowrap;
}

.logo span {
  color: var(--primary-light);
}

.top-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  min-width: 0;
}

.top-nav a {
  color: #355e3b;
  font-weight: 600;
  font-size: 0.95rem;
  transition: color var(--transition);
}

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

.breadcrumb {
  font-size: 0.875rem;
  color: var(--text-gray);
  padding: 14px 0 0;
}

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

.breadcrumb a:hover {
  text-decoration: underline;
}

/* =========================================
   HERO
   ========================================= */

.hero {
  position: relative;
  overflow: hidden;
  padding: 64px 0 52px;
  background:
    radial-gradient(circle at top right, rgba(200, 230, 201, 0.8), transparent 35%),
    linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
  color: var(--text-dark);
}

.hero-grid,
.hero-content {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr;
  gap: 42px;
  align-items: center;
  min-width: 0;
}

.hero h1 {
  margin: 16px 0 14px;
  color: var(--primary);
}

.hero .lead,
.hero p.lead,
.hero-text .description {
  max-width: 760px;
  font-size: 1.05rem;
  color: #35523a;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(27, 94, 32, 0.08);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  color: #2f4f34;
  backdrop-filter: blur(8px);
  font-weight: 600;
}

.hero-actions,
.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  min-width: 0;
}

.hero-visual {
  position: relative;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  width: min(100%, 420px);
  padding: 22px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(8px);
}

.hero-card-inner {
  min-height: 300px;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    radial-gradient(circle at top left, rgba(232, 245, 233, 0.95), rgba(255, 255, 255, 0.92)),
    linear-gradient(180deg, #ffffff, #eef7ef);
}

.hero-card-inner .leaf {
  position: absolute;
  font-size: 2.2rem;
  opacity: 0.85;
}

.hero-card-inner .leaf.l1 { top: 18px; left: 24px; }
.hero-card-inner .leaf.l2 { top: 32px; right: 28px; }
.hero-card-inner .leaf.l3 { bottom: 28px; left: 38px; }
.hero-card-inner .leaf.l4 { right: 24px; bottom: 26px; }

.hero-card-inner .main {
  font-size: 7rem;
  line-height: 1;
  opacity: 0.95;
}

/* =========================================
   BUTTONS
   ========================================= */

.btn-primary,
.btn-secondary,
.btn-large {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition), color var(--transition);
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, var(--accent-orange), #ff8a5f);
  color: var(--white);
  box-shadow: 0 8px 22px rgba(255, 107, 53, 0.28);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(255, 107, 53, 0.32);
}

.btn-secondary {
  background: var(--bg-green);
  color: var(--primary);
  border: 1px solid #d7e8d8;
}

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

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

/* =========================================
   OFFER STRIP
   ========================================= */

.offer-strip {
  margin-top: 28px;
  margin-bottom: 18px;
  padding: 26px 28px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #173d16, #285f2b);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.offer-strip h2,
.offer-strip h3 {
  margin-bottom: 8px;
  color: var(--white);
  font-size: 1.28rem;
}

.offer-strip .subtitle {
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.92rem;
  margin-bottom: 16px;
}

.countdown-wrap,
.countdown,
.m-countdown {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  min-width: 0;
}

.countdown-box {
  min-width: 74px;
  padding: 11px 14px;
  text-align: center;
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.countdown-box .num {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1;
  color: var(--white);
}

.countdown-box .lbl {
  display: block;
  margin-top: 6px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.7);
}

/* =========================================
   HOMEPAGE PRODUCT GRID
   ========================================= */

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 34px 0 0;
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  padding: 24px;
  text-align: center;
  background: var(--bg-card);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(27, 94, 32, 0.18);
}

.product-image-wrap {
  width: 110px;
  height: 110px;
  margin: 8px auto 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cat-badge {
  display: inline-flex;
  align-self: flex-start;
  background: var(--primary);
  color: var(--white);
  padding: 5px 12px;
  border-radius: 999px;
  font-size: 0.76rem;
  font-weight: 700;
  margin-bottom: 12px;
}

.product-card h3 {
  margin: 8px 0;
  font-size: 1.24rem;
  color: var(--text-dark);
}

.searches {
  margin: 6px 0 10px;
  font-size: 0.9rem;
  color: var(--text-gray);
}

.rating-line {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 12px;
  font-size: 0.9rem;
  color: var(--text-gray);
}

.stars {
  color: #C79A2B;
  font-weight: 800;
}

.vol-bar {
  height: 8px;
  margin: 10px 0 14px;
  background: #E5E7EB;
  border-radius: 999px;
  overflow: hidden;
}

.vol-bar-fill {
  height: 100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--primary), var(--primary-light));
}

.product-card p {
  flex: 1;
  font-size: 0.92rem;
  line-height: 1.58;
  color: var(--text-gray);
  margin: 0 0 16px;
}

/* =========================================
   BENEFITS / TRUST / FAQ / EDITORIAL
   ========================================= */

.benefits-grid,
.trust-grid,
.faq-grid,
.editorial-grid {
  display: grid;
  gap: 24px;
}

.benefits-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 32px;
}

.editorial-grid {
  grid-template-columns: 1.1fr 0.9fr;
  margin-top: 28px;
}

.faq-grid {
  grid-template-columns: 1fr 1fr;
  margin-top: 28px;
}

.two-col,
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  min-width: 0;
}

.benefit-card,
.trust-card,
.faq-item,
.editor-card,
.section-card,
.opinion-card,
.offer-box {
  background: var(--white);
  border: 1px solid var(--border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
}

.benefit-card,
.trust-card,
.faq-item,
.editor-card,
.section-card {
  padding: 24px;
}

.benefit-card {
  text-align: center;
}

.benefit-card .icon,
.trust-card .icon,
.ingredient-item .icon,
.modal .icon {
  font-size: 2.4rem;
  margin-bottom: 12px;
}

.benefit-card h4,
.benefit-card h3,
.trust-card h3,
.editor-card h3,
.faq-item h3 {
  color: var(--primary);
  margin-bottom: 8px;
}

.benefit-card p,
.trust-card p,
.editor-card p,
.faq-item p,
.muted {
  color: var(--text-gray);
}

.list-clean {
  list-style: none;
  padding: 0;
  margin: 0;
}

.list-clean li {
  padding: 10px 0;
  border-bottom: 1px solid #edf2ee;
  color: #506054;
}

.list-clean li:last-child {
  border-bottom: 0;
}

.disclaimer-box {
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 16px;
  background: #fffdf5;
  border: 1px solid #f0e2b4;
  color: #6d5d2a;
}

/* =========================================
   PRODUCT PAGE SHARED CLASSES
   ========================================= */

.product-hero {
  padding: 54px 0;
  background:
    radial-gradient(circle at top right, rgba(200, 230, 201, 0.7), transparent 30%),
    linear-gradient(135deg, #F7FCF7 0%, #EAF4EA 100%);
}

.hero-text h1 {
  color: var(--primary);
  margin-bottom: 10px;
}

.hero-text .category-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(27, 94, 32, 0.08);
  color: var(--primary);
  padding: 7px 14px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.hero-text .rating {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-gray);
  margin: 14px 0;
  flex-wrap: wrap;
}

.hero-text .price {
  font-size: 2rem;
  font-weight: 800;
  color: var(--primary-dark);
  margin: 10px 0 14px;
}

.hero-text .price old,
.hero-text .price .old,
.hero-text old {
  color: var(--text-light);
  text-decoration: line-through;
  font-weight: 500;
  margin-left: 10px;
  font-size: 1rem;
}

.hero-image img {
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  filter: drop-shadow(0 14px 34px rgba(16, 24, 40, 0.14));
}

.trust-badges {
  padding: 22px 0;
}

.trust-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  min-width: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 14px;
  border-radius: 14px;
  background: var(--white);
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-sm);
  color: var(--text-gray);
  font-size: 0.92rem;
}

.main-content {
  padding: 54px 0;
}

.section-card {
  margin-bottom: 24px;
}

.ingredients-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.ingredient-item {
  padding: 18px 14px;
  text-align: center;
  border-radius: 16px;
  background: var(--bg-soft);
  border: 1px solid var(--border);
}

.ingredient-item .name {
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 4px;
}

.ingredient-item .benefit {
  color: var(--text-gray);
  font-size: 0.82rem;
}

.benefits-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.benefits-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 12px 0;
  border-bottom: 1px solid #edf2ee;
  color: var(--text-gray);
}

.benefits-list li:last-child {
  border-bottom: 0;
}

.opinion-card {
  padding: 20px 18px;
  margin-bottom: 16px;
}

.opinion-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  margin-bottom: 12px;
}

.avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  flex-shrink: 0;
}

.opinion-author .name {
  color: var(--text-dark);
  font-weight: 700;
}

.opinion-author .date {
  color: var(--text-light);
  font-size: 0.78rem;
}

.opinion-stars {
  color: #C79A2B;
  white-space: nowrap;
  font-weight: 800;
}

.sidebar-sticky {
  position: sticky;
  top: 96px;
}

.offer-box {
  padding: 24px 20px;
  text-align: center;
}

.offer-box .discount-badge {
  display: inline-flex;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(255, 107, 53, 0.12);
  color: var(--accent-orange);
  font-weight: 800;
  font-size: 0.84rem;
  margin-bottom: 12px;
}

.offer-box .product-name {
  font-size: 1.4rem;
  color: var(--primary);
  font-weight: 800;
  margin-bottom: 8px;
}

.offer-box .new-price {
  font-size: 2.1rem;
  color: var(--primary-dark);
  font-weight: 800;
  margin-bottom: 8px;
}

/* =========================================
   FOOTER + DISCLAIMER
   ========================================= */

.disclaimer-bar,
.disclaimer {
  padding: 16px 24px;
  text-align: center;
  border-top: 1px solid var(--border);
  background: #F3F4F6;
  color: var(--text-gray);
  font-size: 0.78rem;
}

footer,
.site-footer {
  background: var(--primary-dark);
  color: rgba(255, 255, 255, 0.82);
  text-align: center;
  padding: 46px 24px;
}

footer strong,
.site-footer strong {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--white);
  font-size: 1.25rem;
}

footer a,
.site-footer a {
  color: var(--white);
  margin: 0 8px;
  font-size: 0.9rem;
}

footer a:hover,
.site-footer a:hover {
  text-decoration: underline;
}

/* =========================================
   COOKIE BAR - FIXED
   ========================================= */

.cookie-bar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: rgba(13, 61, 18, 0.96);
  color: var(--white);
  padding: 14px 16px;
  border-radius: var(--radius-lg);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 9999;
  max-width: 1100px;
  margin: 0 auto;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(10px);
}

.cookie-bar span {
  flex: 1 1 300px;
  min-width: 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.95);
}

.cookie-bar a {
  color: #FFF3A3;
  text-decoration: underline;
}

.cookie-btn {
  flex: 0 0 auto;
  background: var(--white);
  color: var(--primary);
  border: none;
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}

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

/* =========================================
   MODAL / EXIT POPUP
   ========================================= */

.overlay {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  z-index: 2000;
}

.overlay.active {
  display: flex;
}

.modal {
  position: relative;
  width: min(450px, 90%);
  padding: 36px;
  text-align: center;
  background: var(--white);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
}

.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  border: none;
  background: none;
  color: var(--text-light);
  font-size: 1.5rem;
  cursor: pointer;
}

.modal h3 {
  font-size: 1.6rem;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.modal p {
  color: var(--text-gray);
  margin-bottom: 20px;
}

.modal-dismiss {
  border: none;
  background: none;
  color: var(--text-light);
  cursor: pointer;
  font-size: 0.82rem;
}

/* =========================================
   ANIMATIONS
   ========================================= */

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE
   ========================================= */

.header-inner,
.hero-content,
.hero-grid,
.content-grid,
.trust-inner,
.hero-buttons,
.hero-actions,
.opinion-header,
.countdown,
.countdown-wrap {
  min-width: 0;
}

@media (max-width: 1024px) {
  .hero-grid,
  .hero-content,
  .editorial-grid,
  .two-col,
  .content-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

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

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

  .sidebar-sticky {
    position: static;
    top: auto;
  }
}

@media (max-width: 900px) {
  .site-header {
    padding: 12px 0;
  }

  .header-inner {
    padding: 0 16px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .breadcrumb {
    font-size: 0.8rem;
    line-height: 1.4;
    word-break: break-word;
  }

  .product-hero,
  .hero {
    padding: 40px 0;
  }

  .hero-grid,
  .hero-content {
    gap: 28px;
    text-align: center;
  }

  .hero h1,
  .hero-text h1 {
    font-size: clamp(2rem, 8vw, 2.8rem);
  }

  .hero-pills,
  .hero-buttons,
  .hero-actions,
  .hero-text .rating {
    justify-content: center;
  }

  .hero-buttons,
  .hero-actions {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons a,
  .hero-buttons button,
  .hero-actions a,
  .hero-actions button,
  .btn-primary,
  .btn-secondary {
    width: 100%;
  }

  .hero-image img {
    max-width: 280px;
    width: 100%;
  }

  .trust-badges {
    padding: 18px 0;
  }

  .trust-inner {
    padding: 0 16px;
    gap: 12px;
    justify-content: flex-start;
  }

  .trust-item {
    width: calc(50% - 6px);
    font-size: 0.84rem;
    align-items: flex-start;
  }

  .main-content,
  .section {
    padding: 40px 0;
  }

  .section-card,
  .benefit-card,
  .trust-card,
  .faq-item,
  .editor-card,
  .offer-box {
    padding: 22px 16px;
  }

  .ingredients-list {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .ingredient-item {
    padding: 16px 12px;
  }

  .ingredient-item .icon {
    font-size: 2rem;
  }

  .ingredient-item .name {
    font-size: 0.95rem;
  }

  .ingredient-item .benefit {
    font-size: 0.78rem;
  }

  .benefits-list li {
    gap: 10px;
    padding: 10px 0;
  }

  .opinion-card {
    padding: 18px 14px;
  }

  .opinion-header {
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
  }

  .avatar {
    width: 42px;
    height: 42px;
  }

  .opinion-author .name {
    font-size: 0.95rem;
  }

  .opinion-author .date {
    font-size: 0.75rem;
  }

  .opinion-stars {
    width: 100%;
    margin-top: 2px;
  }

  .offer-box .new-price {
    font-size: 2rem;
  }

  .countdown,
  .countdown-wrap {
    gap: 8px;
  }

  .countdown-box {
    min-width: 58px;
    padding: 10px 12px;
  }

  .countdown-box .num {
    font-size: 1.2rem;
  }

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

  .site-footer,
  footer {
    padding: 34px 16px;
    font-size: 0.92rem;
    line-height: 1.7;
  }

  .site-footer a,
  footer a {
    display: inline-block;
    margin: 4px 6px;
  }

  .disclaimer,
  .disclaimer-bar {
    padding: 14px 16px;
    font-size: 0.74rem;
    line-height: 1.5;
  }

  .cookie-bar {
    left: 10px;
    right: 10px;
    bottom: 10px;
    padding: 14px;
  }

  .cookie-bar span {
    flex: 1 1 100%;
    font-size: 0.85rem;
  }

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

@media (max-width: 680px) {
  .products-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .hero-card-inner .main {
    font-size: 5rem;
  }

  .offer-strip {
    padding: 22px 16px;
  }
}

@media (max-width: 560px) {
  .logo {
    font-size: 1.25rem;
  }

  .product-hero {
    padding: 28px 14px;
  }

  .hero-text h1,
  .hero h1 {
    font-size: 1.95rem;
  }

  .hero-text .category-badge {
    font-size: 0.78rem;
    padding: 6px 12px;
  }

  .trust-item {
    width: 100%;
  }

  .ingredients-list {
    grid-template-columns: 1fr;
  }

  .countdown,
  .countdown-wrap {
    justify-content: center;
  }

  .countdown-box {
    flex: 1 1 30%;
    max-width: 90px;
  }

  .offer-box .discount-badge {
    font-size: 0.8rem;
    padding: 7px 14px;
  }

  .offer-box .product-name {
    font-size: 1.3rem;
  }

  .offer-box .new-price {
    font-size: 1.8rem;
  }

  .cookie-bar span {
    font-size: 0.8rem;
  }

  .modal {
    padding: 28px 20px;
  }
}