:root {
  --green-950: #052f24;
  --green-900: #073e2d;
  --green-800: #0b5138;
  --green-700: #0f6947;
  --green-100: #e5efe8;
  --red-700: #b91f24;
  --red-600: #cf2027;
  --red-500: #e22a30;
  --cream-50: #fdfaf3;
  --cream-100: #f8f2e7;
  --cream-200: #efe4d1;
  --gold-500: #c8a35b;
  --gold-300: #dec38a;
  --ink: #153329;
  --muted: #66746e;
  --white: #ffffff;
  --border: rgba(14, 72, 51, 0.14);
  --shadow-sm: 0 12px 28px rgba(7, 49, 35, 0.09);
  --shadow-lg: 0 28px 70px rgba(4, 35, 25, 0.18);
  --radius-sm: 12px;
  --radius-md: 20px;
  --radius-lg: 30px;
  --container: 1320px;
  --header-height: 88px;
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--cream-50);
  font-family: var(--sans);
  line-height: 1.6;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

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

button {
  color: inherit;
}

svg {
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 9999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--green-900);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 0.2s ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 52px;
  padding: 13px 24px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 0.93rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button svg {
  width: 21px;
  height: 21px;
}

.button-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--red-500), var(--red-700));
  border-color: rgba(255, 255, 255, 0.14);
  box-shadow: 0 12px 28px rgba(185, 31, 36, 0.28);
}

.button-primary:hover {
  box-shadow: 0 16px 34px rgba(185, 31, 36, 0.38);
}

.button-ghost {
  color: var(--white);
  background: rgba(7, 73, 51, 0.46);
  border-color: rgba(255, 255, 255, 0.65);
  backdrop-filter: blur(10px);
}

.button-ghost:hover {
  background: rgba(7, 73, 51, 0.72);
  border-color: var(--white);
}

.button-light {
  color: var(--green-900);
  background: var(--cream-50);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.16);
}

.section {
  position: relative;
  padding: 118px 0;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 54px;
  text-align: center;
}

.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 14px;
  color: var(--red-600);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.section-kicker::before,
.eyebrow::before {
  width: 28px;
  height: 1px;
  content: "";
  background: currentColor;
}

.section-heading h2,
.about-copy h2,
.wholesale-copy h2,
.contact-copy h2 {
  margin: 0;
  color: var(--green-950);
  font-family: var(--serif);
  font-size: clamp(2.2rem, 4.2vw, 4.1rem);
  font-weight: 500;
  line-height: 1.07;
  letter-spacing: -0.03em;
}

.section-heading > p {
  max-width: 670px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 1.02rem;
}

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

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  transition: box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  box-shadow: 0 12px 28px rgba(5, 47, 36, 0.12);
}

.utility-bar {
  color: rgba(255, 255, 255, 0.86);
  background: var(--green-950);
  font-size: 0.74rem;
}

.utility-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 34px;
}

.utility-inner p {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
}

.utility-dot {
  width: 6px;
  height: 6px;
  background: #d9bd76;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(217, 189, 118, 0.12);
}

.fair-mini {
  color: var(--gold-300);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-shell {
  background: rgba(253, 250, 243, 0.96);
  border-bottom: 1px solid rgba(7, 62, 45, 0.08);
  backdrop-filter: blur(16px);
}

.nav-inner {
  display: grid;
  grid-template-columns: 230px 1fr auto;
  align-items: center;
  min-height: var(--header-height);
}

.brand {
  display: flex;
  align-items: center;
  width: 180px;
}

.brand img {
  width: 100%;
  max-height: 76px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(20px, 2.6vw, 42px);
}

.desktop-nav a {
  position: relative;
  color: var(--green-950);
  font-family: var(--serif);
  font-size: 0.96rem;
  font-weight: 600;
  white-space: nowrap;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--red-600);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.is-current::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 15px;
}

.language-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #87918d;
  font-size: 0.78rem;
}

.lang-button {
  padding: 5px 2px;
  color: #77817d;
  background: transparent;
  border: 0;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
}

.lang-button.is-active {
  color: var(--green-950);
}

.header-socials {
  display: flex;
  gap: 8px;
}

.header-socials a {
  display: grid;
  width: 34px;
  height: 34px;
  color: var(--green-900);
  border: 1px solid var(--border);
  border-radius: 50%;
  place-items: center;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.header-socials a:hover {
  color: var(--white);
  background: var(--green-800);
  transform: translateY(-2px);
}

.header-socials svg {
  width: 17px;
  height: 17px;
}

.header-socials a[aria-label="Facebook"] svg,
.mobile-social-links a:last-child svg,
.contact-card:nth-child(4) svg {
  fill: currentColor;
  stroke: none;
}

.header-cta {
  min-height: 44px;
  padding: 10px 18px;
  font-size: 0.8rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 0;
  background: var(--green-900);
  border: 0;
  border-radius: 50%;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  border-radius: 2px;
}

.mobile-menu,
.menu-backdrop {
  display: none;
}

/* Hero */
.hero {
  position: relative;
  height: clamp(540px, 62svh, 630px);
  min-height: 540px;
  margin-top: calc(var(--header-height) + 34px);
  color: var(--white);
  background: var(--green-950);
  overflow: hidden;
}

.hero-slides,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slide {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease, visibility 0.8s ease;
}

.hero-slide.is-active {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.hero-featured-art {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: var(--green-950);
}

.hero-featured-base,
.hero-featured-mix,
.hero-featured-products {
  position: absolute;
  display: block;
  object-fit: cover;
}

.hero-featured-base {
  inset: 0;
  width: 100%;
  height: 100%;
  object-position: center 43%;
  transform: scale(1.035);
  transition: transform 8s linear;
}

.hero-featured-mix {
  top: -5%;
  right: -1%;
  width: 35%;
  height: 112%;
  object-position: center 42%;
  filter: saturate(1.05) contrast(1.03) drop-shadow(-18px 18px 26px rgba(1, 25, 17, 0.28));
  opacity: 0.98;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 100%);
  mask-image: linear-gradient(90deg, transparent 0%, #000 24%, #000 100%);
}

.hero-featured-products {
  right: -8%;
  bottom: -5%;
  width: 76%;
  height: 52%;
  object-position: center 38%;
  filter: saturate(1.08) contrast(1.03) drop-shadow(-14px -10px 28px rgba(1, 28, 19, 0.28));
  -webkit-mask-image: linear-gradient(0deg, #000 0%, #000 72%, transparent 100%);
  mask-image: linear-gradient(0deg, #000 0%, #000 72%, transparent 100%);
}

.hero-slide.is-active .hero-featured-base {
  transform: scale(1.075);
}

.hero-image {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 45%;
  transform: scale(1.035);
  transition: transform 8s linear;
}

.hero-slide.is-active .hero-image {
  transform: scale(1.09);
}

.hero-image-biber {
  object-position: center 43%;
}

.hero-image-sivri {
  object-position: center 42%;
}

.hero-image-mix {
  object-position: center 40%;
}

.hero-image-pack {
  object-position: center 46%;
}

.hero-image-showroom {
  object-position: center 52%;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 42, 30, 0.94) 0%, rgba(4, 55, 38, 0.82) 33%, rgba(4, 55, 38, 0.34) 58%, rgba(4, 28, 20, 0.12) 100%),
    linear-gradient(0deg, rgba(4, 35, 25, 0.52), transparent 45%);
}

.hero-pack-slide .hero-overlay,
.hero-foodist-slide .hero-overlay {
  background:
    linear-gradient(90deg, rgba(3, 42, 30, 0.96) 0%, rgba(4, 55, 38, 0.88) 38%, rgba(4, 55, 38, 0.34) 65%, rgba(4, 28, 20, 0.2) 100%),
    linear-gradient(0deg, rgba(4, 35, 25, 0.52), transparent 50%);
}

.hero-featured .hero-overlay {
  background:
    linear-gradient(90deg, rgba(2, 43, 30, 0.98) 0%, rgba(3, 58, 40, 0.9) 34%, rgba(3, 55, 39, 0.34) 61%, rgba(3, 31, 22, 0.08) 100%),
    linear-gradient(0deg, rgba(3, 40, 28, 0.76), transparent 48%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 100%;
  padding-top: 8px;
  padding-bottom: 82px;
}

.hero-copy {
  max-width: 720px;
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.hero-slide.is-active .hero-copy {
  opacity: 1;
  transform: translateY(0);
}

.hero .eyebrow {
  color: var(--gold-300);
}

.hero-copy h1,
.hero-copy h2 {
  max-width: 760px;
  margin: 0;
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(3.5rem, 6.3vw, 6.7rem);
  font-weight: 500;
  line-height: 0.96;
  letter-spacing: -0.055em;
  text-wrap: balance;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}

.hero-copy p {
  max-width: 580px;
  margin: 26px 0 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.45vw, 1.28rem);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.hero-actions .button {
  min-width: 190px;
}

.hero-fair-chip {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-top: 22px;
  padding: 11px 15px;
  color: var(--gold-300);
  background: rgba(4, 49, 34, 0.7);
  border: 1px solid rgba(222, 195, 138, 0.72);
  border-radius: 12px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.055em;
  backdrop-filter: blur(10px);
}

.hero-fair-chip svg {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
}

.fair-date-card {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 30px;
  padding: 15px 20px;
  background: rgba(5, 47, 36, 0.75);
  border: 1px solid rgba(222, 195, 138, 0.68);
  border-radius: 14px;
  backdrop-filter: blur(12px);
}

.fair-date-card svg {
  width: 28px;
  height: 28px;
  color: var(--gold-300);
}

.fair-date-card div {
  display: grid;
}

.fair-date-card strong {
  color: var(--gold-300);
  letter-spacing: 0.05em;
}

.fair-date-card span {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.8rem;
}

.hero-controls {
  position: absolute;
  bottom: 35px;
  left: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 16px;
  transform: translateX(-50%);
}

.slider-arrow {
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--white);
  background: rgba(6, 58, 41, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 50%;
  cursor: pointer;
  backdrop-filter: blur(10px);
  place-items: center;
  transition: background 0.2s ease, transform 0.2s ease;
}

.slider-arrow:hover {
  background: var(--red-600);
  transform: scale(1.05);
}

.slider-arrow svg {
  width: 18px;
  height: 18px;
}

.slider-dots {
  display: flex;
  align-items: center;
  gap: 9px;
}

.slider-dot {
  position: relative;
  width: 10px;
  height: 10px;
  padding: 0;
  background: rgba(255, 255, 255, 0.46);
  border: 0;
  border-radius: 99px;
  cursor: pointer;
  transition: width 0.25s ease, background 0.25s ease;
}

.slider-dot.is-active {
  width: 34px;
  background: var(--gold-300);
}

.slider-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 5;
  height: 3px;
  background: rgba(255, 255, 255, 0.17);
}

.slider-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--gold-300);
}

.slider-progress span.is-running {
  animation: progress 6.5s linear forwards;
}

@keyframes progress {
  to { width: 100%; }
}

/* Trust */
.trust-strip {
  position: relative;
  z-index: 8;
  background: var(--cream-100);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 -6px 30px rgba(4, 35, 25, 0.08);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 112px;
  padding: 20px 30px;
  border-right: 1px solid var(--border);
}

.trust-item:first-child {
  border-left: 1px solid var(--border);
}

.trust-item svg {
  flex: 0 0 auto;
  width: 43px;
  height: 43px;
  color: var(--green-700);
  stroke-width: 1.5;
}

.trust-item div {
  display: grid;
  gap: 2px;
}

.trust-item strong {
  color: var(--green-950);
  font-family: var(--serif);
  font-size: 1.03rem;
  font-weight: 600;
}

.trust-item span {
  color: var(--muted);
  font-size: 0.73rem;
}

/* Products */
.products-section {
  background:
    radial-gradient(circle at 8% 12%, rgba(15, 105, 71, 0.07), transparent 23%),
    radial-gradient(circle at 92% 80%, rgba(201, 29, 34, 0.06), transparent 23%),
    var(--cream-50);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 25px;
}

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(7, 62, 45, 0.11);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.product-card:hover {
  border-color: rgba(15, 105, 71, 0.32);
  box-shadow: var(--shadow-lg);
  transform: translateY(-8px);
}

.product-image-wrap {
  position: relative;
  display: grid;
  height: 365px;
  padding: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(248, 242, 231, 0.86)),
    var(--cream-100);
  border-bottom: 1px solid var(--border);
  place-items: center;
  overflow: hidden;
}

.product-image-wrap::after {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 34px;
  height: 34px;
  content: "";
  border-top: 1px solid rgba(200, 163, 91, 0.55);
  border-right: 1px solid rgba(200, 163, 91, 0.55);
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 18px rgba(5, 47, 36, 0.15));
  transition: transform 0.35s ease;
}

.product-card:hover .product-image-wrap img {
  transform: scale(1.035);
}

.product-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 24px 24px 22px;
}

.product-meta {
  color: var(--red-600);
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-body h3 {
  margin: 8px 0 10px;
  color: var(--green-950);
  font-family: var(--serif);
  font-size: 1.35rem;
  font-weight: 600;
  line-height: 1.15;
}

.product-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.6;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 22px;
}

.product-footer strong {
  color: var(--green-800);
  font-size: 0.9rem;
}

.product-offer {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 0;
  color: var(--red-600);
  background: transparent;
  border: 0;
  font-size: 0.76rem;
  font-weight: 800;
  cursor: pointer;
}

.product-offer span:last-child {
  font-size: 1.1rem;
  transition: transform 0.2s ease;
}

.product-offer:hover span:last-child {
  transform: translateX(4px);
}

/* About */
.about-section {
  background: var(--white);
  overflow: hidden;
}

.about-section::before {
  position: absolute;
  top: -160px;
  right: -160px;
  width: 440px;
  height: 440px;
  content: "";
  border: 1px solid rgba(200, 163, 91, 0.2);
  border-radius: 50%;
  box-shadow: 0 0 0 46px rgba(200, 163, 91, 0.05), 0 0 0 92px rgba(200, 163, 91, 0.035);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.06fr 0.94fr;
  align-items: center;
  gap: clamp(50px, 7vw, 104px);
}

.about-media {
  position: relative;
  min-height: 680px;
}

.about-main-image,
.about-small-image {
  position: absolute;
  margin: 0;
  background: var(--cream-100);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.about-main-image {
  top: 0;
  right: 70px;
  bottom: 70px;
  left: 0;
}

.about-main-image img,
.about-small-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-main-image img {
  object-position: center;
}

.about-small-image {
  right: 0;
  bottom: 0;
  width: 270px;
  height: 310px;
  border: 8px solid var(--white);
}

.about-small-image img {
  object-position: center 45%;
}

.about-seal {
  position: absolute;
  top: 40px;
  right: 24px;
  display: grid;
  width: 122px;
  height: 122px;
  color: var(--white);
  background: var(--red-600);
  border: 7px solid var(--white);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  text-align: center;
  place-content: center;
}

.about-seal::after {
  position: absolute;
  inset: 6px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
}

.about-seal span {
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
}

.about-seal strong {
  font-family: var(--serif);
  font-size: 1.08rem;
  font-weight: 600;
}

.about-copy > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.about-values {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid var(--border);
}

.about-values div {
  display: grid;
  grid-template-columns: 46px 1fr;
  align-items: center;
  min-height: 62px;
  border-bottom: 1px solid var(--border);
}

.about-values span {
  color: var(--red-600);
  font-family: var(--serif);
  font-size: 0.85rem;
}

.about-values strong {
  color: var(--green-900);
  font-size: 0.92rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 32px;
  padding-bottom: 5px;
  color: var(--green-800);
  border-bottom: 1px solid var(--green-800);
  font-weight: 800;
}

/* Process */
.process-section {
  color: var(--white);
  background:
    radial-gradient(circle at 18% 16%, rgba(222, 195, 138, 0.13), transparent 24%),
    linear-gradient(135deg, #063c2d, #052b22);
}

.section-heading-light h2 {
  color: var(--white);
}

.section-heading-light > p {
  color: rgba(255, 255, 255, 0.66);
}

.section-heading-light .section-kicker {
  color: var(--gold-300);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.process-card {
  position: relative;
  min-height: 330px;
  padding: 38px 32px;
  background: rgba(255, 255, 255, 0.025);
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  transition: background 0.25s ease, transform 0.25s ease;
}

.process-card:last-child {
  border-right: 0;
}

.process-card:hover {
  z-index: 2;
  background: rgba(255, 255, 255, 0.075);
  transform: translateY(-5px);
}

.process-card > span {
  position: absolute;
  top: 20px;
  right: 22px;
  color: rgba(255, 255, 255, 0.17);
  font-family: var(--serif);
  font-size: 2.6rem;
}

.process-card svg {
  width: 55px;
  height: 55px;
  margin-bottom: 38px;
  color: var(--gold-300);
  stroke-width: 1.35;
}

.process-card h3 {
  margin: 0 0 13px;
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 500;
}

.process-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.86rem;
}

/* Wholesale form */
.wholesale-section {
  background:
    radial-gradient(circle at 85% 15%, rgba(201, 29, 34, 0.07), transparent 27%),
    var(--cream-100);
}

.wholesale-grid {
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: start;
  gap: clamp(48px, 7vw, 100px);
}

.wholesale-copy {
  position: sticky;
  top: 160px;
}

.wholesale-copy > p,
.contact-copy > p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 1rem;
}

.contact-highlight {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  padding: 22px 24px;
  background: var(--white);
  border-left: 4px solid var(--red-600);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  box-shadow: var(--shadow-sm);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.contact-highlight:hover {
  border-color: var(--green-700);
  box-shadow: 0 16px 35px rgba(7, 49, 35, 0.13);
  transform: translateY(-2px);
}

.contact-highlight-copy {
  display: grid;
  gap: 3px;
}

.contact-highlight-copy > span {
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-highlight-copy strong {
  color: var(--green-900);
  font-family: var(--serif);
  font-size: 1.6rem;
  font-weight: 600;
}

.contact-highlight-icon {
  display: grid;
  width: 66px;
  height: 66px;
  color: #169b4c;
  background: var(--white);
  border: 1px solid rgba(22, 155, 76, 0.22);
  border-radius: 50%;
  box-shadow: 0 10px 24px rgba(22, 155, 76, 0.13);
  place-items: center;
}

.contact-highlight-icon svg {
  width: 37px;
  height: 37px;
  stroke-width: 1.7;
}

.wholesale-points {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.wholesale-points li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green-900);
  font-size: 0.88rem;
  font-weight: 700;
}

.wholesale-points li > span:first-child {
  display: grid;
  width: 25px;
  height: 25px;
  color: var(--white);
  background: var(--green-700);
  border-radius: 50%;
  font-size: 0.72rem;
  place-items: center;
}

.quote-form {
  padding: 42px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.form-head {
  margin-bottom: 28px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.form-head h3 {
  margin: 0;
  color: var(--green-950);
  font-family: var(--serif);
  font-size: 1.8rem;
  font-weight: 600;
}

.form-head p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.84rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.form-field {
  display: grid;
  gap: 8px;
}

.form-field-full {
  grid-column: 1 / -1;
}

.form-more {
  grid-column: 1 / -1;
}

.form-more > summary {
  display: none;
}

.form-more-grid,
.form-more:not([open]) > .form-more-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.form-field > span {
  color: var(--green-950);
  font-size: 0.76rem;
  font-weight: 800;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  color: var(--ink);
  background: #fcfaf5;
  border: 1px solid rgba(7, 62, 45, 0.16);
  border-radius: 10px;
  outline: 0;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input,
.form-field select {
  height: 52px;
  padding: 0 15px;
}

.form-field textarea {
  min-height: 100px;
  padding: 13px 15px;
  resize: vertical;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--green-700);
  box-shadow: 0 0 0 4px rgba(15, 105, 71, 0.1);
}

.form-error {
  margin: 16px 0 0;
  color: var(--red-700);
  font-size: 0.82rem;
  font-weight: 700;
}

.form-submit {
  width: 100%;
  margin-top: 24px;
}

/* Foodist */
.foodist-banner {
  position: relative;
  min-height: 400px;
  color: var(--white);
  background: var(--green-950);
  overflow: hidden;
}

.foodist-banner > img,
.foodist-banner-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.foodist-banner > img {
  object-fit: cover;
  object-position: center 52%;
}

.foodist-banner-overlay {
  background: linear-gradient(90deg, rgba(4, 42, 30, 0.95), rgba(4, 42, 30, 0.75) 52%, rgba(4, 42, 30, 0.46));
}

.foodist-banner-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 48px;
  min-height: 400px;
}

.foodist-banner-content > div:first-child > span {
  color: var(--gold-300);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.foodist-banner-content h2 {
  max-width: 720px;
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 500;
  line-height: 1.06;
}

.foodist-date {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-left: 34px;
  border-left: 1px solid rgba(255, 255, 255, 0.35);
}

.foodist-date strong {
  color: var(--gold-300);
  font-family: var(--serif);
  font-size: 3.4rem;
  font-weight: 500;
  line-height: 1;
}

.foodist-date span {
  font-size: 0.8rem;
  line-height: 1.5;
  white-space: pre-line;
}

/* Contact */
.contact-section {
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: start;
  gap: 90px;
}

.contact-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-card {
  display: grid;
  min-height: 170px;
  padding: 28px;
  background: var(--cream-50);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-card:hover {
  border-color: rgba(15, 105, 71, 0.35);
  box-shadow: var(--shadow-sm);
  transform: translateY(-4px);
}

.contact-card svg {
  width: 32px;
  height: 32px;
  margin-bottom: 24px;
  color: var(--red-600);
}

.contact-card > span {
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-card strong {
  margin-top: 3px;
  color: var(--green-950);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 600;
}

.contact-card .contact-address {
  font-family: var(--sans);
  font-size: 0.98rem;
  line-height: 1.45;
}

/* Footer */
.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: #032a20;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.85fr 0.8fr;
  gap: 70px;
  padding-top: 72px;
  padding-bottom: 62px;
}

.footer-brand img {
  width: 175px;
  max-height: 100px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.94;
}

.footer-brand p {
  max-width: 300px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.85rem;
}

.footer-links,
.footer-contact {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links strong,
.footer-contact > strong {
  margin-bottom: 11px;
  color: var(--gold-300);
  font-family: var(--serif);
  font-size: 1.05rem;
  font-weight: 600;
}

.footer-links a,
.footer-contact a,
.footer-contact span {
  font-size: 0.8rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: var(--white);
}

.footer-contact .footer-whatsapp {
  display: inline-flex;
  width: fit-content;
  margin-top: 8px;
  padding-bottom: 3px;
  color: #8ee3ae;
  border-bottom: 1px solid rgba(142, 227, 174, 0.5);
  font-weight: 700;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 78px;
  font-size: 0.7rem;
}

.demo-notice {
  color: rgba(255, 255, 255, 0.52);
  text-align: right;
}

.demo-notice a {
  color: var(--gold-300);
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 52px;
  padding: 0 18px;
  color: var(--white);
  background: #1fab59;
  border: 3px solid rgba(255, 255, 255, 0.78);
  border-radius: 99px;
  box-shadow: 0 14px 35px rgba(0, 0, 0, 0.24);
  font-size: 0.82rem;
  font-weight: 800;
  transition: transform 0.25s ease;
}

.floating-whatsapp:hover {
  transform: translateY(-4px);
}

.floating-whatsapp svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.8;
}

.mobile-action-bar {
  display: none;
}

/* Responsive */
@media (max-width: 1180px) {
  :root { --header-height: 80px; }
  .nav-inner { grid-template-columns: 180px 1fr auto; }
  .brand { width: 150px; }
  .desktop-nav { gap: 22px; }
  .desktop-nav a { font-size: 0.88rem; }
  .header-socials { display: none; }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .process-card { padding-inline: 24px; }
  .foodist-banner-content { gap: 30px; }
}

@media (max-width: 980px) {
  :root { --header-height: 76px; }
  .utility-bar { display: none; }
  .hero { margin-top: var(--header-height); }
  .nav-inner { grid-template-columns: 1fr auto; min-height: var(--header-height); }
  .desktop-nav,
  .header-cta { display: none; }
  .brand { width: 150px; }
  .menu-toggle { display: block; }
  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    display: flex;
    width: min(88vw, 390px);
    padding: 24px;
    flex-direction: column;
    color: var(--white);
    background: linear-gradient(145deg, var(--green-900), var(--green-950));
    box-shadow: -20px 0 55px rgba(0, 0, 0, 0.28);
    transform: translateX(105%);
    transition: transform 0.35s ease;
  }
  .mobile-menu.is-open { transform: translateX(0); }
  .menu-backdrop {
    position: fixed;
    inset: 0;
    z-index: 1100;
    display: block;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
  }
  .menu-backdrop.is-open { opacity: 1; visibility: visible; }
  .mobile-menu-head { display: flex; align-items: center; justify-content: space-between; padding-bottom: 22px; border-bottom: 1px solid rgba(255, 255, 255, 0.15); }
  .mobile-menu-head img { width: 155px; max-height: 82px; object-fit: contain; filter: brightness(0) invert(1); }
  .menu-close { display: grid; width: 42px; height: 42px; padding: 0; color: var(--white); background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.2); border-radius: 50%; place-items: center; cursor: pointer; }
  .menu-close svg { width: 20px; height: 20px; }
  .mobile-nav { display: grid; margin-top: 28px; }
  .mobile-nav a { padding: 13px 0; color: rgba(255, 255, 255, 0.9); border-bottom: 1px solid rgba(255, 255, 255, 0.1); font-family: var(--serif); font-size: 1.2rem; }
  .mobile-social-area { margin-top: auto; padding: 22px 0; }
  .mobile-social-area > p { margin: 0 0 13px; color: var(--gold-300); font-size: 0.7rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; }
  .mobile-social-links { display: flex; gap: 10px; }
  .mobile-social-links a { display: inline-flex; align-items: center; gap: 8px; padding: 9px 12px; color: var(--white); background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(255, 255, 255, 0.15); border-radius: 9px; font-size: 0.76rem; }
  .mobile-social-links svg { width: 17px; height: 17px; }
  .mobile-menu-cta { width: 100%; }
  .hero { height: clamp(510px, 61svh, 580px); min-height: 510px; }
  .hero-copy { max-width: 620px; }
  .hero-copy h1,
  .hero-copy h2 { font-size: clamp(3.2rem, 8.5vw, 5.5rem); }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n + 2) { border-bottom: 1px solid var(--border); }
  .about-grid,
  .wholesale-grid,
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { gap: 70px; }
  .about-media { min-height: 600px; }
  .wholesale-copy { position: static; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .process-card:nth-child(2) { border-right: 0; }
  .process-card:nth-child(-n + 2) { border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .foodist-banner-content { grid-template-columns: 1fr auto; padding-block: 64px; }
  .foodist-banner-content .button { grid-column: 1 / -1; width: fit-content; }
  .contact-grid { gap: 45px; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 50px; }
}

@media (max-width: 760px) {
  .container { width: min(calc(100% - 32px), var(--container)); }
  .section { padding: 84px 0; }
  .section-heading { margin-bottom: 38px; }
  .section-heading h2,
  .about-copy h2,
  .wholesale-copy h2,
  .contact-copy h2 { font-size: clamp(2.1rem, 10vw, 3.3rem); }
  .nav-inner { min-height: 72px; }
  .brand { width: 142px; }
  .language-switch { margin-right: 3px; }
  .hero { height: clamp(455px, 57svh, 500px); min-height: 455px; margin-top: 72px; }
  .hero-overlay,
  .hero-pack-slide .hero-overlay,
  .hero-foodist-slide .hero-overlay {
    background:
      linear-gradient(90deg, rgba(3, 42, 30, 0.94) 0%, rgba(4, 55, 38, 0.76) 58%, rgba(4, 55, 38, 0.26) 100%),
      linear-gradient(0deg, rgba(4, 35, 25, 0.7), transparent 60%);
  }
  .hero-content { align-items: flex-start; padding-top: 27px; padding-bottom: 52px; }
  .hero-copy { max-width: 88%; }
  .hero-copy h1,
  .hero-copy h2 { font-size: clamp(2rem, 9.2vw, 2.75rem); line-height: 0.98; }
  .hero-copy p { max-width: 31rem; margin-top: 10px; font-size: 0.82rem; line-height: 1.4; }
  .hero-actions { gap: 7px; margin-top: 13px; }
  .hero-actions .button { min-width: 0; min-height: 41px; padding: 8px 13px; font-size: 0.68rem; }
  .hero-featured .eyebrow { display: none; }
  .hero-featured .hero-copy { max-width: 54%; }
  .hero-featured .hero-copy h1 { font-size: clamp(2.15rem, 9.9vw, 2.75rem); text-transform: uppercase; }
  .hero-featured .hero-copy p { max-width: 100%; }
  .hero-featured-mix { top: -3%; right: -7%; width: 40%; height: 107%; }
  .hero-featured-products { right: -51%; bottom: -7%; width: 160%; height: 47%; object-position: center 38%; }
  .hero-fair-chip { gap: 6px; margin-top: 9px; padding: 7px 9px; font-size: 0.52rem; letter-spacing: 0.015em; white-space: nowrap; }
  .hero-fair-chip svg { width: 16px; height: 16px; }
  .hero-image-biber { object-position: 60% center; }
  .hero-image-sivri { object-position: 52% center; }
  .hero-image-mix { object-position: 57% center; }
  .hero-image-pack { object-position: 66% center; }
  .hero-image-showroom { object-position: 58% center; }
  .hero-controls { bottom: 10px; }
  .slider-arrow { width: 34px; height: 34px; }
  .trust-item { min-height: 104px; padding: 17px 15px; gap: 11px; }
  .trust-item svg { width: 35px; height: 35px; }
  .trust-item strong { font-size: 0.9rem; }
  .trust-item span { display: none; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; }
  .product-image-wrap { height: 265px; padding: 14px; }
  .product-body { padding: 18px 15px 16px; }
  .product-body h3 { font-size: 1.04rem; }
  .product-body p { display: none; }
  .product-footer { align-items: flex-end; padding-top: 16px; }
  .product-offer { font-size: 0.7rem; }
  .about-media { min-height: 500px; }
  .about-main-image { right: 34px; bottom: 50px; }
  .about-small-image { width: 205px; height: 235px; }
  .about-seal { top: 22px; right: 0; width: 96px; height: 96px; }
  .process-grid { grid-template-columns: 1fr; }
  .process-card { min-height: 250px; border-right: 0; border-bottom: 1px solid rgba(255, 255, 255, 0.12); }
  .process-card:last-child { border-bottom: 0; }
  .process-card svg { margin-bottom: 25px; }
  .quote-form { padding: 21px 16px; border-radius: var(--radius-md); }
  .form-head { margin-bottom: 17px; padding-bottom: 14px; }
  .form-head h3 { font-size: 1.55rem; }
  .form-head p { margin-top: 3px; font-size: 0.76rem; }
  .form-grid { grid-template-columns: 1fr; gap: 12px; }
  .form-field-full { grid-column: auto; }
  .form-field { gap: 5px; }
  .form-field > span { font-size: 0.7rem; }
  .form-field input,
  .form-field select { height: 44px; padding-inline: 12px; }
  .form-field textarea { min-height: 72px; padding: 10px 12px; }
  .form-more > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 42px;
    padding: 8px 12px;
    color: var(--green-900);
    background: var(--green-100);
    border: 1px solid rgba(15, 105, 71, 0.18);
    border-radius: 9px;
    font-size: 0.72rem;
    font-weight: 800;
    cursor: pointer;
    list-style: none;
  }
  .form-more > summary::-webkit-details-marker { display: none; }
  .form-more > summary span:last-child { font-size: 1rem; transition: transform 0.2s ease; }
  .form-more[open] > summary span:last-child { transform: rotate(45deg); }
  .form-more:not([open]) > .form-more-grid { display: none; }
  .form-more-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 12px; }
  .form-submit { min-height: 46px; margin-top: 15px; }
  .contact-highlight { margin-top: 23px; padding: 17px 18px; }
  .contact-highlight-copy strong { font-size: 1.36rem; }
  .contact-highlight-icon { width: 58px; height: 58px; }
  .contact-highlight-icon svg { width: 33px; height: 33px; }
  .foodist-banner-content { grid-template-columns: 1fr; gap: 26px; }
  .foodist-date { padding-left: 0; border-left: 0; }
  .contact-cards { gap: 12px; }
  .contact-card { min-height: 145px; padding: 20px; }
  .contact-card svg { width: 27px; height: 27px; margin-bottom: 18px; }
  .contact-card strong { font-size: 1rem; overflow-wrap: anywhere; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; padding-top: 56px; padding-bottom: 48px; }
  .footer-bottom-inner { min-height: 110px; padding: 20px 0 76px; flex-direction: column; align-items: flex-start; justify-content: center; gap: 8px; }
  .demo-notice { text-align: left; }
  .floating-whatsapp { display: none; }
  .mobile-action-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 990;
    display: grid;
    grid-template-columns: 72px repeat(3, minmax(0, 1fr));
    min-height: 66px;
    padding-bottom: env(safe-area-inset-bottom);
    background: rgba(253, 250, 243, 0.98);
    border-top: 1px solid var(--border);
    box-shadow: 0 -10px 28px rgba(4, 35, 25, 0.1);
    backdrop-filter: blur(14px);
  }
  .mobile-action-bar > a { display: flex; align-items: center; justify-content: center; gap: 6px; color: var(--green-900); border-right: 1px solid var(--border); font-size: 0.69rem; font-weight: 800; }
  .mobile-action-bar > a:last-child { color: var(--red-600); border-right: 0; }
  .mobile-action-bar > a:nth-of-type(2) { color: #169b4c; }
  .mobile-action-bar > a svg { width: 20px; height: 20px; }
  .mobile-social-shortcuts { display: grid; grid-template-columns: repeat(2, 1fr); align-items: center; border-right: 1px solid var(--border); }
  .mobile-social-shortcuts a { display: grid; min-width: 0; height: 100%; place-items: center; }
  .mobile-social-shortcuts a:first-child { color: #d62976; }
  .mobile-social-shortcuts a:last-child { color: #1877f2; }
  .mobile-social-shortcuts a:last-child svg { fill: currentColor; stroke: none; }
  .mobile-social-shortcuts svg { width: 22px; height: 22px; }
}

@media (max-width: 480px) {
  .nav-actions { gap: 9px; }
  .brand { width: 132px; }
  .menu-toggle { width: 43px; height: 43px; }
  .hero { height: clamp(440px, 56svh, 480px); min-height: 440px; }
  .hero-content { padding-top: 24px; padding-bottom: 48px; }
  .hero-copy { max-width: 100%; }
  .hero-copy h1,
  .hero-copy h2 { max-width: 95%; font-size: clamp(1.9rem, 9.2vw, 2.45rem); }
  .hero-copy p { max-width: 91%; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .hero-actions .button { width: min(180px, 100%); }
  .hero-featured .hero-copy { max-width: 55%; }
  .hero-featured .hero-copy h1 { max-width: 100%; font-size: clamp(2rem, 9.7vw, 2.5rem); }
  .hero-featured .hero-copy p { max-width: 100%; }
  .hero-featured-products { right: -55%; width: 165%; height: 47%; }
  .hero-fair-chip { font-size: 0.48rem; }
  .mobile-action-bar { grid-template-columns: 66px repeat(3, minmax(0, 1fr)); }
  .mobile-action-bar > a { gap: 4px; font-size: 0.64rem; }
  .fair-date-card { padding: 12px 14px; }
  .fair-date-card strong { font-size: 0.84rem; }
  .fair-date-card span { font-size: 0.66rem; }
  .trust-grid { width: 100%; }
  .trust-item { min-height: 94px; padding: 13px 10px; }
  .trust-item strong { font-size: 0.82rem; line-height: 1.2; }
  .product-image-wrap { height: 225px; }
  .product-body h3 { font-size: 0.95rem; }
  .product-meta { font-size: 0.56rem; }
  .product-footer { display: grid; }
  .product-offer { padding-top: 0; }
  .about-media { min-height: 430px; }
  .about-small-image { width: 165px; height: 195px; }
  .about-seal { width: 84px; height: 84px; border-width: 5px; }
  .about-seal strong { font-size: 0.9rem; }
  .contact-cards { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}
