/* ================================================================
   Afiyet Handels GmbH — style.css  v3  (Mobile-first)
   Base styles = mobile (matches iOS mockup exactly)
   @media (min-width: 768px) = desktop expansion
   ================================================================ */

:root {
  --red:        #CC0000;
  --red-dark:   #A00000;
  --black:      #111111;
  --white:      #FFFFFF;
  --gray-light: #F5F5F5;
  --gray-mid:   #777777;
  --gray-border:#E0E0E0;
  --green-halal:#16a34a;
  --text:       #1A1A1A;
  --transition: 0.2s ease;
}

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

.container { width: 100%; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: 'Inter', sans-serif; color: var(--text); background: var(--white); line-height: 1.6; font-weight: 500; letter-spacing: -0.02em; -webkit-font-smoothing: antialiased; overflow-x: hidden; }
h1, h2, h3 { font-family: 'Inter', sans-serif; font-weight: 800; line-height: 1.1; color: var(--black); letter-spacing: -0.03em; }
section h2 { font-size: 1.6rem; margin-bottom: 24px; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

/* ── Tag label ──────────────────────────────────── */
.tag {
  display: inline-block;
  color: var(--red);
  letter-spacing: 0.04em;
  font-size: 0.75rem;
  font-weight: 800;
  margin-bottom: 6px;
}

/* ── Button ─────────────────────────────────────── */
.btn-red {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  padding: 7px 22px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 0.65rem;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background var(--transition);
}
.btn-red:hover { background: var(--red-dark); }
.btn-red.full-width { display: block; width: 100%; text-align: center; }

/* ════════════════════════════════════════════════
   NAVBAR  — matches mockup: logo+name left, DE|EN|TR + ☰ right
   ════════════════════════════════════════════════ */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 16px 0 16px;
  height: 52px;
  overflow: visible;
}

.navbar.menu-open {
  position: fixed;
  left: 0;
  right: 0;
  height: 52px;
  overflow: visible;           /* allow logo to overflow the bottom border */
}
.navbar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--red);
}
.navbar-brand {
  display: flex;
  align-items: flex-end;
  gap: 6px;
  padding-bottom: 4px;
  font-weight: 700;
  font-size: 0.6rem;
  letter-spacing: -0.02em;
  color: var(--black);
  flex-shrink: 1;
  white-space: nowrap;
}
.navbar-brand span {
  display: block;
  overflow: hidden;
  max-width: 105px;          /* Narrower to accommodate larger gap without overlap */
}
/* Logo overflows below the navbar red border line */
.navbar-brand img {
  height: 44px;
  width: auto;
  margin-bottom: -12px;
  position: relative;
  z-index: 101;
  background-color: white;
  border-radius: 50%;
  padding: 1px;
  border: 1.2px solid #eee;
}
.navbar-links { display: none; }   /* hidden on mobile */
.navbar-right { 
  display: flex; 
  align-items: center; 
  align-self: center;        /* Centered in the bar regardless of navbar align-items */
  gap: 12px;                 /* Increased gap as requested */
  flex-shrink: 0;
}
.lang-switcher { display: flex; align-items: center; gap: 8px; }
.lang-switcher span { color: var(--gray-border); font-size: 0.7rem; }
.lang-btn { background: none; border: none; font-size: 0.72rem; font-weight: 600; color: var(--gray-mid); padding: 4px 2px; }
.lang-btn.active { color: var(--text); }
#hamburger { background: none; border: none; font-size: 24px; font-weight: 900; color: var(--text); padding: 0; line-height: 1; transform: scaleX(1.2); width: 28px; text-align: center; }
#hamburger.is-cross { transform: none; font-size: 26px; }

/* Mobile dropdown menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--white);
  padding: 24px 16px 4px;
  position: fixed;
  top: 40px;                 /* Tuck behind the 52px navbar to ensure zero gap */
  left: 0;
  right: 0; 
  z-index: 90;               /* Lower than navbar (100) */
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 1rem;
  min-height: 52px;
  border-bottom: 1px solid var(--gray-light);
  transition: color var(--transition);
}
.mobile-menu a:hover,
.mobile-menu a.active { color: var(--red); }
.mobile-menu a:last-of-type { border-bottom: none; }
.mobile-menu .lang-switcher { padding-top: 12px; margin-top: 8px; border-top: 1px solid var(--gray-border); justify-content: center; }

/* ════════════════════════════════════════════════
   HERO — short, dark overlay, text left, chickens visible in bg photo
   ════════════════════════════════════════════════ */
.hero {
  position: relative;
  background: url('../assets/farm.jpg') center 80% / 115% auto no-repeat;
  padding: 36px 16px 32px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0) 85%);
  box-shadow: inset 0 -50px 60px -40px rgba(0,0,0,0.8); /* Strong shadow bottom border */
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  width: 100%;
  max-width: 100%;
  padding: 0 20px 0 0;
}
.hero-content .tag {
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(6px);
  color: var(--white);
  padding: 3px 6px;
  border-radius: 4px;
  display: inline-block;
  font-size: 0.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  text-shadow: none;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.hero-content h1 {
  font-size: 1.2rem;
  line-height: 1.3;
  color: var(--white);
  font-weight: 700;
  margin: 0;
}
.hero-chickens { display: none; }

/* ════════════════════════════════════════════════
   STATS BAR — 3 equal columns with vertical dividers
   ════════════════════════════════════════════════ */
.stats-bar {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  background: var(--white);
  border: 0.5px solid #e8e8e8;
  border-radius: 4px;
  margin-top: 32px;
  margin-left: 16px;
  margin-right: 16px;
  padding: 10px 5px;
  position: relative;
}
.stats-bar-chicken {
  position: absolute;
  bottom: 0;
  right: -10px;
  height: 137px;
  width: auto;
  z-index: 5;
  transform: translateY(-47%);
}
.stats-bar::after {
    content: '';
    position: absolute;
    bottom: 0;
    right: -17px;
    width: 137px;
    height: 137px;
    background: url('../assets/chicken-isolated-on-transparent-background-png.webp') center / contain no-repeat;
    filter: brightness(0) opacity(0.4);
    transform: translateY(-49%) scaleY(0.27) skewX(-19deg) rotate(-8deg);
    z-index: 4;
    transform-origin: bottom right;
}
.stat { text-align: center; flex: 1; }
.stat:last-child { border-right: none; }
.stat-number { display: block; font-size: 1.7rem; font-weight: 700; color: var(--black); line-height: 1; margin-bottom: 6px; white-space: nowrap; }
.stat-label { display: block; font-size: 0.6rem; text-transform: uppercase; letter-spacing: 0.02em; color: var(--black); font-weight: 600; white-space: nowrap; }
html[lang="en"] .stat-label { font-size: 0.57rem; letter-spacing: 0.02em; }



/* ════════════════════════════════════════════════
   PRODUCT ICONS SECTION
   ════════════════════════════════════════════════ */
.product-icons { padding: 45px 16px; background: var(--white); box-shadow: 0 4px 12px rgba(0,0,0,0.06); }
.icons-img { width: 72%; max-width: 260px; margin: 0 auto 45px; }
.product-icons p { font-size: 0.65rem; color: var(--text); line-height: 1.3; letter-spacing: -0.04em; margin-bottom: 22px; padding-right: 23%; }

/* ════════════════════════════════════════════════
   B2B SECTION — white bg, left-aligned, 3 icons in row
   ════════════════════════════════════════════════ */
.b2b { padding: 36px 16px 36px; background: var(--white); border-top: 1px solid #eee; box-shadow: inset 0 6px 10px -6px rgba(0,0,0,0.12); }
.b2b .tag { display: block; margin-bottom: 6px; font-size: 0.65rem; }
.b2b h2 { font-size: 1rem; margin-bottom: 32px; text-shadow: 0 2px 4px rgba(0,0,0,0.08); font-weight: 700; }
.b2b-icons { display: flex; justify-content: space-between; gap: 8px; margin-bottom: 20px; }
.b2b-item { flex: 1; max-width: 100px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0; text-align: center; border: 0.5px solid #e8e8e8; border-radius: 4px; padding: 10px 6px; min-height: 100px; position: relative; overflow: hidden; background: #fff; box-shadow: 0 1px 2px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.9); }
.b2b-item::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255,255,255,0.7) 0%, rgba(255,255,255,0.15) 30%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}
.b2b-icon { width: 38px; height: 38px; stroke: var(--gray-mid); stroke-width: 1.5; }
.b2b-icon-img { width: 42px; height: 42px; object-fit: contain; position: relative; z-index: 2; }
#b2b-truck { width: 52px; height: 52px; }
#b2b-truck ~ span { margin-top: -5px; }
.b2b-item span { font-size: 0.48rem; color: var(--black); font-weight: 700; line-height: 1.1; min-height: 2.3em; display: flex; align-items: center; position: relative; z-index: 2; text-align: center; }
.b2b .btn-red { margin-top: 16px; }

/* ════════════════════════════════════════════════
   WORLD SECTION — dark green, text LEFT + map RIGHT (side by side on mobile too)
   ════════════════════════════════════════════════ */
.world {
  position: relative;
  background: #141e00;
  overflow: hidden;
  box-shadow: 0 -8px 20px -8px rgba(0,0,0,0.35), 0 8px 20px -8px rgba(0,0,0,0.35);
}
.world::before { 
  content: '';
  position: absolute;
  inset: -47%;
  background: url('../assets/grass.webp') center center / cover no-repeat;
  transform: rotate(90deg) translateX(19%);
  z-index: 0;
}
.world::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(70, 55, 10, 0.5);
  z-index: 1;
}
.world-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  gap: 16px;
  overflow: hidden;
}
.world-text {
  flex: 0 0 52%;
  position: relative;
  z-index: 2;
  padding-top: 75px;
}
.world-text .tag { color: var(--red); font-size: 0.65rem; font-weight: 700; letter-spacing: 0.05em; display: block; margin-bottom: 6px; }
.world-text h2 { color: var(--white); font-size: 1.4rem; line-height: 1.4; margin: 8px 0; letter-spacing: -0.02em; font-weight: 700; }
.world-text p { color: rgba(255,255,255,0.9); font-size: 0.5rem; line-height: 1.3; letter-spacing: -0.04em; width: 100%; padding-right: 10px; margin: 0; }
html[lang="en"] .world-text h2,
html[lang="tr"] .world-text h2 { font-size: 1.3rem; }
html[lang="en"] .world-text p,
html[lang="tr"] .world-text p { font-size: 0.48rem; }
.world-map-wrap { 
  flex: 0 0 48%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}
.world-map-img { 
  width: 150%;
  height: auto;
  max-width: none;
  filter: drop-shadow(-8px 12px 20px rgba(0,0,0,0.5));
  transform: translateX(-16%);
}

@media (min-width: 480px) {
  .world-inner { padding: 24px 32px; }
}

/* ════════════════════════════════════════════════
   ABOUT SECTION — White bg, brand text, logo right
   ════════════════════════════════════════════════ */
.about { padding: 40px 16px; background: var(--white); }
.about .tag { display: block; margin-bottom: 6px; font-size: 0.65rem; letter-spacing: 0.05em; font-weight: 700; color: var(--red); }
.about h2 { font-size: 1.4rem; line-height: 1.4; margin-bottom: 12px; letter-spacing: -0.02em; font-weight: 700; text-shadow: 0 2px 4px rgba(0,0,0,0.08); }
.about-text-top { font-size: 0.5rem; font-weight: 700; color: var(--black); line-height: 1.5; letter-spacing: -0.01em; margin-bottom: 24px; }
.about-details { display: flex; align-items: center; justify-content: center; gap: 12px; }
.about-logo { width: 124px; flex-shrink: 0; margin-left: 8px; margin-right: 20px; }
.about-info p { font-size: 0.5rem; font-weight: 700; color: var(--black); line-height: 1.5; letter-spacing: -0.01em; margin-bottom: 0; }
/* ════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════ */
/* ════════════════════════════════════════════════
   LANDING PAGE FOOTER (#landing-footer)
   Locked high-impact design for the Home page
   ════════════════════════════════════════════════ */
#landing-footer {
  position: relative;
  background: #1e2d41 url('../assets/warehouse.jpeg') center 0% / cover no-repeat;
  color: var(--white);
  padding: 0 16px 0 16px;
  text-align: center;
  overflow: hidden;
  box-shadow: 0 -8px 20px -8px rgba(0,0,0,0.35);
}
#landing-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Gradient for visibility */
  background: linear-gradient(to bottom, 
    rgba(30, 45, 65, 0.75) 0%, 
    rgba(30, 45, 65, 0.4) 30%, 
    rgba(30, 45, 65, 0.25) 60%, 
    rgba(10, 20, 30, 0.75) 100%
  );
  z-index: 0;
}

#landing-footer .footer-contact { 
  position: relative; 
  z-index: 1; 
  padding: 10px 10px; 
  max-width: 500px; 
  margin: -4px auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#landing-footer .footer-contact h3 { color: var(--white); font-size: 0.75rem; font-weight: 800; text-align: center; margin-top: 32px; margin-bottom: 20px; letter-spacing: -0.02em; width: 100%; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
#landing-footer .footer-cols { display: flex; justify-content: center; gap: 60px; text-align: center; width: 100%; }
#landing-footer .footer-cols div { flex: none; }
#landing-footer .footer-cols strong { display: block; color: var(--white); font-size: 0.45rem; letter-spacing: 0.05em; margin-bottom: 2px; font-weight: 800; text-align: center; text-shadow: 0 1px 3px rgba(0,0,0,0.5); }
#landing-footer .footer-cols p, 
#landing-footer .footer-cols a { font-size: 0.45rem; color: var(--white); line-height: 1.3; margin-bottom: 0; text-decoration: none; font-weight: 500; white-space: nowrap; text-shadow: 0 2px 4px rgba(0,0,0,0.8); }

#landing-footer .footer-cols a:hover { text-decoration: underline; }

#landing-footer .footer-bottom { 
  position: relative; 
  z-index: 1; 
  padding: 32px 16px 16px 16px; 
  text-align: center; 
  max-width: 400px; 
  margin: 0 auto; 
  border-top: 1px solid rgba(255,255,255,0.1); 
  margin-top: 40px;
}
#landing-footer .footer-bottom-line { 
  font-size: 0.45rem; 
  color: rgba(255,255,255,0.9); 
  line-height: 1.4; 
  font-weight: 700;
  white-space: nowrap; 
  text-shadow: 0 1px 3px rgba(0,0,0,0.5); 
}
#landing-footer .footer-bottom-line a { color: rgba(255,255,255,0.9); text-decoration: none; }
#landing-footer .footer-bottom-line a:hover { color: var(--white); text-decoration: underline; }
#landing-footer .dot { display: inline-block; vertical-align: middle; padding: 0 2px; opacity: 0.8; font-weight: 800; color: var(--white); }

/* SUBPAGE FOOTER (Sortiment, Kontakt)
   Separate minimal styling
   ════════════════════════════════════════════════ */
footer:not(#landing-footer) {
  padding: 40px 16px;
  text-align: center;
  background: var(--white);
  color: #777777;
}
footer:not(#landing-footer) .footer-contact { display: none; }
footer:not(#landing-footer) .footer-bottom { border: none; padding: 0; margin: 0; }
footer:not(#landing-footer) .footer-bottom-line { color: #777777; font-size: 0.45rem; line-height: 1.4; white-space: nowrap; }
footer:not(#landing-footer) .footer-bottom-line a { color: #777777; text-decoration: none; }
footer:not(#landing-footer) .dot { color: #777777; padding: 0 2px; font-weight: 500; }
.footer-image-spacer { display: none; }

/* ════════════════════════════════════════════════
   SORTIMENT PAGE
   ════════════════════════════════════════════════ */
.sortiment-header { 
  display: flex; 
  padding: 24px 0 12px; 
  background: var(--white);
  position: relative;
  z-index: 5;
  margin-bottom: 12px; /* Reduced space */
}
.sortiment-header-inner {
  display: flex; 
  align-items: center; 
  justify-content: space-between;
  gap: 8px;
  padding: 0 16px; 
  gap: 12px; 
  width: 100%;
  max-width: 1025px;
  margin: 0 auto;
}
.sortiment-header::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.04), transparent);
  pointer-events: none;
}
.sortiment-header-left { flex: 1; display: flex; flex-direction: column; gap: 16px; margin-bottom: 0; }
.sortiment-header-left h1 { font-size: 1.3rem; font-weight: 700; margin-bottom: 2px; letter-spacing: -0.03em; line-height: 1.1; white-space: nowrap; text-shadow: 0 2px 4px rgba(0,0,0,0.08); }
.sortiment-header-left .tag {
  color: var(--black);
  padding: 3px 6px;
  border-radius: 4px;
  border: 0.5px solid #e8e8e8;
  display: inline-block;
  font-size: 0.5rem;
  font-weight: 700;
  margin-bottom: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  width: fit-content;
  white-space: nowrap;
}
.sortiment-header-img { 
  max-width: 180px; 
  width: 48%; 
  object-fit: contain; 
  flex-shrink: 0; 
  filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1)); 
  transform: rotate(5deg) translateY(6px);
}

.tabs-section { padding: 10px 16px 2px; margin-bottom: 24px; }
.category-label { font-size: 0.45rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--black); font-weight: 800; margin-bottom: 14px; padding: 3px 6px; border-radius: 4px; border: 0.5px solid #e8e8e8; display: inline-block; }
.tabs { display: flex; gap: 24px; overflow-x: auto; padding-bottom: 6px; scrollbar-width: none; }
.tabs::-webkit-scrollbar { display: none; }
.tab { background: var(--white); border: 0.5px solid #e8e8e8; padding: 3px 8px; border-radius: 4px; font-size: 0.6rem; font-weight: 700; color: var(--black); white-space: nowrap; transition: all var(--transition); box-shadow: 0 1px 2px rgba(0,0,0,0.04); }
.tab.active { color: var(--red); border-color: rgba(204,0,0,0.4); box-shadow: 0 1px 4px rgba(204,0,0,0.1); }

.tab-content { display: none; }
.tab-content.active { display: block; }
.sortiment-body { padding: 12px 16px 16px; }
.product-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding-bottom: 16px; }
.product-card { 
  background: transparent; 
  display: flex; 
  flex-direction: column; 
  gap: 4px;
  max-width: 140px;
  justify-self: center;
}
.product-card-inner { 
  background: var(--white); 
  border-radius: 4px; 
  border: 0.5px solid #e8e8e8;
  position: relative; 
  padding: 12px 8px; 
  aspect-ratio: 1;
  display: flex; 
  align-items: center; 
  justify-content: center; 
  overflow: hidden;
  min-height: 0;
  box-shadow: 0 1px 2px rgba(0,0,0,0.04), inset 0 1px 0 rgba(255,255,255,0.9);
}
.halal-badge { position: absolute; top: 6px; right: 6px; background: #1b8e43; color: var(--white); border-radius: 50%; width: 22px; height: 22px; display: flex; align-items: center; justify-content: center; font-size: 9px; font-weight: 700; border: 1px solid rgba(255,255,255,0.2); }
.product-card img { width: 85%; height: 85%; object-fit: contain; flex-shrink: 1; min-height: 0; filter: drop-shadow(0 4px 8px rgba(0,0,0,0.08)); }
.product-card p { 
  margin: 0 -17px;
  padding: 6px; 
  font-size: 0.48rem;
  font-weight: 500;
  color: #777777;
  text-align: center; 
  border-radius: 4px; 
  border: 0.5px solid #e8e8e8;
  line-height: 1.1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* ── Product Showcase (new card design) ─────── */
.product-showcase { max-width: 600px; margin: 0 auto; }

.showcase-card {
  background: var(--white);
  border-radius: 6px;
  border: 0.5px solid #e8e8e8;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  overflow: hidden;
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}

.showcase-card-body { padding: 16px 16px 0; }

.showcase-card + .showcase-card { margin-top: 16px; }

.product-showcase .showcase-card:first-child {
  padding-bottom: 4px;
}

.product-showcase .showcase-card:first-child .showcase-card-body {
  padding: 12px 12px 0;
}

.product-showcase .showcase-card:first-child .showcase-title,
.product-showcase .showcase-card:first-child .showcase-desc {
  padding-left: 8px;
}

.product-showcase .showcase-card:first-child .showcase-media-inner {
  max-width: 40px;
}

.product-showcase .showcase-card:first-child .showcase-media img {
  width: 40px;
  height: 40px;
  margin: 4px 0 4px 8px;
}

.product-showcase .showcase-card:first-child .showcase-caption {
  margin-bottom: 2px;
}

.product-showcase .showcase-card:first-child .showcase-specs {
  padding: 12px 12px 0;
  gap: 24px;
  row-gap: 12px;
  column-gap: 24px;
}

.product-showcase .showcase-card:first-child .spec-row-full {
  margin-bottom: 2px;
}

.showcase-title {
  font-size: 0.6rem;
  font-weight: 700;
  color: var(--black);
  margin-bottom: 4px;
  text-align: left;
}

.showcase-desc {
  font-size: 0.45rem;
  color: #666;
  line-height: 1.5;
  font-weight: 700;
  margin: 0 0 8px;
  text-align: left;
}

.showcase-divider {
  border: none;
  height: 3px;
  background: #e8e8e8;
  margin: 8px 0 0;
  flex: 0 0 100%;
  width: 100%;
}

.showcase-card-body + .showcase-divider {
  margin: 0;
}



.showcase-media { text-align: left; }

.showcase-media-inner {
  display: inline-block;
  text-align: left;
  max-width: 60px;
}

.showcase-media img {
  display: block;
  width: 60px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0,0,0,0.1));
  margin: 12px 0;
}

.showcase-specs {
  padding: 12px 16px 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.spec-grid {
  padding: 12px 16px 16px;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  column-gap: 48px;
  row-gap: 8px;
  align-items: start;
}

.spec-grid-single {
  grid-template-columns: 1fr;
}

.spec-grid-header {
  display: contents;
}

.spec-grid-row {
  display: contents;
}

.spec-grid-header .spec-label {
  margin-bottom: 0;
}

.spec-grid-row .spec-value {
  line-height: 1.6;
}

.product-showcase .showcase-card:nth-child(n+2) .showcase-media-inner {
  max-width: 40px;
}

.product-showcase .showcase-card:nth-child(6) .showcase-media {
  display: flex;
  flex-wrap: wrap;
  column-gap: 32px;
  row-gap: 4px;
}

.product-showcase .showcase-card:nth-child(6) .showcase-media-inner:nth-child(2) {
  max-width: 80px;
}

.product-showcase .showcase-card:nth-child(6) .showcase-media-inner:nth-child(2) img {
  width: 80px;
  height: auto;
}

.product-showcase .showcase-card:nth-child(6) .showcase-caption {
  flex: 0 0 100%;
}

.product-showcase .showcase-card:nth-child(2) .spec-grid {
  grid-template-columns: 1fr 2fr 1fr;
}

.product-showcase .showcase-card:nth-child(n+2) .showcase-media img {
  width: 40px;
  height: 40px;
  margin: 4px 0 4px 8px;
}

.product-showcase .showcase-card:nth-child(n+2) .showcase-title,
.product-showcase .showcase-card:nth-child(n+2) .showcase-desc {
  padding-left: 8px;
}

.showcase-specs + .showcase-divider {
  margin: 0;
}

.spec-label {
  display: block;
  font-size: 0.45rem;
  font-weight: 500;
  color: var(--black);
  margin-bottom: 2px;
}

.spec-value {
  display: block;
  font-size: 0.45rem;
  font-weight: 700;
  color: #555;
  line-height: 2.4;
}



.spec-value-sub {
  font-weight: 500;
}

.spec-row-full {
  width: 100%;
  font-size: 0.45rem;
  font-weight: 700;
  color: #555;
  padding-left: 8px;
}

.spec-row-cal .spec-label,
.spec-row-pack .spec-label {
  margin-bottom: 12px;
}

.spec-row-pack .spec-value {
  margin-top: 24px;
}





.showcase-caption {
  display: block;
  font-size: 0.45rem;
  font-weight: 700;
  color: #555;
  padding-left: 8px;
}

/* Showcase responsive */
@media (min-width: 768px) {
  .product-showcase { max-width: 700px; margin: 0 auto; }
  .showcase-card { max-width: 420px; }
  .showcase-card-body { padding: 24px 24px 0; }
  .product-showcase .showcase-card:first-child .showcase-card-body { padding: 18px 18px 0; }
  .product-showcase .showcase-card:first-child .showcase-specs { padding: 12px 18px 0; }
  .product-showcase .showcase-card:nth-child(n+2) .showcase-media-inner { max-width: 60px; }
  .product-showcase .showcase-card:nth-child(n+2) .showcase-media img { width: 60px; height: 60px; }
  .showcase-title { font-size: 0.75rem; }
  .showcase-desc { font-size: 0.65rem; }
  .showcase-media-inner { max-width: 80px; }
  .showcase-media img { width: 80px; height: 80px; }
  .showcase-caption { font-size: 0.6rem; }
  .spec-row-full { font-size: 0.6rem; }
  .product-showcase .showcase-card:first-child .spec-row-full { font-size: 0.6rem; padding-left: 8px; }
  .spec-label { font-size: 0.55rem; }
  .spec-value { font-size: 0.55rem; }
  .spec-grid { column-gap: 56px; }
  .product-showcase .showcase-card:nth-child(2) .spec-grid { column-gap: 56px; }
  .product-showcase .showcase-card:nth-child(6) .showcase-media { column-gap: 40px; }
}

@media (min-width: 1025px) {
  .product-showcase { max-width: 800px; margin: 0 auto; }

  .showcase-card { max-width: 500px; }

  .showcase-card + .showcase-card { margin-top: 32px; }

  .showcase-card-body { padding: 32px 32px 0; }
  .product-showcase .showcase-card:first-child .showcase-card-body { padding: 24px 24px 0; }
  .product-showcase .showcase-card:first-child .showcase-specs { padding: 12px 24px 0; }
  .product-showcase .showcase-card:nth-child(n+2) .showcase-media-inner { max-width: 80px; }
  .product-showcase .showcase-card:nth-child(n+2) .showcase-media img { width: 80px; height: 80px; margin: 8px 0 8px 12px; }
  .product-showcase .showcase-card:first-child .showcase-media-inner { max-width: 80px; }
  .product-showcase .showcase-card:first-child .showcase-media img { width: 80px; height: 80px; margin: 8px 0 8px 12px; }
  .product-showcase .showcase-card:first-child { padding-bottom: 8px; }

  .product-showcase .showcase-card:nth-child(n+2) .showcase-title,
  .product-showcase .showcase-card:nth-child(n+2) .showcase-desc { padding-left: 12px; }
  .product-showcase .showcase-card:first-child .showcase-title,
  .product-showcase .showcase-card:first-child .showcase-desc { padding-left: 12px; }
  .product-showcase .showcase-card:first-child .showcase-caption { margin-bottom: 4px; }
  .product-showcase .showcase-card:first-child .spec-row-full { margin-bottom: 4px; }

  .showcase-title { font-size: 1rem; }
  .showcase-desc { font-size: 0.85rem; margin-bottom: 12px; }
  .showcase-media-inner { max-width: 120px; }
  .showcase-media img { width: 120px; height: 120px; }
  .showcase-caption { font-size: 0.85rem; }
  .spec-label { font-size: 0.75rem; }
  .spec-value { font-size: 0.75rem; }
  .showcase-divider { height: 4px; margin: 12px 0 0; }

  .spec-grid { padding: 16px 32px 24px; column-gap: 80px; row-gap: 10px; }
  .spec-grid-single { padding: 16px 32px 24px; }
  .spec-row-full { font-size: 0.85rem; }
  .product-showcase .showcase-card:first-child .spec-row-full { font-size: 0.85rem; padding-left: 8px; }
  .product-showcase .showcase-card:nth-child(2) .spec-grid { column-gap: 80px; }
  .product-showcase .showcase-card:nth-child(6) .showcase-media { column-gap: 48px; }
  .product-showcase .showcase-card:nth-child(6) .showcase-media-inner:nth-child(2) {
    max-width: 140px;
  }
  .product-showcase .showcase-card:nth-child(6) .showcase-media-inner:nth-child(2) img {
    width: 140px;
    height: auto;
  }
}

.wip-card { border: 0.5px solid #e8e8e8; border-radius: 4px; padding: 20px; text-align: center; color: var(--gray-mid); font-size: 0.9rem; background: var(--white); position: relative; aspect-ratio: 1; display: flex; align-items: center; justify-content: center; }
.wip-badge { position: absolute; top: 8px; left: 8px; color: var(--black); font-size: 0.5rem; font-weight: 700; }
.pute-heading { font-size: 0.6rem; font-weight: 700; margin-bottom: 14px; padding: 10px 16px; border: 0.5px solid #e8e8e8; border-radius: 4px; display: block; color: var(--black); background: var(--white); }
.pute-section { margin-bottom: 14px; border: 0.5px solid #e8e8e8; border-radius: 4px; padding: 16px; background: var(--white); }
.pute-subtitle { font-weight: 700; font-size: 0.6rem; color: var(--black); margin: 14px 0 7px; }
.pute-section ul { list-style: disc; padding-left: 16px; }
.pute-section li { margin-bottom: 4px; font-size: 0.6rem; color: var(--black); font-weight: 700; line-height: 1.3; }
.sortiment-cta { text-align: left; padding: 32px 16px 48px; }

/* Subpage footers now use the global footer style from above */

/* ════════════════════════════════════════════════
   KONTAKT PAGE
   ════════════════════════════════════════════════ */
.kontakt-page {
  background: var(--white);
  min-height: 100vh;
  padding: 100px 16px 60px;
}

.form-wrapper {
  padding: 0;
  max-width: 560px;
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

.kontakt-top {
  position: absolute;
  top: -83px;
  right: 21px;
  z-index: 10;
  pointer-events: none;
}

.kontakt-chickens {
  height: 90px;
  width: auto;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.15));
}

.form-card {
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  padding: 32px 24px;
  border: 0.5px solid #e8e8e8;
  position: relative;
  overflow: visible;
}

.form-card h1 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 6px;
  color: var(--black);
  letter-spacing: -0.02em;
  text-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.form-subtitle {
  font-size: 0.6rem;
  color: gray;
  margin-bottom: 20px;
  line-height: 1.5;
  font-weight: 700;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-bottom: 16px;
}

.form-group label {
  font-size: 0.6rem;
  font-weight: 700;
  color: #555;
}

.req {
  display: inline;
  color: var(--red);
  margin-left: 2px;
  font-weight: 700;
  font-size: 0.85em;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 8px 10px;
  border: 0.5px solid #ccc;
  border-radius: 4px;
  font-family: inherit;
  font-size: 0.7rem;
  color: var(--black);
  background: #f9f9f9;
  width: 100%;
  transition: all var(--transition);
}

.form-group input::placeholder,
.form-group select::placeholder,
.form-group textarea::placeholder {
  color: #999;
  font-size: 0.6rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.1);
}

.form-group textarea {
  resize: vertical;
  min-height: 100px;
}

.checkbox-group {
  margin-top: 8px;
  margin-bottom: 24px;
}

.checkbox-group label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.55rem;
  color: #999;
  cursor: pointer;
  line-height: 1.5;
  font-weight: 500;
}

.checkbox-group input[type="checkbox"] {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--red);
}

.checkbox-group a {
  color: var(--red);
  text-decoration: none;
  font-weight: 600;
}

.checkbox-group a:hover {
  text-decoration: underline;
}

.form-card .btn-red {
  padding: 10px 22px;
  font-size: 0.75rem;
}


.form-note {
  font-size: 0.55rem;
  color: var(--gray-mid);
  margin-top: 12px;
}

#form-success {
  display: none;
  text-align: center;
  padding: 32px 20px;
  color: var(--red);
  font-size: 1rem;
  font-weight: 600;
}

@media (min-width: 600px) {
  .form-row {
    grid-template-columns: 1fr 1fr;
  gap: 24px;
  }

  .form-card {
    padding: 40px 36px;
  }

  .form-card h1 {
    font-size: 1.4rem;
    font-weight: 700;
  }

  .kontakt-chickens {
    height: 85px;
  }

  .kontakt-top {
    top: -109px;
    right: 26px;
  }

  .kontakt-page { padding-top: 115px; }
}

/* ════════════════════════════════════════════════
   DESKTOP — min-width: 768px
   ════════════════════════════════════════════════ */
@media (min-width: 768px) {
  .kontakt-page { padding-top: 140px; }
  .form-wrapper { max-width: 640px; }
  .form-card { border-radius: 4px; }
  .form-card h1 { font-size: 1.6rem; }
  .form-subtitle { font-size: 0.75rem; margin-bottom: 28px; }
  .form-group label { font-size: 0.7rem; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 0.8rem; padding: 10px 12px; }
  .checkbox-group label { font-size: 0.65rem; }
  .form-card .btn-red { font-size: 0.85rem; padding: 12px 28px; }
  .form-note { font-size: 0.65rem; }
  .kontakt-top { top: -109px; right: 26px; }
  .kontakt-chickens { height: 110px; }

  /* Navbar */
  .navbar { padding: 0 5%; height: 70px; }
  .navbar-links { display: none; }
  #hamburger { display: block !important; }
  .mobile-menu { top: 70px; }
  .navbar-brand img {
    height: 70px;
    margin-bottom: -20px;
    background-color: white;
    padding: 1px;
    border: 1.5px solid #eee;
  }
  .navbar-brand { font-size: 1.1rem; padding-bottom: 10px; gap: 6px; }
  .navbar-brand span { max-width: none; }
  .navbar-right { align-self: center; align-items: center; padding-bottom: 0; }
  /* No horizontal links yet */

  /* Container */
  .container { max-width: 1025px; margin: 0 auto; width: 100%; }
  .hero-inner { max-width: 1025px; margin: 0 auto; width: 100%; position: relative; display: flex; align-items: flex-end; min-height: 320px; }
  .world-inner { max-width: 1025px; margin: 0 auto; width: 100%; }
  .sortiment-body, .sortiment-header-inner, .tabs-section, .sortiment-cta, .form-wrapper { max-width: 1025px; margin: 0 auto; width: 100%; }
  .stats-bar { }

  /* Hero */
  .hero { min-height: 600px; padding: 100px 5% 80px; background: url('../assets/farm.jpg') center 85% / 100% auto no-repeat; }
  .hero-content { max-width: 65%; padding: 0; }
  .hero-content .tag { font-size: 0.8rem; }
  .hero-content h1 { font-size: 2.8rem; }
  .hero-chickens {
    display: block;
    position: absolute;
    right: 0;
    bottom: 0;
    height: 85%;
    max-height: 320px;
    width: auto;
    z-index: 3;
    object-fit: contain;
    object-position: bottom right;
  }

  /* Stats */
  .stats-bar { padding: 16px 24px; margin-left: 5%; margin-right: 5%; margin-top: 32px; }
  .stat { padding: 28px 12px; }
  .stat-number { font-size: 2.8rem; }
  .stat-label { font-size: 0.65rem; }
  html[lang="en"] .stat-label { font-size: 0.65rem; letter-spacing: normal; }
  .stats-bar-chicken { height: 350px; right: 0; transform: translateY(-46%); }
  .stats-bar::after { width: 350px; height: 350px; right: -7px; transform: translateY(-48%) scaleY(0.27) skewX(-19deg) rotate(-8deg); }

  /* Icons section */
  .product-icons { padding: 64px 10%; }
  .icons-img { max-width: 440px; margin: 0 auto 32px; }
  .product-icons p { max-width: 600px; margin: 0 0 24px 0; text-align: left; font-size: 0.85rem; }
  .product-icons .btn-red { display: block; width: fit-content; margin: 0; }

  /* B2B */
  .b2b { padding: 64px 10%; }
  .b2b .tag { font-size: 0.9rem; }
  .b2b h2 { font-size: 1.6rem; margin-bottom: 60px; }
  .b2b-icons { gap: 0; justify-content: space-around; margin-bottom: 80px; }
  .b2b-item { min-height: 180px; max-width: 180px; padding: 24px 14px; }
  .b2b-item span { font-size: 0.65rem; }
  .b2b-icon { width: 40px; height: 40px; }
  .b2b-icon-img { width: 90px; height: 90px; }
#b2b-truck { width: 100px; height: 100px; }
#b2b-truck ~ span { margin-top: -5px; }
  .btn-red { padding: 12px 34px; font-size: 0.9rem; }
  .b2b .btn-red, .product-icons .btn-red { display: block; width: fit-content; font-size: 0.9rem; padding: 12px 34px; margin: 16px 0 0 0; }

  /* World */
  .world-text .tag { font-size: 0.9rem; }
  .world-text h2 { font-size: 2rem; }
  .world-text p { font-size: 0.8rem; }
  html[lang="en"] .world-text h2,
  html[lang="tr"] .world-text h2 { font-size: 1.8rem; }
  html[lang="en"] .world-text p,
  html[lang="tr"] .world-text p { font-size: 0.75rem; }
  .world::before { inset: -100%; transform: rotate(90deg) translateX(19%); background: url('../assets/grass.webp') center center / cover no-repeat; }

  /* About */
  .about { padding: 64px 10%; }
  .about .tag { font-size: 0.9rem; }
  .about > h2 { font-size: 2rem; }
  .about-text-top { font-size: 0.8rem; }
  .about-logo { width: 200px; }
  .about-details { gap: 40px; justify-content: center; }
  .about-details p br { display: none; }
  .about-info p { font-size: 0.8rem; }

  /* Landing Page Footer Tablet Adjustments */
  #landing-footer { background-position: center 35%; }
  #landing-footer .footer-contact { padding: 64px 10%; max-width: none; }
  #landing-footer .footer-cols { gap: 40px; max-width: none; }
  #landing-footer .footer-cols div { max-width: none; }
  #landing-footer .footer-cols { gap: 100px; justify-content: center; text-align: center; }
  #landing-footer .footer-cols div { flex: none; }
  #landing-footer .footer-cols div p,
  #landing-footer .footer-cols div:nth-child(2) p { padding-left: 0; }
  #landing-footer .footer-cols strong { font-size: 0.75rem; }
  #landing-footer .footer-cols p, 
  #landing-footer .footer-cols a { font-size: 0.75rem; white-space: normal; }
  #landing-footer .footer-contact h3 { font-size: 1.1rem; }
  #landing-footer .footer-bottom { padding: 140px 10% 24px; max-width: none; }
  #landing-footer .footer-bottom-line { font-size: 0.65rem; }

  /* Footer for subpages in tablet */
  footer:not(#landing-footer) { padding: 48px 10%; }
  footer:not(#landing-footer) .footer-bottom-line { font-size: 0.65rem; }

  /* Sortiment */
  .sortiment-header { padding: 48px 0 32px; }
  .sortiment-header-inner { padding: 0 5%; }
  .sortiment-header-left h1 { font-size: 2rem; }
  .sortiment-header-left .tag { font-size: 0.75rem; }
  .sortiment-header-img { max-width: 260px; width: 30%; }
  .tabs-section { padding: 0 5%; margin-bottom: 32px; }
  .category-label { font-size: 0.6rem; }
  .tab { font-size: 0.75rem; padding: 8px 18px; }
  .sortiment-body { padding: 40px 5% 80px; }
  .wip-badge { font-size: 0.6rem; }
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .product-card { max-width: 200px; }
  .product-card-inner { aspect-ratio: 1; padding: 20px 16px; }
  .product-card img { width: 85%; height: 85%; }
  .product-card p { font-size: 0.6rem; }
  .pute-heading { font-size: 0.75rem; padding: 14px 24px; }
  .pute-section { padding: 28px; }
  .pute-subtitle { font-size: 0.7rem; }
  .pute-section li { font-size: 0.7rem; }
  .sortiment-cta { text-align: center; padding: 48px 5% 64px; }

  /* Kontakt */
  .kontakt-page { min-height: calc(100vh - 60px); }
  .form-wrapper { padding: 0 5% 60px; }
  .form-card { max-width: 600px; margin: 0 auto; padding: 40px 36px 32px; }
  .form-card h1 { font-size: 1.6rem; }
  .form-subtitle { font-size: 0.65rem; }
  .form-group label { font-size: 0.65rem; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 0.8rem; padding: 10px 12px; }
}

/* ════════════════════════════════════════════════
   DESKTOP — min-width: 1025px
   Show full navigation links, larger spacing
   ════════════════════════════════════════════════ */
@media (min-width: 1025px) {
  .navbar { padding: 0 5%; }
  .navbar-brand { font-size: 1rem; padding-bottom: 8px; gap: 45px; }
  .navbar-links { display: flex; gap: 32px; align-items: flex-end; padding-bottom: 8px; margin-left: auto; margin-right: 32px; }
  .navbar-links a { font-weight: 600; font-size: 1rem; color: var(--text); transition: color var(--transition); }
  .navbar-links a:hover, .navbar-links a.active { color: var(--red); }
  #hamburger, .mobile-menu { display: none !important; }

  /* Hero */
  .hero { min-height: 600px; padding: 120px 10% 80px; background: url('../assets/farm.jpg') center 78% / 100% auto no-repeat; }
  .hero-content { max-width: 65%; }
  .hero-content .tag { font-size: 0.9rem; }
  .hero-content h1 { font-size: 3.5rem; }
  .hero-chickens { max-height: 500px; }

  /* Stats */
  .stats-bar { margin-left: 10%; margin-right: 10%; padding: 20px 32px; margin-top: 70px; }
  .stat-number { font-size: 3.2rem; }
  .stat-label { font-size: 0.7rem; }
  html[lang="en"] .stat-label { font-size: 0.7rem; letter-spacing: normal; }
  .stats-bar-chicken { height: 400px; right: 50px; transform: translateY(-40%); }
  .stats-bar::after { width: 400px; height: 400px; right: 43px; transform: translateY(-42%) scaleY(0.2) skewX(-19deg) rotate(-8deg); }

  /* Product icons */
  .product-icons { padding: 80px 15%; }
  .icons-img { margin: 0 auto 75px; }
  .product-icons p { font-size: 1rem; max-width: 700px; }
  /* B2B */
  .b2b { padding: 80px 15%; }
  .b2b .tag { font-size: 1rem; }
  .b2b h2 { font-size: 2rem; margin-bottom: 80px; }
  .b2b-icons { gap: 0; }
  .b2b-item { min-height: 200px; max-width: 200px; padding: 28px 16px; }
  .b2b-item span { font-size: 0.75rem; }
  .b2b-icon-img { width: 100px; height: 100px; }
  #b2b-truck { width: 110px; height: 110px; }
  .btn-red { padding: 14px 40px; font-size: 1rem; }
  .b2b .btn-red, .product-icons .btn-red { display: block; width: fit-content; font-size: 1rem; padding: 14px 40px; margin: 16px 0 0 0; }

  /* World */
  .world-text .tag { font-size: 1rem; }
  .world-text h2 { font-size: 2.4rem; }
  .world-text p { font-size: 0.9rem; }
  html[lang="en"] .world-text h2,
  html[lang="tr"] .world-text h2 { font-size: 2.2rem; }
  html[lang="en"] .world-text p,
  html[lang="tr"] .world-text p { font-size: 0.85rem; }
  .world::before { inset: -150%; transform: rotate(90deg) translateX(19%); background: url('../assets/grass.webp') center center / cover no-repeat; }

  /* About */
  .about { padding: 80px 15%; }
  .about .tag { font-size: 1rem; }
  .about h2 { font-size: 2.4rem; }
  .about-text-top { font-size: 0.9rem; }
  .about-logo { width: 220px; }
  .about-details { gap: 48px; justify-content: center; }
  .about-details p br { display: none; }
  .about-info p { font-size: 0.9rem; }

  /* Footer */
  #landing-footer .footer-cols { gap: 300px; justify-content: center; text-align: center; margin-top: 18px; }
  #landing-footer .footer-cols div { flex: none; }
  #landing-footer .footer-cols strong { font-size: 0.85rem; }
  #landing-footer .footer-cols p,
  #landing-footer .footer-cols a { font-size: 0.85rem; }
  #landing-footer .footer-contact h3 { font-size: 1.2rem; }
  #landing-footer .footer-bottom-line { font-size: 0.75rem; }
  footer:not(#landing-footer) .footer-bottom-line { font-size: 0.7rem; }

  /* Sortiment */
  .sortiment-header { padding: 60px 0 40px; }
  .sortiment-header-left h1 { font-size: 2.8rem; }
  .sortiment-header-left .tag { font-size: 0.85rem; }
  .sortiment-header-img { max-width: 300px; width: 28%; }
  .tabs-section { margin-bottom: 40px; }
  .category-label { font-size: 0.7rem; }
  .tab { font-size: 0.85rem; padding: 10px 22px; }
  .sortiment-body { padding: 48px 5% 100px; }
  .wip-badge { font-size: 0.7rem; }
  .product-grid { grid-template-columns: repeat(4, 1fr); gap: 32px; }
  .product-card { max-width: 220px; }
  .product-card-inner { padding: 24px 20px; }
  .product-card img { width: 85%; height: 85%; }
  .product-card p { font-size: 0.7rem; }
  .pute-heading { font-size: 0.85rem; padding: 16px 28px; }
  .pute-section { padding: 36px; }
  .pute-subtitle { font-size: 0.8rem; }
  .pute-section li { font-size: 0.8rem; }
  .sortiment-cta { text-align: center; padding: 56px 5% 80px; }

  /* Kontakt */
  .form-wrapper { max-width: 720px; }
  .form-card { max-width: 720px; padding: 44px 44px 40px; }
  .form-card h1 { font-size: 2rem; }
  .form-subtitle { font-size: 0.85rem; margin-bottom: 32px; }
  .form-group label { font-size: 0.8rem; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 0.9rem; padding: 12px 14px; }
  .checkbox-group label { font-size: 0.75rem; }
  .form-card .btn-red { font-size: 0.95rem; padding: 14px 34px; }
  .form-note { font-size: 0.75rem; }
  .kontakt-top { top: -125px; right: 32px; }
  .kontakt-chickens { height: 135px; }
}

/* Active nav underline helper */
[data-page="home"]      .nav-home,
[data-page="sortiment"] .nav-sortiment,
[data-page="kontakt"]   .nav-kontakt { color: var(--red); }