:root {
  --font-body: "Inter", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: "Sora", "Inter", ui-sans-serif, system-ui, sans-serif;
  --font-ar: "Noto Kufi Arabic", "Inter", ui-sans-serif, system-ui, sans-serif;
  --ink: #102522;
  --muted: #647470;
  --line: #d9e9e4;
  --green: #05745f;
  --green-dark: #043f35;
  --aqua: #18b7ad;
  --navy: #102f4c;
  --sea-glass: #cfeee8;
  --glass-border: rgba(255, 255, 255, 0.62);
  --glass-line: rgba(185, 233, 223, 0.5);
  --glass-highlight: rgba(255, 255, 255, 0.82);
  --button-glow: 0 20px 42px rgba(5, 116, 95, 0.24);
  --ease-liquid: cubic-bezier(0.2, 0.85, 0.2, 1);
  --shadow: 0 18px 50px rgba(15, 41, 38, 0.1);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  background:
    linear-gradient(180deg, #f7fffb 0%, #ffffff 28%, #f5fbf8 100%);
  letter-spacing: 0;
}

body.dialog-open {
  overflow: hidden;
}

body.is-arabic {
  font-family: var(--font-ar);
}

body.is-arabic h1,
body.is-arabic h2,
body.is-arabic h3,
body.is-arabic .brand strong,
body.is-arabic .category-tile span {
  font-family: var(--font-ar);
}

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

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  margin-bottom: -52px;
  padding-bottom: 52px;
  border-bottom: 0;
  background: transparent;
  isolation: isolate;
}

.site-header::before,
.site-header::after {
  position: absolute;
  right: 0;
  left: 0;
  pointer-events: none;
  content: "";
}

.site-header::before {
  top: 0;
  bottom: 20px;
  z-index: -2;
  border-bottom: 0;
  background:
    radial-gradient(ellipse at 12% 26%, rgba(255, 255, 255, 0.58), transparent 42%),
    radial-gradient(ellipse at 84% 8%, rgba(232, 248, 241, 0.48), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.54), rgba(244, 253, 250, 0.22) 68%, rgba(244, 253, 250, 0));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.64),
    0 14px 34px rgba(15, 41, 38, 0.07);
  -webkit-mask-image: linear-gradient(180deg, #000 0%, #000 56%, rgba(0, 0, 0, 0.62) 76%, transparent 100%);
  mask-image: linear-gradient(180deg, #000 0%, #000 56%, rgba(0, 0, 0, 0.62) 76%, transparent 100%);
  -webkit-backdrop-filter: blur(22px) saturate(1.35);
  backdrop-filter: blur(22px) saturate(1.35);
}

.site-header::after {
  bottom: 0;
  z-index: -1;
  height: 90px;
  background:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' viewBox='0 0 1440 120'%3E%3Cdefs%3E%3ClinearGradient id='g' x1='0' x2='1' y1='0' y2='1'%3E%3Cstop offset='0' stop-color='%23ffffff' stop-opacity='0.58'/%3E%3Cstop offset='0.55' stop-color='%23f3fffb' stop-opacity='0.34'/%3E%3Cstop offset='1' stop-color='%23e7f8ff' stop-opacity='0.22'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M-24 38C162 88 352 126 560 108C718 94 820 68 982 56C1120 46 1260 52 1464 110' fill='none' stroke='url(%23g)' stroke-width='56' stroke-linecap='round' stroke-opacity='0.5'/%3E%3Cpath d='M-24 42C176 88 358 125 560 107C718 92 820 68 982 56C1120 46 1260 53 1464 107' fill='none' stroke='%23ffffff' stroke-width='5' stroke-opacity='0.62'/%3E%3Cpath d='M-24 47C176 94 358 129 560 111C718 96 820 72 982 60C1120 50 1260 57 1464 111' fill='none' stroke='%23b9e9df' stroke-width='1.7' stroke-opacity='0.74'/%3E%3C/svg%3E")
    center bottom / 100% 100% no-repeat;
  filter: drop-shadow(0 18px 24px rgba(15, 41, 38, 0.12));
}

.topline {
  display: flex;
  justify-content: center;
  gap: 22px;
  padding: 6px 20px;
  color: var(--green-dark);
  font-size: 13px;
  font-weight: 700;
  background: linear-gradient(90deg, rgba(230, 250, 243, 0.44), rgba(237, 248, 255, 0.38), rgba(247, 255, 251, 0.44));
}

.topline a:hover {
  color: var(--green);
}

.topline a[href^="tel"],
.topline a[href^="mailto"],
.contact-links a[href^="tel"],
.contact-links a[href^="mailto"] {
  direction: ltr;
  unicode-bidi: isolate;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1220px, calc(100% - 40px));
  min-height: 100px;
  margin: 0 auto;
  gap: 24px;
}

.brand {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 460px;
  gap: 18px;
}

.brand::before {
  position: absolute;
  top: 4px;
  left: -22px;
  z-index: -1;
  width: 168px;
  height: 104px;
  content: "";
  border-radius: 0 0 84px 0;
  border: 1px solid rgba(255, 255, 255, 0.64);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(232, 248, 241, 0.46)),
    linear-gradient(180deg, rgba(231, 248, 255, 0.38), rgba(255, 255, 255, 0.08));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 12px 26px rgba(5, 116, 95, 0.08);
  -webkit-backdrop-filter: blur(16px) saturate(1.25);
  backdrop-filter: blur(16px) saturate(1.25);
}

.brand img {
  width: 96px;
  height: 96px;
  object-fit: contain;
  filter: drop-shadow(0 14px 24px rgba(5, 116, 95, 0.18));
}

.brand strong,
.brand small {
  display: block;
  line-height: 1.05;
}

.brand strong {
  color: var(--green-dark);
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.brand small {
  margin-top: 6px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #1b3936;
  font-size: 14px;
  font-weight: 800;
}

.nav-links a {
  padding: 9px 12px;
  border-radius: 999px;
  transition: background 160ms ease, color 160ms ease, transform 160ms ease;
}

.nav-links a:not(.nav-action):hover {
  color: var(--green);
  background: #edf8f4;
  transform: translateY(-1px);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(238, 252, 247, 0.52));
  box-shadow:
    inset 0 1px 0 var(--glass-highlight),
    0 10px 24px rgba(15, 41, 38, 0.07);
  -webkit-backdrop-filter: blur(16px) saturate(1.2);
  backdrop-filter: blur(16px) saturate(1.2);
}

.language-option {
  position: relative;
  min-width: 42px;
  min-height: 36px;
  overflow: hidden;
  border: 0;
  border-radius: 999px;
  color: var(--green-dark);
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  isolation: isolate;
  transition: transform 180ms ease, color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.language-option:hover {
  transform: translateY(-1px);
}

.language-option.active {
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), transparent 36%),
    linear-gradient(135deg, rgba(5, 116, 95, 0.96), rgba(13, 137, 117, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    0 10px 22px rgba(5, 116, 95, 0.2);
}

.nav-action,
.button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 800;
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.nav-action::before,
.button::before,
.tab::before,
.language-option::before,
.product-card button::before,
.menu-toggle::before,
.dialog-close::before {
  position: absolute;
  inset: -90% -45%;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 24% 42%, rgba(255, 255, 255, 0.88) 0 9%, rgba(255, 255, 255, 0.38) 10% 22%, transparent 34%),
    radial-gradient(circle at 72% 62%, rgba(207, 238, 232, 0.72) 0 8%, transparent 25%),
    linear-gradient(105deg, transparent 30%, rgba(255, 255, 255, 0.64) 46%, rgba(255, 255, 255, 0.24) 56%, transparent 72%);
  filter: blur(2px);
  opacity: 0.46;
  transform: translateX(-42%) rotate(-8deg);
  transition: transform 560ms var(--ease-liquid), opacity 220ms ease;
}

.nav-action:hover::before,
.button:hover::before,
.tab:hover::before,
.language-option:hover::before,
.product-card button:hover::before,
.menu-toggle:hover::before,
.dialog-close:hover::before {
  opacity: 0.86;
  transform: translateX(34%) rotate(7deg);
}

.nav-action:focus-visible,
.button:focus-visible,
.tab:focus-visible,
.language-option:focus-visible,
.product-card button:focus-visible,
.menu-toggle:focus-visible,
.dialog-close:focus-visible {
  outline: 3px solid rgba(24, 183, 173, 0.28);
  outline-offset: 3px;
}

.nav-action {
  padding: 13px 22px !important;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(5, 116, 95, 0.96), rgba(13, 137, 117, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -12px 26px rgba(4, 63, 53, 0.16),
    var(--button-glow);
  -webkit-backdrop-filter: blur(18px) saturate(1.28);
  backdrop-filter: blur(18px) saturate(1.28);
}

.button {
  padding: 14px 24px;
  font-size: 15px;
}

.button:hover,
.nav-action:hover {
  transform: translateY(-3px) scale(1.015);
}

.button.primary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(5, 116, 95, 0.96), rgba(13, 137, 117, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.38),
    inset 0 -14px 28px rgba(4, 63, 53, 0.18),
    var(--button-glow);
  -webkit-backdrop-filter: blur(18px) saturate(1.28);
  backdrop-filter: blur(18px) saturate(1.28);
}

.button.primary:hover {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), transparent 36%),
    linear-gradient(135deg, rgba(4, 102, 84, 0.98), rgba(5, 116, 95, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    inset 0 -16px 30px rgba(4, 63, 53, 0.2),
    0 24px 48px rgba(5, 116, 95, 0.3);
}

.nav-action:hover {
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), transparent 36%),
    linear-gradient(135deg, rgba(4, 102, 84, 0.98), rgba(5, 116, 95, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.44),
    inset 0 -16px 30px rgba(4, 63, 53, 0.2),
    0 24px 48px rgba(5, 116, 95, 0.3);
}

.button.secondary {
  color: var(--green-dark);
  border: 1px solid var(--glass-border);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(239, 253, 248, 0.56)),
    linear-gradient(135deg, rgba(24, 183, 173, 0.12), transparent 62%);
  box-shadow:
    inset 0 1px 0 var(--glass-highlight),
    inset 0 -10px 24px rgba(207, 238, 232, 0.24),
    0 16px 34px rgba(15, 41, 38, 0.1);
  -webkit-backdrop-filter: blur(20px) saturate(1.25);
  backdrop-filter: blur(20px) saturate(1.25);
}

.button.secondary:hover {
  border-color: rgba(24, 183, 173, 0.34);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(232, 248, 241, 0.66)),
    linear-gradient(135deg, rgba(24, 183, 173, 0.16), transparent 62%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.9),
    inset 0 -12px 26px rgba(207, 238, 232, 0.3),
    0 20px 42px rgba(15, 41, 38, 0.12);
}

.menu-toggle {
  position: relative;
  display: none;
  width: 50px;
  height: 50px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(238, 252, 247, 0.54));
  box-shadow:
    inset 0 1px 0 var(--glass-highlight),
    0 12px 28px rgba(15, 41, 38, 0.1);
  -webkit-backdrop-filter: blur(18px) saturate(1.25);
  backdrop-filter: blur(18px) saturate(1.25);
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.menu-toggle:hover {
  border-color: rgba(24, 183, 173, 0.34);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 18px 36px rgba(15, 41, 38, 0.13);
}

.menu-toggle span {
  position: relative;
  z-index: 1;
  display: block;
  width: 20px;
  height: 2px;
  margin: 4px auto;
  background: var(--green-dark);
}

.hero {
  position: relative;
  display: grid;
  min-height: 560px;
  overflow: hidden;
  background: #f8fffc;
  isolation: isolate;
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 8px;
  content: "";
  background: linear-gradient(90deg, var(--green-dark), var(--green), var(--aqua), var(--sea-glass));
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  z-index: -2;
  background-image: url("assets/seafood-hero.jpg");
  background-position: right center;
  background-size: cover;
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 42%, rgba(255, 255, 255, 0.38) 72%, rgba(255, 255, 255, 0.18) 100%),
    linear-gradient(180deg, rgba(232, 248, 241, 0.38), rgba(231, 248, 255, 0.2));
}

.hero-content {
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  padding: 48px 0 36px;
}

.eyebrow,
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

.eyebrow::before,
.kicker::before {
  width: 28px;
  height: 3px;
  content: "";
  border-radius: 999px;
  background: currentColor;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  letter-spacing: 0;
}

h1 {
  max-width: 900px;
  margin: 12px 0 14px;
  color: var(--green-dark);
  font-size: 60px;
  font-weight: 800;
  line-height: 1;
}

h2 {
  color: var(--green-dark);
  font-size: 42px;
  font-weight: 800;
  line-height: 1.08;
}

h3 {
  font-size: 20px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 560px;
  margin-bottom: 12px;
  color: #3d5551;
  font-size: 17px;
  line-height: 1.55;
}

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.hero-badges span {
  padding: 7px 11px;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  color: var(--green-dark);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(239, 254, 249, 0.5));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.86),
    0 8px 20px rgba(15, 41, 38, 0.06);
  font-size: 13px;
  font-weight: 800;
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  backdrop-filter: blur(14px) saturate(1.2);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 22px;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  width: min(620px, 100%);
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(234, 250, 244, 0.58));
  box-shadow:
    inset 0 1px 0 var(--glass-highlight),
    var(--shadow);
  -webkit-backdrop-filter: blur(20px) saturate(1.25);
  backdrop-filter: blur(20px) saturate(1.25);
}

.hero-facts div {
  position: relative;
  padding: 13px 15px;
  border-right: 1px solid var(--line);
}

.hero-facts div::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--green-dark), var(--green), var(--aqua));
}

.hero-facts div:last-child {
  border-right: 0;
}

.hero-facts dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-facts dd {
  margin: 0;
  color: var(--navy);
  font-size: 18px;
  font-weight: 800;
}

.splash-strip {
  overflow: hidden;
  color: var(--green-dark);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(234, 250, 244, 0.58), rgba(255, 255, 255, 0.72));
  border-top: 1px solid rgba(255, 255, 255, 0.66);
  border-bottom: 1px solid var(--glass-line);
  box-shadow: inset 0 1px 0 var(--glass-highlight);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  backdrop-filter: blur(14px) saturate(1.2);
}

.splash-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding: 10px 20px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  animation: marquee 28s linear infinite;
}

.splash-track span {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}

.splash-track span::after {
  width: 7px;
  height: 7px;
  content: "";
  border-radius: 50%;
  background: linear-gradient(135deg, var(--green), var(--aqua));
}

.category-band,
.catalog-section,
.about-section,
.trust-section,
.contact-section {
  padding: 64px 20px;
}

.category-band {
  background: linear-gradient(180deg, #ffffff 0%, #f4fbf8 100%);
}

.section-heading {
  width: min(1220px, 100%);
  margin: 0 auto 26px;
}

.section-heading h2,
.section-heading p {
  max-width: 760px;
}

.section-heading p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1220px, 100%);
  margin: 0 auto;
  gap: 14px;
}

.category-tile {
  position: relative;
  min-height: 196px;
  padding: 20px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  color: var(--green-dark);
  text-align: left;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(233, 251, 245, 0.6) 54%, rgba(255, 255, 255, 0.8)),
    url("assets/seafood-hero.jpg");
  background-position: center;
  background-size: cover;
  box-shadow:
    inset 0 1px 0 var(--glass-highlight),
    0 18px 42px rgba(15, 41, 38, 0.08);
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  -webkit-backdrop-filter: blur(18px) saturate(1.22);
  backdrop-filter: blur(18px) saturate(1.22);
}

.category-tile::before {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--green-dark), var(--green), var(--aqua));
}

.category-tile::after {
  position: absolute;
  inset: -70% -28%;
  z-index: 0;
  pointer-events: none;
  content: "";
  background:
    radial-gradient(circle at 24% 44%, rgba(255, 255, 255, 0.82) 0 8%, rgba(255, 255, 255, 0.28) 9% 22%, transparent 34%),
    linear-gradient(108deg, transparent 34%, rgba(255, 255, 255, 0.44) 48%, rgba(207, 238, 232, 0.24) 58%, transparent 74%);
  filter: blur(3px);
  opacity: 0.24;
  transform: translateX(-34%) rotate(-8deg);
  transition: transform 620ms var(--ease-liquid), opacity 220ms ease;
}

.category-tile:hover {
  border-color: rgba(24, 183, 173, 0.38);
  transform: translateY(-6px);
  box-shadow:
    inset 0 1px 0 var(--glass-highlight),
    0 22px 54px rgba(15, 41, 38, 0.12);
}

.category-tile:hover::after {
  opacity: 0.78;
  transform: translateX(28%) rotate(7deg);
}

.category-tile:nth-child(2) {
  background-position: 42% center;
}

.category-tile:nth-child(3) {
  background-position: 76% center;
}

.category-tile span,
.category-tile strong {
  position: relative;
  z-index: 1;
  display: block;
}

.category-tile span {
  max-width: 250px;
  font-family: var(--font-display);
  font-size: 23px;
  font-weight: 700;
  line-height: 1.15;
}

.category-tile strong {
  position: absolute;
  right: 22px;
  bottom: 18px;
  color: rgba(5, 116, 95, 0.14);
  font-family: var(--font-display);
  font-size: 56px;
  font-weight: 700;
  line-height: 0.9;
}

.category-tile.active {
  border-color: var(--green);
  outline: 4px solid rgba(24, 183, 173, 0.18);
}

.catalog-section {
  background:
    linear-gradient(180deg, #ffffff 0%, #f7fffb 100%);
}

.catalog-shell {
  width: min(1220px, 100%);
  margin: 0 auto;
  padding: 22px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(239, 253, 248, 0.58)),
    linear-gradient(180deg, rgba(255, 255, 255, 0.68), rgba(231, 248, 255, 0.3));
  box-shadow:
    inset 0 1px 0 var(--glass-highlight),
    0 26px 70px rgba(15, 41, 38, 0.11);
  -webkit-backdrop-filter: blur(22px) saturate(1.28);
  backdrop-filter: blur(22px) saturate(1.28);
}

.catalog-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 16px;
}

.breadcrumbs {
  display: flex;
  gap: 8px;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.breadcrumbs a {
  color: var(--green);
}

.catalog-heading h2 {
  margin-bottom: 0;
}

.catalog-tools {
  width: min(340px, 100%);
}

.search-box {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.search-box input,
.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(185, 233, 223, 0.62);
  border-radius: var(--radius);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  outline: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  -webkit-backdrop-filter: blur(12px) saturate(1.14);
  backdrop-filter: blur(12px) saturate(1.14);
}

.search-box input {
  height: 46px;
  padding: 0 13px;
}

.search-box input:focus,
.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--aqua);
  box-shadow: 0 0 0 4px rgba(24, 183, 173, 0.16);
}

.tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
}

.tab {
  position: relative;
  min-height: 44px;
  padding: 11px 17px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: 999px;
  color: var(--green-dark);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(238, 252, 247, 0.52));
  box-shadow:
    inset 0 1px 0 var(--glass-highlight),
    0 10px 22px rgba(15, 41, 38, 0.06);
  cursor: pointer;
  font-weight: 800;
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
  -webkit-backdrop-filter: blur(14px) saturate(1.18);
  backdrop-filter: blur(14px) saturate(1.18);
}

.tab:hover {
  border-color: rgba(24, 183, 173, 0.34);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 16px 30px rgba(15, 41, 38, 0.1);
}

.tab.active {
  color: #fff;
  border-color: var(--green);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(5, 116, 95, 0.96), rgba(16, 133, 115, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -10px 24px rgba(4, 63, 53, 0.18),
    0 14px 30px rgba(5, 116, 95, 0.22);
}

.product-status {
  min-height: 22px;
  margin-bottom: 12px;
  color: var(--muted);
  font-weight: 700;
}

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

.product-card {
  position: relative;
  display: flex;
  min-height: 274px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(239, 253, 248, 0.62));
  box-shadow:
    inset 0 1px 0 var(--glass-highlight),
    0 14px 32px rgba(15, 41, 38, 0.08);
  flex-direction: column;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  backdrop-filter: blur(18px) saturate(1.2);
}

.product-card:hover {
  border-color: rgba(24, 183, 173, 0.42);
  transform: translateY(-3px);
  box-shadow:
    inset 0 1px 0 var(--glass-highlight),
    0 22px 54px rgba(15, 41, 38, 0.13);
}

.product-media {
  position: relative;
  min-height: 172px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(4, 63, 53, 0.32)),
    url("assets/seafood-hero.jpg");
  background-size: 980px auto;
}

.product-media.has-product-image {
  display: block;
  min-height: 0;
  padding: 0;
  aspect-ratio: 1.34 / 1;
  background: #ffffff;
}

.product-media.has-product-image::after,
.dialog-media.has-dialog-image::after {
  position: absolute;
  z-index: 1;
  pointer-events: none;
  content: "";
  background: linear-gradient(135deg, rgba(5, 116, 95, 0.72), rgba(24, 183, 173, 0.5) 58%, rgba(16, 47, 76, 0.34));
  -webkit-mask: url("assets/logo-display.png") center / contain no-repeat;
  mask: url("assets/logo-display.png") center / contain no-repeat;
  mix-blend-mode: multiply;
  opacity: 0.18;
  transform: rotate(-5deg) scale(1.08);
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-media.has-product-image::after {
  inset: 9%;
}

.product-media img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  max-height: none;
  object-fit: cover;
  transition: transform 180ms ease;
}

.product-card:hover .product-media.has-product-image::after {
  opacity: 0.24;
  transform: rotate(-5deg) scale(1.14);
}

.product-card:hover .product-media img {
  transform: scale(1.04);
}

.media-fish {
  background-position: 42% 42%;
}

.media-shellfish {
  background-position: 88% 44%;
}

.media-cut {
  background-position: 68% 62%;
}

.product-card:nth-child(4n + 1) .product-media {
  background-position-x: 50%;
}

.product-card:nth-child(4n + 2) .product-media {
  background-position-x: 75%;
}

.product-card:nth-child(4n + 3) .product-media {
  background-position-x: 88%;
}

.product-badge {
  position: absolute;
  top: 13px;
  left: 13px;
  z-index: 2;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  color: var(--green-dark);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(235, 251, 246, 0.54));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.8),
    0 8px 20px rgba(15, 41, 38, 0.08);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  backdrop-filter: blur(14px) saturate(1.2);
}

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

.product-category {
  margin-bottom: 7px;
  color: var(--green);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-title {
  margin-bottom: 14px;
  color: var(--ink);
  font-size: 18px;
}

.product-title-alt {
  display: block;
  margin: -8px 0 14px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}

.product-card button {
  position: relative;
  width: 100%;
  min-height: 46px;
  margin-top: auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: var(--radius);
  color: #fff;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.15), transparent 34%),
    linear-gradient(135deg, rgba(5, 116, 95, 0.96), rgba(13, 137, 117, 0.92));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.34),
    inset 0 -12px 24px rgba(4, 63, 53, 0.17),
    0 14px 28px rgba(5, 116, 95, 0.2);
  cursor: pointer;
  font-weight: 800;
  isolation: isolate;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, border-color 180ms ease;
}

.product-card button:hover {
  transform: translateY(-2px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.22), transparent 36%),
    linear-gradient(135deg, rgba(4, 63, 53, 0.98), rgba(5, 116, 95, 0.94));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    inset 0 -14px 28px rgba(4, 63, 53, 0.2),
    0 20px 40px rgba(5, 116, 95, 0.28);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 430px;
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  gap: 34px;
  align-items: center;
}

.about-copy p,
.contact-card p {
  color: var(--muted);
  font-size: 16px;
  line-height: 1.62;
}

.profile-panel {
  position: relative;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.76), rgba(235, 251, 246, 0.58));
  box-shadow:
    inset 0 1px 0 var(--glass-highlight),
    var(--shadow);
  -webkit-backdrop-filter: blur(22px) saturate(1.24);
  backdrop-filter: blur(22px) saturate(1.24);
}

.profile-panel::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--green-dark), var(--green), var(--aqua));
}

.profile-panel img {
  width: 126px;
  margin-bottom: 14px;
  filter: drop-shadow(0 12px 22px rgba(5, 116, 95, 0.16));
}

.profile-panel dl {
  margin: 0;
}

.profile-panel div {
  padding: 12px 0;
  border-top: 1px solid rgba(185, 233, 223, 0.5);
}

.profile-panel dt {
  margin-bottom: 6px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.profile-panel dd {
  margin: 0;
  font-weight: 800;
}

.trust-section {
  background:
    linear-gradient(180deg, #f4fbf8, #ffffff);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(1220px, 100%);
  margin: 0 auto;
  gap: 14px;
}

.trust-grid article {
  padding: 22px;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.74), rgba(238, 252, 247, 0.56));
  box-shadow:
    inset 0 1px 0 var(--glass-highlight),
    0 14px 34px rgba(15, 41, 38, 0.08);
  -webkit-backdrop-filter: blur(18px) saturate(1.2);
  backdrop-filter: blur(18px) saturate(1.2);
}

.trust-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--green);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
}

.trust-grid p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.55;
}

.contact-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  width: min(1220px, calc(100% - 40px));
  margin: 0 auto;
  gap: 22px;
}

.contact-card,
.inquiry-form {
  border-radius: var(--radius);
}

.contact-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  color: var(--green-dark);
  border: 1px solid var(--glass-border);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(232, 248, 241, 0.64)),
    url("assets/seafood-hero.jpg") center / cover;
  box-shadow:
    inset 0 1px 0 var(--glass-highlight),
    var(--shadow);
  -webkit-backdrop-filter: blur(22px) saturate(1.24);
  backdrop-filter: blur(22px) saturate(1.24);
}

.contact-card::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 5px;
  content: "";
  background: linear-gradient(90deg, var(--green-dark), var(--green), var(--aqua));
}

.contact-card p {
  color: #48605c;
}

.contact-links {
  display: grid;
  gap: 8px;
  margin-top: 20px;
  font-weight: 800;
}

.contact-links a,
.contact-links span {
  padding: 12px 13px;
  border: 1px solid rgba(255, 255, 255, 0.62);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(238, 252, 247, 0.48));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.72);
  overflow-wrap: anywhere;
  -webkit-backdrop-filter: blur(14px) saturate(1.18);
  backdrop-filter: blur(14px) saturate(1.18);
}

.inquiry-form {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--glass-border);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.78), rgba(238, 252, 247, 0.58));
  box-shadow:
    inset 0 1px 0 var(--glass-highlight),
    var(--shadow);
  -webkit-backdrop-filter: blur(22px) saturate(1.24);
  backdrop-filter: blur(22px) saturate(1.24);
}

.inquiry-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.inquiry-form input,
.inquiry-form select {
  height: 46px;
  padding: 0 13px;
}

.inquiry-form textarea {
  padding: 13px;
  resize: vertical;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 20px;
  padding: 24px max(20px, calc((100% - 1220px) / 2));
  color: #48605c;
  border-top: 1px solid var(--glass-line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(238, 252, 247, 0.58));
  box-shadow: inset 0 1px 0 var(--glass-highlight);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
  backdrop-filter: blur(18px) saturate(1.18);
}

.site-footer img {
  width: 54px;
  margin-bottom: 6px;
}

.site-footer p {
  margin: 0;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  color: var(--green-dark);
  font-weight: 800;
}

.site-footer > p {
  text-align: right;
}

.product-dialog {
  width: min(540px, calc(100% - 32px));
  padding: 0 0 28px;
  overflow: hidden;
  border: 1px solid var(--glass-border);
  border-radius: var(--radius);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(239, 253, 248, 0.68));
  box-shadow:
    inset 0 1px 0 var(--glass-highlight),
    0 34px 90px rgba(15, 41, 38, 0.24);
  -webkit-backdrop-filter: blur(24px) saturate(1.24);
  backdrop-filter: blur(24px) saturate(1.24);
}

.product-dialog::backdrop {
  background:
    linear-gradient(135deg, rgba(5, 54, 47, 0.44), rgba(16, 47, 76, 0.34));
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.dialog-close {
  position: absolute;
  top: 11px;
  right: 11px;
  width: 40px;
  height: 40px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  color: var(--green-dark);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.8), rgba(238, 252, 247, 0.54));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.82),
    0 10px 24px rgba(15, 41, 38, 0.1);
  cursor: pointer;
  font-size: 26px;
  isolation: isolate;
  line-height: 1;
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
  -webkit-backdrop-filter: blur(16px) saturate(1.18);
  backdrop-filter: blur(16px) saturate(1.18);
}

.dialog-close:hover {
  border-color: rgba(24, 183, 173, 0.34);
  transform: translateY(-2px) scale(1.03);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.88),
    0 16px 32px rgba(15, 41, 38, 0.14);
}

.dialog-media {
  position: relative;
  display: grid;
  min-height: 260px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.12), rgba(4, 63, 53, 0.3)),
    url("assets/seafood-hero.jpg");
  background-position: center;
  background-size: cover;
  place-items: center;
}

.dialog-media.has-dialog-image::after {
  inset: 8%;
  opacity: 0.14;
  transform: rotate(-4deg) scale(1.02);
}

.dialog-media img {
  position: relative;
  z-index: 0;
  width: 100%;
  height: clamp(260px, 54vw, 360px);
  padding: 0;
  object-fit: contain;
  background: #ffffff;
}

.dialog-category {
  display: block;
  margin: 24px 28px 8px;
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.product-dialog h3,
.product-dialog p,
.product-dialog .button {
  margin-right: 28px;
  margin-left: 28px;
}

.product-dialog p {
  color: var(--muted);
  line-height: 1.65;
}

html[dir="rtl"] body {
  text-align: right;
}

html[dir="rtl"] .brand::before {
  right: -22px;
  left: auto;
  border-radius: 0 0 0 84px;
}

html[dir="rtl"] .hero-overlay {
  background:
    linear-gradient(270deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 42%, rgba(255, 255, 255, 0.38) 72%, rgba(255, 255, 255, 0.18) 100%),
    linear-gradient(180deg, rgba(232, 248, 241, 0.38), rgba(231, 248, 255, 0.2));
}

html[dir="rtl"] h1,
html[dir="rtl"] .hero-copy,
html[dir="rtl"] .section-heading h2,
html[dir="rtl"] .section-heading p {
  margin-right: 0;
  margin-left: auto;
}

html[dir="rtl"] .hero h1 {
  max-width: 100%;
  white-space: nowrap;
}

html[dir="rtl"] .eyebrow,
html[dir="rtl"] .kicker,
html[dir="rtl"] .hero-badges,
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .tabs,
html[dir="rtl"] .breadcrumbs {
  flex-direction: row-reverse;
}

html[dir="rtl"] .hero-facts div {
  border-right: 0;
  border-left: 1px solid var(--line);
}

html[dir="rtl"] .hero-facts div:last-child {
  border-left: 0;
}

html[dir="rtl"] .category-tile {
  text-align: right;
}

html[dir="rtl"] .category-tile strong {
  right: auto;
  left: 22px;
}

html[dir="rtl"] .product-badge {
  right: 13px;
  left: auto;
}

html[dir="rtl"] .dialog-close {
  right: auto;
  left: 11px;
}

html[dir="rtl"] .site-footer > p {
  text-align: left;
}

html[dir="rtl"] .splash-track {
  animation-direction: reverse;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

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

@media (max-width: 980px) {
  .site-header {
    margin-bottom: -44px;
    padding-bottom: 44px;
  }

  .site-header::before {
    bottom: 16px;
  }

  .site-header::after {
    height: 76px;
  }

  .topline {
    flex-wrap: wrap;
    gap: 8px 16px;
  }

  .brand {
    min-width: 350px;
    gap: 14px;
  }

  .brand::before {
    top: 5px;
    left: -18px;
    width: 132px;
    height: 82px;
    border-radius: 0 0 68px 0;
  }

  html[dir="rtl"] .brand::before {
    right: -18px;
    left: auto;
    border-radius: 0 0 0 68px;
  }

  .brand img {
    width: 76px;
    height: 76px;
  }

  .brand strong {
    font-size: 18px;
  }

  .brand small {
    font-size: 11px;
  }

  .menu-toggle {
    display: inline-block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    right: 20px;
    left: 20px;
    display: none;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    background:
      linear-gradient(145deg, rgba(255, 255, 255, 0.82), rgba(239, 253, 248, 0.64));
    box-shadow:
      inset 0 1px 0 var(--glass-highlight),
      var(--shadow);
    flex-direction: column;
    -webkit-backdrop-filter: blur(22px) saturate(1.22);
    backdrop-filter: blur(22px) saturate(1.22);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    padding: 12px 14px;
  }

  .nav-action {
    text-align: center;
  }

  h1 {
    font-size: 48px;
  }

  html[dir="rtl"] .hero h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 36px;
  }

  .hero {
    min-height: 480px;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 62%, rgba(255, 255, 255, 0.48) 100%);
  }

  html[dir="rtl"] .hero-overlay {
    background:
      linear-gradient(270deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.88) 62%, rgba(255, 255, 255, 0.48) 100%);
  }

  .category-grid,
  .trust-grid,
  .contact-section,
  .about-section {
    grid-template-columns: 1fr;
  }

  .about-section,
  .contact-section {
    width: min(760px, calc(100% - 40px));
  }

  .catalog-heading {
    align-items: stretch;
    flex-direction: column;
  }

  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .site-footer {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .site-footer img {
    margin-right: auto;
    margin-left: auto;
  }

  .site-footer > p {
    text-align: center;
  }
}

@media (max-width: 620px) {
  .site-header {
    margin-bottom: -34px;
    padding-bottom: 34px;
  }

  .site-header::before {
    bottom: 12px;
  }

  .site-header::after {
    height: 60px;
  }

  .topline {
    gap: 6px 10px;
    padding: 5px 14px;
    font-size: 11px;
  }

  .navbar {
    width: calc(100% - 28px);
    min-height: 74px;
  }

  .brand {
    min-width: 0;
    gap: 10px;
  }

  .brand::before {
    top: 4px;
    left: -16px;
    width: 98px;
    height: 64px;
    border-radius: 0 0 52px 0;
  }

  html[dir="rtl"] .brand::before {
    right: -16px;
    left: auto;
    border-radius: 0 0 0 52px;
  }

  .brand img {
    width: 58px;
    height: 58px;
  }

  .brand strong {
    font-size: 14px;
  }

  .brand small {
    font-size: 10px;
  }

  h1 {
    font-size: 34px;
  }

  html[dir="rtl"] .hero h1 {
    white-space: normal;
  }

  h2 {
    font-size: 30px;
  }

  .hero {
    min-height: auto;
  }

  .hero-media {
    background-position: 68% center;
  }

  .hero-overlay {
    background:
      linear-gradient(90deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 74%, rgba(255, 255, 255, 0.62) 100%);
  }

  html[dir="rtl"] .hero-overlay {
    background:
      linear-gradient(270deg, rgba(255, 255, 255, 0.98) 0%, rgba(255, 255, 255, 0.9) 74%, rgba(255, 255, 255, 0.62) 100%);
  }

  .hero-content {
    width: calc(100% - 28px);
    padding: 38px 0 30px;
  }

  .hero-copy {
    font-size: 15px;
    line-height: 1.5;
  }

  .splash-track {
    display: none;
  }

  .splash-strip {
    display: none;
  }

  .hero-badges {
    gap: 6px;
  }

  .hero-badges span {
    font-size: 11px;
  }

  .hero-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .hero-facts div {
    padding: 10px 8px;
    border-right: 1px solid var(--line);
    border-bottom: 0;
  }

  .hero-facts div:last-child {
    border-right: 0;
  }

  .hero-facts dt {
    font-size: 10px;
  }

  .hero-facts dd {
    font-size: 15px;
  }

  .category-band,
  .catalog-section,
  .about-section,
  .trust-section,
  .contact-section {
    padding-top: 44px;
    padding-bottom: 44px;
  }

  .catalog-shell {
    padding: 14px;
  }

  .category-tile {
    min-height: 170px;
  }

  .product-grid {
    grid-template-columns: 1fr;
  }

  .product-card {
    min-height: 254px;
  }

  .contact-card,
  .inquiry-form,
  .profile-panel {
    padding: 18px;
  }
}
