:root {
  --cream: #fffaf4;
  --paper: #fffdf9;
  --surface: #ffffff;
  --sand: #f8eddf;
  --sand-strong: #f1dfca;
  --brown: #3b2418;
  --ink: #3b2418;
  --muted: #76665c;
  --orange: #cc5a08;
  --orange-dark: #9e3e00;
  --line: #f0dfcf;
  --shadow: 0 12px 34px rgba(87, 46, 21, 0.08);
  --radius-xl: 26px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --content-width: 1420px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 236, 213, 0.45), transparent 24rem),
    radial-gradient(circle at 93% 24%, rgba(248, 220, 191, 0.33), transparent 30rem),
    var(--cream);
  color: var(--brown);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.45;
}

a { color: inherit; }

img { max-width: 100%; }

h1, h2, h3, p { overflow-wrap: anywhere; }

.skip-link {
  position: fixed;
  z-index: 30;
  top: -70px;
  left: 12px;
  padding: 10px 14px;
  border-radius: 9px;
  background: var(--brown);
  color: #fff;
  font-weight: 800;
  text-decoration: none;
}

.skip-link:focus { top: 12px; }

.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 249, 0.92);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  width: min(calc(100% - 32px), var(--content-width));
  min-height: 88px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-inline: auto;
}

.brand {
  display: block;
  width: clamp(148px, 20vw, 210px);
  flex: 0 0 auto;
}

.brand img { display: block; width: 100%; height: auto; }

.header-search {
  position: relative;
  z-index: 1;
  flex: 1 1 280px;
  max-width: 430px;
}

.header-search .menu-search { max-width: none; margin-top: 0; }
.header-search .search-results {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  left: 0;
  margin: 0;
  padding: 7px 12px;
  border: 1px solid var(--line);
  border-radius: 9px;
  background: #fffdf9;
  box-shadow: 0 8px 20px rgba(60, 34, 18, 0.1);
}

.trust-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(15px, 3.4vw, 46px);
}

.language-trigger {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 0 12px;
  border: 1px solid #ead5bd;
  border-radius: 999px;
  background: #fff;
  color: var(--brown);
  cursor: pointer;
  font: inherit;
  font-size: 0.75rem;
  font-weight: 900;
}
.language-trigger:hover { border-color: var(--orange); color: var(--orange); }
.language-flag {
  display: inline-block;
  width: 23px;
  height: 16px;
  border: 1px solid rgba(71, 44, 27, 0.16);
  border-radius: 3px;
  box-shadow: 0 1px 2px rgba(60, 34, 18, 0.14);
  overflow: hidden;
}
.flag-az { background: linear-gradient(to bottom, #00b5e2 0 33.33%, #ef3340 33.33% 66.66%, #509e2f 66.66%); }
.flag-ru { background: linear-gradient(to bottom, #fff 0 33.33%, #1d4fa3 33.33% 66.66%, #d52b1e 66.66%); }
.flag-en {
  background-color: #1d3f8f;
  background-image:
    linear-gradient(33deg, transparent 42%, #fff 42% 47%, #cf1f2d 47% 50%, transparent 50% 53%, #cf1f2d 53% 56%, #fff 56% 61%, transparent 61%),
    linear-gradient(-33deg, transparent 42%, #fff 42% 47%, #cf1f2d 47% 50%, transparent 50% 53%, #cf1f2d 53% 56%, #fff 56% 61%, transparent 61%),
    linear-gradient(to right, transparent 37%, #fff 37% 43%, #cf1f2d 43% 57%, #fff 57% 63%, transparent 63%),
    linear-gradient(to bottom, transparent 32%, #fff 32% 40%, #cf1f2d 40% 60%, #fff 60% 68%, transparent 68%);
}
.flag-ar {
  background: #006c35;
  background-image: linear-gradient(to bottom, transparent 42%, rgba(255, 255, 255, 0.92) 42% 52%, transparent 52%);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brown);
}

.trust-item > span:last-child { display: grid; gap: 1px; }

.trust-item strong { font-size: 0.82rem; font-weight: 850; }

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

.trust-icon,
.section-icon,
.category-link > span:first-child {
  display: grid;
  place-items: center;
  color: var(--orange);
  font-family: Georgia, serif;
  font-weight: 900;
}

.trust-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff5e9;
  font-size: 1.15rem;
}

.catalog-layout {
  display: grid;
  width: min(calc(100% - 28px), var(--content-width));
  grid-template-columns: 238px minmax(0, 1fr);
  gap: clamp(24px, 3vw, 44px);
  align-items: start;
  margin: 26px auto 56px;
}

.category-nav {
  position: fixed;
  z-index: 20;
  top: 104px;
  left: max(14px, calc((100vw - var(--content-width)) / 2));
  width: 238px;
  height: calc(100vh - 120px);
  max-height: none;
  overflow-y: auto;
  padding: 17px 12px 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: rgba(255, 253, 249, 0.86);
  box-shadow: 0 10px 28px rgba(87, 46, 21, 0.04);
}

.sidebar-label {
  margin: 0 10px 10px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.category-links { display: grid; gap: 5px; }

.category-link {
  display: grid;
  grid-template-columns: 31px minmax(0, 1fr);
  min-height: 54px;
  align-items: center;
  gap: 8px;
  padding: 8px 10px;
  border: 1px solid rgba(224, 198, 175, 0.72);
  border-radius: 14px;
  color: var(--brown);
  font-size: 0.87rem;
  font-weight: 800;
  text-decoration: none;
  background: rgba(255, 253, 249, 0.72);
  transition: background-color 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.category-link:hover { border-color: #e5b98e; background: #fff4e8; transform: translateX(2px); }

.category-link.is-active {
  border-color: #f5dcc5;
  background: linear-gradient(135deg, #fff4e8, #ffead4);
  color: var(--orange-dark);
}

.category-link.is-active > span:first-child { color: var(--orange-dark); }

.menu-note {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 18px;
  padding: 12px 10px 4px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.menu-note span { color: var(--orange); font-weight: 900; }
.menu-note p { margin: 0; font-size: 0.72rem; line-height: 1.42; }

.page-content { min-width: 0; grid-column: 2; }

.menu-intro {
  position: relative;
  overflow: hidden;
  padding: clamp(24px, 4vw, 44px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 95% 11%, rgba(251, 211, 166, 0.46), transparent 15rem),
    linear-gradient(130deg, #fffdf9, #fff7ee);
  box-shadow: var(--shadow);
}

.menu-intro::after {
  position: absolute;
  right: -34px;
  bottom: -67px;
  width: 190px;
  height: 190px;
  border: 2px solid rgba(204, 90, 8, 0.12);
  border-radius: 45% 55% 48% 52%;
  content: "";
  transform: rotate(-24deg);
}

.eyebrow {
  position: relative;
  z-index: 1;
  margin: 0;
  color: var(--orange);
  font-size: 0.7rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.menu-intro h1 {
  position: relative;
  z-index: 1;
  max-width: 700px;
  margin: 7px 0 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5vw, 3.7rem);
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.menu-intro > p:last-child {
  position: relative;
  z-index: 1;
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.9rem, 2vw, 1rem);
}

.menu-search {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  max-width: 520px;
  gap: 9px;
  margin-top: 20px;
  padding: 0 13px;
  border: 1px solid #ead5bd;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.86);
  color: var(--orange);
}
.menu-search > span { font-size: 1.3rem; font-weight: 800; line-height: 1; }
.menu-search input {
  width: 100%;
  height: 46px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 0.87rem;
}
.menu-search input::placeholder { color: var(--muted); }
.menu-search input::-webkit-search-cancel-button,
.menu-search input::-webkit-search-decoration,
.menu-search input::-ms-clear {
  display: none;
  width: 0;
  height: 0;
  appearance: none;
}
.search-results { position: relative; z-index: 1; margin: 8px 0 0; color: var(--muted); font-size: 0.78rem; }
html[lang="ar"] .menu-search input,
html[lang="ar"] .search-results,
html[lang="ar"] .menu-intro { direction: rtl; text-align: right; }

.language-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(45, 25, 14, 0.6);
  backdrop-filter: blur(8px);
}
.language-modal[hidden] { display: none; }

.product-image-wrap.can-zoom { cursor: zoom-in; }
.product-image-wrap.can-zoom:focus-visible { outline: 3px solid var(--orange); outline-offset: 2px; }
body.image-viewer-open { overflow: hidden; }
.image-viewer {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 60px 14px 20px;
  background: rgba(24, 13, 7, 0.9);
  backdrop-filter: blur(6px);
}
.image-viewer[hidden] { display: none; }
.image-viewer-figure { display: grid; justify-items: center; gap: 14px; width: min(100%, 760px); margin: 0; }
.image-viewer-image {
  display: block;
  max-width: 100%;
  max-height: calc(100vh - 180px);
  max-height: calc(100dvh - 180px);
  border-radius: 18px;
  background: #fff;
  object-fit: contain;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.45);
}
.image-viewer-caption { display: grid; gap: 6px; color: #fff; text-align: center; }
.image-viewer-caption .product-title { color: #fff; font-size: calc(1.15rem * var(--name-scale, 1)); }
.image-viewer-caption .product-price { margin: 0; color: #ffd3a8; font-size: 1.05rem; font-weight: 900; }
.image-viewer-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
}
.image-viewer-close:hover { background: rgba(255, 255, 255, 0.28); }
html[lang="ar"] .image-viewer-close { right: auto; left: 12px; }
.language-modal-card {
  width: min(100%, 430px);
  padding: clamp(24px, 7vw, 38px);
  border: 1px solid #f0d9be;
  border-radius: var(--radius-xl);
  background: #fffdf9;
  box-shadow: 0 28px 80px rgba(31, 17, 9, 0.32);
}
.language-modal-card h2 { margin: 7px 0 8px; font-family: Georgia, "Times New Roman", serif; font-size: clamp(1.8rem, 7vw, 2.5rem); letter-spacing: -0.045em; }
.language-modal-card > p:last-of-type { margin: 0; color: var(--muted); }
.language-options { display: grid; gap: 10px; margin-top: 24px; }
.language-options button {
  display: grid;
  grid-template-columns: 35px 1fr auto;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 0 14px;
  border: 1px solid #ead5bd;
  border-radius: 14px;
  background: #fff;
  color: var(--brown);
  cursor: pointer;
  text-align: left;
}
.language-options button > .language-flag { width: 28px; height: 19px; }
.language-options button strong { font-size: 0.9rem; }
.language-options button small { color: var(--muted); font-size: 0.7rem; font-weight: 900; }
.language-options button:hover { border-color: var(--orange); background: #fff8ef; }

.loading-state,
.offline-state,
.error-state {
  margin-top: 22px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  color: var(--muted);
  text-align: center;
}

.offline-state {
  border-color: #ead8ad;
  background: #fff9e9;
  color: #765b1e;
  font-size: 0.84rem;
}

.error-state { border-color: #f1c9bd; background: #fff5f2; color: #9a371e; }
.error-state h2, .error-state p { margin: 0; }
.error-state p { margin-top: 6px; }

.menu-section { margin-top: 38px; scroll-margin-top: 118px; }

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.section-title-wrap { display: flex; align-items: center; gap: 10px; }

.section-icon {
  width: 31px;
  height: 31px;
  border: 1px solid #f4d9c0;
  border-radius: 10px;
  background: #fff6eb;
  font-size: 1.05rem;
}

.section-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3.6vw, 2.3rem);
  letter-spacing: -0.045em;
  line-height: 1;
}

.section-count { margin: 0 0 2px; color: var(--muted); font-size: 0.78rem; white-space: nowrap; }

.category-hero {
  height: 190px;
  margin: 0 0 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #ffefd9, #f6dfc2);
  box-shadow: 0 8px 22px rgba(87, 46, 21, 0.06);
}

.category-hero-image { display: block; width: 100%; height: 100%; object-fit: cover; object-position: center 54%; }

.category-midye .product-image-wrap { display: none; }

.category-midye .product-card { min-height: 132px; }

.category-midye .product-content { padding-top: 17px; padding-bottom: 17px; }

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

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  box-shadow: 0 8px 22px rgba(87, 46, 21, 0.06);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.product-card:hover { box-shadow: 0 15px 28px rgba(87, 46, 21, 0.11); transform: translateY(-3px); }

.product-image-wrap {
  position: relative;
  height: 174px;
  overflow: hidden;
  margin: 9px 9px 0;
  border-radius: 15px;
  background: linear-gradient(135deg, #ffefd9, #f6dfc2);
}

.product-image { display: block; width: 100%; height: 100%; object-fit: cover; }

/* Clean, text-free Instagram-style treatment for online-sourced photos. */
.product-image-wolt {
  filter: saturate(1.1) contrast(1.04) brightness(1.02) sepia(0.04);
}

.product-image-wrap-wolt::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: inherit;
  background: linear-gradient(145deg, rgba(255, 215, 164, 0.12), transparent 48%, rgba(75, 28, 7, 0.08));
  content: "";
  pointer-events: none;
}

.image-mark {
  position: absolute;
  right: 10px;
  bottom: 9px;
  display: grid;
  width: 31px;
  height: 31px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: 10px;
  background: rgba(255, 250, 244, 0.86);
  color: var(--orange);
  font-family: Georgia, serif;
  font-weight: 900;
}

.image-missing { min-height: 96px; }

.product-content {
  display: flex;
  min-height: 132px;
  flex-direction: column;
  padding: 14px 14px 16px;
}

.product-title { margin: 0; font-size: calc(0.98rem * var(--name-scale, 1)); font-weight: 900; letter-spacing: -0.025em; line-height: 1.24; overflow-wrap: anywhere; }
.product-title-detail { display: inline-block; max-width: 100%; }
.product-title-range { white-space: nowrap; }

.product-description { min-height: 1.25em; margin: 5px 0 11px; color: var(--muted); font-size: 0.76rem; line-height: 1.35; }

.product-price { margin: auto 0 0; color: var(--orange); font-size: 1rem; font-weight: 950; letter-spacing: -0.025em; }
.product-price.unknown { color: var(--muted); font-size: 0.8rem; }

.set-section {
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid #f2dbbd;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #fff8ee, #ffedda);
}

.set-section .menu-section { margin-top: 0; }
.set-section .section-heading { margin-bottom: 10px; }

.sets-placeholder {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 17px;
  border: 1px dashed #dfb487;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.58);
}

.sets-placeholder-image {
  width: 104px;
  height: 76px;
  flex: 0 0 auto;
  border-radius: 11px;
  object-fit: cover;
}

.sets-placeholder-icon {
  display: grid;
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 13px;
  background: var(--orange);
  color: #fff;
  font-size: 1.2rem;
  font-weight: 900;
}

.sets-placeholder h3 { margin: 0; font-size: 0.94rem; }
.sets-placeholder p { margin: 3px 0 0; color: var(--muted); font-size: 0.78rem; }

.other-heading {
  margin: 44px 0 -20px;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 950;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-section {
  margin-top: 64px;
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #fffaf4 0%, #fff2e3 100%);
}

.contact-intro { max-width: 680px; }
.contact-intro h2 {
  margin: 7px 0 9px;
  color: var(--ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3.6vw, 2.35rem);
  letter-spacing: -0.04em;
  line-height: 1.05;
}
.contact-intro > p:last-child { margin: 0; color: var(--muted); }

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 16px;
  margin-top: 24px;
}

.contact-card {
  padding: clamp(18px, 3vw, 25px);
  border: 1px solid #f0d9be;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.82);
}
.contact-card h3 { margin: 0 0 16px; font-size: 1.06rem; }

.contact-link {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 0;
  border-top: 1px solid #f4e5d4;
  color: inherit;
  text-decoration: none;
}
.contact-link:first-of-type { border-top: 0; }
.contact-link > span:first-child {
  display: grid;
  width: 35px;
  height: 35px;
  flex: 0 0 35px;
  place-items: center;
  border-radius: 11px;
  background: #fff0dc;
  color: var(--orange);
  font-size: 1.1rem;
}
.contact-link strong, .contact-link small { display: block; }
.contact-link strong { font-size: 0.88rem; }
.contact-link small { margin-top: 2px; color: var(--muted); font-size: 0.76rem; }
.contact-link:hover strong { color: var(--orange); }

.social-links {
  display: flex;
  gap: 8px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #f4e5d4;
}
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid #ead5bd;
  border-radius: 10px;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 850;
  text-decoration: none;
}
.social-link svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2; }
.social-link.instagram { color: #c72d75; }
.social-link.tiktok { color: #171717; }
.social-link:hover { border-color: currentColor; background: #fff; }

.feedback-form { display: grid; gap: 8px; }
.feedback-form h3 { margin-bottom: 2px; }
.feedback-form label { color: var(--ink); font-size: 0.76rem; font-weight: 850; }
.feedback-form select,
.feedback-form textarea {
  width: 100%;
  box-sizing: border-box;
  border: 1px solid #ead5bd;
  border-radius: 10px;
  background: #fffdf9;
  color: var(--ink);
  font: inherit;
  font-size: 0.84rem;
}
.feedback-form select { height: 40px; padding: 0 11px; }
.feedback-form textarea { min-height: 98px; padding: 10px 11px; resize: vertical; }
.feedback-form select:focus,
.feedback-form textarea:focus { outline: 3px solid rgba(222, 102, 24, 0.18); border-color: var(--orange); }
.feedback-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 42px;
  margin-top: 5px;
  border: 0;
  border-radius: 10px;
  background: var(--orange);
  color: #fff;
  cursor: pointer;
  font: inherit;
  font-size: 0.84rem;
  font-weight: 900;
}
.feedback-submit:hover { filter: brightness(0.95); }

.map-card {
  position: relative;
  overflow: hidden;
  height: 260px;
  margin-top: 16px;
  border: 1px solid #edd7bd;
  border-radius: var(--radius-lg);
  background: #f1e7da;
}
.map-card iframe { display: block; width: 100%; height: 100%; border: 0; }
.map-card a {
  position: absolute;
  right: 12px;
  bottom: 12px;
  padding: 9px 12px;
  border-radius: 10px;
  background: rgba(54, 27, 11, 0.9);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 850;
  text-decoration: none;
}

.service-note {
  margin: 18px 4px 6px;
  color: #a28f80;
  font-size: 0.68rem;
  line-height: 1.45;
  text-align: center;
}

.noscript-message {
  margin: 18px;
  padding: 15px;
  border: 1px solid #f1c9bd;
  border-radius: 12px;
  background: #fff5f2;
  color: #9a371e;
}

@media (max-width: 980px) {
  .catalog-layout { grid-template-columns: 145px minmax(0, 1fr); gap: 16px; margin-top: 18px; }

  .category-nav { top: 98px; width: 145px; height: calc(100vh - 108px); padding: 12px 7px; border-radius: 20px; }

  .sidebar-label { margin: 0 5px 8px; font-size: 0.58rem; }

  .category-links { gap: 3px; }

  .category-link {
    grid-template-columns: 23px minmax(0, 1fr);
    min-height: 46px;
    gap: 4px;
    padding: 6px 5px;
    font-size: 0.72rem;
    line-height: 1.15;
  }

  .category-link > span:first-child { font-size: 0.82rem; }
  .menu-note { display: none; }
}

@media (min-width: 981px) and (max-height: 760px) {
  .category-nav { padding: 12px 10px; }
  .sidebar-label { margin: 0 8px 6px; }
  .category-links { gap: 3px; }
  .category-link { min-height: 46px; padding: 6px 8px; }
  .menu-note { display: none; }
}

@media (max-width: 720px) {
  .catalog-layout { width: min(calc(100% - 20px), var(--content-width)); grid-template-columns: 116px minmax(0, 1fr); gap: 10px; }
  .header-inner { width: min(calc(100% - 22px), var(--content-width)); min-height: 74px; gap: 10px; }
  .brand { width: 110px; }
  .header-search { min-width: 0; }
  .trust-list { display: none; }
  .language-trigger { min-height: 37px; padding: 0 9px; font-size: 0.7rem; }
  .category-nav { top: 84px; width: 116px; height: calc(100vh - 94px); padding: 10px 6px; border-radius: 16px; }
  .sidebar-label { margin: 0 5px 8px; font-size: 0.56rem; letter-spacing: 0.08em; }
  .category-links { gap: 4px; }
  .category-link { grid-template-columns: 19px minmax(0, 1fr); min-height: 47px; gap: 4px; padding: 6px 5px; font-size: 0.67rem; line-height: 1.18; }
  .category-link > span:first-child { font-size: 0.76rem; }
  .menu-intro { padding: 25px 20px; }
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .product-image-wrap { height: 128px; margin: 7px 7px 0; border-radius: 12px; }

  /* Keep Hamsi product copy as prominent as the desktop cards, below the photo. */
  .category-hamsi-tava .product-content { min-height: 132px; padding: 14px 14px 16px; }
  .category-hamsi-tava .product-title { font-size: calc(0.98rem * var(--name-scale, 1)); }
  .category-hamsi-tava .product-description { font-size: 0.76rem; }
  .category-hamsi-tava .product-price { font-size: 1rem; }

  .category-hero { height: 150px; margin-bottom: 12px; border-radius: 14px; }

  .category-midye .product-card { min-height: 118px; }
  .product-content { min-height: 125px; padding: 11px 11px 13px; }
  .product-title { font-size: calc(0.86rem * var(--name-scale, 1)); }
  /* Cards are ~60-80px wide here; a slightly smaller "(400-450) qr" fits on its own line. */
  .product-title-detail { font-size: 0.84em; }
  .product-description { font-size: 0.7rem; }
  .product-price { font-size: 0.9rem; }
  .image-mark { width: 25px; height: 25px; right: 7px; bottom: 7px; border-radius: 8px; font-size: 0.8rem; }
  .contact-section { margin-top: 42px; padding: 20px 15px; }
  .contact-grid { grid-template-columns: 1fr; gap: 12px; margin-top: 18px; }
  .map-card { height: 225px; }
}

@media (max-width: 420px) {
  .product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .menu-intro { padding: 19px 15px; }
  .menu-intro h1 { font-size: 1.75rem; }
  .category-link { font-size: 0.61rem; }
  .sets-placeholder { align-items: flex-start; gap: 9px; padding: 11px; }
  .sets-placeholder-image { width: 66px; height: 66px; }
  .sets-placeholder-icon { display: none; }
}

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