/* 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;
  transform:translateY(-3px);
}

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);
}

/* Image Carousel */
.image-carousel {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
  /* background: var(--bg-darker); */
  transition: all 0.5s ease-in-out;
}

.carousel-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease-in-out;
  width: 100%;
  will-change: transform;
}

.carousel-track img {
  width: 100%;
  height: 100%;
  max-height: 55vh;
  object-fit: cover;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  flex: 0 0 100%;
  overflow: hidden;
  min-width: 100%;
  max-width: 100%;
  display: block;
}

/* Carousel Indicators */
.carousel-indicators {
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 2;
}

.indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.5s ease-in-out;
}

.indicator.active {
  background: var(--accent);
  border-color: var(--accent);
  transform: scale(1.2);
}

.indicator:hover {
  background: rgba(255, 255, 255, 0.6);
}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(0);
  }

  30% {
    transform: translateX(-100%);
  }

  50% {
    transform: translateX(-100%);
  }

  55% {
    transform: translateX(-200%);
  }

  75% {
    transform: translateX(-200%);
  }

  80% {
    transform: translateX(-300%);
  }

  100% {
    transform: translateX(-300%);
  }
}

/* Pause animation on hover */
.image-carousel:hover .carousel-track {
  animation-play-state: paused;
}

/* Responsive */
@media (max-width: 768px) {
  .image-carousel {
    height: 350px;
  }

  .carousel-track img {
    max-height: 350px !important;
    height: 350px !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    object-fit: cover !important;
  }
}

@media (max-width: 480px) {
  .image-carousel {
    height: 280px;
  }

  .carousel-track img {
    max-height: 280px !important;
    height: 280px !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    object-fit: cover !important;
  }
}

/* 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: auto;
  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: auto;
  }

  .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: auto;
  }

  .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;
  }
}


.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.about-text h2 {
  margin-bottom: 18px;
}

.about-text p {
  margin-bottom: 16px;
  line-height: 1.7;
}

.about-image img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
}

@media (max-width: 768px) {
  .about-content {
    grid-template-columns: 1fr;
  }
}

.why-choose {
  text-align: center;
}

.section-subtitle {
  max-width: 750px;
  margin: 15px auto 45px;
  color: #666;
  line-height: 1.7;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 25px;
}

.feature-card {
  background: #fff;
  padding: 35px 25px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0,0,0,0.12);
}

.feature-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.feature-card h3 {
  font-size: 20px;
  color: #222;
  line-height: 1.5;
  margin: 0;
}

@media (max-width: 768px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }
}
/* .collections-section {
  background: #fafafa;
} */

.collections-header {
  max-width: 850px;
  margin: 0 auto 50px;
  text-align: center;
}

.collections-header h2 {
  margin-bottom: 16px;
}

.collections-header p {
  color: #666;
  line-height: 1.7;
}

.collections-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 35px;
}

.collection-card {
  background: #fff;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  transition: 0.3s ease;
}

.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 45px rgba(0,0,0,0.12);
}

.collection-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.collection-content {
  padding: 35px;
}

.collection-content h3 {
  font-size: 30px;
  margin-bottom: 15px;
}

.collection-content p {
  color: #666;
  line-height: 1.7;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .collections-grid {
    grid-template-columns: 1fr;
  }

  .collection-card img {
    height: 240px;
  }

  .collection-content {
    padding: 25px;
  }

  .collection-content h3 {
    font-size: 26px;
  }
}

.nourish-section {
  padding: 90px 20px;
  background: #fffaf3;
}

.nourish-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 50px;
}

.section-tag {
  color: #c66a1f;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.section-header h2 {
  font-size: 42px;
  margin: 12px 0 18px;
  color: #2b1b12;
}

.section-header p {
  font-size: 17px;
  line-height: 1.8;
  color: #5f5047;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-left: 50px;
}

.product-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 10px 28px rgba(0,0,0,0.08);
}

.product-card img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 16px;
  margin-bottom: 14px;
}

.product-card h3 {
  font-size: 17px;
  margin-bottom: 6px;
  color: #2b1b12;
}

.product-card p {
  color: #c66a1f;
  font-weight: 700;
}

.sub-section {
  margin-top: 60px;
  text-align: center;
  margin: 0px 50px;
}

.sub-section h3 {
  font-size: 30px;
  margin-bottom: 25px;
  color: #2b1b12;
}

.benefit-grid,
.serve-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit-grid div,
.serve-grid div {
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  font-weight: 600;
  box-shadow: 0 8px 22px rgba(0,0,0,0.07);
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.chip-list span {
  background: #ffffff;
  border: 1px solid #f0d2b5;
  color: #5a321c;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
}

.section-button {
  text-align: center;
  margin-top: 50px;
}

.btn {
  display: inline-block;
  background: #c66a1f;
  color: #ffffff;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 991px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .benefit-grid,
  .serve-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-header h2 {
    font-size: 34px;
  }
}

@media (max-width: 575px) {
  .product-grid,
  .benefit-grid,
  .serve-grid {
    grid-template-columns: 1fr;
  }

  .nourish-section {
    padding: 60px 16px;
  }

  .section-header h2 {
    font-size: 28px;
  }
}
.gourmet-section {
  padding: 90px 20px;
  background: #2b160f;
  color: #ffffff;
}

.gourmet-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.gourmet-section .section-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 55px;
}

.gourmet-section .section-tag {
  color: #f2a35d;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gourmet-section h2 {
  font-size: 42px;
  margin: 12px 0 18px;
  /* color: #ffffff; */
}

.gourmet-section p {
  font-size: 17px;
  line-height: 1.8;
  /* color: #f4dfcf; */
}

.gourmet-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
}

.gourmet-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

.gourmet-text {
  background: rgba(255,255,255,0.08);
  padding: 36px;
  border-radius: 28px;
}

.gourmet-text h3 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #ffffff;
}

.gourmet-points {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.gourmet-points div {
  background: rgba(255,255,255,0.1);
  padding: 15px 18px;
  border-radius: 14px;
  font-weight: 600;
  color: #ffffff;
}

.gourmet-section .btn {
  display: inline-block;
  background: #f2a35d;
  color: #2b160f;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 991px) {
  .gourmet-content {
    grid-template-columns: 1fr;
  }

  .gourmet-section h2 {
    font-size: 34px;
  }

  .gourmet-image img {
    height: 360px;
  }
}

@media (max-width: 575px) {
  .gourmet-section {
    padding: 60px 16px;
  }

  .gourmet-section h2 {
    font-size: 28px;
  }

  .gourmet-text {
    padding: 24px;
  }

  .gourmet-image img {
    height: 280px;
  }
}

.gourmet-section {
  padding: 90px 20px;
  background: #2b160f;
  color: #ffffff;
}

.gourmet-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.gourmet-section .section-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 55px;
}

.gourmet-section .section-tag {
  color: #f2a35d;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.gourmet-section h2 {
  font-size: 42px;
  margin: 12px 0 18px;
  /* color: #ffffff; */
}

.gourmet-section p {
  font-size: 17px;
  line-height: 1.8;
  /* color: #f4dfcf; */
}

.gourmet-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
}

.gourmet-image img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.35);
}

.gourmet-text {
  background: rgba(255,255,255,0.08);
  padding: 36px;
  border-radius: 28px;
}

.gourmet-text h3 {
  font-size: 32px;
  margin-bottom: 15px;
  color: #ffffff;
}

.gourmet-points {
  display: grid;
  gap: 14px;
  margin: 28px 0;
}

.gourmet-points div {
  background: rgba(255,255,255,0.1);
  padding: 15px 18px;
  border-radius: 14px;
  font-weight: 600;
  color: #ffffff;
}

.gourmet-section .btn {
  display: inline-block;
  background: #f2a35d;
  color: #2b160f;
  padding: 14px 28px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 991px) {
  .gourmet-content {
    grid-template-columns: 1fr;
  }

  .gourmet-section h2 {
    font-size: 34px;
  }

  .gourmet-image img {
    height: 360px;
  }
}

@media (max-width: 575px) {
  .gourmet-section {
    padding: 60px 16px;
  }

  .gourmet-section h2 {
    font-size: 28px;
  }

  .gourmet-text {
    padding: 24px;
  }

  .gourmet-image img {
    height: 280px;
  }
}

.curry-section {
  padding: 90px 20px;
  background: #fff7ef;
}

.curry-section .container {
  max-width: 1200px;
  margin: 0 auto;
}

.curry-section .section-header {
  text-align: center;
  max-width: 850px;
  margin: 0 auto 45px;
}

.curry-section .section-tag {
  color: #c66a1f;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.curry-section h2 {
  font-size: 42px;
  margin: 12px 0 18px;
  color: #2b1b12;
}

.curry-section p {
  font-size: 17px;
  line-height: 1.8;
  color: #5f5047;
}

.curry-info-box {
  background: #ffffff;
  border-radius: 26px;
  padding: 32px;
  margin-bottom: 45px;
  text-align: center;
  box-shadow: 0 12px 35px rgba(0,0,0,0.08);
  margin: 0px 50px;
}

.curry-info-box h3 {
  font-size: 28px;
  margin-bottom: 22px;
  color: #2b1b12;
}

.curry-pack-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin: 25px 0;
}

.curry-pack-card {
  background: #fff7ef;
  border-radius: 18px;
  padding: 22px;
  text-align: left;
}

.curry-pack-card h4 {
  font-size: 20px;
  color: #2b1b12;
  margin-bottom: 10px;
}

.curry-products {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 991px) {
  .curry-products,
  .curry-pack-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .curry-section h2 {
    font-size: 34px;
  }
}

@media (max-width: 575px) {
  .curry-section {
    padding: 60px 16px;
  }

  .curry-products,
  .curry-pack-grid {
    grid-template-columns: 1fr;
  }

  .curry-section h2 {
    font-size: 28px;
  }

  .curry-info-box {
    padding: 24px;
  }
}

.final-cta-section {
  background: url("images/gourmet-dining.jpg") center/cover no-repeat;
  min-height: 480px;
  border-radius: 0;
}

.final-cta-overlay {
  min-height: 480px;
  background: rgba(43, 22, 15, 0.72);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 70px 20px;
}

.final-cta-content {
  max-width: 850px;
  text-align: center;
  color: #ffffff;
}

.final-cta-content span {
  color: #f2a35d;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.final-cta-content h2 {
  font-size: 46px;
  margin: 14px 0 20px;
  color: #ffffff;
}

.final-cta-content p {
  font-size: 18px;
  line-height: 1.8;
  color: #f7e7d8;
  margin-bottom: 30px;
}

.final-cta-content .btn {
  display: inline-block;
  background: #f2a35d;
  color: #2b160f;
  padding: 15px 32px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 575px) {
  .final-cta-section,
  .final-cta-overlay {
    min-height: 420px;
  }

  .final-cta-content h2 {
    font-size: 30px;
  }

  .final-cta-content p {
    font-size: 16px;
  }
}

.header-logo img {
  max-height: 90px;
}

.site-title img {
  max-height: 85px;
}

.header {
  padding: 18px 0;
}
.hero-features {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 18px 0 22px;
}

.hero-features span {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 9px 14px;
  border-radius: 30px;
  font-size: 14px;
  color: #fff;
}
.image-carousel {
  position: relative;
  overflow: hidden;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: rgba(0,0,0,0.55);
  color: #fff;
  font-size: 22px;
  cursor: pointer;
  z-index: 5;
}

.carousel-btn.prev {
  left: 12px;
}

.carousel-btn.next {
  right: 12px;
}
.carousel-track img {
  min-width: 100%;
  height: 480px;
  object-fit: contain;
}

.hero-image{

filter:drop-shadow(0 25px 45px rgba(255,0,0,.18));

}
.why-choose-section {
  background: #111;
  padding: 80px 8%;
}

.section-heading {
  text-align: center;
  margin-bottom: 45px;
}

.section-heading h2 {
  color: #fff;
  font-size: 42px;
  font-weight: 800;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.why-card {
  background: #1c1c1c;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  transition: 0.3s ease;
}

.why-card:hover {
  transform: translateY(-6px);
  border-color: #c62828;
}

.why-card span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  background: #c62828;
  color: #fff;
  border-radius: 50%;
  margin-bottom: 16px;
}

.why-card h3 {
  color: #fff;
  font-size: 17px;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .why-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .why-grid {
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: 32px;
  }
}
.collection-card img{

height:230px;

object-fit:cover;

}
h3{
  color: #000;
}

.protein-badge {
  display: inline-block;
  margin-top: 8px;
  padding: 6px 12px;
  border-radius: 20px;
  background: #c62828;
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}
.benefit-grid div,
.serve-grid div {
  color: #2b1b12;
  font-size: 16px;
  font-weight: 700;
}
.gourmet-section {
  background: #fff8ef;
  padding: 90px 0;
}

.gourmet-section .section-tag {
  color: #c62828;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.product-card{
    max-width:240px;
}
.section-desc{
    color:#666;
    font-size:16px;
    margin-top:10px;
}
.product-grid{
    margin-bottom:70px;
}
.btn{
    padding:16px 36px;
    border-radius:40px;
    font-weight:700;
}
.signature-curry-section {
  background: #111;
  color: #fff;
  padding: 90px 0;
}

.signature-curry-section .section-header h2,
.signature-curry-section .section-header p,
.signature-curry-section .sub-section h3 {
  color: #fff;
}

.curry-info-box {
  background: #1c1c1c;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 24px;
  padding: 30px;
  margin: 45px 0;
}

.curry-info-box h3 {
  text-align: center;
  margin-bottom: 24px;
  color: #fff;
}

.curry-info-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.curry-info-grid div {
  background: #262626;
  border-radius: 18px;
  padding: 20px;
  text-align: center;
}

.curry-info-grid strong {
  color: #fff;
}

.curry-info-grid p {
  color: #ccc;
  margin-top: 8px;
}

.signature-curry-section .product-card {
  background: #fff;
  color: #2b1b12;
}

.signature-curry-section .benefit-grid div,
.signature-curry-section .serve-grid div {
  background: #1f1f1f;
  color: #fff;
}

.signature-curry-section .chip-list span {
  /* color: #fff; */
  border-color: rgba(255,255,255,0.25);
}

@media (max-width: 768px) {
  .curry-info-grid {
    grid-template-columns: 1fr;
  }
}
.nutrition-section {
  background: #fff8ef;
  padding: 90px 0;
}

.nutrition-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  margin-top: 0px 50px;
}

.nutrition-card {
  background: #fff;
  border-radius: 22px;
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 18px 45px rgba(0,0,0,0.06);
}

.nutrition-card span {
  font-size: 34px;
  display: block;
  margin-bottom: 18px;
}

.nutrition-card h3 {
  color: #2b1b12;
  font-size: 20px;
  margin-bottom: 12px;
}

.nutrition-card p {
  color: #66554b;
  font-size: 15px;
  line-height: 1.7;
}

.white-paper-box {
  margin-top: 70px;
  background: #111;
  color: #fff;
  border-radius: 28px;
  padding: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  margin: 20px 50px;
}

.white-paper-box h3 {
  color: #fff;
  font-size: 34px;
  margin: 10px 0 14px;
}

.white-paper-box p {
  color: #d6d6d6;
  max-width: 650px;
  line-height: 1.7;
}

.white-paper-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-outline {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.35);
}

@media (max-width: 900px) {
  .nutrition-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .white-paper-box {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 600px) {
  .nutrition-grid {
    grid-template-columns: 1fr;
  }
}
.order-section{

background:#111;

padding:100px 0;

}

.order-section .section-header h2{

color:#fff;

}

.order-section .section-header p{

color:#d5d5d5;

max-width:750px;

margin:auto;

}

.order-grid{

display:grid;

grid-template-columns:repeat(4,1fr);

gap:25px;

margin-top:60px;

}

.order-card{

background:#1f1f1f;

padding:35px;

border-radius:20px;

text-align:center;

transition:.35s;

border:1px solid rgba(255,255,255,.06);

}

.order-card:hover{

transform:translateY(-8px);

border-color:#c62828;

}

.order-icon{

font-size:42px;

margin-bottom:20px;

}

.order-card h3{

color:#fff;

margin-bottom:15px;

}

.order-card p{

color:#bdbdbd;

line-height:1.7;

}

.order-buttons{

display:flex;

justify-content:center;

gap:20px;

margin-top:70px;

flex-wrap:wrap;
}

@media(max-width:992px){
.order-grid{
grid-template-columns:repeat(2,1fr);
}
}

@media(max-width:600px){
.order-grid{
grid-template-columns:1fr;
}
}
.contact-section {
  background: #fff8ef;
  padding: 100px 0;
}
.contact-section .container{
      margin: 20px 50px;
}
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  margin-top: 60px;
}

.contact-info {
  display: grid;
  gap: 20px;
}

.contact-card {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  gap: 18px;
  align-items: flex-start;
  box-shadow: 0 14px 35px rgba(0,0,0,0.06);
}

.contact-card span {
  font-size: 28px;
}

.contact-card h3 {
  color: #2b1b12;
  margin-bottom: 6px;
}

.contact-card p {
  color: #6b5b51;
}

.contact-form {
  background: #fff;
  border-radius: 24px;
  padding: 35px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.08);
  display: grid;
  gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 15px 16px;
  border: 1px solid #e4d6c9;
  border-radius: 12px;
  font-size: 15px;
  outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: #c62828;
}

@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}
html,
body {
  overflow-x: hidden;
  width: 100%;
}

body {
  position: relative;
}

img {
  max-width: 100%;
  height: auto;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: auto;
}


@media (max-width: 768px) {
  body {
    overflow-x: hidden !important;
  }

  .contact-section {
    padding: 55px 0 !important;
  }

  .contact-section .container {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 18px !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }

  .contact-grid {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 22px !important;
    width: 100% !important;
    margin-top: 35px !important;
  }

  .contact-info {
    width: 100% !important;
    display: grid !important;
    gap: 18px !important;
  }

  .contact-card {
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding: 20px 18px !important;
    border-radius: 22px !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 14px !important;
    box-sizing: border-box !important;
  }

  .contact-card span {
    width: 32px !important;
    min-width: 32px !important;
    font-size: 24px !important;
  }

  .contact-card h3 {
    font-size: 22px !important;
    margin-bottom: 6px !important;
  }

  .contact-card p {
    font-size: 16px !important;
    line-height: 1.5 !important;
    word-break: break-word !important;
  }

  .contact-form {
    width: 100% !important;
    max-width: 100% !important;
    padding: 22px 16px !important;
    border-radius: 22px !important;
    box-sizing: border-box !important;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    font-size: 15px !important;
    padding: 14px !important;
  }
}