:root {
  --orange: #f45a0a;
  --orange-deep: #c83c00;
  --orange-soft: #fff0e6;
  --ink: #171310;
  --ink-soft: #3d342f;
  --muted: #756a63;
  --warm: #fff9f5;
  --soft: #f8f4f0;
  --white: #ffffff;
  --line: #e9ddd4;
  --line-strong: #dccbc0;
  --success: #168a4d;
  --shadow-xs: 0 5px 18px rgba(61, 31, 12, .055);
  --shadow-sm: 0 12px 34px rgba(61, 31, 12, .075);
  --shadow-md: 0 24px 70px rgba(61, 31, 12, .11);
  --radius-sm: 10px;
  --radius: 16px;
  --radius-lg: 24px;
  --wrap: min(1180px, calc(100% - 40px));
  --header-height: 74px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--ink);
  font-family: "Cairo", system-ui, sans-serif;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.modal-open,
body.drawer-open,
body.filters-open {
  overflow: hidden;
}

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

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

button {
  cursor: pointer;
}

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

svg {
  display: block;
}

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

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

:focus-visible {
  outline: 3px solid rgba(244, 90, 10, .28);
  outline-offset: 3px;
}

[hidden] {
  display: none !important;
}

.wrap {
  width: var(--wrap);
  margin-inline: auto;
}

.icon {
  width: 21px;
  height: 21px;
  flex: 0 0 auto;
}

.full-width {
  width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 10px;
  right: 10px;
  z-index: 2000;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--white);
  padding: 10px 15px;
  border-radius: var(--radius-sm);
}

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

.noscript {
  margin: 0;
  padding: 14px;
  background: #fff3cd;
  text-align: center;
}

.eyebrow {
  margin-bottom: 7px;
  color: var(--orange);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2px;
}

.eyebrow-light {
  color: #ffe0cf;
}

.stars {
  color: #f49a00;
  letter-spacing: 2px;
  line-height: 1;
}

.btn {
  min-height: 46px;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 0 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  color: var(--ink);
  background: var(--white);
  font-size: 13px;
  font-weight: 800;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, border-color .2s ease;
}

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

.btn .icon {
  width: 18px;
  height: 18px;
}

.btn-orange {
  color: var(--white);
  background: var(--orange);
  box-shadow: 0 12px 28px rgba(244, 90, 10, .22);
}

.btn-orange:hover {
  background: var(--orange-deep);
  box-shadow: 0 15px 34px rgba(200, 60, 0, .25);
}

.btn-dark {
  color: var(--white);
  background: #211814;
}

.btn-dark:hover {
  background: #000;
}

.btn-light {
  color: var(--ink);
  background: var(--white);
}

.btn-outline {
  color: var(--ink);
  border-color: var(--line);
  background: var(--white);
  box-shadow: none;
}

.btn-outline:hover {
  border-color: var(--orange);
  color: var(--orange-deep);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--orange-deep);
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.text-link .icon {
  width: 18px;
  height: 18px;
}

.icon-button {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: inline-grid;
  place-items: center;
  background: var(--white);
  color: var(--ink);
  transition: .2s ease;
}

.icon-button:hover {
  color: var(--orange);
  border-color: var(--orange);
}

/* Header */
.site-header {
  height: var(--header-height);
  position: sticky;
  top: 0;
  z-index: 300;
  border-bottom: 1px solid rgba(233, 221, 212, .85);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(15px);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  gap: 30px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  direction: ltr;
  flex: 0 0 auto;
}

.brand-symbol {
  width: 37px;
  height: 37px;
  fill: var(--orange);
}

.brand-word strong {
  display: block;
  font: 800 24px/1 "Inter", sans-serif;
  letter-spacing: -1.2px;
}

.brand-word strong span {
  color: var(--orange);
}

.brand-word small {
  display: block;
  margin-top: 4px;
  color: #857a73;
  font: 700 5.5px/1 "Inter", sans-serif;
  letter-spacing: 2px;
}

.brand-light .brand-word strong {
  color: var(--white);
}

.brand-light .brand-word small {
  color: #aaa19b;
}

.desktop-nav {
  margin-inline-start: auto;
  display: flex;
  align-items: stretch;
  align-self: stretch;
  gap: 24px;
}

.desktop-nav a {
  position: relative;
  display: flex;
  align-items: center;
  color: #3f3732;
  font-size: 12px;
  font-weight: 700;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: -1px;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform .2s ease;
}

.desktop-nav a:hover::after,
.desktop-nav a.active::after {
  transform: scaleX(1);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
}

.header-quote {
  min-height: 42px;
  padding-inline: 17px;
}

.menu-button {
  display: none;
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  z-index: 430;
  opacity: 0;
  background: rgba(23, 19, 16, .52);
  backdrop-filter: blur(3px);
  transition: opacity .22s ease;
}

.drawer-backdrop.open {
  opacity: 1;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 440;
  width: min(360px, 88vw);
  padding: 20px;
  background: var(--white);
  box-shadow: -20px 0 70px rgba(23, 19, 16, .2);
  transform: translateX(105%);
  transition: transform .28s ease;
  display: flex;
  flex-direction: column;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-head {
  padding-bottom: 17px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-drawer nav {
  padding-block: 12px;
  display: grid;
}

.mobile-drawer nav a {
  min-height: 50px;
  border-bottom: 1px solid #f1e8e2;
  display: flex;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
}

.drawer-contact {
  margin-top: auto;
  padding-block: 15px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.drawer-contact a {
  min-height: 55px;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 700;
}

.drawer-contact .icon {
  color: var(--orange);
}

/* Hero */
.hero {
  height: 650px;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fff1e7 0%, #fff7f1 48%, #ffffff 100%);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -3;
  background: radial-gradient(circle at 50% 25%, rgba(255, 190, 125, .22), transparent 46%);
}

.hero-ceiling {
  position: absolute;
  width: 1260px;
  height: 440px;
  top: -292px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: linear-gradient(180deg, #661b00 0%, #bd3400 45%, #ff6e13 78%, #ffb36d 100%);
  box-shadow: 0 30px 80px rgba(244, 90, 10, .32);
  z-index: -1;
}

.hero-ceiling::before {
  content: "";
  position: absolute;
  width: 785px;
  height: 225px;
  left: 50%;
  bottom: -18px;
  transform: translateX(-50%);
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .9);
  background: radial-gradient(ellipse at center, #fffce6 0%, #ffe0ad 52%, rgba(255, 190, 118, .3) 65%, transparent 72%);
  box-shadow: 0 0 10px #fff, 0 0 42px #ffd38d, 0 0 82px rgba(255, 91, 0, .75);
}

.hero-ceiling::after {
  content: "";
  position: absolute;
  width: 1030px;
  height: 320px;
  left: 50%;
  bottom: -205px;
  transform: translateX(-50%);
  border: 1px solid rgba(244, 90, 10, .22);
  border-radius: 50%;
}

.hero-ceiling span {
  position: absolute;
  width: 920px;
  height: 260px;
  left: 50%;
  bottom: -162px;
  transform: translateX(-50%);
  border: 1px solid rgba(244, 90, 10, .15);
  border-radius: 50%;
}

.hero-copy {
  padding-top: 82px;
  position: relative;
  z-index: 4;
  text-align: center;
}

.hero-copy h1 {
  margin-bottom: 13px;
  font-size: clamp(44px, 5vw, 68px);
  line-height: 1.08;
  letter-spacing: -2.7px;
  font-weight: 900;
}

.hero-copy h1 span,
.hero-copy h1 em {
  display: block;
}

.hero-copy h1 em {
  color: var(--orange);
  font-style: normal;
}

.hero-subtitle {
  max-width: 570px;
  margin: 0 auto 20px;
  color: #6e6159;
  font-size: 15px;
}

.hero-cta {
  min-height: 44px;
  padding-inline: 20px;
  font-size: 12px;
}

.hero-stage {
  position: absolute;
  left: 50%;
  bottom: 38px;
  z-index: 3;
  width: min(940px, 88vw);
  height: 270px;
  transform: translateX(-50%);
}

.hero-stage::before {
  content: "";
  position: absolute;
  width: 84%;
  height: 104px;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(255, 247, 212, .97) 0%, rgba(255, 166, 78, .58) 42%, rgba(244, 90, 10, .18) 61%, transparent 72%);
  box-shadow: 0 0 45px rgba(244, 90, 10, .26);
}

.hero-stage img {
  position: absolute;
  inset: auto 0 17px;
  z-index: 3;
  width: 100%;
  height: auto;
  margin: auto;
  filter: drop-shadow(0 24px 26px rgba(90, 31, 0, .24));
  -webkit-mask-image: radial-gradient(ellipse 78% 92% at 50% 58%, #000 58%, rgba(0, 0, 0, .92) 76%, transparent 100%);
  mask-image: radial-gradient(ellipse 78% 92% at 50% 58%, #000 58%, rgba(0, 0, 0, .92) 76%, transparent 100%);
}

.stage-orbit {
  position: absolute;
  left: 50%;
  border-radius: 50%;
  transform: translateX(-50%);
}

.stage-orbit-outer {
  width: 100%;
  height: 120px;
  bottom: 0;
  border: 2px solid rgba(255, 132, 35, .43);
  box-shadow: 0 0 20px rgba(244, 90, 10, .22);
}

.stage-orbit-inner {
  width: 75%;
  height: 74px;
  bottom: 19px;
  border: 1px solid rgba(255, 213, 160, .9);
  box-shadow: inset 0 0 25px rgba(244, 90, 10, .18);
}

/* Trust */
.trust-shell {
  position: relative;
  z-index: 10;
  margin-top: -27px;
}

.trust-strip {
  min-height: 94px;
  padding: 13px 18px;
  border: 1px solid rgba(229, 211, 199, .9);
  border-radius: 18px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background: rgba(255, 255, 255, .96);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(14px);
}

.trust-item {
  min-width: 0;
  padding: 9px 14px;
  border-inline-end: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
}

.trust-item:last-child {
  border-inline-end: 0;
}

.trust-icon {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--orange);
  background: var(--orange-soft);
  flex: 0 0 auto;
}

.trust-icon .icon {
  width: 20px;
  height: 20px;
}

.trust-item strong,
.trust-item small {
  display: block;
}

.trust-item strong {
  font-size: 12px;
}

.trust-item small {
  margin-top: 1px;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.45;
}

/* Shared sections */
.section {
  padding: 80px 0;
}

.section-tight {
  padding-top: 28px;
}

.section-soft {
  background: var(--soft);
}

.section-head {
  margin-bottom: 28px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
}

.section-head h2 {
  margin-bottom: 0;
  font-size: clamp(28px, 3.2vw, 39px);
  line-height: 1.25;
  letter-spacing: -.8px;
}

.section-head>p {
  max-width: 450px;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 12px;
}

.section-head.compact {
  margin-bottom: 18px;
}

.section-head.compact h2 {
  font-size: 25px;
}

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

.product-card {
  min-width: 0;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-xs);
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
  display: flex;
  flex-direction: column;
}

.product-card:hover {
  transform: translateY(-5px);
  border-color: #ddc9bc;
  box-shadow: var(--shadow-sm);
}

.product-card-top {
  position: absolute;
  inset: 13px 13px auto;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  direction: rtl;
  pointer-events: none;
}

.product-card-top>* {
  pointer-events: auto;
}

.product-badge {
  border-radius: 999px;
  padding: 4px 10px;
  color: var(--white);
  background: var(--orange);
  font-size: 8px;
  font-weight: 800;
}

.compare-toggle {
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #7b6f68;
  background: rgba(255, 255, 255, .9);
  transition: .2s ease;
}

.compare-toggle .icon {
  width: 16px;
  height: 16px;
}

.compare-toggle:hover,
.compare-toggle.active {
  color: var(--white);
  border-color: var(--orange);
  background: var(--orange);
}

.product-media {
  height: 230px;
  padding: 48px 24px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #fffaf7, #fff);
  position: relative;
  overflow: hidden;
}

.product-media::after {
  content: "";
  position: absolute;
  width: 65%;
  height: 26px;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(244, 90, 10, .18), transparent 70%);
  pointer-events: none;
}

.product-media img {
  position: relative;
  z-index: 2;
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 8px 10px rgba(61, 31, 12, .14));
  transition: transform .24s ease;
}

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

.product-card-body {
  padding: 12px 16px 16px;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-category {
  color: var(--orange-deep);
  font-size: 8px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.product-card h3 {
  margin: 4px 0 5px;
  font: 800 20px/1.25 "Inter", "Cairo", sans-serif;
  letter-spacing: -.6px;
  direction: ltr;
  text-align: right;
}

.product-card-body>p {
  height: 41px;
  overflow: hidden;
  margin-bottom: 10px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.8;
}

.product-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}

.product-specs span {
  border: 1px solid #efe3dc;
  border-radius: 7px;
  padding: 4px 7px;
  color: #6f625b;
  background: #fdfaf8;
  font: 700 7px/1.3 "Inter", "Cairo", sans-serif;
}

.product-card-foot {
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid #f0e7e1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.product-card-foot .rating {
  color: #e88b00;
  font-size: 10px;
  font-weight: 800;
}

.product-card-foot a {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--orange-deep);
  font-size: 9px;
  font-weight: 800;
}

.product-card-foot a .icon {
  width: 14px;
  height: 14px;
}

.product-skeleton {
  height: 410px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 16px;
  background: var(--white);
  overflow: hidden;
}

.product-skeleton i,
.product-skeleton span {
  display: block;
  border-radius: 8px;
  background: linear-gradient(90deg, #f4eeea 25%, #fff 50%, #f4eeea 75%);
  background-size: 200% 100%;
  animation: shimmer 1.3s infinite;
}

.product-skeleton i {
  height: 220px;
  margin-bottom: 20px;
}

.product-skeleton span {
  height: 13px;
  margin-bottom: 10px;
}

.product-skeleton span:nth-child(3) {
  width: 70%;
}

.product-skeleton span:nth-child(4) {
  width: 45%;
}

@keyframes shimmer {
  to {
    background-position: -200% 0;
  }
}

/* Video */
.video-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.video-card {
  min-height: 310px;
  position: relative;
  overflow: hidden;
  border-radius: 15px;
  background: #20130d;
  box-shadow: var(--shadow-xs);
  cursor: pointer;
}

.video-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  transition: transform .35s ease;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 10, 7, .05), rgba(17, 10, 7, .78));
}

.play-button {
  width: 58px;
  height: 58px;
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: rgba(255, 255, 255, .94);
  box-shadow: 0 12px 35px rgba(0, 0, 0, .22);
  opacity: 0;
  visibility: hidden;
  transition: transform .22s ease, background .22s ease, opacity .22s ease, visibility .22s ease;
}

.play-button .icon {
  width: 23px;
  height: 23px;
  margin-left: 2px;
}

.video-card:hover img {
  transform: scale(1.045);
}

.video-card:hover .play-button,
.video-card:focus-visible .play-button,
.video-card:focus-within .play-button {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1.08);
  color: var(--white);
  background: var(--orange);
}

.video-caption {
  position: absolute;
  right: 15px;
  left: 15px;
  bottom: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--white);
}

.video-caption strong {
  font: 700 12px/1.2 "Inter", "Cairo", sans-serif;
}

.video-caption span {
  color: #e8d9d0;
  font-size: 9px;
}

/* Reviews */
.reviews-layout {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 16px;
}

.score-card {
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--white);
  box-shadow: var(--shadow-xs);
  text-align: center;
}

.score-card>span {
  color: var(--muted);
  font-size: 9px;
}

.score-card strong {
  margin: 3px 0 5px;
  color: var(--orange);
  font: 800 54px/1 "Inter", sans-serif;
}

.score-card small {
  margin-top: 9px;
  color: var(--muted);
  font-size: 8px;
}

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

.review-card {
  min-width: 0;
  min-height: 210px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 17px;
  background: var(--white);
  box-shadow: var(--shadow-xs);
}

.review-card-head {
  margin-bottom: 13px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.review-card-head>b {
  margin-inline-start: auto;
  color: #4285f4;
  font: 800 16px/1 "Inter", sans-serif;
}

.review-avatar {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--white);
  background: #5e5550;
  font-size: 11px;
  font-weight: 800;
}

.review-card-head strong,
.review-card-head small {
  display: block;
}

.review-card-head strong {
  font-size: 10px;
}

.review-card-head small {
  color: var(--muted);
  font-size: 7px;
}

.review-card .stars {
  font-size: 11px;
}

.review-card p {
  margin: 12px 0 0;
  color: #5f554f;
  font-size: 9px;
  line-height: 1.85;
}

.why-heading {
  margin: 36px 0 15px;
}

.why-heading h3 {
  margin: 0;
  font-size: 22px;
}

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

.why-card {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 15px;
  display: flex;
  align-items: flex-start;
  gap: 11px;
  background: var(--white);
}

.why-card>span {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  display: grid;
  place-items: center;
  color: var(--orange);
  background: var(--orange-soft);
  flex: 0 0 auto;
}

.why-card>span .icon {
  width: 21px;
  height: 21px;
}

.why-card strong {
  display: block;
  font-size: 10px;
}

.why-card p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 8px;
  line-height: 1.6;
}

/* CTA */
.final-cta {
  min-height: 270px;
  position: relative;
  overflow: hidden;
  border-radius: 22px;
  display: grid;
  grid-template-columns: .43fr .57fr;
  color: var(--white);
  background: linear-gradient(100deg, #6b2105 0%, var(--orange-deep) 45%, var(--orange) 100%);
  box-shadow: 0 24px 60px rgba(200, 60, 0, .17);
}

.final-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 74% 30%, rgba(255, 206, 164, .2), transparent 38%);
  pointer-events: none;
}

.final-cta-media {
  min-height: 270px;
  position: relative;
  overflow: hidden;
}

.final-cta-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(200, 60, 0, 0), rgba(200, 60, 0, .72) 85%);
}

.final-cta-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.9) contrast(1.05);
}

.final-cta-copy {
  position: relative;
  z-index: 2;
  padding: 42px 55px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.final-cta-copy h2 {
  margin-bottom: 8px;
  font-size: clamp(29px, 3vw, 43px);
  line-height: 1.18;
  letter-spacing: -1.2px;
}

.final-cta-copy>p:not(.eyebrow) {
  max-width: 500px;
  margin-bottom: 17px;
  color: #ffe9dd;
  font-size: 11px;
}

/* Footer */
.site-footer {
  margin-top: 72px;
  padding-top: 55px;
  color: #e8e0dc;
  background: #191513;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 35px;
}

.footer-about p {
  max-width: 290px;
  margin: 20px 0;
  color: #a99f99;
  font-size: 10px;
}

.footer-contact-mini {
  display: grid;
  gap: 7px;
}

.footer-contact-mini a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #c9bfba;
  font-size: 9px;
  direction: ltr;
  justify-content: flex-end;
}

.footer-contact-mini .icon {
  width: 16px;
  height: 16px;
  color: var(--orange);
}

.footer-grid h3 {
  margin: 3px 0 16px;
  color: var(--white);
  font-size: 12px;
}

.footer-grid>div:not(.footer-about) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-grid a,
.footer-grid button,
.footer-grid span {
  margin-bottom: 8px;
  color: #a99f99;
  font-size: 9px;
  text-align: right;
}

.footer-grid button {
  padding: 0;
  border: 0;
  background: none;
}

.footer-grid a:hover,
.footer-grid button:hover {
  color: var(--orange);
}

.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-whatsapp .icon {
  width: 16px;
  height: 16px;
  color: #35c66d;
}

.footer-bottom {
  margin-top: 38px;
  padding: 18px 0;
  border-top: 1px solid #332c29;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #847b76;
  font-size: 8px;
}

/* Page hero and catalog */
.page-hero {
  padding: 40px 0 34px;
  background: linear-gradient(180deg, var(--warm), #fff);
}

.breadcrumbs {
  margin-bottom: 19px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  color: #8a7f78;
  font-size: 9px;
}

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

.breadcrumbs strong {
  color: var(--ink);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  align-items: end;
  gap: 50px;
}

.page-hero-grid h1 {
  margin-bottom: 8px;
  font-size: clamp(36px, 4vw, 54px);
  line-height: 1.15;
  letter-spacing: -1.7px;
}

.page-hero-grid p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 12px;
}

.catalog-search {
  min-height: 58px;
  position: relative;
  border: 1px solid var(--line);
  border-radius: 13px;
  display: flex;
  align-items: center;
  background: var(--white);
  box-shadow: var(--shadow-xs);
}

.catalog-search .field-icon::before {
  content: "";
  width: 17px;
  height: 17px;
  position: absolute;
  right: 18px;
  top: 20px;
  border: 2px solid #9a8e86;
  border-radius: 50%;
}

.catalog-search .field-icon::after {
  content: "";
  width: 7px;
  height: 2px;
  position: absolute;
  right: 32px;
  top: 36px;
  background: #9a8e86;
  transform: rotate(45deg);
}

.catalog-search input {
  width: 100%;
  height: 56px;
  border: 0;
  outline: 0;
  padding: 0 51px 0 18px;
  background: transparent;
  font-size: 11px;
}

.category-nav {
  position: sticky;
  top: var(--header-height);
  z-index: 100;
  border-block: 1px solid var(--line);
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(12px);
}

.category-scroll {
  padding-block: 10px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  scrollbar-width: none;
}

.category-scroll::-webkit-scrollbar {
  display: none;
}

.category-chip {
  min-height: 39px;
  flex: 0 0 auto;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 0 15px;
  color: #554b45;
  background: var(--white);
  font-size: 9px;
  font-weight: 800;
  transition: .2s ease;
}

.category-chip:hover,
.category-chip.active {
  color: var(--white);
  border-color: var(--orange);
  background: var(--orange);
}

.catalog-section {
  min-height: 620px;
  padding-top: 40px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 235px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.filter-panel {
  position: sticky;
  top: calc(var(--header-height) + 68px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px;
  background: var(--white);
  box-shadow: var(--shadow-xs);
}

.filter-panel-head {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.filter-panel-head h2 {
  margin: 0;
  font-size: 21px;
}

.filter-close {
  display: none;
}

.filter-group {
  margin: 0 0 23px;
  padding: 0 0 19px;
  border: 0;
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 10px;
}

.filter-group legend {
  margin-bottom: 10px;
  font-size: 11px;
  font-weight: 800;
}

.filter-group label {
  min-height: 28px;
  display: flex;
  align-items: center;
  gap: 9px;
  color: #625852;
  font-size: 9px;
  cursor: pointer;
}

.filter-group input {
  width: 17px;
  height: 17px;
  accent-color: var(--orange);
}

.catalog-toolbar {
  min-height: 51px;
  margin-bottom: 18px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.result-summary {
  display: flex;
  align-items: baseline;
  gap: 6px;
}

.result-summary strong {
  color: var(--orange);
  font: 800 22px/1 "Inter", sans-serif;
}

.result-summary span {
  color: var(--muted);
  font-size: 9px;
}

.toolbar-actions {
  display: flex;
  gap: 8px;
}

.filter-trigger {
  display: none;
  min-height: 42px;
}

.sort-label select {
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 0 13px;
  color: var(--ink);
  background: var(--white);
  outline: 0;
  font-size: 9px;
  font-weight: 700;
}

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

.catalog-status:empty {
  display: none;
}

.loading-state,
.empty-state {
  min-height: 240px;
  border: 1px dashed var(--line-strong);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  background: rgba(255, 255, 255, .55);
  text-align: center;
}

.loading-state span {
  width: 32px;
  height: 32px;
  border: 3px solid #efdfd4;
  border-top-color: var(--orange);
  border-radius: 50%;
  animation: spin .75s linear infinite;
}

.loading-state p {
  margin: 10px 0 0;
  font-size: 10px;
}

.empty-state .icon {
  width: 42px;
  height: 42px;
  color: var(--orange);
}

.empty-state h2 {
  margin: 11px 0 2px;
  font-size: 20px;
}

.empty-state p {
  margin-bottom: 15px;
  font-size: 10px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.filter-backdrop {
  position: fixed;
  inset: 0;
  z-index: 400;
  opacity: 0;
  background: rgba(23, 19, 16, .5);
  backdrop-filter: blur(3px);
  transition: opacity .22s ease;
}

.filter-backdrop.open {
  opacity: 1;
}

/* Product page */
.product-root {
  background: var(--white);
}

.product-page {
  padding-top: 23px;
}

.product-breadcrumbs {
  margin-bottom: 13px;
}

.product-hero-grid {
  display: grid;
  grid-template-columns: .87fr 1.13fr;
  gap: 26px;
  align-items: start;
}

.product-info {
  padding: 16px 6px 0;
}

.product-kicker {
  color: var(--orange);
  font-size: 10px;
  font-weight: 800;
}

.product-info h1 {
  margin: 6px 0 5px;
  font: 800 clamp(48px, 5vw, 72px)/1 "Inter", "Cairo", sans-serif;
  letter-spacing: -2.4px;
  direction: ltr;
  text-align: right;
}

.product-info h2 {
  margin-bottom: 8px;
  font-size: 18px;
}

.product-rating-line {
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  color: var(--muted);
  font-size: 8px;
}

.product-rating-line strong {
  color: var(--ink);
}

.product-lead {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.9;
}

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

.quick-spec-grid article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 11px 7px;
  text-align: center;
  background: var(--white);
}

.quick-spec-grid .icon {
  width: 18px;
  height: 18px;
  margin: 0 auto 5px;
  color: var(--orange);
}

.quick-spec-grid strong,
.quick-spec-grid span {
  display: block;
}

.quick-spec-grid strong {
  overflow: hidden;
  font: 800 12px/1.25 "Inter", "Cairo", sans-serif;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.quick-spec-grid span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 7px;
}

.product-actions {
  margin-top: 14px;
  display: grid;
  grid-template-columns: 1.18fr .82fr;
  gap: 8px;
}

.engineer-action {
  min-height: 49px;
  margin-top: 8px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 7px 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  background: var(--white);
}

.engineer-action .icon {
  color: var(--orange);
}

.engineer-action strong,
.engineer-action small {
  display: block;
}

.engineer-action strong {
  font-size: 9px;
}

.engineer-action small {
  color: var(--muted);
  font-size: 7px;
}

.product-gallery {
  min-width: 0;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr);
  gap: 10px;
  direction: ltr;
}

.thumbnail-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.thumbnail {
  height: 68px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 5px;
  display: grid;
  place-items: center;
  background: var(--white);
  transition: .2s ease;
}

.thumbnail:hover,
.thumbnail.active {
  border-color: var(--orange);
  box-shadow: 0 0 0 2px rgba(244, 90, 10, .08);
}

.thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.video-thumbnail::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(23, 19, 16, .35);
}

.video-thumbnail span {
  width: 29px;
  height: 29px;
  position: absolute;
  z-index: 2;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--white);
}

.video-thumbnail .icon {
  width: 14px;
  height: 14px;
}

.gallery-main {
  min-height: 465px;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 50%, #fff6ee 0%, #fffaf6 48%, #f9f1eb 100%);
}

.gallery-main::before {
  content: "";
  width: 72%;
  height: 100px;
  position: absolute;
  left: 50%;
  bottom: 45px;
  transform: translateX(-50%);
  border: 1px solid rgba(244, 90, 10, .42);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(244, 90, 10, .2);
}

.gallery-glow {
  width: 78%;
  height: 78%;
  position: absolute;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 188, 128, .31), transparent 65%);
}

.gallery-main>img {
  width: 84%;
  height: 78%;
  position: relative;
  z-index: 2;
  object-fit: contain;
  filter: drop-shadow(0 27px 25px rgba(75, 32, 8, .2));
  transition: opacity .12s ease, transform .25s ease;
}

.gallery-main>img.switching {
  opacity: .25;
  transform: scale(.98);
}

.zoom-action {
  position: absolute;
  left: 13px;
  bottom: 13px;
  z-index: 3;
  min-height: 39px;
  padding-inline: 12px;
  font-size: 8px;
}

.product-highlight-grid {
  margin-top: 17px;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.product-highlight-grid article {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
}

.product-highlight-grid .icon {
  width: 25px;
  height: 25px;
  color: var(--orange);
}

.product-highlight-grid strong,
.product-highlight-grid span {
  display: block;
}

.product-highlight-grid strong {
  font-size: 9px;
}

.product-highlight-grid span {
  margin-top: 2px;
  color: var(--muted);
  font-size: 7px;
}

.product-tabs {
  margin-top: 24px;
}

.tabs-nav {
  border-bottom: 1px solid var(--line);
  display: flex;
  gap: 30px;
}

.tab-button {
  min-height: 47px;
  position: relative;
  border: 0;
  padding: 0;
  color: #766b64;
  background: none;
  font-size: 9px;
  font-weight: 800;
}

.tab-button::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: -1px;
  height: 3px;
  background: var(--orange);
  transform: scaleX(0);
}

.tab-button.active {
  color: var(--orange-deep);
}

.tab-button.active::after {
  transform: scaleX(1);
}

.tab-panel {
  display: none;
  padding: 20px 0 7px;
}

.tab-panel.active {
  display: block;
  animation: panelIn .22s ease;
}

@keyframes panelIn {
  from {
    opacity: 0;
    transform: translateY(5px);
  }
}

.details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.detail-card {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 18px;
  background: var(--white);
}

.detail-card-head h2 {
  margin-bottom: 15px;
  font-size: 18px;
}

.detail-card h3 {
  margin: 14px 0 8px;
  font-size: 10px;
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 8px;
}

.spec-table tr {
  border-bottom: 1px solid #efe5df;
}

.spec-table tr:last-child {
  border-bottom: 0;
}

.spec-table th,
.spec-table td {
  padding: 8px 6px;
  text-align: right;
}

.spec-table th {
  width: 45%;
  color: var(--muted);
  font-weight: 600;
}

.spec-table td {
  color: var(--ink);
  font-weight: 800;
}

.accessory-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 7px;
}

.accessory-grid span {
  min-height: 40px;
  border: 1px solid #eee3dc;
  border-radius: 8px;
  padding: 7px 9px;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #5e544e;
  background: #fffdfa;
  font-size: 8px;
}

.accessory-grid .icon {
  width: 15px;
  height: 15px;
  color: var(--orange);
}

.accessory-grid.optional span {
  background: #faf7f4;
}

.text-panel {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 26px;
  background: var(--warm);
}

.text-panel h2 {
  font-size: 22px;
}

.text-panel p {
  color: var(--muted);
  font-size: 11px;
  line-height: 2;
}

.feature-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.feature-list article {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 17px;
  display: flex;
  gap: 11px;
}

.feature-list .icon {
  color: var(--orange);
}

.feature-list h3 {
  margin-bottom: 4px;
  font-size: 12px;
}

.feature-list p {
  margin: 0;
  color: var(--muted);
  font-size: 8px;
}

.download-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
}

.download-list a {
  min-height: 75px;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 13px;
  display: flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
}

.download-list a>.icon {
  color: var(--orange);
}

.download-list strong,
.download-list small {
  display: block;
}

.download-list strong {
  font-size: 9px;
}

.download-list small {
  color: var(--muted);
  font-size: 7px;
}

.download-list b {
  margin-inline-start: auto;
  color: var(--orange);
  font-size: 8px;
}

.product-section {
  padding-top: 28px;
}

.application-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.application-grid article {
  min-width: 0;
  height: 110px;
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

.application-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.application-grid span {
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent, rgba(18, 11, 8, .82));
}

.application-grid strong {
  position: absolute;
  right: 9px;
  left: 9px;
  bottom: 7px;
  z-index: 2;
  color: var(--white);
  font-size: 8px;
}

.demo-banner {
  min-height: 135px;
  margin-top: 20px;
  border-radius: 14px;
  padding: 23px 29px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: var(--white);
  background: linear-gradient(100deg, #20130e, #752606);
  overflow: hidden;
}

.demo-banner h2 {
  margin-bottom: 4px;
  font-size: 19px;
}

.demo-banner>div>p:not(.eyebrow) {
  margin: 0;
  color: #d8b9a8;
  font-size: 8px;
}

.play-demo {
  min-height: 54px;
  border: 1px solid rgba(255, 255, 255, .25);
  border-radius: 999px;
  padding: 0 18px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  background: rgba(255, 255, 255, .1);
  font-size: 9px;
  font-weight: 800;
}

.play-demo .icon {
  width: 20px;
  height: 20px;
}

.service-strip {
  margin: 14px 0 26px;
  border: 1px solid var(--line);
  border-radius: 12px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
}

.service-strip article {
  min-height: 82px;
  padding: 13px;
  border-inline-end: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.service-strip article:last-child {
  border-inline-end: 0;
}

.service-strip .icon {
  width: 22px;
  height: 22px;
  margin-bottom: 5px;
  color: var(--orange);
}

.service-strip strong {
  font-size: 9px;
}

.service-strip span {
  color: var(--muted);
  font-size: 7px;
}

.product-reviews-section {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: 210px minmax(0, 1fr);
  gap: 20px;
  align-items: stretch;
}

.product-review-score {
  border: 1px solid var(--line);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: var(--warm);
}

.product-review-score>span {
  color: var(--muted);
  font-size: 8px;
}

.product-review-score>strong {
  color: var(--orange);
  font: 800 48px/1 "Inter", sans-serif;
}

.product-review-score small {
  margin-top: 7px;
  color: var(--muted);
  font-size: 7px;
}

.related-section {
  padding: 57px 0;
  background: var(--soft);
}

.consultation-card {
  width: 180px;
  position: fixed;
  left: 18px;
  top: 38%;
  z-index: 90;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 17px;
  background: rgba(255, 255, 255, .97);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(12px);
}

.consultation-card>span {
  width: 39px;
  height: 39px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--orange);
  background: var(--orange-soft);
}

.consultation-card h3 {
  margin: 9px 0 4px;
  font-size: 13px;
}

.consultation-card p {
  margin-bottom: 11px;
  color: var(--muted);
  font-size: 8px;
}

.consultation-card>a {
  min-height: 34px;
  margin-top: 7px;
  border: 1px solid var(--line);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 8px;
  font-weight: 700;
}

.consultation-card>a .icon {
  width: 15px;
  height: 15px;
  color: var(--orange);
}

.consultation-card>small {
  display: block;
  margin-top: 8px;
  color: var(--success);
  font-size: 7px;
  text-align: center;
}

/* Modals */
.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  padding: 20px;
  display: grid;
  place-items: center;
  background: rgba(23, 19, 16, .68);
  backdrop-filter: blur(7px);
  animation: modalFade .18s ease;
}

@keyframes modalFade {
  from {
    opacity: 0;
  }
}

.modal-card {
  width: min(920px, 100%);
  max-height: 92vh;
  position: relative;
  overflow: auto;
  border-radius: 20px;
  background: var(--white);
  box-shadow: 0 35px 100px rgba(0, 0, 0, .3);
}

.modal-close {
  position: absolute;
  top: 14px;
  left: 14px;
  z-index: 10;
}

.media-modal-card {
  width: min(820px, 100%);
  overflow: hidden;
  background: #130c09;
}

.video-preview {
  min-height: 510px;
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.video-preview>img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  filter: blur(2px) saturate(.85);
  transform: scale(1.03);
}

.video-preview-shade {
  position: absolute;
  inset: 0;
  background: rgba(16, 9, 6, .64);
}

.video-preview-message {
  max-width: 430px;
  position: relative;
  z-index: 2;
  padding: 30px;
  color: var(--white);
  text-align: center;
}

.video-preview-message>.icon {
  width: 65px;
  height: 65px;
  margin: auto;
  padding: 18px;
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
}

.video-preview-message h3 {
  margin: 17px 0 5px;
  font-size: 27px;
}

.video-preview-message p {
  margin: 0;
  color: #d2c2ba;
  font-size: 10px;
}

.video-embed {
  aspect-ratio: 16 / 9;
}

.video-embed iframe,
.native-video {
  width: 100%;
  height: 100%;
  border: 0;
}

.image-modal-card {
  width: min(980px, 100%);
  min-height: 600px;
  display: grid;
  place-items: center;
  padding: 45px;
  background: var(--warm);
}

.image-modal-card>img {
  max-height: 78vh;
  object-fit: contain;
  filter: drop-shadow(0 25px 25px rgba(61, 31, 12, .18));
}

.quote-modal-card {
  overflow: hidden;
}

.quote-layout {
  min-height: 570px;
  display: grid;
  grid-template-columns: .42fr .58fr;
}

.quote-aside {
  padding: 52px 34px;
  color: var(--white);
  background: linear-gradient(150deg, #201511, #6f2205);
}

.quote-aside h2 {
  margin-bottom: 10px;
  font-size: 35px;
  line-height: 1.2;
}

.quote-aside>p:not(.eyebrow) {
  color: #cdb7aa;
  font-size: 10px;
}

.quote-aside ul {
  margin: 35px 0 0;
  padding: 0;
  display: grid;
  gap: 13px;
  list-style: none;
}

.quote-aside li {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #ebded7;
  font-size: 9px;
}

.quote-aside li .icon {
  width: 16px;
  height: 16px;
  color: var(--orange);
}

.quote-form {
  min-width: 0;
  padding: 47px 34px 28px;
  display: flex;
  flex-direction: column;
}

.quote-progress {
  margin-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
}

.quote-progress span {
  height: 5px;
  border-radius: 5px;
  background: #eee7e2;
}

.quote-progress span.active {
  background: var(--orange);
}

.quote-step {
  display: none;
}

.quote-step.active {
  display: block;
  animation: panelIn .22s ease;
}

.step-count {
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
}

.quote-step h3 {
  margin: 5px 0 20px;
  font-size: 24px;
}

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

.quote-form label {
  display: block;
  color: #514841;
  font-size: 9px;
  font-weight: 800;
}

.quote-form input,
.quote-form select,
.quote-form textarea {
  width: 100%;
  min-height: 47px;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 10px 12px;
  color: var(--ink);
  background: var(--white);
  outline: 0;
  font-size: 10px;
}

.quote-form textarea {
  resize: vertical;
}

.quote-form input:focus,
.quote-form select:focus,
.quote-form textarea:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(244, 90, 10, .08);
}

.consent {
  margin-top: 14px;
  display: flex !important;
  align-items: flex-start;
  gap: 8px;
  font-weight: 600 !important;
}

.consent input {
  width: 17px;
  min-height: 17px;
  margin-top: 2px;
  accent-color: var(--orange);
}

.quote-message {
  min-height: 26px;
  padding-top: 6px;
  color: #b42318;
  font-size: 9px;
}

.quote-navigation {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.quote-navigation .btn {
  min-width: 110px;
}

.quote-success {
  min-height: 400px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.quote-success>.icon {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  padding: 17px;
  color: var(--success);
  background: #e8f7ee;
}

.quote-success h3 {
  margin: 17px 0 5px;
  font-size: 27px;
}

.quote-success p {
  max-width: 380px;
  color: var(--muted);
  font-size: 10px;
}

.search-modal-card {
  width: min(650px, 100%);
}

.search-modal-content {
  padding: 45px 32px 30px;
}

.search-modal-content h2 {
  margin-bottom: 17px;
  font-size: 29px;
}

.global-search-field {
  min-height: 57px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.global-search-field .icon {
  color: var(--orange);
}

.global-search-field input {
  width: 100%;
  height: 55px;
  border: 0;
  outline: 0;
  background: transparent;
}

.search-results {
  margin-top: 13px;
  display: grid;
  gap: 7px;
}

.search-results>p {
  margin: 20px 0;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.search-results>a {
  min-height: 66px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 7px 10px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.search-results>a:hover {
  border-color: var(--orange);
}

.search-results img {
  width: 54px;
  height: 50px;
  object-fit: contain;
}

.search-results strong,
.search-results small {
  display: block;
}

.search-results strong {
  font: 800 12px/1.3 "Inter", "Cairo", sans-serif;
}

.search-results small {
  color: var(--muted);
  font-size: 8px;
}

.search-results>a>.icon {
  margin-inline-start: auto;
  color: var(--orange);
}

.search-empty {
  padding: 22px;
  color: var(--muted);
  font-size: 10px;
  text-align: center;
}

.search-empty a {
  color: var(--orange);
  font-weight: 800;
}

.compare-modal-card {
  width: min(920px, 100%);
  padding: 48px 26px 26px;
}

.compare-content h2 {
  font-size: 28px;
}

.compare-table-wrap {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  min-width: 650px;
  border-collapse: collapse;
}

.compare-table th,
.compare-table td {
  border-bottom: 1px solid var(--line);
  padding: 12px;
  text-align: center;
  font-size: 9px;
}

.compare-table thead th {
  vertical-align: bottom;
}

.compare-table thead img {
  width: 100px;
  height: 80px;
  margin: auto;
  object-fit: contain;
}

.compare-table thead strong {
  display: block;
  margin-top: 5px;
  font: 800 11px/1 "Inter", sans-serif;
}

.compare-table tbody th {
  color: var(--muted);
  text-align: right;
}

/* Fixed bars */
.compare-bar {
  min-height: 66px;
  position: fixed;
  right: 50%;
  bottom: 18px;
  z-index: 350;
  transform: translateX(50%);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 14px;
  padding: 8px 9px 8px 14px;
  display: flex;
  align-items: center;
  gap: 15px;
  color: var(--white);
  background: rgba(30, 22, 18, .94);
  box-shadow: 0 20px 55px rgba(0, 0, 0, .25);
  backdrop-filter: blur(15px);
}

.compare-bar>div {
  display: flex;
  align-items: center;
  gap: 6px;
}

.compare-bar>div>span {
  margin-inline-end: 4px;
  color: #bfb4ae;
  font-size: 8px;
}

.compare-bar>div>button {
  min-height: 35px;
  border: 1px solid #4c4039;
  border-radius: 8px;
  padding: 0 9px;
  color: var(--white);
  background: #2d231e;
  font-size: 8px;
}

.compare-bar .btn {
  min-height: 42px;
  background: var(--orange);
}

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

.toast {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1200;
  border-radius: 11px;
  padding: 12px 15px;
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  background: #211814;
  box-shadow: var(--shadow-md);
  font-size: 10px;
}

.toast .icon {
  color: var(--orange);
}

/* Responsive */
@media (max-width: 1390px) {
  .consultation-card {
    display: none;
  }
}

@media (max-width: 1080px) {
  .desktop-nav {
    gap: 14px;
  }

  .desktop-nav a {
    font-size: 10px;
  }

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

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

  .trust-item {
    padding-inline: 8px;
  }

  .trust-item small {
    display: none;
  }

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

  .footer-grid>div:nth-child(4),
  .footer-grid>div:nth-child(5) {
    margin-top: 15px;
  }

  .product-hero-grid {
    grid-template-columns: .9fr 1.1fr;
  }

  .gallery-main {
    min-height: 420px;
  }
}

@media (max-width: 820px) {
  :root {
    --wrap: min(100% - 30px, 1180px);
    --header-height: 66px;
  }

  .desktop-nav,
  .header-quote,
  .search-button {
    display: none;
  }

  .header-inner {
    justify-content: space-between;
  }

  .header-actions {
    margin-inline-start: auto;
  }

  .menu-button {
    display: inline-grid;
  }

  .brand-word strong {
    font-size: 21px;
  }

  .brand-symbol {
    width: 33px;
    height: 33px;
  }

  .hero {
    height: 625px;
  }

  .hero-ceiling {
    width: 860px;
    height: 350px;
    top: -232px;
  }

  .hero-ceiling::before {
    width: 520px;
    height: 170px;
  }

  .hero-ceiling::after {
    width: 720px;
    height: 230px;
    bottom: -150px;
  }

  .hero-ceiling span {
    width: 620px;
    height: 190px;
    bottom: -118px;
  }

  .hero-copy {
    padding-top: 74px;
  }

  .hero-copy h1 {
    font-size: 48px;
  }

  .hero-stage {
    width: 820px;
    max-width: none;
    height: 245px;
    bottom: 48px;
  }

  .trust-shell {
    margin-top: -38px;
  }

  .trust-strip {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .trust-strip::-webkit-scrollbar {
    display: none;
  }

  .trust-item {
    min-width: 150px;
    min-height: 70px;
    border-inline-end: 1px solid var(--line);
    scroll-snap-align: start;
  }

  .trust-item small {
    display: block;
  }

  .section {
    padding: 61px 0;
  }

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

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

  .reviews-layout {
    grid-template-columns: 1fr;
  }

  .score-card {
    min-height: 155px;
  }

  .reviews {
    grid-template-columns: repeat(3, 250px);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .review-card {
    scroll-snap-align: start;
  }

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

  .final-cta {
    grid-template-columns: .48fr .52fr;
  }

  .final-cta-copy {
    padding: 35px 27px;
  }

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

  .footer-about {
    grid-column: 1 / -1;
  }

  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .filter-panel {
    position: fixed;
    inset: auto 0 0;
    z-index: 410;
    max-height: 84vh;
    overflow-y: auto;
    border-radius: 22px 22px 0 0;
    padding: 24px;
    transform: translateY(105%);
    transition: transform .27s ease;
  }

  .filter-panel.open {
    transform: translateY(0);
  }

  .filter-close,
  .filter-trigger {
    display: inline-grid;
  }

  .filter-trigger {
    display: inline-flex;
  }

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

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

  .product-info {
    order: 1;
  }

  .product-gallery {
    order: 0;
  }

  .gallery-main {
    min-height: 470px;
  }

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

  .application-grid {
    grid-template-columns: repeat(3, 1fr);
  }

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

  .product-review-score {
    min-height: 155px;
  }

  .quote-layout {
    grid-template-columns: 1fr;
  }

  .quote-aside {
    display: none;
  }
}

@media (max-width: 620px) {
  :root {
    --wrap: min(100% - 24px, 1180px);
  }

  body {
    padding-bottom: 66px;
  }

  .site-header {
    position: sticky;
  }

  body[data-page="home"] .site-header {
    position: absolute;
    right: 0;
    left: 0;
    border-bottom-color: transparent;
    background: transparent;
    backdrop-filter: none;
  }

  body[data-page="home"] .brand-word strong {
    color: var(--white);
    text-shadow: 0 2px 15px rgba(50, 15, 0, .3);
  }

  body[data-page="home"] .brand-word small {
    color: rgba(255, 255, 255, .7);
  }

  body[data-page="home"] .menu-button {
    color: var(--white);
    border-color: rgba(255, 255, 255, .45);
    background: rgba(82, 24, 0, .2);
  }

  .hero {
    height: 590px;
    border-radius: 0 0 36px 36px;
  }

  .hero-ceiling {
    width: 770px;
    height: 355px;
    top: -223px;
  }

  .hero-ceiling::before {
    width: 450px;
    height: 160px;
    bottom: -13px;
  }

  .hero-ceiling::after {
    width: 600px;
    height: 220px;
    bottom: -145px;
  }

  .hero-ceiling span {
    width: 530px;
    height: 185px;
    bottom: -117px;
  }

  .hero-copy {
    padding-top: 128px;
  }

  .hero-copy .eyebrow {
    display: none;
  }

  .hero-copy h1 {
    margin-bottom: 10px;
    font-size: 35px;
    letter-spacing: -1.5px;
  }

  .hero-subtitle {
    max-width: 310px;
    margin-bottom: 15px;
    font-size: 10px;
    line-height: 1.8;
  }

  .hero-cta {
    min-height: 42px;
    padding-inline: 17px;
    font-size: 10px;
  }

  .hero-stage {
    width: 620px;
    height: 205px;
    bottom: 33px;
  }

  .hero-stage::before {
    height: 75px;
    bottom: 1px;
  }

  .stage-orbit-outer {
    height: 90px;
  }

  .stage-orbit-inner {
    height: 56px;
    bottom: 16px;
  }

  .hero-stage img {
    bottom: 12px;
  }

  .trust-shell {
    margin-top: -43px;
  }

  .trust-strip {
    width: calc(100% - 32px);
    min-height: 86px;
    padding: 9px 8px;
    border-radius: 14px;
  }

  .trust-item {
    min-width: 112px;
    min-height: 66px;
    padding: 5px 6px;
    flex-direction: column;
    gap: 4px;
    text-align: center;
  }

  .trust-icon {
    width: 28px;
    height: 28px;
  }

  .trust-icon .icon {
    width: 16px;
    height: 16px;
  }

  .trust-item strong {
    font-size: 8px;
  }

  .trust-item small {
    display: none;
  }

  .section {
    padding: 48px 0;
  }

  .section-head {
    margin-bottom: 18px;
    align-items: center;
  }

  .section-head h2 {
    font-size: 25px;
  }

  .section-head>p {
    display: none;
  }

  .text-link {
    font-size: 9px;
  }

  .product-grid.product-slider,
  .horizontal-slider {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding: 2px 2px 9px;
  }

  .product-grid.product-slider::-webkit-scrollbar,
  .horizontal-slider::-webkit-scrollbar {
    display: none;
  }

  .product-grid.product-slider .product-card {
    min-width: 218px;
    scroll-snap-align: start;
  }

  .catalog-grid {
    display: grid;
    grid-template-columns: 1fr;
  }

  .catalog-grid .product-card {
    min-width: 0;
  }

  .product-media {
    height: 210px;
  }

  .product-card h3 {
    font-size: 18px;
  }

  .video-grid {
    display: flex;
  }

  .video-card {
    min-width: 235px;
    min-height: 290px;
    scroll-snap-align: start;
  }

  .play-button {
    width: 54px;
    height: 54px;
  }

  .reviews-layout {
    gap: 11px;
  }

  .score-card {
    min-width: 180px;
    min-height: 145px;
  }

  .reviews {
    display: flex;
  }

  .review-card {
    min-width: 236px;
    min-height: 190px;
  }

  .why-heading {
    margin-top: 27px;
  }

  .why-heading h3 {
    font-size: 18px;
  }

  .why-grid {
    display: flex;
  }

  .why-card {
    min-width: 210px;
    scroll-snap-align: start;
  }

  .final-cta {
    min-height: 285px;
    grid-template-columns: 1fr;
  }

  .final-cta-media {
    position: absolute;
    inset: 0;
    min-height: 100%;
  }

  .final-cta-media::after {
    background: linear-gradient(0deg, rgba(153, 45, 0, .96), rgba(153, 45, 0, .28));
  }

  .final-cta-copy {
    min-height: 285px;
    justify-content: flex-end;
    padding: 28px 24px;
  }

  .final-cta-copy h2 {
    font-size: 31px;
  }

  .site-footer {
    margin-top: 42px;
    padding-top: 42px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 25px 16px;
  }

  .footer-about {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    display: block;
    text-align: center;
  }

  .footer-bottom span {
    display: block;
    margin: 3px 0;
  }

  .page-hero {
    padding-top: 27px;
  }

  .page-hero-grid h1 {
    font-size: 35px;
  }

  .catalog-search {
    min-height: 52px;
  }

  .catalog-search input {
    height: 50px;
  }

  .catalog-search .field-icon::before {
    top: 17px;
  }

  .catalog-search .field-icon::after {
    top: 33px;
  }

  .category-nav {
    top: var(--header-height);
  }

  .catalog-section {
    padding-top: 27px;
  }

  .catalog-toolbar {
    align-items: center;
  }

  .result-summary span {
    display: none;
  }

  .sort-label select {
    width: 128px;
  }

  .product-hero-grid {
    gap: 14px;
  }

  .product-gallery {
    display: flex;
    flex-direction: column-reverse;
    gap: 8px;
  }

  .thumbnail-list {
    display: flex;
    flex-direction: row;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .thumbnail {
    width: 64px;
    height: 61px;
    flex: 0 0 64px;
  }

  .gallery-main {
    min-height: 340px;
  }

  .gallery-main>img {
    width: 87%;
    height: 72%;
  }

  .product-info {
    padding-top: 5px;
  }

  .product-info h1 {
    font-size: 46px;
  }

  .product-info h2 {
    font-size: 15px;
  }

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

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

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

  .product-highlight-grid article {
    padding: 11px 9px;
  }

  .tabs-nav {
    gap: 20px;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .tab-button {
    flex: 0 0 auto;
  }

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

  .feature-list {
    grid-template-columns: 1fr;
  }

  .download-list {
    grid-template-columns: 1fr;
  }

  .application-grid {
    display: flex;
  }

  .application-grid article {
    min-width: 125px;
    flex: 0 0 125px;
    scroll-snap-align: start;
  }

  .demo-banner {
    padding: 19px;
    align-items: flex-start;
    flex-direction: column;
  }

  .demo-banner h2 {
    font-size: 17px;
  }

  .service-strip {
    grid-template-columns: 1fr 1fr;
  }

  .service-strip article:nth-child(2) {
    border-inline-end: 0;
  }

  .service-strip article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .product-review-score {
    min-height: 145px;
  }

  .related-section {
    padding: 45px 0;
  }

  .modal {
    padding: 10px;
  }

  .modal-card {
    max-height: 94vh;
    border-radius: 16px;
  }

  .video-preview {
    min-height: 440px;
  }

  .image-modal-card {
    min-height: 480px;
    padding: 35px 15px;
  }

  .quote-form {
    min-height: 540px;
    padding: 48px 20px 20px;
  }

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

  .quote-navigation .btn {
    min-width: 95px;
  }

  .search-modal-content {
    padding: 48px 18px 22px;
  }

  .compare-bar {
    display: none;
  }

  .mobile-action-bar {
    height: 66px;
    position: fixed;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 380;
    padding: 7px max(8px, env(safe-area-inset-right)) calc(7px + env(safe-area-inset-bottom)) max(8px, env(safe-area-inset-left));
    border-top: 1px solid var(--line);
    display: grid;
    grid-template-columns: .75fr 1.5fr .75fr;
    gap: 6px;
    background: rgba(255, 255, 255, .98);
    box-shadow: 0 -12px 34px rgba(61, 31, 12, .09);
    backdrop-filter: blur(14px);
  }

  .mobile-action-bar>* {
    min-width: 0;
    border: 0;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    color: var(--ink);
    background: var(--soft);
    font-size: 8px;
    font-weight: 800;
  }

  .mobile-action-bar>button {
    color: var(--white);
    background: var(--orange);
  }

  .mobile-action-bar .icon {
    width: 17px;
    height: 17px;
  }

  .toast {
    right: 12px;
    bottom: 78px;
  }
}

@media (max-width: 380px) {
  .hero-copy h1 {
    font-size: 32px;
  }

  .hero-stage {
    width: 570px;
  }

  .product-grid.product-slider .product-card {
    min-width: 205px;
  }

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

  .footer-about {
    grid-column: auto;
  }

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

  .quick-spec-grid article {
    padding-inline: 5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

/* Final Arabic-only interaction polish */
.mobile-drawer nav a {
  position: relative;
  border-radius: 9px;
  padding-inline: 12px 38px;
  transition: color .2s ease, background .2s ease, transform .2s ease;
}

.mobile-drawer nav a::before {
  content: "←";
  position: absolute;
  right: 13px;
  color: var(--orange);
  opacity: 0;
  transform: translateX(6px);
  transition: opacity .2s ease, transform .2s ease;
}

.mobile-drawer nav a:hover,
.mobile-drawer nav a:focus-visible {
  color: var(--orange-deep);
  background: var(--orange-soft);
  transform: translateX(-2px);
}

.mobile-drawer nav a:hover::before,
.mobile-drawer nav a:focus-visible::before {
  opacity: 1;
  transform: none;
}

.drawer-contact a:hover {
  color: var(--orange-deep);
  border-color: #f6a676;
  background: var(--orange-soft);
}

@media (max-width: 620px) {
  .btn {
    min-height: 44px;
    padding-inline: 16px;
    font-size: 11px;
  }

  .video-card {
    flex-basis: min(78%, 300px);
  }

  .mobile-drawer {
    width: min(340px, 90vw);
    padding: 17px;
  }

  .mobile-drawer nav a {
    min-height: 48px;
    font-size: 13px;
  }
}

/* 2026 production polish — reference proportions and real brand photography */
.site-header {
  border-bottom-color: rgba(229, 216, 207, .72);
}

.header-inner {
  max-width: 1180px;
}

.hero {
  height: 660px;
}

.hero-copy {
  padding-top: 62px;
}

.hero-copy h1 {
  max-width: 720px;
  margin-inline: auto;
}

.hero-stage {
  width: min(1100px, 92vw);
  height: 335px;
  bottom: 5px;
}

.hero-stage img {
  object-position: center bottom;
}

.trust-strip {
  box-shadow: 0 18px 55px rgba(69, 31, 10, .10);
}

.product-card {
  box-shadow: 0 6px 22px rgba(61, 31, 12, .045);
}

.product-media {
  background: linear-gradient(180deg, #fff8f3 0%, #fff 100%);
}

.video-card {
  aspect-ratio: 4 / 5;
  min-height: 0;
  border: 1px solid #33241d;
}

.video-card img {
  object-position: center;
}

.video-card:nth-child(2) img {
  object-position: 56% center;
}

.video-caption {
  padding-top: 44px;
  background: linear-gradient(180deg, transparent, rgba(13, 8, 5, .72));
  right: 0;
  left: 0;
  bottom: 0;
  padding: 48px 14px 13px;
}

.final-cta-media img {
  object-position: center;
}

.catalog-category-card img {
  filter: saturate(.92) contrast(1.04);
}

.catalog-category-card {
  position: relative;
  overflow: hidden;
}

.catalog-category-card::after {
  display: none;
}

.catalog-category-card span {
  position: relative;
  z-index: 2;
}

@media (max-width: 820px) {
  .hero {
    height: 620px;
  }

  .hero-copy {
    padding-top: 72px;
  }

  .hero-stage {
    width: 820px;
    height: 285px;
    bottom: 16px;
  }
}

@media (max-width: 620px) {
  body {
    background: #fffdfa;
  }

  body[data-page="home"] .site-header {
    background: transparent;
    box-shadow: none;
  }

  .site-header {
    height: 64px;
  }

  .header-inner {
    padding-inline: 2px;
  }

  .menu-button {
    width: 44px;
    height: 44px;
    border-color: rgba(255, 255, 255, .38);
    background: rgba(255, 255, 255, .76);
  }

  .hero {
    height: 566px;
    border-radius: 0 0 30px 30px;
  }

  .hero-copy {
    padding-top: 102px;
  }

  .hero-copy .eyebrow {
    display: none;
  }

  .hero-copy h1 {
    max-width: 330px;
    font-size: 33px;
    letter-spacing: -1.1px;
  }

  .hero-subtitle {
    max-width: 305px;
    font-size: 10.5px;
    line-height: 1.75;
  }

  .hero-stage {
    width: 660px;
    height: 238px;
    bottom: 18px;
  }

  .hero-stage img {
    width: 660px;
    height: 238px;
  }

  .hero-stage::before {
    width: 68%;
  }

  .trust-shell {
    margin-top: -21px;
  }

  .trust-strip {
    min-height: 74px;
    border-radius: 13px;
  }

  .section {
    padding: 42px 0;
  }

  .section-head h2 {
    font-size: 23px;
  }

  .product-slider>.product-card {
    flex-basis: 72%;
  }

  .product-media {
    height: 194px;
    padding-top: 44px;
  }

  .product-media::after {
    bottom: 6px;
  }

  .video-card {
    aspect-ratio: 4 / 5;
    min-height: 0;
    flex-basis: 72%;
  }

  .reviews>* {
    flex-basis: 84%;
  }

  .why-grid>* {
    flex-basis: 74%;
  }

  .final-cta {
    min-height: 305px;
  }

  .final-cta-media {
    position: absolute;
    inset: 0;
    min-height: 100%;
  }

  .final-cta-media::after {
    background: linear-gradient(0deg, rgba(110, 30, 2, .96), rgba(110, 30, 2, .18) 75%);
  }

  .final-cta-copy {
    min-height: 305px;
    justify-content: flex-end;
  }

  .final-cta-copy h2 {
    max-width: 290px;
    font-size: 28px;
  }
}

@media (max-width: 380px) {
  .hero-copy h1 {
    font-size: 30px;
  }

  .hero-stage {
    width: 610px;
  }

  .hero-stage img {
    width: 610px;
  }
}

/* Final alignment refinements to mirror the supplied references */
.header-inner {
  direction: ltr;
}

.desktop-nav {
  direction: rtl;
}

.header-actions {
  direction: ltr;
}

.product-hero-grid {
  direction: ltr;
}

.product-info {
  direction: rtl;
}

.product-reviews-section>* {
  min-width: 0;
}

@media (max-width: 620px) {
  .trust-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow: hidden;
  }

  .trust-item {
    min-width: 0;
    padding-inline: 2px;
    border-inline-end: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-inline-end: 0;
  }

  .trust-item strong {
    font-size: 7px;
    white-space: nowrap;
  }

  .product-reviews-section {
    min-width: 0;
    overflow: hidden;
  }

  .product-reviews-section>div {
    min-width: 0;
    overflow: hidden;
  }

  .product-reviews-section .reviews {
    width: 100%;
    max-width: 100%;
  }
}

/* =========================================================
   Reference-matched refinement layer — Arabic RTL only
   ========================================================= */
.skip-link:not(:focus):not(:focus-visible) {
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
  transform: none;
}

.skip-link:focus,
.skip-link:focus-visible {
  width: auto;
  height: auto;
  clip: auto;
  clip-path: none;
  margin: 0;
  transform: none;
}

.product-media img,
.gallery-main>img,
.thumbnail img,
.search-results img,
.compare-table thead img {
  image-rendering: auto;
}

.product-media img {
  filter: drop-shadow(0 8px 10px rgba(48, 21, 8, .14));
}

.product-media {
  position: relative;
  overflow: hidden;
}

.product-media::after {
  pointer-events: none;
  bottom: 6px;
}

/* Catalog blueprint */
.catalog-page {
  background: #fff;
}

.catalog-intro {
  padding: 26px 0 24px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 3%, rgba(244, 90, 10, .08), transparent 25%),
    linear-gradient(180deg, #fffaf7, #fff);
}

.catalog-intro .breadcrumbs {
  margin-bottom: 14px;
}

.catalog-intro-copy {
  text-align: center;
}

.catalog-intro-copy h1 {
  margin-bottom: 5px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: -1.5px;
}

.catalog-intro-copy>p:last-child {
  max-width: 720px;
  margin: 0 auto;
  color: var(--muted);
  font-size: 11px;
}

.catalog-primary-controls {
  max-width: 940px;
  margin: 22px auto 0;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 170px;
  gap: 10px;
}

.catalog-select-control select,
.catalog-primary-controls .catalog-search,
.catalog-primary-controls .filter-trigger {
  min-height: 52px;
}

.catalog-select-control select {
  width: 100%;
  height: 52px;
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 0 14px;
  color: var(--ink);
  background: var(--white);
  outline: none;
  font-size: 10px;
  font-weight: 700;
}

.catalog-primary-controls .catalog-search {
  box-shadow: none;
}

.catalog-primary-controls .filter-trigger {
  display: inline-flex;
}

.catalog-primary-controls .filter-trigger b {
  min-width: 20px;
  height: 20px;
  border-radius: 999px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: var(--orange);
  font: 800 9px/1 "Inter", sans-serif;
}

.catalog-category-section {
  padding: 32px 0 24px;
}

.catalog-section-heading {
  margin-bottom: 18px;
  text-align: center;
}

.catalog-section-heading h2 {
  margin-bottom: 0;
  font-size: 27px;
}

.catalog-section-heading>p:last-child {
  margin: 5px auto 0;
  color: var(--muted);
  font-size: 10px;
}

.catalog-section-heading.compact {
  margin-bottom: 20px;
}

.catalog-category-grid {
  display: grid;
  grid-template-columns: repeat(8, minmax(0, 1fr));
  gap: 9px;
}

.catalog-category-card {
  min-width: 0;
  min-height: 118px;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 10px 7px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow-xs);
  transition: .2s ease;
}

.catalog-category-card img {
  width: 66px;
  height: 62px;
  object-fit: contain;
}

.catalog-category-card span {
  font-size: 8px;
  font-weight: 800;
  line-height: 1.45;
  text-align: center;
}

.catalog-category-card:hover,
.catalog-category-card.active {
  border-color: #f2b58e;
  color: var(--orange-deep);
  background: #fff8f3;
  transform: translateY(-2px);
}

.catalog-benefit-section {
  padding: 28px 0;
  border-block: 1px solid var(--line);
  background: var(--warm);
}

.catalog-benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

.catalog-benefit-grid article {
  min-height: 105px;
  padding: 17px;
  border-inline-end: 1px solid var(--line);
  text-align: center;
}

.catalog-benefit-grid article:last-child {
  border-inline-end: 0;
}

.catalog-benefit-grid span {
  width: 30px;
  height: 30px;
  margin: 0 auto 7px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--orange);
  background: var(--orange-soft);
  font: 800 9px/1 "Inter", sans-serif;
}

.catalog-benefit-grid strong {
  display: block;
  font-size: 10px;
}

.catalog-benefit-grid p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 8px;
}

.catalog-products-section {
  padding: 32px 0 60px;
  background: #fff;
}

.catalog-subcategory-row {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.catalog-subcategory-row>span {
  flex: 0 0 auto;
  font-size: 9px;
  font-weight: 800;
}

.subcategory-list {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}

.subcategory-chip {
  min-height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 0 13px;
  color: #5f544e;
  background: #fff;
  font-size: 8px;
  font-weight: 800;
}

.subcategory-chip.active,
.subcategory-chip:hover {
  color: #fff;
  border-color: var(--orange);
  background: var(--orange);
}

.reference-toolbar {
  margin: 8px 0 10px;
  padding: 10px 0;
  border-block: 1px solid var(--line);
  align-items: center;
}

.reference-toolbar .result-summary strong {
  font-size: 17px;
}

.sort-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
  font-size: 8px;
}

.sort-label select {
  min-width: 155px;
}

.active-filter-bar {
  min-height: 48px;
  margin-bottom: 14px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 11px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #fffdfa;
}

.active-filter-bar>strong {
  flex: 0 0 auto;
  font-size: 8px;
}

.active-filter-bar>div {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
}

.active-filter-bar [data-remove-filter] {
  min-height: 28px;
  border: 1px solid #eadbd2;
  border-radius: 7px;
  padding: 0 9px;
  color: #645a54;
  background: #fff;
  font-size: 7px;
}

.active-filter-bar [data-remove-filter] span {
  color: var(--orange);
  font-size: 11px;
}

.active-filter-bar>button:last-child {
  margin-inline-start: auto;
  border: 0;
  color: var(--orange-deep);
  background: transparent;
  font-size: 8px;
  font-weight: 800;
}

.catalog-page .catalog-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.catalog-page .product-card {
  border-radius: 12px;
  box-shadow: none;
}

.catalog-page .product-media {
  height: 190px;
  padding: 40px 16px 8px;
  background: linear-gradient(180deg, #fffaf7, #fff);
  position: relative;
  overflow: hidden;
}

.catalog-page .product-media::after {
  bottom: 6px;
  height: 22px;
}

.catalog-page .product-card-body {
  padding: 8px 12px 12px;
}

.catalog-page .product-card h3 {
  margin-block: 2px 3px;
  font-size: 16px;
}

.catalog-page .product-card-body>p {
  height: 31px;
  margin-bottom: 6px;
  font-size: 7px;
  line-height: 1.65;
}

.catalog-page .product-category {
  font-size: 7px;
}

.catalog-page .product-specs span {
  padding: 3px 5px;
  font-size: 6px;
}

.catalog-page .product-card-foot {
  margin-top: 7px;
  padding-top: 7px;
}

.catalog-page .product-card-foot a,
.catalog-page .product-card-foot .rating {
  font-size: 8px;
}

.catalog-page .product-card-top {
  inset: 9px 9px auto;
}

.catalog-page .product-badge {
  padding: 3px 8px;
  font-size: 7px;
}

.catalog-page .compare-toggle {
  width: 29px;
  height: 29px;
}

.catalog-pagination {
  margin: 24px 0 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  direction: rtl;
}

.catalog-pagination button {
  min-width: 36px;
  height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: 700 9px/1 "Inter", "Cairo", sans-serif;
}

.catalog-pagination button.active {
  color: #fff;
  border-color: var(--orange);
  background: var(--orange);
  box-shadow: 0 7px 18px rgba(244, 90, 10, .22);
}

.catalog-pagination button:disabled {
  opacity: .35;
  cursor: not-allowed;
}

.catalog-quick-strip {
  border: 1px solid var(--line);
  border-radius: 13px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  overflow: hidden;
  background: #fff;
}

.catalog-quick-strip article {
  min-height: 84px;
  padding: 13px;
  border-inline-end: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.catalog-quick-strip article:last-child {
  border-inline-end: 0;
}

.catalog-quick-strip article>span {
  color: var(--orange);
  font-size: 25px;
}

.catalog-quick-strip strong,
.catalog-quick-strip small {
  display: block;
}

.catalog-quick-strip strong {
  font-size: 9px;
}

.catalog-quick-strip small {
  color: var(--muted);
  font-size: 7px;
}

.catalog-filter-sheet {
  width: min(370px, 92vw);
  position: fixed;
  inset: 0 0 0 auto;
  z-index: 430;
  max-height: none;
  overflow-y: auto;
  border-radius: 0;
  padding: 28px;
  transform: translateX(105%);
  transition: transform .27s ease;
  box-shadow: -22px 0 60px rgba(40, 20, 10, .16);
}

.catalog-filter-sheet.open {
  transform: translateX(0);
}

.catalog-filter-sheet .filter-close {
  display: inline-grid;
}

.filter-sheet-actions {
  position: sticky;
  bottom: 0;
  padding-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 8px;
  background: #fff;
}

/* Product detail closer to the supplied blueprint */
.product-page {
  background: #fff;
}

.product-hero-grid {
  gap: 24px;
}

.product-info h1 {
  letter-spacing: -2px;
}

.gallery-main {
  background: radial-gradient(circle at 58% 46%, #fff 0, #fff8f4 48%, #f9eee7 100%);
}

.gallery-main::after {
  content: "";
  position: absolute;
  width: 78%;
  height: 90px;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  border: 2px solid rgba(244, 90, 10, .28);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(244, 90, 10, .22);
}

.gallery-main>img {
  z-index: 2;
}

.zoom-action {
  z-index: 3;
}

.consultation-card {
  left: auto;
  right: 18px;
}

.product-tabs {
  scroll-margin-top: 92px;
}

.product-highlight-grid article {
  background: #fff;
}

/* Content pages */
.content-page {
  background: #fff;
}

.content-section {
  padding: 62px 0;
}

.narrow-copy {
  max-width: 820px;
  text-align: center;
}

.narrow-copy h2,
.content-heading h2 {
  margin-bottom: 7px;
  font-size: clamp(27px, 3vw, 38px);
}

.narrow-copy>p:last-child,
.content-heading>p:last-child {
  color: var(--muted);
  font-size: 11px;
}

.content-heading {
  margin-bottom: 25px;
  text-align: center;
}

.about-hero {
  min-height: 510px;
  overflow: hidden;
  background: linear-gradient(180deg, #fff8f3, #fff);
}

.about-hero-grid {
  min-height: 510px;
  display: grid;
  grid-template-columns: .82fr 1.18fr;
  align-items: center;
  gap: 40px;
}

.about-hero-copy h1 {
  margin: 5px 0 13px;
  font-size: clamp(43px, 5vw, 66px);
  line-height: 1.16;
  letter-spacing: -2px;
}

.about-hero-copy h1 em {
  color: var(--orange);
  font-style: normal;
}

.about-hero-copy>p:last-of-type {
  max-width: 520px;
  color: var(--muted);
  font-size: 12px;
}

.about-actions {
  display: flex;
  gap: 8px;
}

.about-hero-media {
  min-height: 390px;
  position: relative;
  display: grid;
  place-items: center;
}

.about-hero-media::before {
  content: "";
  width: 660px;
  height: 215px;
  position: absolute;
  border: 2px solid rgba(255, 255, 255, .95);
  border-radius: 50%;
  background: radial-gradient(ellipse, #fff8d9, #ffd6a1 50%, rgba(244, 90, 10, .13) 71%, transparent 72%);
  box-shadow: 0 0 70px rgba(244, 90, 10, .23);
}

.about-ring {
  width: 620px;
  height: 170px;
  position: absolute;
  border: 1px solid rgba(244, 90, 10, .22);
  border-radius: 50%;
}

.about-hero-media img {
  width: 760px;
  position: relative;
  z-index: 2;
  filter: drop-shadow(0 20px 22px rgba(79, 31, 4, .22));
  mask-image: radial-gradient(ellipse 83% 90% at center, #000 67%, transparent 100%);
}

.value-cards {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.value-cards article {
  border: 1px solid var(--line);
  border-radius: 13px;
  padding: 18px;
  text-align: center;
  background: #fff;
}

.value-cards article>span {
  color: var(--orange);
  font-size: 28px;
}

.value-cards strong {
  display: block;
  font-size: 10px;
}

.value-cards p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 8px;
}

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  position: relative;
}

.timeline-grid::before {
  content: "";
  position: absolute;
  top: 35px;
  right: 8%;
  left: 8%;
  border-top: 1px dashed #e7b28f;
}

.timeline-grid article {
  position: relative;
  padding: 0 18px;
  text-align: center;
}

.timeline-grid article::before {
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 30px;
  right: calc(50% - 5px);
  border: 3px solid #fff;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 1px #e7b28f;
}

.timeline-grid b {
  display: block;
  margin-bottom: 28px;
  color: var(--orange);
  font: 800 12px/1 "Inter", sans-serif;
}

.timeline-grid strong {
  display: block;
  font-size: 10px;
}

.timeline-grid p {
  color: var(--muted);
  font-size: 8px;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.mission-grid article {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  align-items: flex-start;
  gap: 18px;
  background: #fff;
}

.mission-grid article>span {
  color: var(--orange);
  font-size: 42px;
}

.mission-grid h2 {
  margin-bottom: 7px;
  font-size: 25px;
}

.mission-grid p:last-child {
  color: var(--muted);
  font-size: 10px;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.principles-grid article {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 17px;
  text-align: center;
  background: #fff;
}

.principles-grid strong {
  font-size: 10px;
}

.principles-grid p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 8px;
}

.about-stats {
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: 13px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  overflow: hidden;
  background: #fff;
}

.about-stats article {
  min-height: 90px;
  border-inline-end: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.about-stats article:last-child {
  border-inline-end: 0;
}

.about-stats strong {
  color: var(--orange);
  font: 800 22px/1 "Inter", sans-serif;
}

.about-stats span {
  margin-top: 6px;
  color: var(--muted);
  font-size: 8px;
}

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

.team-grid article {
  min-height: 190px;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #fffaf7, #fff);
}

.team-grid article>span {
  width: 78px;
  height: 78px;
  margin-bottom: 13px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: #231a16;
  font-size: 28px;
  font-weight: 800;
}

.team-grid strong {
  font-size: 11px;
}

.team-grid small {
  color: var(--muted);
  font-size: 8px;
}

.inner-cta {
  min-height: 170px;
  margin-top: 24px;
  border-radius: 17px;
  padding: 32px 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #fff;
  background: linear-gradient(100deg, #7f2605, #f45a0a);
  overflow: hidden;
}

.inner-cta h2 {
  margin-bottom: 4px;
  font-size: 30px;
}

.inner-cta p:last-child {
  margin: 0;
  color: #ffe5d6;
  font-size: 10px;
}

.simple-page-hero {
  padding: 42px 0 48px;
  text-align: center;
  background: radial-gradient(circle at 50% 0, rgba(244, 90, 10, .1), transparent 38%), #fffaf7;
}

.simple-page-hero .breadcrumbs {
  justify-content: center;
}

.simple-page-hero h1 {
  margin-bottom: 8px;
  font-size: clamp(37px, 4vw, 54px);
}

.simple-page-hero>.wrap>p:last-child {
  max-width: 720px;
  margin: auto;
  color: var(--muted);
  font-size: 11px;
}

.support-entry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.support-entry-grid article {
  min-height: 235px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px;
  background: #fff;
  box-shadow: var(--shadow-xs);
}

.support-entry-grid article>span {
  width: 55px;
  height: 55px;
  border-radius: 15px;
  display: grid;
  place-items: center;
  color: var(--orange);
  background: var(--orange-soft);
  font-size: 25px;
}

.support-entry-grid h2 {
  margin: 17px 0 6px;
  font-size: 22px;
}

.support-entry-grid p {
  color: var(--muted);
  font-size: 10px;
}

.support-entry-grid a,
.support-entry-grid button {
  border: 0;
  padding: 0;
  color: var(--orange-deep);
  background: none;
  font-size: 9px;
  font-weight: 800;
}

.faq-list {
  max-width: 900px;
  margin: auto;
  display: grid;
  gap: 8px;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0 18px;
  background: #fff;
}

.faq-list summary {
  min-height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  font-size: 10px;
  font-weight: 800;
}

.faq-list summary::after {
  content: "+";
  color: var(--orange);
  font-size: 18px;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list p {
  padding-bottom: 17px;
  color: var(--muted);
  font-size: 9px;
}

.service-request {
  min-height: 180px;
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 30px 38px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #fff8f3, #fff);
}

.service-request h2 {
  margin-bottom: 4px;
  font-size: 29px;
}

.service-request p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 10px;
}

.contact-layout {
  display: grid;
  grid-template-columns: .75fr 1.25fr;
  gap: 20px;
}

.contact-info-panel,
.contact-form {
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 28px;
  background: #fff;
  box-shadow: var(--shadow-xs);
}

.contact-info-panel h2,
.contact-form h2 {
  margin-bottom: 18px;
  font-size: 27px;
}

.contact-methods {
  display: grid;
  gap: 8px;
}

.contact-methods>* {
  min-height: 66px;
  border: 1px solid #f0e5de;
  border-radius: 11px;
  padding: 10px 12px;
  display: flex;
  align-items: center;
  gap: 11px;
  background: #fffdfa;
}

.contact-methods>*>span {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--orange);
  background: var(--orange-soft);
}

.contact-methods strong,
.contact-methods small {
  display: block;
}

.contact-methods strong {
  font-size: 9px;
}

.contact-methods small {
  color: var(--muted);
  font-size: 8px;
  direction: ltr;
  text-align: right;
}

.working-hours {
  margin-top: 16px;
  padding-top: 15px;
  border-top: 1px solid var(--line);
}

.working-hours strong {
  font-size: 10px;
}

.working-hours p {
  margin: 3px 0 0;
  color: var(--muted);
  font-size: 8px;
}

.contact-form label {
  display: block;
  color: #514841;
  font-size: 9px;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  margin-top: 6px;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 10px 12px;
  outline: none;
  background: #fff;
  font-size: 10px;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form>label {
  margin-top: 12px;
}

.contact-form .btn {
  margin-top: 14px;
  min-width: 150px;
}

.contact-form-message {
  margin: 10px 0 0;
  color: var(--success);
  font-size: 9px;
}

.map-placeholder {
  min-height: 300px;
  border: 1px solid var(--line);
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: radial-gradient(circle at 50% 50%, rgba(244, 90, 10, .1), transparent 36%), repeating-linear-gradient(45deg, #fff 0, #fff 12px, #f9f5f2 12px, #f9f5f2 13px);
  text-align: center;
}

.map-placeholder div {
  max-width: 480px;
}

.map-placeholder span {
  color: var(--orange);
  font-size: 43px;
}

.map-placeholder h2 {
  margin: 5px 0;
  font-size: 28px;
}

.map-placeholder p {
  color: var(--muted);
  font-size: 10px;
}

@media (max-width: 1080px) {
  .catalog-category-grid {
    grid-template-columns: repeat(4, 1fr);
  }

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

  .about-hero-grid {
    grid-template-columns: 1fr;
    padding-block: 55px 25px;
    text-align: center;
  }

  .about-hero-copy>p:last-of-type {
    margin-inline: auto;
  }

  .about-actions {
    justify-content: center;
  }

  .about-hero-media {
    min-height: 300px;
  }

  .principles-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 820px) {
  .catalog-primary-controls {
    grid-template-columns: 160px minmax(0, 1fr);
  }

  .catalog-primary-controls .filter-trigger {
    grid-column: 1 / -1;
  }

  .catalog-page .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .catalog-benefit-grid {
    grid-template-columns: 1fr 1fr;
  }

  .catalog-benefit-grid article:nth-child(2) {
    border-inline-end: 0;
  }

  .catalog-benefit-grid article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

  .catalog-quick-strip {
    grid-template-columns: 1fr 1fr;
  }

  .catalog-quick-strip article:nth-child(2) {
    border-inline-end: 0;
  }

  .catalog-quick-strip article:nth-child(-n+2) {
    border-bottom: 1px solid var(--line);
  }

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

  .timeline-grid {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .timeline-grid::before {
    top: 0;
    bottom: 0;
    right: 20px;
    left: auto;
    border-top: 0;
    border-right: 1px dashed #e7b28f;
  }

  .timeline-grid article {
    min-height: 75px;
    padding: 0 55px 0 0;
    text-align: right;
  }

  .timeline-grid article::before {
    top: 7px;
    right: 15px;
  }

  .timeline-grid b {
    margin-bottom: 4px;
  }

  .mission-grid,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .support-entry-grid {
    grid-template-columns: 1fr;
  }

  .about-stats {
    grid-template-columns: repeat(3, 1fr);
  }

  .about-stats article {
    border-bottom: 1px solid var(--line);
  }
}

@media (max-width: 620px) {
  body[data-page="home"] .header-inner {
    direction: rtl;
    justify-content: space-between;
  }

  body[data-page="home"] .brand {
    margin-inline-end: 0;
  }

  body[data-page="home"] .header-actions {
    margin-inline-start: 0;
  }

  body[data-page="home"] .menu-button {
    order: 1;
  }

  body[data-page="home"] .brand {
    order: 0;
  }

  .hero-copy {
    padding-top: 116px;
  }

  .hero {
    height: 602px;
  }

  .hero-stage {
    bottom: 42px;
  }

  .hero-copy h1 {
    font-size: 34px;
  }

  .catalog-intro {
    padding-top: 20px;
  }

  .catalog-intro-copy h1 {
    font-size: 34px;
  }

  .catalog-primary-controls {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .catalog-primary-controls .filter-trigger {
    grid-column: auto;
  }

  .catalog-category-section {
    padding-block: 25px 18px;
  }

  .catalog-category-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    padding-bottom: 6px;
  }

  .catalog-category-card {
    min-width: 105px;
    min-height: 108px;
    scroll-snap-align: start;
  }

  .catalog-benefit-section {
    padding-block: 24px;
  }

  .catalog-benefit-grid article {
    min-height: 95px;
    padding: 12px 8px;
  }

  .catalog-subcategory-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 7px;
  }

  .subcategory-list {
    width: 100%;
    flex-wrap: nowrap;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .reference-toolbar {
    align-items: center;
  }

  .sort-label>span {
    display: none;
  }

  .catalog-page .catalog-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .catalog-page .product-media {
    height: 155px;
    padding: 36px 10px 6px;
  }

  .catalog-page .product-media::after {
    bottom: 4px;
  }

  .catalog-page .product-card-body {
    padding: 6px 9px 9px;
  }

  .catalog-page .product-card h3 {
    font-size: 13px;
  }

  .catalog-page .product-card-body>p {
    display: none;
  }

  .catalog-page .product-category {
    font-size: 6px;
  }

  .catalog-page .product-specs {
    gap: 3px;
  }

  .catalog-page .product-specs span {
    font-size: 5.5px;
  }

  .catalog-page .product-card-foot {
    align-items: stretch;
    flex-direction: column-reverse;
    gap: 5px;
  }

  .catalog-page .product-card-foot a {
    min-height: 30px;
    border: 1px solid #efc5a9;
    border-radius: 7px;
    justify-content: center;
  }

  .catalog-page .product-card-foot .rating {
    text-align: right;
  }

  .catalog-quick-strip article {
    min-height: 75px;
    padding: 9px;
    gap: 6px;
  }

  .catalog-quick-strip article>span {
    font-size: 20px;
  }

  .catalog-filter-sheet {
    width: 100%;
    inset: auto 0 0;
    max-height: 86vh;
    border-radius: 22px 22px 0 0;
    transform: translateY(105%);
  }

  .catalog-filter-sheet.open {
    transform: translateY(0);
  }

  .consultation-card {
    display: none;
  }

  .content-section {
    padding: 46px 0;
  }

  .about-hero-grid {
    min-height: 610px;
    padding-top: 90px;
  }

  .about-hero-copy h1 {
    font-size: 39px;
  }

  .about-hero-copy>p:last-of-type {
    font-size: 10px;
  }

  .about-hero-media {
    min-height: 230px;
  }

  .about-hero-media::before {
    width: 520px;
    height: 160px;
  }

  .about-ring {
    width: 470px;
    height: 130px;
  }

  .about-hero-media img {
    width: 570px;
    max-width: none;
  }

  .value-cards {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .value-cards article {
    padding: 13px 8px;
  }

  .mission-grid article {
    min-height: 165px;
    padding: 20px;
  }

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

  .about-stats {
    grid-template-columns: 1fr 1fr;
  }

  .about-stats article {
    min-height: 78px;
  }

  .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .team-grid article {
    min-height: 160px;
    padding: 12px 6px;
  }

  .team-grid article>span {
    width: 62px;
    height: 62px;
    font-size: 23px;
  }

  .inner-cta,
  .service-request {
    padding: 25px 20px;
    align-items: flex-start;
    flex-direction: column;
    gap: 15px;
  }

  .inner-cta h2,
  .service-request h2 {
    font-size: 24px;
  }

  .simple-page-hero {
    padding-top: 30px;
  }

  .simple-page-hero h1 {
    font-size: 35px;
  }

  .support-entry-grid article {
    min-height: 205px;
    padding: 22px;
  }

  .contact-info-panel,
  .contact-form {
    padding: 20px;
  }

  .contact-form .form-grid {
    grid-template-columns: 1fr;
  }

  .map-placeholder {
    min-height: 250px;
    padding: 25px;
  }
}

/* Keep the responsive filter sheet completely outside the visual/accessibility flow until opened. */
.catalog-filter-sheet:not(.open) {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.catalog-filter-sheet.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

/* ===== Reference refinement pass — live assets + tighter industrial rhythm ===== */
:root {
  --wrap: min(1240px, calc(100% - 48px));
  --header-height: 70px;
}

.site-header {
  box-shadow: 0 4px 22px rgba(61, 31, 12, .035);
}

.header-inner {
  gap: 24px;
}

.desktop-nav {
  gap: 21px;
}

.desktop-nav a {
  font-size: 11.5px;
}

.header-quote {
  min-height: 40px;
  border-radius: 8px;
}

.hero {
  height: 690px;
  background:
    radial-gradient(ellipse at 50% 63%, rgba(255, 176, 105, .30) 0%, rgba(255, 226, 203, .30) 31%, transparent 61%),
    linear-gradient(180deg, #fff0e5 0%, #fff6ef 53%, #fff 100%);
}

.hero-copy {
  padding-top: 72px;
}

.hero-copy h1 {
  font-size: clamp(42px, 4.6vw, 64px);
  letter-spacing: -2px;
}

.hero-subtitle {
  max-width: 620px;
}

.hero-stage {
  width: min(1180px, 94vw);
  height: 355px;
  bottom: 8px;
}

.hero-stage::before {
  width: 88%;
  height: 122px;
  bottom: 16px;
}

.hero-stage img {
  inset: auto 0 2px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center bottom;
  filter: drop-shadow(0 24px 25px rgba(75, 28, 5, .24));
  -webkit-mask-image: none;
  mask-image: none;
}

.stage-orbit-outer {
  width: 94%;
  height: 124px;
  bottom: 2px;
}

.stage-orbit-inner {
  width: 70%;
  height: 74px;
  bottom: 24px;
}

.trust-shell {
  margin-top: -34px;
}

.trust-strip {
  min-height: 88px;
  border-radius: 16px;
}

.section {
  padding: 66px 0;
}

.section-tight {
  padding-top: 18px;
}

.section-head {
  margin-bottom: 24px;
}

.section-head h2 {
  font-size: clamp(28px, 3vw, 37px);
}

.product-grid {
  gap: 14px;
}

.product-card {
  border-radius: 14px;
}

.product-media {
  height: 212px;
  padding: 48px 20px 10px;
}

.product-media::after {
  bottom: 6px;
}

.product-card h3 {
  font-size: 18px;
}

.video-card {
  min-height: 275px;
}

.review-card,
.score-card,
.why-card {
  border-radius: 13px;
}

.final-cta {
  min-height: 245px;
  border-radius: 18px;
}

.catalog-intro {
  padding-top: 30px;
}

.catalog-intro-copy h1 {
  font-size: clamp(34px, 4vw, 50px);
}

.catalog-category-grid {
  gap: 8px;
}

.catalog-category-card {
  min-height: 110px;
}

.catalog-page .catalog-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.catalog-page .product-media {
  height: 190px;
  padding: 40px 16px 8px;
}

.catalog-page .product-media::after {
  bottom: 6px;
}

.catalog-products-section {
  padding-bottom: 60px;
}

.product-page {
  padding-top: 20px;
}

.product-hero-grid {
  align-items: stretch;
}

.gallery-main {
  min-height: 500px;
}

.gallery-main>img {
  max-height: 430px;
}

.product-info h1 {
  font-size: clamp(48px, 5vw, 72px);
}

.quick-spec-grid article {
  min-height: 86px;
}

.product-highlight-grid article {
  min-height: 105px;
}

.details-grid {
  gap: 14px;
}

.application-grid article {
  min-height: 150px;
}

.demo-banner {
  min-height: 155px;
}

@media (max-width: 1080px) {
  .catalog-page .catalog-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 820px) {
  :root {
    --wrap: min(100% - 28px, 720px);
  }

  .desktop-nav,
  .header-quote,
  .search-button {
    display: none;
  }

  .menu-button {
    display: inline-grid;
  }

  .header-inner {
    justify-content: space-between;
  }

  .catalog-page .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .product-info {
    order: 2;
  }

  .product-gallery {
    order: 1;
  }
}

@media (max-width: 620px) {
  :root {
    --wrap: calc(100% - 24px);
    --header-height: 66px;
  }

  .site-header {
    background: rgba(255, 255, 255, .92);
  }

  .header-inner {
    position: relative;
    direction: ltr !important;
  }

  .header-inner>.brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
  }

  .header-actions {
    width: 100%;
    justify-content: flex-start;
    direction: ltr;
  }

  .menu-button {
    margin-inline-start: 0;
  }

  .brand-symbol {
    width: 31px;
    height: 31px;
  }

  .brand-word strong {
    font-size: 20px;
  }

  .brand-word small {
    font-size: 4.5px;
  }

  .hero {
    height: 616px;
  }

  .hero-ceiling {
    width: 730px;
    height: 360px;
    top: -250px;
  }

  .hero-ceiling::before {
    width: 470px;
    height: 155px;
    bottom: -8px;
  }

  .hero-ceiling::after {
    width: 610px;
    height: 210px;
    bottom: -145px;
  }

  .hero-ceiling span {
    width: 540px;
    height: 175px;
    bottom: -116px;
  }

  .hero-copy {
    padding-top: 88px;
  }

  .hero-copy .eyebrow {
    margin-bottom: 5px;
    font-size: 9px;
  }

  .hero-copy h1 {
    font-size: 34px;
    line-height: 1.08;
    letter-spacing: -1.4px;
  }

  .hero-subtitle {
    max-width: 330px;
    margin-bottom: 15px;
    font-size: 10px;
  }

  .hero-cta {
    min-height: 42px;
  }

  .hero-stage {
    width: 760px;
    max-width: none;
    height: 280px;
    bottom: 26px;
  }

  .hero-stage::before {
    width: 66%;
    height: 76px;
    bottom: 14px;
  }

  .stage-orbit-outer {
    width: 72%;
    height: 76px;
    bottom: 6px;
  }

  .stage-orbit-inner {
    width: 49%;
    height: 46px;
    bottom: 22px;
  }

  .hero-stage img {
    width: 760px;
    max-width: none;
    height: 280px;
  }

  .trust-shell {
    margin-top: -25px;
  }

  .trust-strip {
    min-height: 78px;
    padding: 8px 4px;
    border-radius: 14px;
  }

  .trust-item {
    padding: 5px 3px;
    flex-direction: column;
    gap: 3px;
    text-align: center;
  }

  .trust-icon {
    width: 28px;
    height: 28px;
  }

  .trust-icon .icon {
    width: 15px;
    height: 15px;
  }

  .trust-item strong {
    font-size: 7.5px;
    white-space: nowrap;
  }

  .trust-item small {
    display: none;
  }

  .section {
    padding: 46px 0;
  }

  .section-head {
    margin-bottom: 17px;
    align-items: flex-end;
  }

  .section-head h2 {
    font-size: 25px;
  }

  .section-head>p {
    display: none;
  }

  .text-link {
    font-size: 9px;
  }

  .product-slider,
  .horizontal-slider {
    display: flex !important;
    overflow-x: auto;
    gap: 9px;
    padding-bottom: 6px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .product-slider>*,
  .horizontal-slider>* {
    scroll-snap-align: start;
    flex: 0 0 78%;
  }

  .product-slider>.product-card {
    flex-basis: 68%;
  }

  .product-media {
    height: 185px;
    padding: 42px 14px 6px;
  }

  .product-media::after {
    bottom: 6px;
  }

  .product-card h3 {
    font-size: 15px;
  }

  .product-card-body {
    padding: 8px 11px 12px;
  }

  .product-card-body>p {
    height: 34px;
    font-size: 7px;
  }

  .video-card {
    min-height: 245px;
    flex-basis: 76%;
  }

  .reviews-layout {
    display: block;
  }

  .score-card {
    min-height: 150px;
    margin-bottom: 10px;
  }

  .reviews>* {
    flex-basis: 82%;
  }

  .why-grid>* {
    flex-basis: 70%;
  }

  .final-cta {
    min-height: 285px;
    grid-template-columns: 1fr;
  }

  .final-cta-media {
    min-height: 150px;
  }

  .final-cta-copy {
    padding: 24px;
  }

  .final-cta-copy h2 {
    font-size: 27px;
  }

  .catalog-intro {
    padding-top: 18px;
  }

  .catalog-intro-copy h1 {
    font-size: 32px;
  }

  .catalog-primary-controls {
    margin-top: 16px;
  }

  .catalog-category-card {
    min-width: 98px;
    min-height: 104px;
  }

  .catalog-page .catalog-grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .catalog-page .product-media {
    height: 150px;
    padding: 36px 10px 6px;
  }

  .catalog-page .product-media::after {
    bottom: 4px;
  }

  .catalog-page .product-card h3 {
    font-size: 12px;
  }

  .product-page {
    padding-top: 12px;
  }

  .product-breadcrumbs {
    margin-bottom: 10px;
  }

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

  .thumbnail-list {
    order: 2;
    display: flex;
    overflow-x: auto;
  }

  .thumbnail {
    flex: 0 0 70px;
  }

  .gallery-main {
    min-height: 350px;
  }

  .gallery-main>img {
    max-height: 310px;
  }

  .product-info {
    padding-top: 8px;
  }

  .product-info h1 {
    font-size: 46px;
  }

  .quick-spec-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
  }

  .quick-spec-grid article {
    min-height: 70px;
    padding: 8px 3px;
  }

  .quick-spec-grid article strong {
    font-size: 10px;
  }

  .quick-spec-grid article span {
    font-size: 6px;
  }

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

  .product-highlight-grid {
    grid-template-columns: 1fr 1fr;
    gap: 7px;
  }

  .product-highlight-grid article {
    min-height: 88px;
    padding: 10px;
  }

  .tabs-nav {
    overflow-x: auto;
    justify-content: flex-start;
  }

  .tab-button {
    flex: 0 0 auto;
    min-width: 105px;
  }

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

  .application-grid>* {
    flex-basis: 72%;
  }

  .service-strip {
    grid-template-columns: 1fr 1fr;
  }

  .related-section .product-slider>.product-card {
    flex-basis: 68%;
  }
}

/* Final breakpoint overrides */
@media (max-width: 620px) {
  .btn {
    min-height: 44px;
    padding-inline: 16px;
    font-size: 11px;
  }

  .video-card {
    flex-basis: min(78%, 300px);
  }

  .mobile-drawer {
    width: min(340px, 90vw);
    padding: 17px;
  }

  .mobile-drawer nav a {
    min-height: 48px;
    font-size: 13px;
  }
}

/* Final source-of-truth overrides */
.hero {
  height: 660px;
}

.hero-copy {
  padding-top: 62px;
}

.hero-stage {
  width: min(1100px, 92vw);
  height: 335px;
  bottom: 5px;
}

.video-card {
  aspect-ratio: 4 / 5;
  min-height: 0;
}

.catalog-category-card {
  position: relative;
  overflow: hidden;
}

.catalog-category-card::after {
  display: none;
}

@media (max-width: 820px) {
  .hero {
    height: 620px;
  }

  .hero-copy {
    padding-top: 72px;
  }

  .hero-stage {
    width: 820px;
    max-width: none;
    height: 285px;
    bottom: 16px;
  }

  .hero-stage img {
    width: 820px;
    max-width: none;
    height: 285px;
  }
}

@media (max-width: 620px) {
  body[data-page="home"] .site-header {
    background: transparent;
    box-shadow: none;
  }

  .hero {
    height: 566px;
    border-radius: 0 0 30px 30px;
  }

  .hero-copy {
    padding-top: 102px;
  }

  .hero-copy .eyebrow {
    display: none;
  }

  .hero-copy h1 {
    max-width: 330px;
    margin-inline: auto;
    font-size: 33px;
    letter-spacing: -1.1px;
  }

  .hero-subtitle {
    max-width: 305px;
    font-size: 10.5px;
    line-height: 1.75;
  }

  .hero-stage {
    width: 660px;
    height: 238px;
    bottom: 18px;
  }

  .hero-stage img {
    width: 660px;
    height: 238px;
  }

  .trust-shell {
    margin-top: -21px;
  }

  .trust-strip {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    overflow: hidden;
  }

  .trust-item {
    min-width: 0;
    padding-inline: 2px;
  }

  .trust-item strong {
    font-size: 6.7px;
  }

  .product-slider>.product-card {
    flex-basis: 72%;
  }

  .video-card {
    flex-basis: 72%;
    aspect-ratio: 4 / 5;
    min-height: 0;
  }

  .final-cta {
    min-height: 305px;
  }

  .final-cta-media {
    position: absolute;
    inset: 0;
    min-height: 100%;
  }

  .final-cta-copy {
    min-height: 305px;
    justify-content: flex-end;
  }
}

@media (max-width: 380px) {
  .hero-copy h1 {
    font-size: 30px;
  }

  .hero-stage,
  .hero-stage img {
    width: 610px;
  }
}

/* =========================================================
   2026 final production pass — premium rhythm and mobile UX
   ========================================================= */
.form-honeypot {
  position: absolute !important;
  inline-size: 1px !important;
  block-size: 1px !important;
  overflow: hidden !important;
  clip-path: inset(50%) !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

/* Navigation drawer: clearer hierarchy and stronger brand presence. */
.mobile-drawer {
  width: min(390px, 92vw);
  padding: 22px;
  border-inline-start: 1px solid rgba(244, 90, 10, .12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .99), rgba(255, 249, 245, .99)),
    var(--white);
}

.drawer-head {
  padding-bottom: 18px;
}

.drawer-intro {
  margin: 16px 0 10px;
  border: 1px solid #f1dfd4;
  border-radius: 14px;
  padding: 13px 15px;
  background: linear-gradient(135deg, #fff7f1, #fff);
}

.drawer-intro span,
.drawer-intro strong {
  display: block;
}

.drawer-intro span {
  color: var(--orange);
  font-size: 9px;
  font-weight: 800;
}

.drawer-intro strong {
  margin-top: 2px;
  font-size: 15px;
}

.mobile-drawer nav {
  padding-block: 4px 10px;
  gap: 5px;
}

.mobile-drawer nav a {
  min-height: 58px;
  position: relative;
  border: 1px solid transparent;
  border-radius: 11px;
  padding: 8px 13px 8px 38px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1px;
  background: transparent;
  transition: .2s ease;
}

.mobile-drawer nav a::before {
  content: "";
  width: 7px;
  height: 7px;
  position: absolute;
  left: 15px;
  top: 50%;
  border: 2px solid #d6c4b9;
  border-radius: 50%;
  transform: translateY(-50%);
  opacity: 1;
}

.mobile-drawer nav a span {
  font-size: 13px;
  font-weight: 800;
}

.mobile-drawer nav a small {
  color: #8b7d75;
  font-size: 8px;
  font-weight: 600;
}

.mobile-drawer nav a:hover,
.mobile-drawer nav a:focus-visible,
.mobile-drawer nav a.active {
  color: var(--ink);
  border-color: #efdbce;
  background: #fff;
  transform: none;
  box-shadow: 0 7px 22px rgba(61, 31, 12, .045);
}

.mobile-drawer nav a:hover::before,
.mobile-drawer nav a:focus-visible::before,
.mobile-drawer nav a.active::before {
  border-color: var(--orange);
  background: var(--orange);
}

.drawer-contact {
  margin-top: auto;
  padding-block: 10px;
}

.drawer-contact a {
  min-height: 64px;
  justify-content: flex-start;
  padding: 10px 11px;
  background: #fff;
}

.drawer-contact a>span {
  min-width: 0;
}

.drawer-contact b,
.drawer-contact small {
  display: block;
}

.drawer-contact b {
  color: var(--ink);
  font-size: 9px;
}

.drawer-contact small {
  max-width: 110px;
  overflow: hidden;
  color: var(--muted);
  font-size: 7px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.drawer-quote {
  margin-top: 2px;
}

/* Hero: keep the light ring, platform and machines as one composed scene. */
.hero {
  height: 680px;
  background:
    radial-gradient(ellipse at 50% 60%, rgba(255, 174, 103, .25), transparent 44%),
    linear-gradient(180deg, #fff0e5 0%, #fff7f2 55%, #fff 100%);
}

.hero-copy {
  padding-top: 68px;
}

.hero-copy h1 {
  max-width: 760px;
}

.hero-stage {
  width: min(1120px, 92vw);
  height: 345px;
  bottom: 3px;
}

.hero-stage::before {
  width: 86%;
  height: 118px;
  bottom: 11px;
}

.hero-stage img {
  inset-block-end: 1px;
}

.stage-orbit-outer {
  width: 92%;
}

.stage-orbit-inner {
  width: 67%;
}

/* Final CTA must use a clean action image, not artwork containing baked copy. */
.final-cta-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23, 19, 16, .03), rgba(23, 19, 16, .35));
}

.final-cta-media img {
  object-position: center 48%;
}

/* Product gallery content should feel like one product set, not mixed cards. */
.thumbnail img {
  background: #fffaf7;
}

.gallery-main {
  background: linear-gradient(145deg, #fffaf7, #fff1e7);
}

.gallery-main::after {
  content: "";
  width: 72%;
  height: 68px;
  position: absolute;
  left: 50%;
  bottom: 35px;
  border: 1px solid rgba(244, 90, 10, .22);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 22px rgba(244, 90, 10, .14);
  pointer-events: none;
}

.gallery-main>img {
  z-index: 2;
}

.zoom-action {
  z-index: 3;
}

.demo-banner {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(35, 12, 3, .96), rgba(99, 28, 4, .84)),
    url("assets/videos/action-3-clean.jpg") center/cover;
}

/* Mobile action bar stays out of the hero and appears only after scrolling. */
@media (max-width: 820px) {
  .mobile-action-bar {
    display: grid;
    opacity: 0;
    transform: translateY(calc(100% + 18px));
    pointer-events: none;
    transition: opacity .22s ease, transform .22s ease;
  }

  .mobile-action-bar.visible {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

@media (max-width: 620px) {
  :root {
    --wrap: calc(100% - 24px);
  }

  body {
    padding-bottom: 76px;
  }

  body[data-page="home"] .site-header {
    border-bottom-color: transparent;
    background: rgba(255, 247, 240, .18);
    backdrop-filter: blur(8px);
  }

  .header-inner>.brand {
    top: 50%;
    transform: translate(-50%, -50%);
  }

  .brand-symbol {
    width: 34px;
    height: 34px;
  }

  .brand-word strong {
    font-size: 22px;
  }

  .brand-word small {
    font-size: 5px;
    letter-spacing: 1.5px;
  }

  .menu-button {
    border-color: rgba(92, 49, 28, .16);
    background: rgba(255, 255, 255, .74);
  }

  .hero {
    height: 570px;
    border-radius: 0 0 28px 28px;
  }

  .hero-ceiling {
    width: 640px;
    height: 330px;
    top: -235px;
  }

  .hero-ceiling::before {
    width: 430px;
    height: 145px;
    bottom: -7px;
  }

  .hero-ceiling::after {
    width: 555px;
    height: 195px;
    bottom: -130px;
  }

  .hero-ceiling span {
    width: 505px;
    height: 162px;
    bottom: -107px;
  }

  .hero-copy {
    padding-top: 102px;
  }

  .hero-copy h1 {
    max-width: 335px;
    font-size: 34px;
    line-height: 1.07;
  }

  .hero-subtitle {
    max-width: 320px;
    font-size: 11px;
    line-height: 1.7;
  }

  .hero-stage {
    width: 520px;
    height: 218px;
    bottom: 18px;
  }

  .hero-stage img {
    width: 520px;
    height: 218px;
    object-fit: contain;
  }

  .hero-stage::before {
    width: 72%;
    height: 70px;
    bottom: 13px;
  }

  .stage-orbit-outer {
    width: 78%;
    height: 74px;
  }

  .stage-orbit-inner {
    width: 53%;
    height: 43px;
  }

  .trust-shell {
    margin-top: -20px;
  }

  .trust-strip {
    min-height: 76px;
  }

  .trust-item strong {
    font-size: 7.4px;
  }

  .section {
    padding-block: 42px;
  }

  .section-head h2 {
    font-size: 24px;
    line-height: 1.25;
  }

  .product-slider>.product-card {
    flex-basis: min(47%, 190px);
  }

  .product-media {
    height: 160px;
    padding: 38px 10px 6px;
  }

  .product-media::after {
    bottom: 4px;
  }

  .product-card-body {
    padding: 8px 10px 11px;
  }

  .product-card h3 {
    font-size: 13px;
  }

  .product-card-body>p {
    height: 31px;
    font-size: 7.2px;
    line-height: 1.55;
  }

  .product-specs {
    gap: 3px;
  }

  .product-specs span {
    font-size: 6px;
  }

  .video-card {
    flex-basis: min(48%, 190px);
    aspect-ratio: 4 / 5;
  }

  .video-caption {
    right: 10px;
    left: 10px;
    bottom: 9px;
  }

  .video-caption strong {
    font-size: 9px;
  }

  .play-button {
    width: 46px;
    height: 46px;
  }

  .reviews-layout {
    display: flex;
    gap: 9px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .score-card {
    min-width: 150px;
    min-height: 168px;
    margin: 0;
    flex: 0 0 43%;
    scroll-snap-align: start;
  }

  .reviews-layout>.reviews {
    min-width: 0;
    flex: 1 0 auto;
    overflow: visible;
  }

  .reviews-layout .review-card {
    min-height: 168px;
    flex-basis: min(76vw, 280px);
  }

  .why-grid>* {
    flex-basis: min(72%, 270px);
  }

  .final-cta {
    min-height: 285px;
  }

  .final-cta-media img {
    object-position: center;
  }

  .product-page {
    padding-top: 10px;
  }

  .product-hero-grid {
    gap: 15px;
  }

  .gallery-main {
    min-height: 325px;
  }

  .gallery-main>img {
    max-height: 285px;
  }

  .product-info h1 {
    font-size: 43px;
  }

  .product-info h2 {
    font-size: 17px;
  }

  .quick-spec-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 7px;
  }

  .quick-spec-grid article {
    min-height: 73px;
    padding: 9px 7px;
  }

  .quick-spec-grid article strong {
    font-size: 12px;
  }

  .quick-spec-grid article span {
    font-size: 7px;
  }

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

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

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

  .product-review-score {
    min-height: 160px;
  }

  .contact-form .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 380px) {

  .hero-stage,
  .hero-stage img {
    width: 485px;
  }

  .product-slider>.product-card,
  .video-card {
    flex-basis: 52%;
  }
}

/* Final CTA media must never inherit the source image aspect ratio. */
@media (min-width: 769px) {
  .final-cta {
    height: 300px;
    min-height: 300px;
  }

  .final-cta-media {
    height: 300px;
    min-height: 300px;
  }

  .final-cta-media img {
    position: absolute;
    inset: 0;
  }
}

@media (max-width: 768px) {
  .final-cta {
    height: 285px;
    min-height: 285px;
  }

  .final-cta-media {
    height: 285px;
    min-height: 285px;
  }

  .final-cta-media img {
    position: absolute;
    inset: 0;
  }
}

/* Showcase v2: pricing, status and richer category/product controls */
.product-badge-stack {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px;
}

.product-badge-stack .product-badge:first-child:not(:last-child) {
  color: #2d1d13;
  background: #ffd7bd;
}

.product-card-price-row {
  min-height: 34px;
  margin-top: 10px;
  display: flex;
  align-items: center;
}

.product-price {
  color: var(--ink);
  font: 800 17px/1.2 "Inter", "Cairo", sans-serif;
  direction: ltr;
}

.product-price-request {
  color: var(--orange-deep);
  font-size: 9px;
  font-weight: 800;
}

.catalog-category-card small {
  max-width: 100%;
  display: -webkit-box;
  overflow: hidden;
  color: var(--muted);
  font-size: 7px;
  line-height: 1.45;
  text-align: center;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.product-purchase-panel {
  margin-top: 14px;
  border: 1px solid #efdbcf;
  border-radius: 12px;
  padding: 13px 15px;
  background: linear-gradient(135deg, #fff8f2, #fff);
}

.product-purchase-panel>div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 2px 12px;
}

.product-purchase-panel span {
  grid-row: 1 / span 2;
  border-radius: 999px;
  padding: 5px 10px;
  color: #146b42;
  background: #e6f5ed;
  font-size: 8px;
  font-weight: 800;
}

.product-purchase-panel strong {
  color: var(--ink);
  font: 800 20px/1.2 "Inter", "Cairo", sans-serif;
}

.product-purchase-panel small {
  color: var(--muted);
  font-size: 7px;
}

.compatible-product-list {
  margin-top: 9px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.compatible-product-list a {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 9px;
  padding: 7px;
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--soft);
}

.compatible-product-list img {
  width: 43px;
  height: 40px;
  object-fit: contain;
}

.compatible-product-list strong,
.compatible-product-list small {
  display: block;
}

.compatible-product-list strong {
  overflow: hidden;
  font: 800 8px/1.4 "Inter", "Cairo", sans-serif;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.compatible-product-list small {
  color: var(--muted);
  font-size: 7px;
}

@media (max-width: 760px) {
  .product-purchase-panel>div {
    grid-template-columns: 1fr;
  }

  .product-purchase-panel span {
    grid-row: auto;
    width: fit-content;
    margin-bottom: 4px;
  }

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

/* ==========================================
   MOBILE & TABLET REFINEMENT OVERRIDES
   ========================================== */

/* 1. Header & Menu Button Positioning on Mobile */
@media (max-width: 991px) {
  .site-header {
    height: 64px !important;
    padding-inline: 16px !important;
  }

  .header-inner {
    position: relative !important;
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: flex-start !important;
    direction: rtl !important;
    width: 100% !important;
    gap: 0 !important;
  }

  /* Hamburger Menu Button placed on FAR RIGHT with Solid White BG and Black Icon */
  .menu-button {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    order: 1 !important;
    margin-left: 12px !important;
    margin-right: 0 !important;
    flex-shrink: 0 !important;
    background: #ffffff !important;
    color: #1a1412 !important;
    border: 1px solid rgba(0, 0, 0, 0.12) !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07) !important;
    width: 42px !important;
    height: 42px !important;
    border-radius: 10px !important;
  }

  .menu-button .icon,
  .menu-button svg {
    stroke: #1a1412 !important;
    width: 22px !important;
    height: 22px !important;
    stroke-width: 2.2px !important;
  }

  /* Logo positioned next to menu button on the right */
  .brand {
    order: 2 !important;
    margin-left: auto !important;
    margin-right: 0 !important;
    flex-shrink: 0 !important;
  }

  .desktop-nav {
    display: none !important;
  }

  /* Search action button placed on FAR LEFT (أقصى اليسار) */
  .header-actions {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    order: 3 !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .header-quote {
    display: none !important;
  }
}

/* Header Text Color Contrast Refinements */
.site-header {
  background: rgba(255, 255, 255, 0.96) !important;
}

.desktop-nav a {
  color: #1a1412 !important;
  font-weight: 800 !important;
  font-size: 13px !important;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--orange-deep) !important;
}

.brand-word strong {
  color: #1a1412 !important;
}

.brand-word small {
  color: #70655e !important;
}

/* 2. Mobile Drawer Navigation & Styling */
.mobile-drawer {
  width: min(340px, 86vw);
  padding: 18px 16px;
}

.drawer-head {
  padding-bottom: 14px;
  display: flex !important;
  direction: ltr !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100% !important;
  gap: 12px !important;
  border-bottom: 1px solid var(--line);
}

.drawer-head .brand {
  order: 1 !important; /* Logo on FAR LEFT */
  margin-right: auto !important;
  gap: 8px !important;
  max-width: calc(100% - 50px);
}

.drawer-head #drawer-close {
  order: 2 !important; /* Close X on FAR RIGHT */
  flex-shrink: 0 !important;
  background: #f6f3f0 !important;
  color: #1a1412 !important;
  border-radius: 8px !important;
}

.drawer-head .brand-word strong {
  font-size: 20px;
}

.drawer-head .brand-word small {
  font-size: 5px;
  letter-spacing: 1.5px;
}

.drawer-intro {
  margin-block: 12px;
  padding: 12px 14px;
  border-radius: 12px;
  background: #fbf5f0;
  border: 1px solid #f2e3d8;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.drawer-intro span {
  font-size: 11px;
  color: var(--orange-deep);
  font-weight: 700;
}

.drawer-intro strong {
  font-size: 14px;
  color: var(--ink);
  font-weight: 800;
}

.mobile-drawer nav {
  padding-block: 8px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.mobile-drawer nav a {
  min-height: 52px;
  padding: 10px 14px;
  border: 1px solid #f0e6df;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: #faf6f3;
  transition: all 0.2s ease;
  text-decoration: none;
  position: relative;
}

.mobile-drawer nav a span {
  font-size: 14px;
  font-weight: 800;
  color: var(--ink);
  line-height: 1.3;
}

.mobile-drawer nav a small {
  font-size: 11px;
  font-weight: 500;
  color: #7d726b;
  margin-top: 2px;
}

.mobile-drawer nav a.active {
  background: #fff3ec;
  border-color: #ffd2b8;
  padding-right: 22px;
}

.mobile-drawer nav a.active span {
  color: var(--orange-deep);
}

.mobile-drawer nav a.active::before {
  content: "";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 22px;
  background: var(--orange);
  border-radius: 4px;
}

.drawer-contact {
  margin-top: auto;
  padding-top: 14px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.drawer-contact a {
  min-height: 50px;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 6px 8px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.drawer-contact a span {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  min-width: 0;
}

.drawer-contact a b {
  font-size: 11px;
  color: var(--ink);
  font-weight: 800;
  line-height: 1.2;
}

.drawer-contact a small {
  font-size: 9px;
  color: var(--muted);
  white-space: nowrap;
  direction: ltr;
  unicode-bidi: isolate;
}

/* 3. Sticky Bottom Mobile Action Bar */
.mobile-action-bar {
  position: fixed !important;
  bottom: 0 !important;
  left: 0 !important;
  right: 0 !important;
  z-index: 9999 !important;
  height: 64px !important;
  padding: 8px 12px !important;
  background: #ffffff !important;
  border-top: 1px solid rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 -6px 24px rgba(0, 0, 0, 0.12) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 8px !important;
  box-sizing: border-box !important;
  transform: translateY(100%);
  transition: transform 0.25s ease-in-out !important;
}

.mobile-action-bar.visible {
  transform: translateY(0) !important;
}

.mobile-action-bar a,
.mobile-action-bar button {
  flex: 1 1 0% !important;
  min-width: 0 !important;
  height: 48px !important;
  min-height: 48px !important;
  max-height: 48px !important;
  border-radius: 10px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 6px !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  white-space: nowrap !important;
  box-sizing: border-box !important;
  padding: 0 8px !important;
  flex-shrink: 0 !important;
  margin: 0 !important;
}

.mobile-action-bar button[data-quote] {
  flex: 1.8 1 0% !important;
  background: var(--orange) !important;
  color: #ffffff !important;
  border: none !important;
  font-size: 13px !important;
  font-weight: 800 !important;
  box-shadow: 0 4px 14px rgba(244, 90, 10, 0.3) !important;
}

.mobile-action-bar a {
  background: #f6f3f0 !important;
  color: var(--ink) !important;
  border: 1px solid #e6ded8 !important;
}

.mobile-action-bar .icon {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0 !important;
}

@media (max-width: 760px) {
  body {
    padding-bottom: 70px !important;
  }
}

/* 4. Hero Section Top Clearance & Section Spacing Improvements */
.hero {
  padding-top: 40px !important;
}

.hero-copy {
  padding-top: 60px !important;
  margin-top: 0 !important;
}

@media (max-width: 991px) {
  .hero-copy {
    padding-top: 50px !important;
  }
}

@media (max-width: 760px) {
  .hero {
    height: auto !important;
    min-height: 520px !important;
    padding-top: 30px !important;
    padding-bottom: 30px !important;
    overflow: visible !important;
  }

  .hero-copy {
    padding-top: 45px !important;
    text-align: center !important;
  }

  .hero-copy h1 {
    font-size: clamp(26px, 7vw, 34px) !important;
    line-height: 1.25 !important;
    margin-top: 10px !important;
  }

  .hero-subtitle {
    font-size: 14px !important;
    margin-top: 10px !important;
  }

  .hero-cta {
    margin: 18px auto 0 auto !important;
  }

  .hero-stage {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    margin-top: 28px !important;
    margin-bottom: 10px !important;
    width: 100% !important;
    display: flex !important;
    justify-content: center !important;
  }

  #hero-image {
    max-width: 92% !important;
    height: auto !important;
    object-fit: contain !important;
    margin: 0 auto !important;
    display: block !important;
    filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.15)) !important;
  }

  .trust-shell {
    margin-top: 10px !important;
    padding-block: 16px !important;
  }

  .section {
    padding-block: 36px !important;
  }

  .section-head {
    margin-bottom: 20px !important;
  }

  .section-head h2 {
    font-size: 22px !important;
  }
}
/* Production fixes: mobile-only action bar and non-interactive download placeholders. */
.mobile-action-bar {
  display: none !important;
}

@media (max-width: 820px) {
  .mobile-action-bar {
    display: flex !important;
  }
}

.download-disabled {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 64px;
  padding: 12px 14px;
  border: 1px dashed var(--line);
  border-radius: 10px;
  color: var(--muted);
  background: rgba(255, 255, 255, .45);
}

.download-disabled > span {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 3px;
}

.download-disabled strong {
  color: var(--ink);
}

.product-not-found {
  min-height: 55vh;
  padding-block: 80px;
  text-align: center;
}
@media (max-width: 820px) {
  body { padding-bottom: 72px !important; }
}

@media (max-width: 820px) {
  .hero { overflow: hidden !important; }
}
