/* =============================================
   DOMOWE BISZKOPTY — Główny arkusz stylów
   Paleta z etykiety i wizytówki:
   • Tło:       #FDF5EE (krem/brzoskwinia)
   • Nagłówki:  #5C2200 (czekoladowy brąz)
   • Akcent:    #E8827A (koral/łososiowy)
   • Złoto:     #C9965A (wzory dekoracyjne)
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&family=Lora:ital,wght@0,400;0,600;0,700;1,400&family=Lato:ital,wght@0,300;0,400;0,700;1,400&display=swap');

/* =============================================
   TOKENY CSS
   ============================================= */
:root {
  /* Kolory */
  --cream:          #FDF5EE;
  --cream-light:    #FEF9F6;
  --cream-dark:     #F5E6D8;
  --brown-dark:     #5C2200;
  --brown-mid:      #8B4A1C;
  --coral:          #E8827A;
  --coral-light:    #FADEDB;
  --coral-dark:     #C96860;
  --border:         #EAC4B0;
  --text:           #3D1C0A;
  --text-muted:     #9B6B50;
  --white:          #FFFFFF;
  --gold:           #C9965A;

  /* Typografia */
  --font-brand: 'Lora', serif;
  --font-body:  'Lato', sans-serif;

  /* Rozmiary tekstu */
  --text-sm:   0.875rem;
  --text-base: 1rem;
  --text-lg:   1.125rem;
  --text-xl:   1.25rem;
  --text-2xl:  1.5rem;
  --text-3xl:  2rem;
  --text-4xl:  2.75rem;
  --text-5xl:  3.5rem;

  /* Spacing */
  --s-xs:  0.5rem;
  --s-sm:  1rem;
  --s-md:  1.5rem;
  --s-lg:  2.5rem;
  --s-xl:  4rem;
  --s-2xl: 6rem;

  /* Border radius */
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-full: 9999px;

  /* Cienie */
  --shadow-sm: 0 2px 8px rgba(92, 34, 0, 0.08);
  --shadow-md: 0 4px 20px rgba(92, 34, 0, 0.12);
  --shadow-lg: 0 8px 32px rgba(92, 34, 0, 0.18);

  /* Szerokość kontenera */
  --container:    1140px;
  --container-sm: 800px;
}

/* =============================================
   RESET I BAZA
   ============================================= */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul { list-style: none; }

/* =============================================
   TYPOGRAFIA
   ============================================= */
h1, h2, h3, h4 {
  font-family: var(--font-brand);
  color: var(--brown-dark);
  line-height: 1.2;
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-2xl); }
h4 { font-size: var(--text-xl); }

p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }

/* =============================================
   UTILITIES
   ============================================= */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--s-md);
}

.container--sm {
  max-width: var(--container-sm);
  margin: 0 auto;
  padding: 0 var(--s-md);
}

.section        { padding: var(--s-2xl) 0; }
.section--white { background-color: var(--white); }
.section--light { background-color: var(--cream-light); }
.section--cream { background-color: var(--cream); }

.text-center { text-align: center; }
.text-coral  { color: var(--coral); }
.text-muted  { color: var(--text-muted); }

.section-header {
  text-align: center;
  margin-bottom: var(--s-xl);
}
.section-header h2 { margin-bottom: var(--s-xs); }
.section-header p  {
  color: var(--text-muted);
  font-size: var(--text-lg);
  max-width: 600px;
  margin: 0 auto;
}

.divider {
  width: 60px;
  height: 3px;
  background: var(--coral);
  border-radius: var(--r-full);
  margin: var(--s-sm) auto;
}

/* =============================================
   PRZYCISKI
   ============================================= */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: var(--text-base);
  font-weight: 700;
  cursor: pointer;
  border: 2px solid transparent;
  transition: background-color 0.25s, border-color 0.25s, transform 0.2s, box-shadow 0.25s;
  text-align: center;
  letter-spacing: 0.02em;
}

.btn--primary {
  background-color: var(--coral);
  color: var(--white);
  border-color: var(--coral);
}
.btn--primary:hover {
  background-color: var(--coral-dark);
  border-color: var(--coral-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn--outline {
  background-color: transparent;
  color: var(--brown-dark);
  border-color: var(--brown-dark);
}
.btn--outline:hover {
  background-color: var(--brown-dark);
  color: var(--white);
  transform: translateY(-2px);
}

.btn--white {
  background-color: var(--white);
  color: var(--coral-dark);
  border-color: var(--white);
}
.btn--white:hover {
  background-color: var(--cream);
  border-color: var(--cream);
  transform: translateY(-2px);
}

.btn--lg {
  padding: 1.1rem 2.5rem;
  font-size: var(--text-lg);
}

/* =============================================
   NAWIGACJA
   ============================================= */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: var(--s-xs);
}
.navbar__logo img {
  height: 90px;
  width: 90px;
  object-fit: contain;
  border-radius: var(--r-sm);
}
.navbar__logo-text {
  font-family: 'Great Vibes', cursive;
  font-size: var(--text-4xl);
  color: var(--brown-dark);
  line-height: 1;
}

.navbar__nav {
  display: flex;
  align-items: center;
  gap: var(--s-lg);
}

.navbar__link {
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--text);
  transition: color 0.2s;
  position: relative;
}
.navbar__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--coral);
  border-radius: var(--r-full);
  transition: width 0.25s ease;
}
.navbar__link:hover,
.navbar__link.active {
  color: var(--coral);
}
.navbar__link:hover::after,
.navbar__link.active::after {
  width: 100%;
}

.navbar__cta-btn {
  margin-left: var(--s-xs);
  color: #fff !important;
}

/* Hamburger */
.navbar__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: var(--s-xs);
}
.navbar__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--brown-dark);
  border-radius: var(--r-full);
  transition: transform 0.3s, opacity 0.3s;
}
.navbar__hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navbar__hamburger.open span:nth-child(2) { opacity: 0; }
.navbar__hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================
   HERO — STRONA GŁÓWNA
   ============================================= */
.hero {
  background-color: var(--cream);
  padding: var(--s-2xl) 0;
  overflow: hidden;
  position: relative;
}

/* Serduszka dekoracyjne tła */
.hero::before,
.hero::after {
  content: '♥';
  position: absolute;
  color: var(--coral-light);
  pointer-events: none;
  animation: floatHeart 5s ease-in-out infinite;
}
.hero::before { top: 12%; left: 4%;  font-size: 2.2rem; opacity: 0.7; }
.hero::after  { bottom: 14%; right: 5%; font-size: 1.6rem; opacity: 0.5; animation-delay: 1.5s; animation-direction: reverse; }

@keyframes floatHeart {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-14px); }
}

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-xl);
  align-items: center;
}

.hero__badge {
  display: inline-block;
  background: var(--coral-light);
  color: var(--coral-dark);
  font-size: var(--text-sm);
  font-weight: 700;
  padding: 0.4rem 1.2rem;
  border-radius: var(--r-full);
  margin-bottom: var(--s-sm);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__title {
  font-size: clamp(2.2rem, 4.5vw, var(--text-5xl));
  margin-bottom: var(--s-sm);
  line-height: 1.15;
}
.hero__title span { color: var(--coral); }

.hero__subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  margin-bottom: var(--s-lg);
  max-width: 480px;
  line-height: 1.8;
}

.hero__actions {
  display: flex;
  gap: var(--s-sm);
  flex-wrap: wrap;
  margin-bottom: var(--s-md);
}

.hero__trust {
  display: flex;
  align-items: center;
  gap: var(--s-xs);
  font-size: var(--text-sm);
  color: var(--text-muted);
}
.hero__trust-dots {
  display: flex;
  gap: 3px;
}
.hero__trust-dot {
  width: 8px;
  height: 8px;
  background: var(--coral);
  border-radius: 50%;
}

/* Zdjęcie w hero */
.hero__image { position: relative; }
.hero__img-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.hero__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero__img-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r-md);
  padding: var(--s-sm) var(--s-md);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: var(--s-xs);
}
.hero__img-badge-icon { font-size: 1.8rem; }
.hero__img-badge-text {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--brown-dark);
  line-height: 1.3;
}
.hero__img-badge-text small {
  font-weight: 400;
  color: var(--text-muted);
  display: block;
}

.hero__heart {
  position: absolute;
  top: -12px;
  right: -12px;
  width: 48px;
  height: 48px;
  background: var(--coral);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--shadow-md);
  animation: pulse 2.5s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%       { transform: scale(1.1); }
}

/* =============================================
   PASEK USP
   ============================================= */
.usp-strip {
  background: var(--brown-dark);
  padding: var(--s-lg) 0;
}
.usp-strip__list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--s-lg);
}
.usp-strip__item {
  display: flex;
  align-items: center;
  gap: var(--s-xs);
  color: var(--white);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.02em;
}
.usp-strip__icon { color: var(--coral); font-size: 1rem; }

/* =============================================
   KARTY "DLACZEGO MY"
   ============================================= */
.features__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-lg);
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-lg);
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.feature-card__icon { font-size: 2.5rem; margin-bottom: var(--s-sm); }
.feature-card__title {
  font-family: var(--font-brand);
  font-size: var(--text-xl);
  color: var(--brown-dark);
  margin-bottom: var(--s-xs);
}
.feature-card__text {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* =============================================
   KARTY PRODUKTÓW (PODGLĄD — index)
   ============================================= */
.products__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-lg);
}

.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: transform 0.25s, box-shadow 0.25s;
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.product-card__image {
  aspect-ratio: 4/3;
  overflow: hidden;
}
.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.product-card:hover .product-card__image img { transform: scale(1.06); }

.product-card__body {
  padding: var(--s-md);
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__badge {
  display: inline-block;
  background: var(--coral-light);
  color: var(--coral-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 0.8rem;
  border-radius: var(--r-full);
  margin-bottom: var(--s-xs);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  align-self: flex-start;
}
.product-card__badge--dark {
  background: var(--brown-dark);
  color: var(--white);
}
.product-card__title {
  font-family: var(--font-brand);
  font-size: var(--text-xl);
  color: var(--brown-dark);
  margin-bottom: var(--s-xs);
}
.product-card__desc {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--s-md);
  line-height: 1.65;
  flex: 1;
}
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--s-sm);
  border-top: 1px solid var(--border);
}
.product-card__time {
  font-size: var(--text-sm);
  color: var(--text-muted);
}
.product-card__price {
  font-family: var(--font-brand);
  font-size: var(--text-2xl);
  color: var(--brown-dark);
  font-weight: 700;
  margin-bottom: var(--s-xs);
}
.product-card__price-note {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--s-sm);
}
.product-card[id] {
  scroll-margin-top: 120px;
}
.product-card__price-note a {
  color: var(--coral);
  text-decoration: underline;
}

/* =============================================
   PEŁNE KARTY PRODUKTÓW (oferta.html)
   ============================================= */
.products-full { display: flex; flex-direction: column; gap: var(--s-xl); }

.product-full {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  display: grid;
  grid-template-columns: 420px 1fr;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s;
}
.product-full:hover { box-shadow: var(--shadow-md); }

.product-full--reverse { direction: rtl; }
.product-full--reverse > * { direction: ltr; }

.product-full__image { overflow: hidden; min-height: 320px; }
.product-full__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-full__body {
  padding: var(--s-xl);
  display: flex;
  flex-direction: column;
}
.product-full__badge {
  display: inline-block;
  background: var(--coral-light);
  color: var(--coral-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: var(--r-full);
  margin-bottom: var(--s-sm);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  align-self: flex-start;
}
.product-full__badge--best {
  background: var(--brown-dark);
  color: var(--white);
}
.product-full__title { font-size: var(--text-3xl); margin-bottom: var(--s-xs); }
.product-full__subtitle {
  font-size: var(--text-base);
  color: var(--text-muted);
  margin-bottom: var(--s-md);
  font-style: italic;
}
.product-full__desc {
  font-size: var(--text-base);
  color: var(--text-muted);
  margin-bottom: var(--s-md);
  line-height: 1.8;
  flex: 1;
}
.product-full__list {
  margin-bottom: var(--s-xs);
  display: flex;
  flex-direction: column;
  gap: 0;
}
.product-full__list li {
  font-size: var(--text-sm);
  color: var(--text);
  padding: 0.45rem 0;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: var(--s-xs);
  line-height: 1.5;
}
.product-full__list li:last-child { border-bottom: none; }
.product-full__list .chk { color: var(--coral); font-weight: 700; flex-shrink: 0; margin-top: 1px; }

.product-full__price {
  font-family: var(--font-brand);
  font-size: var(--text-3xl);
  color: var(--brown-dark);
  font-weight: 700;
  margin: var(--s-sm) 0 var(--s-xs);
  display: flex;
  align-items: center;
  gap: var(--s-sm);
  flex-wrap: wrap;
}
.product-full__price-note {
  font-size: var(--text-sm);
  color: var(--text-muted);
  margin-bottom: var(--s-md);
}
.price-saving {
  display: inline-block;
  background: #e8f5e9;
  color: #2e7d32;
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 20px;
  border: 1px solid #a5d6a7;
  vertical-align: middle;
}
.product-card__price {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
  flex-wrap: wrap;
}

/* FAQ na ofercie */
.faq { max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--r-md);
  margin-bottom: var(--s-sm);
  overflow: hidden;
}
.faq-item__q {
  width: 100%;
  background: var(--white);
  border: none;
  padding: var(--s-md) var(--s-lg);
  text-align: left;
  font-family: var(--font-brand);
  font-size: var(--text-xl);
  color: var(--brown-dark);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-sm);
  transition: background-color 0.2s;
}
.faq-item__q:hover { background-color: var(--cream); }
.faq-item__arrow { transition: transform 0.25s; font-size: 0.85rem; }
.faq-item.open .faq-item__arrow { transform: rotate(180deg); }
.faq-item__a {
  display: none;
  padding: 0 var(--s-lg) var(--s-md);
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.8;
  background: var(--white);
}
.faq-item.open .faq-item__a { display: block; }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-banner {
  background: linear-gradient(135deg, var(--coral) 0%, var(--coral-dark) 100%);
  padding: var(--s-2xl) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '♥ ♥ ♥ ♥';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  font-size: 9rem;
  color: rgba(255,255,255,0.05);
  letter-spacing: 30px;
  pointer-events: none;
}
.cta-banner h2 {
  color: var(--white);
  font-size: var(--text-4xl);
  margin-bottom: var(--s-sm);
}
.cta-banner p {
  color: rgba(255,255,255,0.88);
  font-size: var(--text-lg);
  margin-bottom: var(--s-lg);
}

/* =============================================
   STOPKA
   ============================================= */
.footer {
  background-color: var(--brown-dark);
  color: var(--cream-light);
  padding: var(--s-xl) 0 var(--s-sm);
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--s-xl);
  padding-bottom: var(--s-xl);
  border-bottom: 1px solid rgba(255,255,255,0.12);
  margin-bottom: var(--s-md);
}
.footer__brand {
  font-family: var(--font-brand);
  font-size: var(--text-2xl);
  color: var(--white);
  margin-bottom: var(--s-xs);
}
.footer__tagline {
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--s-md);
  line-height: 1.8;
}
.footer__contact-item {
  display: flex;
  align-items: center;
  gap: var(--s-xs);
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.7);
  margin-bottom: var(--s-xs);
}
.footer__contact-item a { color: var(--coral-light); transition: color 0.2s; }
.footer__contact-item a:hover { color: var(--white); }
.footer__heading {
  font-family: var(--font-brand);
  font-size: var(--text-xl);
  color: var(--white);
  margin-bottom: var(--s-sm);
}
.footer__links { display: flex; flex-direction: column; gap: var(--s-xs); }
.footer__link { font-size: var(--text-sm); color: rgba(255,255,255,0.65); transition: color 0.2s; }
.footer__link:hover { color: var(--coral-light); }
.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--text-sm);
  color: rgba(255,255,255,0.4);
}

/* =============================================
   HERO PODSTRON
   ============================================= */
.page-hero {
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-dark) 100%);
  padding: var(--s-xl) 0;
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.page-hero__title { font-size: var(--text-4xl); margin-bottom: var(--s-xs); }
.page-hero__subtitle {
  font-size: var(--text-lg);
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto;
}

/* =============================================
   O NAS
   ============================================= */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-xl);
  align-items: center;
}
.about-story__image {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 3/4;
}
.about-story__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-story__tag {
  display: inline-block;
  background: var(--coral-light);
  color: var(--coral-dark);
  font-size: var(--text-sm);
  font-weight: 700;
  padding: 0.4rem 1.2rem;
  border-radius: var(--r-full);
  margin-bottom: var(--s-sm);
}
.about-story__title { font-size: var(--text-3xl); margin-bottom: var(--s-sm); }
.about-story__text { color: var(--text-muted); line-height: 1.9; margin-bottom: var(--s-md); }
.about-story__text:last-child { margin-bottom: 0; }

.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-md);
}
.value-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-lg);
  text-align: center;
  transition: transform 0.25s, box-shadow 0.25s;
}
.value-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-sm); }
.value-card__icon { font-size: 2.2rem; margin-bottom: var(--s-sm); }
.value-card__title {
  font-family: var(--font-brand);
  font-size: var(--text-xl);
  color: var(--brown-dark);
  margin-bottom: var(--s-xs);
}
.value-card__text { font-size: var(--text-sm); color: var(--text-muted); margin: 0; line-height: 1.7; }

/* Składniki & alergeny */
.ingredients-box {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s-xl);
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}
.ingredients-box__title { font-size: var(--text-3xl); margin-bottom: var(--s-sm); }
.ingredients-box__row {
  display: flex;
  justify-content: center;
  gap: var(--s-md);
  flex-wrap: wrap;
  margin-bottom: var(--s-md);
}
.ingredient-pill {
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--r-full);
  padding: 0.6rem 1.5rem;
  font-size: var(--text-base);
  font-weight: 700;
  color: var(--brown-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}
.allergen-note {
  font-size: var(--text-sm);
  color: var(--text-muted);
  background: var(--cream);
  border-radius: var(--r-md);
  padding: var(--s-sm) var(--s-md);
  display: inline-block;
  border: 1px solid var(--border);
  margin-top: var(--s-xs);
}

.storage-box {
  display: flex;
  align-items: flex-start;
  gap: var(--s-md);
  background: var(--cream);
  border: 1.5px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s-lg);
  margin-top: var(--s-lg);
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.storage-box__icon { font-size: 2rem; flex-shrink: 0; margin-top: 2px; }
.storage-box__title {
  font-family: var(--font-brand);
  font-size: var(--text-xl);
  color: var(--brown-dark);
  margin-bottom: 4px;
}
.storage-box__text { font-size: var(--text-sm); color: var(--text-muted); margin: 0; line-height: 1.8; }

/* =============================================
   KONTAKT & FORMULARZ ZAMÓWIEŃ
   ============================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: var(--s-xl);
  align-items: start;
}

.contact-info {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s-lg);
  position: sticky;
  top: 88px;
}
.contact-info__title { font-size: var(--text-2xl); margin-bottom: var(--s-lg); }

.contact-info__item {
  display: flex;
  gap: var(--s-sm);
  margin-bottom: var(--s-md);
}
.contact-info__icon {
  width: 44px;
  height: 44px;
  background: var(--coral-light);
  border-radius: var(--r-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info__label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--brown-dark);
  display: block;
  margin-bottom: 2px;
}
.contact-info__value {
  font-size: var(--text-sm);
  color: var(--text-muted);
}
.contact-info__value a { color: var(--coral); }
.contact-info__value a:hover { text-decoration: underline; }

.delivery-box {
  background: var(--cream);
  border-radius: var(--r-md);
  padding: var(--s-md);
  margin-top: var(--s-sm);
}
.delivery-box__title {
  font-family: var(--font-brand);
  font-size: var(--text-lg);
  color: var(--brown-dark);
  margin-bottom: var(--s-xs);
}
.delivery-box li {
  font-size: var(--text-sm);
  color: var(--text-muted);
  padding: 4px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

/* Formularz */
.order-form {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: var(--s-xl);
  box-shadow: var(--shadow-sm);
}
.order-form__title { font-size: var(--text-3xl); margin-bottom: 4px; }
.order-form__subtitle {
  font-size: var(--text-base);
  color: var(--text-muted);
  margin-bottom: var(--s-xl);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-md);
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group--full { grid-column: 1 / -1; }

.form-label {
  font-size: var(--text-sm);
  font-weight: 700;
  color: var(--brown-dark);
}
.form-label .req { color: var(--coral); margin-left: 2px; }

.form-control {
  padding: 0.78rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--r-md);
  font-family: var(--font-body);
  font-size: var(--text-base);
  color: var(--text);
  background: var(--cream-light);
  transition: border-color 0.2s, box-shadow 0.2s, background-color 0.2s;
  width: 100%;
  appearance: none;
}
.form-control:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(232, 130, 122, 0.18);
  background: var(--white);
}
.form-control.is-error   { border-color: #E53E3E; box-shadow: 0 0 0 3px rgba(229,62,62,0.1); }
.form-control.is-success { border-color: #48BB78; }

.form-error-msg {
  font-size: var(--text-sm);
  color: #C53030;
  display: none;
}
.form-group.has-error .form-error-msg { display: block; }

.form-hint { font-size: var(--text-sm); color: var(--text-muted); }

textarea.form-control { resize: vertical; min-height: 100px; }

/* Checkbox RODO */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: var(--s-sm);
  cursor: pointer;
  line-height: 1.6;
}
.form-check input[type="checkbox"] {
  width: 18px;
  height: 18px;
  border: 1.5px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  accent-color: var(--coral);
  margin-top: 2px;
  flex-shrink: 0;
}
.form-check__text {
  font-size: var(--text-sm);
  color: var(--text-muted);
}
.form-check__text a { color: var(--coral); text-decoration: underline; }

/* Submit */
.form-submit {
  margin-top: var(--s-lg);
  padding-top: var(--s-md);
  border-top: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: var(--s-md);
  flex-wrap: wrap;
}
.form-submit-note {
  font-size: var(--text-sm);
  color: var(--text-muted);
}

/* Komunikaty zwrotne */
.form-feedback {
  display: none;
  padding: var(--s-md) var(--s-lg);
  border-radius: var(--r-md);
  margin-top: var(--s-md);
  font-weight: 700;
  text-align: center;
  font-size: var(--text-base);
}
.form-feedback--success {
  background: #F0FFF4;
  border: 1.5px solid #68D391;
  color: #276749;
}
.form-feedback--error {
  background: #FFF5F5;
  border: 1.5px solid #FC8181;
  color: #C53030;
}

/* =============================================
   ANIMACJE WEJŚCIA
   ============================================= */
.fade-in {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in:nth-child(2) { transition-delay: 0.1s; }
.fade-in:nth-child(3) { transition-delay: 0.2s; }
.fade-in:nth-child(4) { transition-delay: 0.3s; }
.fade-in:nth-child(5) { transition-delay: 0.1s; }
.fade-in:nth-child(6) { transition-delay: 0.2s; }

/* =============================================
   RESPONSYWNOŚĆ
   ============================================= */
@media (max-width: 1024px) {
  :root {
    --text-5xl: 2.75rem;
    --text-4xl: 2.25rem;
  }

  .hero__inner           { grid-template-columns: 1fr; text-align: center; }
  .hero__subtitle        { margin-left: auto; margin-right: auto; max-width: 100%; }
  .hero__actions         { justify-content: center; }
  .hero__trust           { justify-content: center; }
  .hero__image           { max-width: 520px; margin: 0 auto; }
  .hero__img-badge       { left: 8px; }

  .features__grid        { grid-template-columns: repeat(2, 1fr); }
  .products__grid        { grid-template-columns: repeat(2, 1fr); }

  .product-full          { grid-template-columns: 1fr; }
  .product-full__image   { min-height: 240px; }

  .about-story           { grid-template-columns: 1fr; }
  .values-grid           { grid-template-columns: repeat(2, 1fr); }

  .contact-layout        { grid-template-columns: 1fr; }
  .contact-info          { position: static; }

  .footer__grid          { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  :root {
    --text-5xl: 2.2rem;
    --text-4xl: 1.9rem;
    --text-3xl: 1.7rem;
    --s-2xl: 4rem;
    --s-xl:  2.5rem;
  }

  /* Hamburger */
  .navbar__nav {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    align-items: stretch;
    padding: var(--s-sm);
    gap: 4px;
    box-shadow: var(--shadow-md);
    overflow-y: auto;
  }
  .navbar__nav.open      { display: flex; }
  .navbar__link          { padding: 1rem var(--s-sm); border-radius: var(--r-sm); }
  .navbar__cta-btn       { margin-left: 0; }
  .navbar__hamburger     { display: flex; }

  .features__grid        { grid-template-columns: 1fr; }
  .products__grid        { grid-template-columns: 1fr; }
  .values-grid           { grid-template-columns: 1fr; }

  .form-grid             { grid-template-columns: 1fr; }
  .form-group--full      { grid-column: 1; }

  .footer__grid          { grid-template-columns: 1fr; gap: var(--s-lg); }
  .footer__bottom        { flex-direction: column; gap: var(--s-xs); text-align: center; }

  .usp-strip__list       { flex-direction: column; align-items: flex-start; gap: var(--s-sm); }
  .usp-strip             { padding: var(--s-lg) var(--s-md); }

  .product-full--reverse { direction: ltr; }
}

@media (max-width: 480px) {
  .hero__actions { flex-direction: column; }
  .hero__actions .btn { width: 100%; text-align: center; }
  .form-submit { flex-direction: column; align-items: stretch; }
  .form-submit .btn { width: 100%; text-align: center; }
  .ingredients-box__row { flex-direction: column; align-items: center; }
}
