/* Tenderly Yours — Dark fitness theme (red accent) */
:root {
  --bg-dark: #1a1a1a;
  --bg-darker: #0f0f0f;
  --bg-card: #252525;
  --accent: #c41e3a;
  --accent-hover: #e02545;
  --text: #ffffff;
  --text-muted: #b0b0b0;
  --border: rgba(255, 255, 255, 0.08);
  --radius: 8px;
  --radius-lg: 12px;
  --content-gutter: 1.5rem;
  --content-max: 1200px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

img {
  max-width: 100%;
  height: auto;
}

/* Page background — optional: use url('assets/page-bg.jpg') for your own image */
body {
  font-family: 'Montserrat', -apple-system, sans-serif;
  background: var(--bg-dark);
  background-color: var(--bg-dark);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background: linear-gradient(180deg, rgba(15, 15, 15, 0.93) 0%, rgba(26, 26, 26, 0.96) 100%);
  pointer-events: none;
  z-index: -1;
}

h1,
h2,
h3 {
  font-weight: 700;
}

h1 {
  font-size: clamp(2rem, 6vw, 3.5rem);
  letter-spacing: 0.02em;
}

h2 {
  font-size: clamp(1.5rem, 4vw, 2rem);
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

a {
  color: var(--text);
  text-decoration: none;
}

a:hover {
  color: var(--accent);
}

/* Header — uses same gutter & max-width as hero so logo and PRECISION PROTEIN share left edge */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 0.5rem var(--content-gutter);
  padding-left: calc(var(--content-gutter) + env(safe-area-inset-left, 0));
  padding-right: calc(var(--content-gutter) + env(safe-area-inset-right, 0));
  background: #c0281b;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease;
  display: flex;
  align-items: center;
  /* Keep overflow visible so the mobile slide-out nav isn't clipped on iOS */
  overflow: visible;
}

.site-header.scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

/* Stack: 1 = logo-transparent, 2 = tenderly-yours image, 3 = menus */
.header-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  position: relative;
}

/* Stack: same max-width & centering as hero so logo and content align */
.header-inner.header-stack {
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
  position: relative;
}

.header-stack {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100%;
  min-height: clamp(90px, 18vw, 180px);
}

.header-logo-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-shrink: 0;
  z-index: 1;
  min-width: 0;
}

.header-logo-link {
  display: block;
  line-height: 0;
  max-width: 100%;
}

.header-logo-img {
  width: min(680px, 82vw);
  max-width: 100%;
  height: auto;
  max-height: min(260px, 35vh);
  object-fit: contain;
  object-position: left center;
}

/* Tenderly-yours: true center of header (positioned relative to .site-header) */
.header-tenderly-row {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
  pointer-events: none;
  max-width: calc(100% - 2rem);
}

.header-tenderly-row img {
  pointer-events: auto;
}

.header-tenderly-img {
  width: min(560px, 72vw);
  max-width: 100%;
  height: auto;
  max-height: min(170px, 22vh);
  object-fit: contain;
}

.header-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  min-width: 0;
}

.header-nav-row {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  order: 0;
}

/* Menu at top right when using header stack — aligned to content right edge */
.header-stack .header-nav-row {
  position: absolute;
  top: 0.5rem;
  right: 0;
  z-index: 2;
  justify-content: flex-end;
}

.header-inner:not(.header-stack) .header-nav-row {
  order: -1;
}

/* Logo image pinned to left (legacy .header-brand .header-logo) */
.header-brand .header-logo {
  width: min(400px, 55vw);
  height: auto;
  aspect-ratio: 400 / 225;
  max-height: 225px;
  background: url('assets/logo-transparent.png') left center / contain no-repeat;
  flex-shrink: 0;
}

.header-brand-link {
  font-weight: 600;
  font-size: 1.1rem;
  color: #fff;
}

/* Full-width banner below header */
.header-banner {
  margin-top: 72px;
  width: 100%;
  line-height: 0;
  background: #c0281b;
}

.header-banner-img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  object-position: center;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  background: transparent;
  color: #fff;
  cursor: pointer;
  border-radius: var(--radius);
  transition: background 0.2s;
  -webkit-tap-highlight-color: transparent;
}

.nav-toggle:hover {
  background: rgba(255, 255, 255, 0.1);
}

.nav-toggle:focus {
  outline: 2px solid rgba(255, 255, 255, 0.5);
  outline-offset: 2px;
}

.nav-toggle-icon {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle-icon span {
  display: block;
  width: 22px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.site-nav a {
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: none;
  color: rgba(255, 255, 255, 0.92);
  transition: color 0.2s, background 0.2s, box-shadow 0.2s;
  border-radius: 999px;
}

.site-nav a:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
}

.site-nav a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.22);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.site-nav a.active:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.28);
}

/* Main content area */
.main-content {
  padding-top: 13rem;
  min-height: 100vh;
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
}

/* Hero — same content box as .section: centered max-width + internal gutter for alignment */
.hero {
  min-height: 85vh;
  display: flex;
  align-items: center;
  padding: 5rem 0 4rem;
  background: var(--bg-darker);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.92) 0%, rgba(26, 26, 26, 0.88) 50%, rgba(15, 15, 15, 0.85) 100%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 50%;
  max-width: 500px;
  height: 80%;
  background: radial-gradient(ellipse at center, rgba(196, 30, 58, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: var(--content-max);
  margin: 0 auto;
  width: 100%;
  padding-left: max(var(--content-gutter), env(safe-area-inset-left, 0));
  padding-right: max(var(--content-gutter), env(safe-area-inset-right, 0));
  display: flex;
  align-items: center;
  gap: 3rem;
  flex-wrap: wrap;
}

.hero-text {
  flex: 1 1 400px;
  min-width: 0;
}

.hero ul {
  list-style: none;
  margin: 1rem 0;
}

.hero ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
}

.hero ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.hero-badge {
  display: block;
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--accent);
  /* 🔴 red accent */
  margin-bottom: 0.5rem;
  line-height: 1.2;
}

.hero h1 {
  margin-bottom: 0.5rem;
  line-height: 1.1;
}

.hero-tagline {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-style: italic;
  font-weight: 400;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.hero-cta {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text);
  background: var(--accent);
  text-decoration: none;
  border-radius: var(--radius);
  margin-top: 0.5rem;
  border: none;
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.hero-cta:hover {
  background: var(--accent-hover);
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 30, 58, 0.4);
}

.hero-image {
  flex: 0 1 320px;
  text-align: center;
}

.hero-image img {
  max-width: 100%;
  height: auto;
  max-height: 55vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 0.85rem 1.75rem;
  font-family: inherit;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.btn-primary {
  background: var(--accent);
  color: var(--text);
}

.btn-primary:hover {
  background: var(--accent-hover);
  color: var(--text);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 30, 58, 0.4);
}

/* WhatsApp button icon */
.btn-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.btn-wa-icon {
  width: 1.35em;
  height: 1.35em;
  flex-shrink: 0;
}

/* Anchor targets: scroll position accounts for fixed header */
#products,
#nutrition,
#order,
#contact {
  scroll-margin-top: clamp(6rem, 18vw, 14rem);
}

#products>.product-standards,
#products>.how-to-consume {
  margin-left: auto;
  margin-right: auto;
}

/* Section block — same content box as hero: centered max-width + internal gutter */
.section {
  max-width: var(--content-max);
  margin: 0 auto;
  padding-top: 3.5rem;
  padding-bottom: 3.5rem;
  padding-left: max(var(--content-gutter), env(safe-area-inset-left, 0));
  padding-right: max(var(--content-gutter), env(safe-area-inset-right, 0));
}

.section h2 {
  color: var(--text);
  margin-left: 0;
}

.section p {
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-size: 0.98rem;
  margin-left: 0;
}

.section ul {
  list-style: none;
  margin: 1rem 0;
  padding-left: 0;
}

.section ul li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.section ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.price-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.25rem;
  margin: 1rem 0;
  color: var(--text-muted);
}

.price-box strong {
  color: var(--text);
}

.price-note {
  font-size: 0.9rem;
  margin-top: 0.5rem;
  color: var(--text-muted);
}

/* Nutrition page tables */
.table-wrapper {
  overflow-x: auto;
  margin: 1.5rem 0;
  border-radius: var(--radius-lg);
  border: 1px solid var(--border);
}

.nutrition-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  font-size: 0.9rem;
}

.nutrition-table th,
.nutrition-table td {
  padding: 0.85rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.nutrition-table th {
  background: rgba(0, 0, 0, 0.2);
  color: var(--text);
  font-weight: 600;
}

.nutrition-table td {
  color: var(--text-muted);
}

.nutrition-table tbody tr:last-child td {
  border-bottom: none;
}

.nutrition-table tbody tr:hover td {
  background: rgba(255, 255, 255, 0.02);
}

/* FAQ list */
.faq-links {
  margin-bottom: 1.5rem;
}

.faq-list {
  margin: 1rem 0 2rem;
}

.faq-list dt {
  color: var(--text);
  font-weight: 600;
  margin-top: 1.25rem;
  margin-bottom: 0.35rem;
}

.faq-list dt:first-child {
  margin-top: 0;
}

.faq-list dd {
  color: var(--text-muted);
  margin-left: 0;
  padding-left: 0;
}

/* CTA strip — same dark card style as other sections */
.cta-strip {
  padding: 2rem var(--content-gutter) 1.5rem;
  text-align: center;
}

.cta-strip-inner {
  max-width: 520px;
  margin: 0 auto;
  padding: 2.25rem 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.cta-strip-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.75rem;
}

.cta-strip-title {
  color: var(--text);
  font-size: clamp(1.35rem, 3.5vw, 1.75rem);
  font-weight: 800;
  letter-spacing: 0.04em;
  line-height: 1.25;
  margin-bottom: 0.75rem;
}

.cta-strip-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  max-width: 100%;
}

.cta-strip .btn-primary {
  background: var(--accent);
  color: var(--text);
  font-weight: 700;
  padding: 0.85rem 1.75rem;
  border-radius: var(--radius);
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
}

.cta-strip .btn-primary:hover {
  background: var(--accent-hover);
  color: var(--text);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(196, 30, 58, 0.35);
}

.cta-strip-contact {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}

/* Footer — attractive layout, Legal (Privacy/Refund/Terms) at bottom */
.site-footer {
  background: var(--bg-darker);
  border-top: 1px solid var(--border);
  padding: 0;
}

.footer-inner {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 2.5rem var(--content-gutter) 2rem;
  padding-left: max(var(--content-gutter), env(safe-area-inset-left));
  padding-right: max(var(--content-gutter), env(safe-area-inset-right));
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 2.5rem 3rem;
  align-items: start;
}

.footer-brand {
  min-width: 0;
}

.footer-logo-img {
  display: block;
  height: 42px;
  width: auto;
  margin-bottom: 0.75rem;
  opacity: 0.95;
}

.footer-brand a:hover .footer-logo-img {
  opacity: 1;
}

.footer-tagline {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 0;
}

.footer-legal,
.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-legal-label {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  opacity: 0.9;
  margin-bottom: 0.25rem;
}

.footer-legal a,
.footer-contact a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.2s;
}

.footer-legal a:hover,
.footer-contact a:hover {
  color: var(--text);
}

.footer-contact p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.footer-bottom {
  padding: 1rem var(--content-gutter);
  padding-bottom: max(1rem, env(safe-area-inset-bottom));
  border-top: 1px solid var(--border);
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.8rem;
  color: var(--text-muted);
  opacity: 0.85;
}

/* Page content (for policy/legal pages) */
.page-content {
  max-width: min(720px, var(--content-max));
  margin: 0 auto;
  padding: 4rem var(--content-gutter) 3rem;
}

/* Extra top padding for legal/policy page headings */
.page-terms .page-content,
.page-privacy .page-content,
.page-refund .page-content {
  padding-top: 6rem;
}

.page-content h1 {
  margin-bottom: 0.5rem;
}

.page-content .updated {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 2rem;
}

.page-content h2 {
  font-size: 1.2rem;
  margin-top: 2rem;
  margin-bottom: 0.5rem;
}

.page-content p,
.page-content li {
  color: var(--text-muted);
}

.page-content ul,
.page-content ol {
  margin: 0.5rem 0 1rem 1.25rem;
}

.page-content ul ul {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}

/* Font style utilities (per Terms doc: highlight, bold, medium, regular) */
.page-content .font-regular {
  font-weight: 400;
}

.page-content .font-medium {
  font-weight: 500;
}

.page-content .font-bold,
.page-content strong {
  font-weight: 700;
}

.page-content .highlight {
  background: rgba(196, 30, 58, 0.25);
  padding: 0.1em 0.35em;
  border-radius: 3px;
}

/* Enhanced Products Section — font structure per docs */
.products-header-block {
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 3rem max(var(--content-gutter), env(safe-area-inset-right, 0)) 2rem max(var(--content-gutter), env(safe-area-inset-left, 0));
  position: relative;
  z-index: 2;
  text-align: left;
}

.products-title {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #ffffff;
  margin-bottom: 0.75rem;
  line-height: 1.3;
  color: var(--accent);
  /* 🔴 red accent */
}

.products-subtitle {
  font-size: 1.1rem;
  font-weight: 400;
  font-style: italic;
  color: #cccccc;
  margin-bottom: 1rem;
  line-height: 1.5;
}

.products-desc {
  font-size: 1.05rem;
  font-weight: 400;
  color: #cccccc;
  line-height: 1.65;
  max-width: 700px;
  margin-bottom: 1rem;
}

.products-feature {
  font-size: 0.95rem;
  font-weight: 400;
  color: #b8b8b8;
  line-height: 1.5;
  margin-bottom: 0.5rem;
}

.products-grid-enhanced {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: var(--content-max);
  margin: 0 auto;
  padding: 0 max(var(--content-gutter), env(safe-area-inset-right, 0)) 1rem max(var(--content-gutter), env(safe-area-inset-left, 0));
  position: relative;
  z-index: 2;
  align-items: stretch;
}

.product-card-enhanced {
  background: linear-gradient(145deg, rgba(37, 37, 37, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  display: flex;
  flex-direction: column;
}

.product-card-enhanced::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-hover) 50%, var(--accent) 100%);
  background-size: 200% 100%;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card-enhanced:hover {
  transform: translateY(-12px) scale(1.02);
  box-shadow: 0 20px 60px rgba(196, 30, 58, 0.25);
  border-color: rgba(196, 30, 58, 0.4);
}

.product-card-enhanced:hover::before {
  opacity: 1;
  animation: shimmer 2s linear infinite;
}

@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }

  100% {
    background-position: 200% 0;
  }
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: white;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 0.8rem;
  border-radius: 12px;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(196, 30, 58, 0.4);
}

.product-image-container {
  position: relative;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.05) 0%, transparent 100%);
}

.product-image-wrapper {
  position: relative;
  overflow: hidden;
}

.product-card-enhanced img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
  filter: brightness(0.95);
}

.product-card-enhanced:hover img {
  transform: scale(1.15);
  filter: brightness(1.1);
}

.product-content {
  padding: 1.5rem;
  text-align: left;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-card-enhanced h3 {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
  margin: 0 0 0.8rem 0;
  text-align: left;
}

.product-card-enhanced h6 {
  font-size: 18px;
  font-weight: 700;
  color: var(--accent);
  margin: 0 0 0.5rem 0;
  text-align: left;
  line-height: 1.3;
}

.product-card-enhanced p {
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  color: var(--text-muted);
  text-align: left;
  min-height: 2.5rem;
}

.product-features {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
}

.feature-tag {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--accent);
  background: rgba(196, 30, 58, 0.1);
  padding: 0.3rem 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(196, 30, 58, 0.2);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.btn-product {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: var(--text);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  text-decoration: none;
  margin-top: auto;
}

.btn-product::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.btn-product:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(196, 30, 58, 0.5);
  background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
}

.btn-product:hover::before {
  left: 100%;
}

.btn-product:active {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(196, 30, 58, 0.4);
}

.btn-icon {
  transition: transform 0.3s ease;
  font-weight: 700;
}

.btn-product:hover .btn-icon {
  transform: translateX(4px);
}

.products-background-decoration {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 20% 50%, rgba(196, 30, 58, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 50%, rgba(196, 30, 58, 0.08) 0%, transparent 50%);
  animation: float 20s ease-in-out infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes float {

  0%,
  100% {
    transform: translate(0, 0) rotate(0deg);
  }

  33% {
    transform: translate(30px, -30px) rotate(120deg);
  }

  66% {
    transform: translate(-20px, 20px) rotate(240deg);
  }
}

/* Product Specifications */
.product-specs {
  margin: 1rem 0;
  text-align: left;
  background: rgba(0, 0, 0, 0.2);
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.product-specs h4 {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 0.75rem 0;
  text-align: left;
}

.spec-item {
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 0.3rem;
  line-height: 1.4;
  text-align: left;
}

.product-note {
  font-size: 0.8rem;
  color: var(--accent);
  font-style: italic;
  margin-top: 0.5rem;
  padding-top: 0.5rem;
  border-top: 1px solid rgba(196, 30, 58, 0.2);
}

/* Product Standards Section */
.product-standards-section {
  background: linear-gradient(135deg, rgba(15, 15, 15, 0.95) 0%, rgba(26, 26, 26, 0.9) 100%);
  margin: 0;
  border-radius: 0 0 24px 24px;
}

.standards-list {
  max-width: 800px;
  margin: 0 auto 2rem;
  text-align: left;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
}

.standard-item {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.standard-item:last-child {
  margin-bottom: 0;
}

.shelf-life-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.1) 0%, rgba(196, 30, 58, 0.05) 100%);
  border: 1px solid rgba(196, 30, 58, 0.3);
  padding: 1rem 1.5rem;
  border-radius: 16px;
  margin-top: 2rem;
}

.shelf-life-text {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 600;
}

/* Consumption Section */
.consumption-section {
  background: linear-gradient(135deg, rgba(26, 26, 26, 0.95) 0%, rgba(37, 37, 37, 0.9) 100%);
  margin: 0;
  border-radius: 24px 24px 0 0;
}

.consumption-badge {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(196, 30, 58, 0.1);
  padding: 0.5rem 1rem;
  border-radius: 20px;
  border: 1px solid rgba(196, 30, 58, 0.3);
  margin-bottom: 2rem;
}

.consumption-steps {
  max-width: 600px;
  margin: 2rem auto;
  text-align: left;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 1.5rem;
}

.step-item {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 0.8rem;
  line-height: 1.5;
}

.step-item:last-child {
  margin-bottom: 0;
}

.additional-note {
  margin: 2rem 0;
  text-align: center;
}

.additional-note p {
  color: var(--text);
  font-size: 1rem;
  font-style: italic;
  margin: 0;
}

.important-note {
  background: rgba(255, 193, 7, 0.1);
  border: 1px solid rgba(255, 193, 7, 0.3);
  padding: 1rem 1.5rem;
  border-radius: 12px;
  margin: 2rem 0;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.5;
  text-align: center;
}

.important-note strong {
  color: var(--accent);
}

/* Product Standards & How to Consume Enhanced Styling — same width/padding as products grid */
.product-standards {
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.08) 0%, rgba(196, 30, 58, 0.04) 100%);
  border: 1px solid rgba(196, 30, 58, 0.15);
  border-radius: var(--radius-lg);
  padding: 2rem var(--content-gutter);
  margin: 2rem auto;
  max-width: var(--content-max);
  position: relative;
  overflow: hidden;
}

.product-standards::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-hover) 100%);
}

.product-standards h2 {
  color: var(--text);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-align: left;
  letter-spacing: 0.02em;
}

.standards-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  align-items: stretch;
}

.standard-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.05);
  transition: all 0.3s ease;
  text-align: left;
}

.standard-item:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateY(-2px);
  border-color: rgba(196, 30, 58, 0.3);
}

.standard-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: var(--accent);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 700;
  font-size: 0.75rem;
}

.standard-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.shelf-life-badge {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
  margin-top: 1rem;
  font-size: 0.95rem;
}

.how-to-consume {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  padding: 2rem var(--content-gutter);
  margin: 2rem auto;
  max-width: var(--content-max);
}

.how-to-consume h2 {
  color: var(--text);
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: left;
  letter-spacing: 0.02em;
}

.consume-intro {
  text-align: left;
  color: var(--text);
  font-weight: 600;
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.consume-methods {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
  align-items: stretch;
}

.consume-method {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: var(--radius);
  border-left: 3px solid var(--accent);
  transition: all 0.3s ease;
  text-align: left;
}

.consume-method:hover {
  background: rgba(255, 255, 255, 0.04);
  transform: translateX(4px);
}

.consume-method-icon {
  width: 32px;
  height: 32px;
  background: rgba(196, 30, 58, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 0.9rem;
}

.consume-method-text {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.4;
}

.no-cooking-badge {
  background: rgba(76, 175, 80, 0.15);
  border: 1px solid rgba(76, 175, 80, 0.3);
  color: #4CAF50;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  text-align: center;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.consume-important {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-left: 3px solid var(--accent);
  color: var(--text);
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  text-align: left;
  font-weight: 600;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
}

.consume-important p {
  margin: 0 0 0.5rem 0;
}

.consume-important-list {
  margin: 0;
  padding-left: 1.25rem;
  list-style: disc;
}

.consume-important-list li {
  margin-bottom: 0.35rem;
}

.consume-important-list li:last-child {
  margin-bottom: 0;
}

.consume-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}

.consume-buttons .btn {
  display: inline-block;
}

.consume-footer {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-align: left;
  margin-top: 1.5rem;
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.06) 0%, rgba(196, 30, 58, 0.02) 100%);
  border: 1px solid rgba(196, 30, 58, 0.2);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
}

.consume-footer-line {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.consume-footer-line::before {
  content: '';
  flex-shrink: 0;
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
}

.final-tagline {
  text-align: center;
  margin: 2rem 0;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
}

.final-tagline p {
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  font-style: italic;
  margin: 0;
  line-height: 1.5;
}

/* Responsive for new sections */
@media (max-width: 768px) {
  .standards-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .product-standards,
  .how-to-consume {
    padding: 1.5rem 1rem;
    margin: 1.5rem auto;
  }

  .consume-methods {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .consume-footer {
    padding: 1rem 1rem 1rem 1.25rem;
    gap: 0.4rem;
  }

  .consume-footer-line {
    font-size: 0.9rem;
  }

  .consumption-steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .standard-item,
  .step-item {
    padding: 1rem;
  }

  .consumption-actions {
    flex-direction: column;
    align-items: stretch;
  }

  #products {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Product cards - Enhanced attractive design */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem 2rem;
}

.product-card {
  background: linear-gradient(145deg, var(--bg-card) 0%, rgba(37, 37, 37, 0.8) 100%);
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent-hover) 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-card:hover {
  transform: translateY(-8px) scale(1.02);
  box-shadow: 0 12px 40px rgba(196, 30, 58, 0.2);
  border-color: rgba(196, 30, 58, 0.3);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card .hero-image {
  position: relative;
  overflow: hidden;
  border-radius: 16px 16px 0 0;
  background: linear-gradient(135deg, rgba(196, 30, 58, 0.05) 0%, transparent 100%);
}

.product-card .hero-image img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), filter 0.3s ease;
  filter: brightness(0.95);
}

.product-card:hover .hero-image img {
  transform: scale(1.1);
  filter: brightness(1.05);
}

.product-info {
  padding: 1.25rem;
  text-align: center;
}

.product-card h3 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--text);
  letter-spacing: 0.02em;
  position: relative;
  display: inline-block;
}

.product-card h3::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
  transition: width 0.3s ease;
}

.product-card:hover h3::after {
  width: 50px;
}

.product-card p {
  font-size: 0.85rem;
  line-height: 1.5;
  margin-bottom: 1rem;
  color: var(--text-muted);
  min-height: 2.5rem;
}

.product-card .btn {
  width: 100%;
  padding: 0.75rem 1.25rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-hover) 100%);
  color: var(--text);
  border: none;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-transform: uppercase;
}

.product-card .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.product-card .btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(196, 30, 58, 0.4);
  background: linear-gradient(135deg, var(--accent-hover) 0%, var(--accent) 100%);
}

.product-card .btn:hover::before {
  left: 100%;
}

.product-card .btn:active {
  transform: translateY(0);
  box-shadow: 0 4px 15px rgba(196, 30, 58, 0.3);
}

.section .redTitle {
  color: var(--accent);
  /* 🔴 red accent */
}

/* Responsive */
@media (max-width: 1200px) {
  .header-stack {
    min-height: clamp(85px, 14vw, 150px);
  }

  .header-logo-img {
    max-height: min(200px, 28vh);
  }

  .header-tenderly-img {
    max-height: min(130px, 18vh);
  }

  .main-content {
    padding-top: 10rem;
  }
}

@media (max-width: 1024px) {
  .site-header {
    padding: 0.5rem 1rem;
    padding-left: calc(1rem + env(safe-area-inset-left, 0));
    padding-right: calc(1rem + env(safe-area-inset-right, 0));
  }

  .main-content {
    padding-top: 9rem;
  }

  .header-inner {
    padding: 0 1rem;
    gap: 0.75rem;
  }

  .header-stack {
    min-height: clamp(80px, 16vw, 120px);
  }

  .header-logo-img {
    max-width: 520px;
    max-height: min(200px, 26vh);
  }

  .header-tenderly-img {
    max-width: 420px;
    max-height: min(130px, 17vh);
  }

  .header-brand .header-logo {
    width: 220px;
    height: 124px;
  }

  .header-brand-link {
    font-size: 1rem;
  }

  .hero {
    padding: 4rem 0 3rem;
  }

  .hero-inner {
    gap: 2rem;
    padding-left: max(1rem, env(safe-area-inset-left, 0));
    padding-right: max(1rem, env(safe-area-inset-right, 0));
  }

  .section {
    padding: 2.5rem max(1rem, env(safe-area-inset-right, 0)) 2.5rem max(1rem, env(safe-area-inset-left, 0));
  }

  .page-content {
    padding: 3rem 1rem 2rem;
  }

  .cta-strip {
    padding: 2.5rem 1rem;
  }

  .cta-strip-inner {
    padding: 1.75rem 1.25rem;
  }

  .products-header-block {
    padding-left: max(1rem, env(safe-area-inset-left, 0));
    padding-right: max(1rem, env(safe-area-inset-right, 0));
  }

  .products-grid-enhanced {
    padding: 0 max(1rem, env(safe-area-inset-right, 0)) 2rem max(1rem, env(safe-area-inset-left, 0));
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
  }

  .product-card-enhanced h3 {
    font-size: 1.1rem;
  }

  .products-grid {
    padding: 0 1rem 2rem;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
  }
}

@media (max-width: 768px) {
  body.nav-open {
    overflow: hidden;
  }

  body.nav-open::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 98;
    pointer-events: auto;
  }

  .site-header {
    padding: 0.4rem 1rem;
    padding-left: calc(1rem + env(safe-area-inset-left, 0));
    padding-right: calc(1rem + env(safe-area-inset-right, 0));
  }

  .main-content {
    padding-top: 7.5rem;
    padding-left: max(1rem, env(safe-area-inset-left));
    padding-right: max(1rem, env(safe-area-inset-right));
  }

  .header-inner {
    padding: 0 0.5rem;
    gap: 0;
  }

  .header-stack {
    min-height: clamp(70px, 20vw, 100px);
  }

  .header-stack .header-nav-row {
    position: absolute;
    top: 0.4rem;
    right: 0;
    z-index: 2;
  }

  .header-logo-img {
    max-width: min(300px, 55vw);
    max-height: min(140px, 22vh);
  }

  .header-tenderly-img {
    max-width: min(270px, 50vw);
    max-height: min(92px, 15vh);
  }

  .header-tenderly-row {
    max-width: calc(100% - 5rem);
  }

  .header-brand {
    gap: 0.5rem;
    min-width: 0;
    padding-right: 2.5rem;
  }

  .header-brand .header-logo {
    width: 160px;
    height: 90px;
    min-width: 120px;
  }

  .header-brand-link {
    font-size: 0.95rem;
    white-space: nowrap;
  }

  .nav-toggle {
    display: flex;
    min-width: 44px;
    min-height: 44px;
  }

  .site-nav {
    position: fixed;
    top: 0;
    right: 0;
    width: min(280px, calc(100vw - env(safe-area-inset-right, 0px)));
    max-width: calc(100vw - env(safe-area-inset-right, 0px));
    height: 100vh;
    height: 100dvh;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    padding: max(4rem, 60px) 1rem 2rem;
    padding-top: max(5rem, calc(60px + env(safe-area-inset-top, 0px)));
    padding-right: max(1rem, env(safe-area-inset-right, 0px));
    padding-left: max(1rem, env(safe-area-inset-left, 0px));
    background: #0f0f0f;
    border-left: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: -8px 0 32px rgba(0, 0, 0, 0.3);
    transform: translateX(100%);
    transition: transform 0.3s ease, visibility 0.3s;
    visibility: hidden;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 99;
    box-sizing: border-box;
  }

  .site-nav.is-open {
    transform: translateX(0);
    visibility: visible;
  }

  .site-nav a {
    padding: 0.9rem 1rem;
    font-size: 0.9rem;
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  .site-nav a {
    color: rgba(255, 255, 255, 0.92);
    border-radius: 10px;
  }

  .site-nav a:hover {
    background: rgba(255, 255, 255, 0.08);
    color: #fff;
  }

  .site-nav a.active {
    background: rgba(196, 30, 58, 0.35);
    color: #fff;
  }

  .site-nav a.active:hover {
    background: rgba(196, 30, 58, 0.45);
  }

  .hero {
    min-height: auto;
    padding: 3rem 0 2.5rem;
  }

  .hero-inner {
    flex-direction: column;
    gap: 2rem;
    padding-left: max(1rem, env(safe-area-inset-left, 0));
    padding-right: max(1rem, env(safe-area-inset-right, 0));
  }

  .hero-text {
    flex: 1 1 100%;
    min-width: 0;
  }

  .hero-image {
    order: -1;
    flex: 0 1 auto;
    width: 100%;
    min-width: 0;
    text-align: center;
  }

  .hero-image img {
    width: 100%;
    max-width: 320px;
    height: auto;
    max-height: 55vh;
    min-height: 200px;
    display: block;
    margin: 0 auto;
    object-fit: contain;
  }

  .hero h1 {
    font-size: clamp(1.6rem, 6vw, 2.25rem);
  }

  .section {
    padding: 2rem max(1rem, env(safe-area-inset-right, 0)) 2rem max(1rem, env(safe-area-inset-left, 0));
  }

  .cta-strip {
    padding: 2rem 1rem;
  }

  .cta-strip-inner {
    padding: 1.5rem 1.25rem;
  }

  .cta-strip-title {
    font-size: 1.25rem;
  }

  .cta-strip-contact {
    font-size: 0.75rem;
    word-break: break-word;
  }

  .page-content {
    padding: 2.5rem 1rem 2rem;
  }

  .products-header-block {
    padding-left: max(1rem, env(safe-area-inset-left, 0));
    padding-right: max(1rem, env(safe-area-inset-right, 0));
  }

  .products-grid-enhanced {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 max(1rem, env(safe-area-inset-right, 0)) 2rem max(1rem, env(safe-area-inset-left, 0));
    max-width: 400px;
    margin: 0 auto;
  }

  .product-card-enhanced {
    border-radius: 16px;
  }

  .product-card-enhanced img {
    height: 180px;
  }

  .product-content {
    padding: 1.25rem;
  }

  .product-card-enhanced h3 {
    font-size: 1.1rem;
  }

  .product-features {
    justify-content: flex-start;
  }

  .product-badge {
    font-size: 0.6rem;
    padding: 0.3rem 0.6rem;
  }

  .products-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 0 1rem 2rem;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2rem 1rem 1.5rem;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .footer-legal,
  .footer-contact {
    align-items: center;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.8rem;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .site-header {
    padding: 0.35rem 0.75rem;
    padding-left: calc(0.75rem + env(safe-area-inset-left, 0));
    padding-right: calc(0.75rem + env(safe-area-inset-right, 0));
  }

  .main-content {
    padding-top: 6.5rem;
  }

  .header-inner {
    gap: 0;
    padding: 0 0.25rem;
  }

  .header-stack {
    min-height: clamp(60px, 22vw, 85px);
  }

  .header-stack .header-nav-row {
    top: 0.35rem;
    right: 0;
  }

  .header-logo-img {
    max-width: min(220px, 58vw);
    max-height: min(100px, 18vh);
  }

  .header-tenderly-img {
    max-width: min(190px, 48vw);
    max-height: min(68px, 12vh);
  }

  .header-tenderly-row {
    max-width: calc(100% - 4rem);
  }

  .header-brand {
    padding-right: 2rem;
  }

  .header-brand .header-logo {
    width: 120px;
    height: 68px;
    min-width: 90px;
  }

  .header-brand-link {
    font-size: 0.875rem;
  }

  .hero {
    padding: 2rem 0 2rem;
  }

  .hero-inner {
    padding-left: max(0.75rem, env(safe-area-inset-left, 0));
    padding-right: max(0.75rem, env(safe-area-inset-right, 0));
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .section {
    padding: 1.5rem max(0.75rem, env(safe-area-inset-right, 0)) 1.5rem max(0.75rem, env(safe-area-inset-left, 0));
  }

  .cta-strip {
    padding: 1.5rem 0.75rem;
  }

  .cta-strip-inner {
    padding: 1.25rem 1rem;
  }

  .cta-strip-title {
    font-size: 1.15rem;
  }

  .page-content {
    padding: 2rem 0.75rem 1.5rem;
  }

  .products-header-block {
    padding-left: max(0.75rem, env(safe-area-inset-left, 0));
    padding-right: max(0.75rem, env(safe-area-inset-right, 0));
  }

  .products-grid-enhanced {
    padding: 0 max(0.75rem, env(safe-area-inset-right, 0)) 1.5rem max(0.75rem, env(safe-area-inset-left, 0));
    gap: 1.25rem;
  }

  .product-card-enhanced img {
    height: 160px;
  }

  .product-content {
    padding: 1rem;
  }

  .product-card-enhanced h3 {
    font-size: 1rem;
  }

  .product-badge {
    top: 0.75rem;
    left: 0.75rem;
    font-size: 0.55rem;
  }

  .products-grid {
    padding: 0 0.75rem 1.5rem;
    gap: 1.25rem;
  }

  .product-standards,
  .how-to-consume {
    padding: 1.25rem 0.75rem;
    margin: 1.25rem auto;
  }

  .consume-footer {
    padding: 0.9rem 0.9rem 0.9rem 1rem;
    gap: 0.35rem;
  }

  .consume-footer-line {
    font-size: 0.85rem;
  }

  .footer-inner {
    padding: 1.5rem 0.75rem 1rem;
  }

  .footer-bottom {
    padding: 0.75rem;
  }
}

@media (max-width: 360px) {
  .header-stack {
    min-height: 55px;
  }

  .header-logo-img {
    max-width: 52vw;
    max-height: 75px;
  }

  .header-tenderly-img {
    max-width: 42vw;
    max-height: 50px;
  }

  .main-content {
    padding-top: 6rem;
  }

  .consume-footer {
    padding: 0.75rem 0.75rem 0.75rem 0.9rem;
    gap: 0.3rem;
  }

  .consume-footer-line {
    font-size: 0.8rem;
  }
}