@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600&family=Manrope:wght@700;800&display=swap');

:root {
  --ink: #0f1b2d;
  --brand-900: #10365f;
  --brand-700: #174c82;
  --brand-600: #1b62b0;
  --brand-50: #eef4fb;
  --accent-500: #f2b705;
  --accent-600: #d99e00;
  --paprika: #c0442b;
  --surface: #fff;
  --bg: #f7f8fa;
  --line: #e3e7ed;
  --muted: #5c6b7f;
  --success: #1b8a5a;
  --danger: #b42318;
  --sh-1: 0 1px 2px rgba(15, 27, 45, .06);
  --sh-2: 0 8px 24px rgba(15, 27, 45, .10);
  --radius: 8px;
  --radius-card: 14px;
  --container: 1240px;
  --ease: cubic-bezier(.4, 0, .2, 1);
  color-scheme: light;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--surface);
  font: 400 1.0625rem/1.6 Inter, Arial, sans-serif;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}
body.menu-open,
body.modal-open { overflow: hidden; }

img { display: block; max-width: 100%; }
.sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}
button, input, select, textarea { font: inherit; color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }
a { color: var(--brand-600); text-decoration-thickness: .08em; text-underline-offset: .18em; }
a:hover { color: var(--brand-900); }

h1, h2, h3, h4 {
  margin: 0;
  font-family: Manrope, Inter, sans-serif;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2rem, 4vw, 3.75rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.75rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin: 0; }

.container { width: min(100% - 32px, var(--container)); margin-inline: auto; }
.section { padding-block: 56px; }
.section--soft { background: var(--brand-50); }
.section--gray { background: var(--bg); }
.section--dark { color: var(--surface); background: var(--brand-900); }
.section-head { display: grid; gap: 16px; margin-bottom: 32px; }
.section-head p { max-width: 760px; color: var(--muted); }
.section--dark .section-head p { color: rgba(255,255,255,.75); }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  width: fit-content;
  color: var(--brand-600);
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .08em;
  line-height: 1.3;
  text-transform: uppercase;
}
.eyebrow::before { width: 28px; height: 2px; background: var(--accent-500); content: ''; }
.section--dark .eyebrow { color: #fff; }

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 8px;
  left: 8px;
  padding: 10px 16px;
  transform: translateY(-160%);
  border-radius: var(--radius);
  color: #fff;
  background: var(--brand-900);
}
.skip-link:focus { transform: none; }

.topbar { min-height: 40px; color: #fff; background: var(--brand-900); font-size: .8125rem; }
.topbar__inner { min-height: 40px; display: flex; align-items: center; justify-content: space-between; gap: 12px; }
.topbar__address { display: none; }
.topbar__links { display: flex; align-items: center; gap: 14px; }
.topbar a { display: inline-flex; align-items: center; gap: 7px; min-height: 40px; color: #fff; text-decoration: none; }
.topbar a:hover { color: var(--accent-500); }

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  min-height: 72px;
  border-bottom: 1px solid var(--line);
  background: rgba(255,255,255,.97);
  transition: box-shadow 180ms var(--ease), background 180ms var(--ease);
}
.site-header.is-scrolled { box-shadow: var(--sh-2); }
.nav-row { min-height: 72px; display: flex; align-items: center; gap: 24px; }
.brand { flex: 0 0 auto; display: inline-flex; align-items: center; min-height: 48px; text-decoration: none; }
.brand img { width: 132px; height: auto; }
.desktop-nav { display: none; }
.header-actions { margin-left: auto; display: flex; align-items: center; gap: 8px; }
.header-actions .btn { display: none; }
.icon-btn {
  width: 44px;
  height: 44px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  cursor: pointer;
  transition: border-color 180ms var(--ease), background 180ms var(--ease), transform 180ms var(--ease);
}
.icon-btn:hover { border-color: var(--brand-600); background: var(--brand-50); }
.icon-btn:active { transform: translateY(1px); }
.icon { width: 21px; height: 21px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }

.search-popover {
  position: fixed;
  z-index: 120;
  inset: 112px 16px auto;
  display: none;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--sh-2);
}
.search-popover.is-open { display: flex; gap: 8px; }
.search-popover form { width: 100%; display: flex; gap: 8px; }
.search-popover input { flex: 1; min-width: 0; }

.mobile-menu {
  position: fixed;
  z-index: 110;
  inset: 0;
  display: grid;
  align-content: start;
  gap: 24px;
  padding: 24px 16px 96px;
  transform: translateX(100%);
  visibility: hidden;
  background: var(--surface);
  transition: transform 220ms var(--ease), visibility 220ms;
}
.mobile-menu.is-open { transform: none; visibility: visible; }
.mobile-menu__head { display: flex; align-items: center; justify-content: space-between; }
.mobile-menu__nav { display: grid; }
.mobile-menu__nav a {
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: Manrope, sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-decoration: none;
}
.mobile-menu__contact { display: grid; gap: 10px; color: var(--muted); font-size: .9375rem; }

.mobile-actions {
  position: fixed;
  z-index: 105;
  right: 0;
  bottom: 0;
  left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  background: var(--surface);
  box-shadow: 0 -8px 24px rgba(15,27,45,.08);
}
.mobile-actions a,
.mobile-actions button {
  min-height: 58px;
  display: grid;
  place-items: center;
  gap: 2px;
  border: 0;
  border-right: 1px solid var(--line);
  color: var(--ink);
  background: transparent;
  font-size: .75rem;
  font-weight: 600;
  text-decoration: none;
}
.mobile-actions .icon { width: 18px; height: 18px; }
.mobile-actions .primary-mobile { background: var(--accent-500); }

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 11px 24px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: color 180ms var(--ease), background 180ms var(--ease), border-color 180ms var(--ease), transform 180ms var(--ease), box-shadow 180ms var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(1px); }
.btn:disabled,
.btn[aria-disabled='true'] { opacity: .48; cursor: not-allowed; pointer-events: none; transform: none; }
.btn--primary { color: var(--ink); background: var(--accent-500); border-color: var(--accent-500); }
.btn--primary:hover { color: var(--ink); background: var(--accent-600); border-color: var(--accent-600); box-shadow: 0 7px 18px rgba(217,158,0,.22); }
.btn--secondary { color: #fff; background: var(--brand-600); border-color: var(--brand-600); }
.btn--secondary:hover { color: #fff; background: var(--brand-900); border-color: var(--brand-900); }
.btn--ghost { color: var(--ink); background: transparent; border-color: var(--line); }
.btn--ghost:hover { color: var(--brand-900); background: var(--brand-50); border-color: var(--brand-600); }
.btn--light { color: #fff; background: transparent; border-color: rgba(255,255,255,.5); }
.btn--light:hover { color: var(--ink); background: #fff; border-color: #fff; }
.btn--block { width: 100%; }

:focus-visible {
  outline: 2px solid var(--brand-600);
  outline-offset: 2px;
}

.hero { position: relative; overflow: hidden; padding-block: 48px; background: var(--surface); }
.hero::before {
  position: absolute;
  inset: 0 auto 0 50%;
  width: 50%;
  background-image: linear-gradient(var(--line) 1px, transparent 1px), linear-gradient(90deg, var(--line) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: .32;
  content: '';
}
.hero__grid { position: relative; display: grid; gap: 32px; }
.hero__copy { display: grid; align-content: center; gap: 24px; }
.hero__copy h1 { max-width: 760px; }
.hero__lead { max-width: 650px; color: var(--muted); font-size: clamp(1.0625rem, 1.5vw, 1.25rem); }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; }
.hero__trust { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); gap: 0; border-block: 1px solid var(--line); }
.trust-item { min-height: 72px; display: flex; align-items: center; gap: 9px; padding: 12px 8px; font-size: .8125rem; font-weight: 600; }
.trust-item .icon { flex: 0 0 auto; color: var(--brand-600); }
.hero__media { position: relative; min-height: 420px; overflow: hidden; border-radius: var(--radius-card); background: var(--bg); }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__media::after { position: absolute; inset: auto 0 0; height: 35%; background: linear-gradient(transparent, rgba(15,27,45,.5)); content: ''; }
.hero__badge { position: absolute; z-index: 1; right: 16px; bottom: 16px; max-width: 250px; padding: 14px 16px; border-left: 3px solid var(--accent-500); color: #fff; background: rgba(16,54,95,.9); font-size: .875rem; }

.category-grid { display: grid; gap: 20px; }
.category-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--sh-1);
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms var(--ease);
}
.category-card:hover { transform: translateY(-2px); border-color: #c8d4e2; box-shadow: var(--sh-2); }
.category-card__image { aspect-ratio: 16 / 10; overflow: hidden; background: var(--bg); }
.category-card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform 300ms var(--ease); }
.category-card:hover .category-card__image img { transform: scale(1.025); }
.category-card__body { min-height: 230px; display: grid; align-content: start; gap: 12px; padding: 24px; }
.category-card > a.category-card__body { color: var(--ink); text-decoration: none; }
.category-card__body p { color: var(--muted); font-size: .9375rem; }
.category-card__meta { margin-top: auto; display: flex; align-items: end; justify-content: space-between; gap: 16px; }
.category-card__count { color: var(--muted); font-size: .8125rem; }
.text-link { display: inline-flex; align-items: center; gap: 6px; color: var(--brand-600); font-weight: 600; text-decoration: none; }
.text-link:hover { text-decoration: underline; }

.feature-grid { display: grid; gap: 32px; }
.feature { display: grid; grid-template-columns: 42px 1fr; gap: 16px; }
.feature__icon { width: 42px; height: 42px; display: grid; place-items: center; color: var(--brand-600); border: 1px solid rgba(27,98,176,.25); border-radius: var(--radius); background: rgba(255,255,255,.65); }
.feature h3 { margin-bottom: 8px; font-size: 1.125rem; }
.feature p { color: var(--muted); font-size: .9375rem; }

.product-scroller { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(260px, 80%); gap: 16px; overflow-x: auto; overscroll-behavior-inline: contain; padding: 4px 4px 20px; scroll-snap-type: inline mandatory; scrollbar-color: var(--brand-600) var(--line); }
.product-card { scroll-snap-align: start; display: grid; grid-template-rows: auto 1fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--surface); transition: transform 180ms var(--ease), box-shadow 180ms var(--ease), border-color 180ms var(--ease); }
.product-card:hover { transform: translateY(-2px); border-color: #c8d4e2; box-shadow: var(--sh-2); }
.product-card__media { position: relative; aspect-ratio: 1; overflow: hidden; background: var(--bg); }
.product-card__media img { width: 100%; height: 100%; object-fit: contain; padding: 20px; mix-blend-mode: multiply; }
.badge { min-height: 26px; display: inline-flex; align-items: center; gap: 5px; padding: 4px 9px; border-radius: 999px; color: var(--brand-900); background: var(--brand-50); font-size: .75rem; font-weight: 600; line-height: 1.2; }
.badge--halal { position: absolute; top: 12px; left: 12px; color: #fff; background: var(--success); }
.badge--hot { color: #fff; background: var(--paprika); }
.product-card__body { display: grid; align-content: start; gap: 12px; padding: 20px; }
.product-card__title { min-height: 2.7em; color: var(--ink); font-family: Manrope, sans-serif; font-weight: 700; line-height: 1.35; text-decoration: none; }
.product-card__title:hover { color: var(--brand-600); }
.product-card__facts { display: grid; gap: 5px; color: var(--muted); font-size: .8125rem; }
.product-card__actions { margin-top: 4px; display: grid; grid-template-columns: 1fr; gap: 8px; }

.split { display: grid; gap: 32px; align-items: center; }
.split__media { min-height: 360px; overflow: hidden; border-radius: var(--radius-card); background: var(--bg); }
.split__media img { width: 100%; height: 100%; object-fit: cover; }
.split__copy { display: grid; gap: 24px; }
.split__copy > p { color: var(--muted); }
.stats { display: grid; grid-template-columns: repeat(2, minmax(0,1fr)); border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.stat { min-height: 120px; display: grid; align-content: center; gap: 4px; padding: 16px; border-right: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.stat strong { color: var(--brand-900); font: 800 clamp(1.45rem,3vw,2rem)/1 Manrope, sans-serif; }
.stat span { color: var(--muted); font-size: .8125rem; }

.recipe { position: relative; overflow: hidden; }
.recipe::after { position: absolute; top: -90px; right: -90px; width: 260px; height: 260px; border: 42px solid rgba(255,255,255,.05); border-radius: 50%; content: ''; }
.recipe__grid { position: relative; z-index: 1; display: grid; gap: 32px; }
.steps { display: grid; gap: 0; }
.step { position: relative; display: grid; grid-template-columns: 44px 1fr; gap: 14px; padding: 16px 0; }
.step:not(:last-child)::after { position: absolute; top: 52px; bottom: -8px; left: 21px; width: 1px; background: rgba(255,255,255,.2); content: ''; }
.step__num { width: 44px; height: 44px; display: grid; place-items: center; border: 1px solid rgba(255,255,255,.35); border-radius: 50%; color: var(--accent-500); font: 800 1rem/1 Manrope, sans-serif; }
.step p { margin-top: 5px; color: rgba(255,255,255,.72); font-size: .9375rem; }

.docs-row { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(260px, 80%); gap: 16px; overflow-x: auto; padding-bottom: 16px; scroll-snap-type: x mandatory; }
.doc-card { scroll-snap-align: start; display: grid; gap: 16px; padding: 18px; border: 1px solid var(--line); border-radius: var(--radius-card); background: #fff; }
.doc-card__preview { position: relative; aspect-ratio: 4 / 5; overflow: hidden; border: 1px solid var(--line); background: var(--bg); }
.doc-card__preview img { width: 100%; height: 100%; object-fit: cover; object-position: top; }
.doc-card h3 { font-size: 1rem; }

.trust-band { display: grid; gap: 24px; align-items: center; }
.trust-band__intro { max-width: 620px; }
.trust-band__numbers { display: grid; grid-template-columns: repeat(2,1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.trust-band__numbers .stat { border: 0; background: #fff; }

.lead-form-section { display: grid; gap: 32px; }
.lead-copy { display: grid; align-content: start; gap: 20px; }
.check-list { display: grid; gap: 12px; padding: 0; margin: 0; list-style: none; }
.check-list li { display: flex; align-items: flex-start; gap: 10px; }
.check-list .icon { flex: 0 0 auto; margin-top: 3px; color: var(--success); }
.form-card { padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--surface); box-shadow: var(--sh-1); }
.form-grid { display: grid; gap: 16px; }
.field { display: grid; gap: 7px; }
.field label { font-size: .875rem; font-weight: 600; }
.field input,
.field select,
.field textarea,
.search-popover input {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid #cfd6df;
  border-radius: var(--radius);
  background: #fff;
  transition: border-color 180ms var(--ease), box-shadow 180ms var(--ease), background 180ms var(--ease);
}
.field textarea { min-height: 112px; resize: vertical; }
.field input:hover,
.field select:hover,
.field textarea:hover { border-color: #94a3b6; }
.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible,
.search-popover input:focus-visible { border-color: var(--brand-600); box-shadow: 0 0 0 3px rgba(27,98,176,.14); }
.field [aria-invalid='true'] { border-color: var(--danger); background: #fff7f6; }
.field-error { min-height: 18px; color: var(--danger); font-size: .75rem; }
.checkbox { display: grid; grid-template-columns: 20px 1fr; gap: 10px; align-items: start; font-size: .8125rem; }
.checkbox input { width: 20px; height: 20px; margin: 2px 0 0; accent-color: var(--brand-600); }
.form-status { display: none; gap: 10px; padding: 16px; border: 1px solid rgba(27,138,90,.25); border-radius: var(--radius); color: #0f5f3e; background: #edfbf4; }
.form-status.is-visible { display: grid; }
.form-card.is-success .form-grid { display: none; }
.btn.is-loading { position: relative; color: transparent; }
.btn.is-loading::after { position: absolute; width: 20px; height: 20px; border: 2px solid rgba(15,27,45,.28); border-top-color: var(--ink); border-radius: 50%; animation: spin .7s linear infinite; content: ''; }
@keyframes spin { to { transform: rotate(360deg); } }

.page-hero { padding-block: 42px; border-bottom: 1px solid var(--line); background: var(--brand-50); }
.page-hero__inner { display: grid; gap: 16px; }
.page-hero p { max-width: 840px; color: var(--muted); }
.breadcrumbs { display: flex; flex-wrap: wrap; gap: 8px; padding: 0; margin: 0; color: var(--muted); font-size: .8125rem; list-style: none; }
.breadcrumbs li:not(:last-child)::after { margin-left: 8px; color: #9aa7b8; content: '/'; }
.breadcrumbs a { color: inherit; }

.catalog-layout { display: grid; gap: 24px; }
.catalog-sidebar { display: none; }
.filter-panel { display: grid; gap: 24px; }
.filter-group { display: grid; gap: 10px; }
.filter-group h3 { font-size: 1rem; }
.filter-option { display: flex; align-items: center; gap: 9px; font-size: .875rem; cursor: pointer; }
.filter-option input { width: 18px; height: 18px; accent-color: var(--brand-600); }
.catalog-main { min-width: 0; }
.catalog-toolbar { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-bottom: 24px; }
.catalog-count { margin-right: auto; font-weight: 600; }
.catalog-toolbar select { min-height: 44px; padding: 8px 36px 8px 12px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; }
.view-toggle { display: flex; gap: 4px; }
.view-toggle .icon-btn { width: 44px; height: 44px; }
.view-toggle .is-active { color: #fff; border-color: var(--brand-600); background: var(--brand-600); }
.catalog-grid { display: grid; gap: 18px; }
.catalog-grid.is-list .product-card { grid-template-columns: 120px 1fr; grid-template-rows: none; }
.catalog-grid.is-list .product-card__media { aspect-ratio: 1; }
.catalog-grid.is-list .product-card__facts { display: none; }
.catalog-grid.is-list .product-card__actions { grid-template-columns: repeat(2,minmax(0,1fr)); }
.filter-trigger { display: inline-flex; }
.filter-drawer {
  position: fixed;
  z-index: 140;
  right: 0;
  bottom: 0;
  left: 0;
  max-height: 85vh;
  overflow-y: auto;
  padding: 20px 16px calc(28px + env(safe-area-inset-bottom));
  transform: translateY(105%);
  visibility: hidden;
  border-radius: 18px 18px 0 0;
  background: #fff;
  box-shadow: 0 -18px 48px rgba(15,27,45,.18);
  transition: transform 220ms var(--ease), visibility 220ms;
}
.filter-drawer.is-open { transform: none; visibility: visible; }
.filter-drawer__head { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; }
.backdrop { position: fixed; z-index: 130; inset: 0; display: none; background: rgba(15,27,45,.5); }
.backdrop.is-open { display: block; }
.pagination { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; padding-top: 32px; }
.pagination a,
.pagination span { min-width: 44px; min-height: 44px; display: grid; place-items: center; border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink); text-decoration: none; }
.pagination .current { color: #fff; border-color: var(--brand-600); background: var(--brand-600); }
.empty-state { display: none; padding: 40px 24px; border: 1px dashed #bcc7d4; border-radius: var(--radius-card); text-align: center; }
.empty-state.is-visible { display: grid; gap: 12px; }

.product-layout { display: grid; gap: 32px; align-items: start; }
.product-gallery { display: grid; gap: 12px; }
.product-gallery__main { position: relative; aspect-ratio: 1; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--bg); cursor: zoom-in; }
.product-gallery__main img { width: 100%; height: 100%; object-fit: contain; padding: 24px; mix-blend-mode: multiply; }
.product-thumbs { display: grid; grid-template-columns: repeat(4,1fr); gap: 8px; }
.product-thumb { aspect-ratio: 1; padding: 4px; border: 1px solid var(--line); border-radius: var(--radius); background: #fff; cursor: pointer; }
.product-thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-thumb.is-active { border-color: var(--brand-600); box-shadow: 0 0 0 1px var(--brand-600); }
.product-summary { display: grid; gap: 18px; }
.product-code { color: var(--muted); font-size: .8125rem; }
.product-badges { display: flex; flex-wrap: wrap; gap: 8px; }
.product-intro { color: var(--muted); }
.spec-table-wrap { max-width: 100%; overflow-x: auto; border: 1px solid var(--line); border-radius: var(--radius); }
.spec-table { width: 100%; min-width: 540px; border-collapse: collapse; font-size: .875rem; }
.spec-table th,
.spec-table td { padding: 12px 14px; border-bottom: 1px solid var(--line); text-align: left; vertical-align: top; }
.spec-table th { width: 36%; color: var(--muted); background: var(--bg); font-weight: 500; }
.spec-table tr:last-child th,
.spec-table tr:last-child td { border-bottom: 0; }
.product-cta { position: sticky; bottom: 68px; display: grid; grid-template-columns: 1fr; gap: 8px; padding: 14px; border: 1px solid var(--line); border-radius: var(--radius-card); background: rgba(255,255,255,.97); box-shadow: var(--sh-2); }
.product-cta__phone { display: inline-flex; justify-content: center; align-items: center; min-height: 44px; font-weight: 600; text-decoration: none; }

.tabs { border-top: 1px solid var(--line); }
.tabs__list { display: flex; gap: 0; overflow-x: auto; border-bottom: 1px solid var(--line); }
.tabs__button { flex: 0 0 auto; min-height: 52px; padding: 0 18px; border: 0; border-bottom: 3px solid transparent; color: var(--muted); background: transparent; font-weight: 600; cursor: pointer; }
.tabs__button:hover { color: var(--brand-600); }
.tabs__button[aria-selected='true'] { color: var(--brand-900); border-bottom-color: var(--brand-600); }
.tabs__panel { display: none; max-width: 880px; padding: 28px 0; }
.tabs__panel.is-active { display: grid; gap: 16px; }
.tabs__panel ul { margin: 0; padding-left: 20px; }

.content-grid { display: grid; gap: 32px; }
.content-prose { display: grid; gap: 18px; max-width: 850px; }
.content-prose p,
.content-prose li { color: var(--muted); }
.principles { display: grid; gap: 1px; border: 1px solid var(--line); background: var(--line); }
.principle { padding: 22px; background: #fff; }
.principle strong { display: block; margin-bottom: 6px; font-family: Manrope, sans-serif; }
.timeline { display: grid; gap: 0; }
.timeline__item { display: grid; grid-template-columns: 48px 1fr; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.timeline__num { width: 40px; height: 40px; display: grid; place-items: center; color: var(--brand-600); border: 1px solid var(--brand-600); border-radius: 50%; font-weight: 700; }

.contact-section { background: var(--bg); }
.contact-directory { display: grid; gap: 16px; }
.contact-card {
  position: relative;
  min-width: 0;
  min-height: 226px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 22px;
  overflow: hidden;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-card);
  background: var(--surface);
  box-shadow: var(--sh-1);
  transition: transform 180ms var(--ease), border-color 180ms var(--ease), box-shadow 180ms var(--ease);
}
.contact-card::before {
  position: absolute;
  top: 0;
  left: 24px;
  width: 54px;
  height: 3px;
  border-radius: 0 0 3px 3px;
  background: var(--accent-500);
  content: '';
}
.contact-card:hover { transform: translateY(-2px); border-color: #c8d4e2; box-shadow: var(--sh-2); }
.contact-card__icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: var(--brand-600);
  border: 1px solid rgba(27,98,176,.18);
  border-radius: 12px;
  background: var(--brand-50);
}
.contact-card__icon .icon { width: 23px; height: 23px; }
.contact-card__body { min-width: 0; display: grid; align-content: start; gap: 10px; }
.contact-card h2 {
  color: var(--muted);
  font: 600 .8125rem/1.35 Inter, sans-serif;
  letter-spacing: .07em;
  text-transform: uppercase;
}
.contact-card__company { color: var(--brand-900); font: 700 1.0625rem/1.35 Manrope, Inter, sans-serif; }
.contact-card address { color: var(--ink); font-style: normal; line-height: 1.7; }
.contact-card__links { display: grid; gap: 8px; padding: 0; margin: 0; list-style: none; }
.contact-card__links a,
.contact-card__primary { color: var(--brand-600); font-weight: 600; overflow-wrap: anywhere; }
.contact-card__primary { margin-top: 2px; font-size: 1rem; line-height: 1.5; }
p.contact-card__primary { color: var(--ink); font-weight: 500; }
.contact-card__whatsapp {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 2px;
  color: var(--success);
  font-size: .875rem;
  font-weight: 600;
  text-decoration: none;
}
.contact-card__whatsapp:hover { color: #116940; text-decoration: underline; }
.contact-card__whatsapp .icon { width: 19px; height: 19px; }
.contact-map-block {
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--surface);
  box-shadow: var(--sh-1);
}
.contact-map-block__bar {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 24px;
  color: #fff;
  background: var(--brand-900);
}
.contact-map-block__bar > div { display: grid; gap: 5px; }
.contact-map-block__label { color: var(--accent-500); font-size: .75rem; font-weight: 600; letter-spacing: .09em; text-transform: uppercase; }
.contact-map-block__bar strong { font: 700 clamp(1.125rem,2vw,1.45rem)/1.4 Manrope, Inter, sans-serif; }
.contact-map-block__bar .btn { flex: 0 0 auto; }
.contact-map-block__bar .icon { width: 19px; height: 19px; }
.map { width: 100%; height: 420px; display: block; border: 0; background: var(--bg); }

.lightbox { position: fixed; z-index: 200; inset: 0; display: none; place-items: center; padding: 24px; background: rgba(5,18,32,.9); }
.lightbox.is-open { display: grid; }
.lightbox__content { position: relative; width: min(100%, 900px); max-height: 90vh; }
.lightbox__content img { width: 100%; max-height: 86vh; object-fit: contain; }
.lightbox__close { position: absolute; top: -14px; right: -14px; color: #fff; border-color: rgba(255,255,255,.35); background: var(--brand-900); }

.modal { position: fixed; z-index: 190; inset: 0; display: none; place-items: center; padding: 16px; background: rgba(15,27,45,.62); }
.modal.is-open { display: grid; }
.modal__dialog { position: relative; width: min(100%, 560px); max-height: 92vh; overflow-y: auto; padding: 24px; border-radius: var(--radius-card); background: #fff; box-shadow: var(--sh-2); }
.modal__head { display: flex; align-items: start; justify-content: space-between; gap: 16px; margin-bottom: 20px; }
.modal__head p { margin-top: 8px; color: var(--muted); font-size: .875rem; }

.site-footer {
  position: relative;
  padding-bottom: 72px;
  overflow: hidden;
  color: rgba(255,255,255,.82);
  background:
    radial-gradient(circle at 88% 8%, rgba(27,98,176,.34), transparent 28rem),
    linear-gradient(145deg, #0b2b4c 0%, var(--brand-900) 56%, #0a2b4d 100%);
}
.site-footer::before { position: absolute; inset: 0 0 auto; height: 4px; background: linear-gradient(90deg, var(--accent-500), #ffd968 44%, var(--brand-600)); content: ''; }
.footer-shell { position: relative; }
.footer-top { display: flex; flex-direction: column; gap: 24px; padding-block: 44px 32px; border-bottom: 1px solid rgba(255,255,255,.13); }
.footer-brand { display: flex; align-items: center; gap: 18px; }
.footer-logo { flex: 0 0 auto; display: inline-flex; padding: 9px 12px; border-radius: 10px; background: #fff; box-shadow: 0 12px 30px rgba(0,0,0,.14); }
.footer-logo img { width: 138px; height: auto; }
.footer-brand__copy { display: grid; gap: 5px; }
.footer-brand__eyebrow { color: var(--accent-500); font-size: .75rem; font-weight: 600; letter-spacing: .09em; line-height: 1.3; text-transform: uppercase; }
.footer-brand__copy > p:last-child { max-width: 500px; color: rgba(255,255,255,.72); font-size: .9375rem; line-height: 1.55; }
.footer-whatsapp { display: inline-flex; align-items: center; gap: 12px; width: fit-content; min-height: 58px; padding: 9px 14px 9px 11px; border: 1px solid rgba(255,255,255,.17); border-radius: 12px; color: #fff; background: rgba(255,255,255,.08); text-decoration: none; transition: transform 180ms var(--ease), border-color 180ms var(--ease), background 180ms var(--ease); }
.footer-whatsapp:hover { transform: translateY(-2px); border-color: rgba(242,183,5,.7); color: #fff; background: rgba(255,255,255,.12); }
.footer-whatsapp__icon { width: 40px; height: 40px; display: grid; place-items: center; flex: 0 0 auto; border-radius: 10px; color: var(--brand-900); background: var(--accent-500); }
.footer-whatsapp__icon .icon { width: 21px; height: 21px; }
.footer-whatsapp span:not(.footer-whatsapp__icon) { display: grid; gap: 1px; }
.footer-whatsapp small { color: rgba(255,255,255,.62); font-size: .75rem; }
.footer-whatsapp strong { font: 700 .9375rem/1.3 Manrope, Inter, sans-serif; }
.footer-whatsapp > .icon { width: 18px; height: 18px; margin-left: 4px; color: var(--accent-500); }
.footer-grid { display: grid; gap: 32px; padding-block: 36px; }
.footer-col { display: grid; align-content: start; gap: 11px; }
.footer-col h3,
.footer-contacts h3 { margin-bottom: 7px; color: #fff; font-size: .875rem; letter-spacing: .06em; text-transform: uppercase; }
.footer-col a { width: fit-content; color: rgba(255,255,255,.74); font-size: .9375rem; text-decoration: none; }
.footer-col a:hover { color: var(--accent-500); }
.footer-contacts { display: grid; gap: 18px; padding: 22px; border: 1px solid rgba(255,255,255,.13); border-radius: var(--radius-card); background: rgba(255,255,255,.055); font-style: normal; box-shadow: inset 0 1px rgba(255,255,255,.035); }
.footer-contact-list { display: grid; gap: 20px; }
.footer-contact-item { min-width: 0; display: grid; grid-template-columns: 38px minmax(0,1fr); align-items: start; gap: 12px; }
.footer-contact-item__icon { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 10px; color: var(--accent-500); background: rgba(242,183,5,.11); }
.footer-contact-item__icon .icon { width: 19px; height: 19px; }
.footer-contact-item__content { min-width: 0; display: grid; gap: 5px; }
.footer-contact-label { color: rgba(255,255,255,.5); font-size: .75rem; font-weight: 600; letter-spacing: .05em; line-height: 1.35; text-transform: uppercase; }
.footer-contact-item p { color: rgba(255,255,255,.84); font-size: .9375rem; line-height: 1.55; }
.footer-contact-links { display: flex; flex-wrap: wrap; gap: 5px 16px; }
.footer-contact-links a { color: #fff; font-size: .9375rem; font-weight: 500; text-decoration: none; }
.footer-contact-links a:hover { color: var(--accent-500); }
.footer-utility { display: grid; gap: 10px; margin-top: -4px; padding-bottom: 32px; }
.footer-utility__item { min-width: 0; display: flex; align-items: center; gap: 10px; padding: 13px 15px; border: 1px solid rgba(255,255,255,.11); border-radius: 10px; background: rgba(5,22,39,.22); }
.footer-utility__item .icon { width: 18px; height: 18px; flex: 0 0 auto; color: var(--accent-500); }
.footer-utility__item span { color: rgba(255,255,255,.52); font-size: .75rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; }
.footer-utility__item a { min-width: 0; margin-left: auto; color: #fff; font-size: .875rem; font-weight: 500; text-align: right; text-decoration: none; overflow-wrap: anywhere; }
.footer-utility__item a:hover { color: var(--accent-500); }
.footer-map { overflow: hidden; border: 1px solid rgba(255,255,255,.14); border-radius: var(--radius-card); background: rgba(255,255,255,.06); box-shadow: 0 18px 45px rgba(2,16,29,.24); }
.footer-map__head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px; padding: 17px 20px; }
.footer-map__head strong { color: #fff; font: 700 .9375rem/1.4 Manrope, Inter, sans-serif; }
.footer-map__head a { color: var(--accent-500); font-size: .875rem; font-weight: 600; text-decoration: none; }
.footer-map__head a:hover { color: #ffd968; }
.footer-map iframe { width: 100%; height: 250px; display: block; border: 0; filter: saturate(.72) contrast(.96); }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 12px 24px; padding-block: 22px; color: rgba(255,255,255,.53); font-size: .75rem; }
.footer-bottom a { color: inherit; }
.footer-bottom a:hover { color: #fff; }

.not-found { min-height: 62vh; display: grid; place-items: center; padding-block: 64px; }
.not-found__card { max-width: 760px; display: grid; gap: 20px; text-align: center; }
.not-found__code { color: var(--brand-600); font: 800 clamp(4.5rem,14vw,9rem)/.85 Manrope,sans-serif; }
.not-found__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px; }

.reveal { opacity: 0; transform: translateY(16px); }
.reveal.is-visible { opacity: 1; transform: none; transition: opacity 300ms var(--ease), transform 300ms var(--ease); }

@media (min-width: 480px) {
  .container { width: min(100% - 48px, var(--container)); }
  .product-card__actions { grid-template-columns: repeat(2,minmax(0,1fr)); }
}

@media (min-width: 768px) {
  .section { padding-block: 80px; }
  .topbar__address { display: inline; }
  .hero { padding-block: 64px; }
  .category-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .feature-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .product-scroller { grid-auto-columns: minmax(280px, 42%); }
  .split { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 48px; }
  .recipe__grid { grid-template-columns: .95fr 1.05fr; align-items: center; }
  .docs-row { grid-auto-columns: 290px; }
  .trust-band { grid-template-columns: 1fr .9fr; }
  .lead-form-section { grid-template-columns: .9fr 1.1fr; gap: 48px; }
  .form-card { padding: 32px; }
  .catalog-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .catalog-grid.is-list { grid-template-columns: 1fr; }
  .product-layout { grid-template-columns: minmax(0,.92fr) minmax(0,1.08fr); gap: 48px; }
  .product-cta { bottom: 24px; grid-template-columns: 1fr 1fr; }
  .product-cta__phone { grid-column: 1 / -1; }
  .principles { grid-template-columns: repeat(2,1fr); }
  .contact-directory { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .contact-card--address { grid-column: 1 / -1; }
  .contact-map-block__bar { flex-direction: row; align-items: center; justify-content: space-between; padding: 26px 30px; }
  .map { height: 460px; }
  .footer-top { flex-direction: row; align-items: center; justify-content: space-between; }
  .footer-grid { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-contacts { grid-column: 1 / -1; }
  .footer-contact-list { grid-template-columns: repeat(2,minmax(0,1fr)); }
  .footer-contact-item:first-child { grid-column: 1 / -1; }
  .footer-utility { grid-template-columns: .75fr 1.25fr; }
  .footer-map iframe { height: 290px; }
}

@media (min-width: 1024px) {
  .section { padding-block: 96px; }
  .topbar__inner { justify-content: flex-start; }
  .topbar__links { margin-left: auto; }
  .desktop-nav { display: flex; align-self: stretch; justify-content: center; margin-left: auto; }
  .desktop-nav > a,
  .nav-catalog > button { min-height: 72px; display: inline-flex; align-items: center; padding: 0 10px; border: 0; color: var(--ink); background: transparent; font-size: .8125rem; font-weight: 600; text-decoration: none; cursor: pointer; }
  .desktop-nav > a:hover,
  .nav-catalog > button:hover { color: var(--brand-600); }
  .desktop-nav > a[aria-current='page'] { color: var(--brand-600); box-shadow: inset 0 -3px var(--brand-600); }
  .nav-catalog { position: relative; display: flex; }
  .mega-menu { position: fixed; z-index: 100; top: 112px; left: 50%; width: min(calc(100% - 48px), var(--container)); display: grid; grid-template-columns: repeat(5,1fr); gap: 1px; padding: 1px; transform: translate(-50%, -8px); visibility: hidden; opacity: 0; border: 1px solid var(--line); border-radius: var(--radius-card); background: var(--line); box-shadow: var(--sh-2); transition: opacity 180ms var(--ease), transform 180ms var(--ease), visibility 180ms, top 180ms var(--ease); }
  .site-header.is-scrolled .mega-menu { top: 80px; }
  .site-header.is-scrolled .search-popover { top: calc(100% + 8px); }
  .mega-menu.is-open { transform: translate(-50%, 0); visibility: visible; opacity: 1; }
  .mega-menu__item { min-height: 150px; display: grid; align-content: space-between; gap: 10px; padding: 20px; color: var(--ink); background: #fff; text-decoration: none; }
  .mega-menu__item:first-child { border-radius: 12px 0 0 12px; }
  .mega-menu__item:last-child { border-radius: 0 12px 12px 0; }
  .mega-menu__item:hover { color: var(--brand-600); background: var(--brand-50); }
  .mega-menu__item small { color: var(--muted); }
  .header-actions .btn { display: inline-flex; }
  .menu-toggle { display: none; }
  .search-popover { position: absolute; top: calc(100% + 8px); right: max(24px, calc((100vw - var(--container))/2)); left: auto; width: min(460px, calc(100% - 48px)); }
  .mobile-actions { display: none; }
  .footer-grid { grid-template-columns: .72fr .78fr 2.1fr; gap: 40px; }
  .footer-contacts { grid-column: auto; }
  .hero { min-height: calc(72vh - 112px); display: grid; align-items: center; }
  .hero__grid { grid-template-columns: 7fr 5fr; gap: 56px; }
  .hero__media { min-height: 560px; }
  .hero__trust { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .trust-item { padding-inline: 10px; border-right: 1px solid var(--line); }
  .trust-item:last-child { border-right: 0; }
  .category-grid { grid-template-columns: repeat(4,minmax(0,1fr)); }
  .category-card__body { min-height: 264px; }
  .feature-grid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 40px 32px; }
  .product-scroller { grid-auto-columns: calc((100% - 72px) / 4); gap: 24px; }
  .catalog-layout { grid-template-columns: 260px minmax(0,1fr); gap: 40px; }
  .catalog-sidebar { position: sticky; top: 136px; align-self: start; display: block; padding: 22px; border: 1px solid var(--line); border-radius: var(--radius-card); }
  .filter-trigger { display: none; }
  .catalog-grid { grid-template-columns: repeat(3,minmax(0,1fr)); gap: 24px; }
  .catalog-grid.is-list { grid-template-columns: 1fr; }
  .catalog-grid.is-list .product-card { grid-template-columns: 190px 1fr; }
  .product-cta { bottom: 24px; }
  .site-footer { padding-bottom: 0; }
}

@media (min-width: 1200px) {
  .contact-directory { grid-template-columns: 1.35fr 1.08fr 1.08fr .85fr 1.3fr; }
  .contact-card--address { grid-column: auto; }
  .contact-card { min-height: 270px; }
}

@media (min-width: 1280px) {
  .desktop-nav > a,
  .nav-catalog > button { padding-inline: 14px; font-size: .875rem; }
  .hero__copy { padding-block: 36px; }
  .category-grid { grid-template-columns: repeat(5,minmax(0,1fr)); }
}

@media (min-width: 1024px) and (max-width: 1279px) {
  .desktop-nav { display: none; }
  .header-actions .btn { display: none; }
  .menu-toggle { display: inline-grid; }
  .mobile-actions { display: grid; }
  .site-footer { padding-bottom: 72px; }
}

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

@media print {
  .topbar, .site-header, .mobile-actions, .site-footer, .btn, .filter-trigger, .catalog-sidebar { display: none !important; }
  .section { padding-block: 28px; }
  body { color: #000; }
}
