:root {
  --orange: #faa74a;
  --orange-rgb: 250, 167, 74;
  --orange-deep: #d88324;
  --orange-soft: #fff5e9;
  --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;
  --fs-body: 13px;
  --fs-small: 11px;
  --fs-micro: 10px;
  --fs-nav: 13px;
  --fs-button: 13px;
  --fs-card-title: 17px;
  --fs-medium-title: 20px;
  --fs-section-title: 24px;
  --fs-page-title: 34px;
  --fs-hero-title: 42px;
  
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
}

*,
*::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(var(--orange-rgb), .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(var(--orange-rgb), .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);
}

.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;
}

.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 {
  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, #8d4715 0%, var(--orange-deep) 45%, var(--orange) 78%, #ffd7a7 100%);
  box-shadow: 0 30px 80px rgba(var(--orange-rgb), .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(var(--orange-rgb), .22);
  border-radius: 50%;
}

.hero-ceiling span {
  position: absolute;
  width: 920px;
  height: 260px;
  left: 50%;
  bottom: -162px;
  transform: translateX(-50%);
  border: 1px solid rgba(var(--orange-rgb), .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(var(--orange-rgb), .18) 61%, transparent 72%);
  box-shadow: 0 0 45px rgba(var(--orange-rgb), .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(var(--orange-rgb), .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(var(--orange-rgb), .18);
}

.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;
}

.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;
}

.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(var(--orange-rgb), .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: opacity .2s ease, transform .24s ease;
}

.product-image-stage {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
  height: 100%;
}

.product-media .product-slide-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0;
  transform: scale(1);
  transition: opacity .48s ease, transform .24s ease;
  pointer-events: none;
}

.product-media .product-slide-image.is-active {
  opacity: 1;
}

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

.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-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-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;
}

.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;
}

.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 {
  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-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(var(--orange-rgb), .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(var(--orange-rgb), .42);
  border-radius: 50%;
  box-shadow: 0 0 30px rgba(var(--orange-rgb), .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;
}

.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(var(--orange-rgb), .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;
}

.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);
}

@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;
    scroll-snap-stop: always;
  }

  .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;
  }
}

.product-mobile-heading {
  display: none;
}

.gallery-main > .product-gallery-image {
  position: absolute;
  inset: 7% 8%;
  z-index: 2;
  width: 84%;
  height: 86%;
  max-width: none;
  max-height: none;
  object-fit: contain;
  opacity: 0;
  transform: scale(.992);
  transition: opacity .42s ease, transform .42s ease;
  pointer-events: none;
}

.gallery-main > .product-gallery-image.is-active {
  opacity: 1;
  transform: scale(1);
}

.gallery-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(63, 62, 63, .12);
  border-radius: 50%;
  display: none;
  place-items: center;
  color: var(--ink);
  background: rgba(255,255,255,.92);
  box-shadow: 0 5px 18px rgba(39,25,15,.12);
  transform: translateY(-50%);
  backdrop-filter: blur(6px);
}
.gallery-arrow .icon { width: 18px; height: 18px; }
.gallery-arrow-previous { right: 12px; }
.gallery-arrow-previous .icon { transform: rotate(180deg); }
.gallery-arrow-next { left: 12px; }
.gallery-counter {
  position: absolute;
  left: 50%;
  bottom: 15px;
  z-index: 4;
  min-width: 54px;
  border-radius: 999px;
  padding: 6px 10px;
  color: #fff;
  background: rgba(31,25,21,.68);
  font-size: 10px;
  font-weight: 800;
  text-align: center;
  direction: ltr;
  display: none;
  transform: translateX(-50%);
}

@media (max-width: 820px) {
  .product-mobile-heading {
    display: block;
    margin: 0 0 14px;
    text-align: right;
  }
  .product-mobile-heading .product-kicker { display: inline-block; margin-bottom: 7px; }
  .product-mobile-heading h1 {
    margin: 0;
    font: 800 clamp(30px, 10vw, 44px)/1.08 "Inter", "Cairo", sans-serif;
    direction: ltr;
    text-align: right;
  }
  .product-hero-grid { display: flex !important; flex-direction: column !important; gap: 18px !important; }
  .product-hero-grid > .product-gallery { order: 1; }
  .product-hero-grid > .product-info { order: 2; padding-top: 0 !important; }
  .product-info > .product-kicker,
  .product-info > h1 { display: none !important; }
  .product-page .gallery-main {
    width: 100%;
    min-height: 0 !important;
    aspect-ratio: 1 / 1;
    touch-action: pan-y;
  }
  .product-page .gallery-main > .product-gallery-image {
    inset: 7%;
    width: 86%;
    height: 86%;
    max-height: none;
  }
  .product-page .thumbnail-list {
    direction: rtl;
    scroll-snap-type: x proximity;
    overscroll-behavior-inline: contain;
  }
  .product-page .thumbnail-list[hidden] { display: none !important; }
  .product-page .thumbnail { scroll-snap-align: start; }
  .product-page .has-single-image .thumbnail[data-gallery-image] { display: none; }
  .gallery-arrow { display: grid; }
  .gallery-counter { display: block; }
}

@media (max-width: 390px) {
  .gallery-arrow { width: 38px; height: 38px; }
  .gallery-arrow-previous { right: 9px; }
  .gallery-arrow-next { left: 9px; }
}

.reviews-carousel-shell {
  position: relative;
  min-width: 0;
}
.reviews-carousel-shell > #reviews-grid {
  min-width: 0;
}
.reviews-carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  direction: rtl;
}
.reviews-carousel-button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line, #eadfd8);
  border-radius: 50%;
  color: var(--text, #211d1a);
  background: #fff;
  box-shadow: 0 6px 18px rgba(39, 25, 15, .08);
  font: 800 20px/1 Cairo, sans-serif;
  cursor: pointer;
  transition: color .18s ease, border-color .18s ease, background .18s ease, opacity .18s ease;
}
.reviews-carousel-button:hover:not(:disabled),
.reviews-carousel-button:focus-visible {
  border-color: var(--primary, #faa74a);
  color: #201813;
  background: var(--primary, #faa74a);
  outline: none;
}
.reviews-carousel-button:disabled {
  opacity: .32;
  cursor: not-allowed;
}
.reviews-carousel-status {
  min-width: 48px;
  color: var(--muted, #81756e);
  font-size: 11px;
  font-weight: 800;
  text-align: center;
  direction: ltr;
}

@media (min-width: 821px) {
  .reviews-carousel-controls {
    display: none;
  }
}

.product-page .gallery-main > .product-gallery-image {
  position: absolute !important;
  inset: 7% 8% !important;
  width: 84% !important;
  height: 86% !important;
  max-width: none !important;
  max-height: none !important;
  opacity: 0;
  transform: scale(.992);
}
.product-page .gallery-main > .product-gallery-image.is-active {
  opacity: 1;
  transform: scale(1);
}

@media (max-width: 820px) {
  .product-mobile-heading { display: block !important; }
  .product-hero-grid { display: flex !important; flex-direction: column !important; gap: 18px !important; }
  .product-hero-grid > .product-gallery { order: 1 !important; }
  .product-hero-grid > .product-info { order: 2 !important; }
  .product-info > .product-kicker,
  .product-info > h1 { display: none !important; }
  .product-page .gallery-main { min-height: 0 !important; aspect-ratio: 1 / 1; }
  .product-page .gallery-main > .product-gallery-image {
    inset: 7% !important;
    width: 86% !important;
    height: 86% !important;
    max-height: none !important;
  }
}

@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;
  }
}

body[data-page="home"] main > .section.section-tight:last-child { padding-bottom: 0 !important; }
.site-footer { margin-top: 48px !important; }
.footer-grid { grid-template-columns: 1.45fr .95fr .9fr .9fr 1.15fr !important; gap: clamp(24px, 3vw, 54px) !important; }
.footer-grid > div { min-width: 0; }
.footer-grid a, .footer-grid button, .footer-grid span { line-height: 1.65; }
.footer-contact-column > span { max-width: 230px; }
html[dir="ltr"] .footer-grid,
html[dir="ltr"] .footer-grid > div,
html[dir="ltr"] .footer-about,
html[dir="ltr"] .footer-about p,
html[dir="ltr"] .footer-grid a,
html[dir="ltr"] .footer-grid button,
html[dir="ltr"] .footer-grid span,
html[dir="ltr"] .footer-bottom { direction: ltr !important; text-align: left !important; }
html[dir="ltr"] .footer-grid > div:not(.footer-about) { align-items: flex-start !important; }
html[dir="ltr"] .footer-contact-mini a { justify-content: flex-start !important; }
html[dir="ltr"] .footer-bottom { justify-content: space-between !important; }
html[dir="ltr"] .product-info,
html[dir="ltr"] .product-info h1,
html[dir="ltr"] .product-info h2,
html[dir="ltr"] .product-lead,
html[dir="ltr"] .product-rating-line,
html[dir="ltr"] .product-purchase-panel,
html[dir="ltr"] .engineer-action,
html[dir="ltr"] .product-section .section-head { direction: ltr !important; text-align: left !important; }
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1.35fr repeat(2, 1fr) !important; }
}
@media (max-width: 820px) {
  .site-footer { margin-top: 34px !important; padding-top: 38px !important; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 28px 20px !important; }
  .footer-about, .footer-contact-column { grid-column: 1 / -1; }
  .footer-bottom { justify-content: center !important; text-align: center !important; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .footer-about, .footer-contact-column { grid-column: auto; }
}

html[dir="ltr"] .product-info,
html[dir="ltr"] .product-info h1,
html[dir="ltr"] .product-info h2,
html[dir="ltr"] .product-lead,
html[dir="ltr"] .product-rating-line,
html[dir="ltr"] .product-purchase-panel,
html[dir="ltr"] .engineer-action,
html[dir="ltr"] .product-section .section-head {
  direction: ltr !important;
  text-align: left !important;
}

body[data-page="home"] main > .section.section-tight:last-child { padding-bottom: 0 !important; }
.site-footer { margin-top: 48px; }
.footer-grid { grid-template-columns: 1.45fr .95fr .9fr .9fr 1.15fr; gap: clamp(24px, 3vw, 54px); }
.footer-grid > div { min-width: 0; }
.footer-grid a,
.footer-grid button,
.footer-grid span { line-height: 1.65; }
.footer-contact-column > span { max-width: 230px; }

html[dir="ltr"] .footer-grid,
html[dir="ltr"] .footer-grid > div,
html[dir="ltr"] .footer-about,
html[dir="ltr"] .footer-about p,
html[dir="ltr"] .footer-grid a,
html[dir="ltr"] .footer-grid button,
html[dir="ltr"] .footer-grid span,
html[dir="ltr"] .footer-bottom {
  direction: ltr !important;
  text-align: left !important;
}
html[dir="ltr"] .footer-grid > div:not(.footer-about) { align-items: flex-start !important; }
html[dir="ltr"] .footer-contact-mini a { justify-content: flex-start !important; }
html[dir="ltr"] .footer-bottom { justify-content: space-between !important; }

@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1.35fr repeat(2, 1fr); }
  .footer-grid > div:nth-child(4),
  .footer-grid > div:nth-child(5) { margin-top: 8px; }
}

@media (max-width: 820px) {
  .site-footer { margin-top: 34px; padding-top: 38px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 20px; }
  .footer-about { grid-column: 1 / -1; }
  .footer-contact-column { grid-column: 1 / -1; }
  html[dir="ltr"] .footer-bottom,
  html[dir="rtl"] .footer-bottom { justify-content: center !important; text-align: center !important; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-about,
  .footer-contact-column { grid-column: auto; }
  .footer-grid > div:nth-child(4),
  .footer-grid > div:nth-child(5) { margin-top: 0; }
}

.language-toggle {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 10px;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: var(--white);
  font-family: Inter, Cairo, sans-serif;
  font-size: 11px;
  font-weight: 800;
}
.drawer-head-actions { display: flex; align-items: center; gap: 7px; }

html[dir="ltr"] body { direction: ltr; font-family: Inter, Cairo, system-ui, sans-serif; text-align: left; }
html[dir="ltr"] .mobile-drawer { right: auto !important; left: 0 !important; transform: translateX(-105%) !important; box-shadow: 20px 0 70px rgba(23, 19, 16, .2); }
html[dir="ltr"] .mobile-drawer.open { transform: translateX(0) !important; }
@media (min-width: 821px) {
  html[dir="ltr"] .catalog-filter-sheet { right: auto !important; left: 0 !important; transform: translateX(-105%); }
  html[dir="ltr"] .catalog-filter-sheet.open { transform: translateX(0); }
}
html[dir="ltr"] .consultation-card { right: auto; left: 18px; }
html[dir="ltr"] .gallery-arrow-previous, html[dir="ltr"] .image-modal-previous { right: auto; left: 12px; transform: scaleX(-1); }
html[dir="ltr"] .gallery-arrow-next, html[dir="ltr"] .image-modal-next { left: auto; right: 12px; transform: scaleX(-1); }
html[dir="ltr"] .icon-arrow { transform: scaleX(-1); }
html[dir="ltr"] input, html[dir="ltr"] select, html[dir="ltr"] textarea { text-align: left; }
html[dir="ltr"] [dir="ltr"], html[dir="ltr"] input[type="tel"] { direction: ltr; }
html[dir="ltr"] .contact-methods small { text-align: left; }
html[dir="ltr"] .breadcrumbs, html[dir="ltr"] .product-category, html[dir="ltr"] .review-card, html[dir="ltr"] .video-card { direction: ltr !important; }
@media (max-width: 820px) {
  html[dir="ltr"] .menu-button { order: 0 !important; right: auto !important; left: 12px !important; }
  html[dir="ltr"] .brand { order: 1 !important; }
  html[dir="ltr"] .header-actions { order: 2 !important; }
}

@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;
  }
}

.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;
  }
}

.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;
  }
}

.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%;
  }
}

.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-page {
  background: #fff;
}

.catalog-intro {
  padding: 26px 0 24px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 78% 3%, rgba(var(--orange-rgb), .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(var(--orange-rgb), .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-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(var(--orange-rgb), .28);
  border-radius: 50%;
  box-shadow: 0 0 28px rgba(var(--orange-rgb), .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-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);
}

#contact-map-section[hidden],
#videos[hidden] { display: none !important; }

.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(var(--orange-rgb), .13) 71%, transparent 72%);
  box-shadow: 0 0 70px rgba(var(--orange-rgb), .23);
}

.about-ring {
  width: 620px;
  height: 170px;
  position: absolute;
  border: 1px solid rgba(var(--orange-rgb), .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, var(--orange));
  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(var(--orange-rgb), .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(var(--orange-rgb), .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;
  }
}

.catalog-filter-sheet:not(.open) {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
}

.catalog-filter-sheet.open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

: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%;
  }
}

@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;
  }
}

.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;
  }
}

.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;
}

.mobile-drawer {
  width: min(390px, 92vw);
  padding: 22px;
  border-inline-start: 1px solid rgba(var(--orange-rgb), .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 {
  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-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%;
}

.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(var(--orange-rgb), .22);
  border-radius: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0 22px rgba(var(--orange-rgb), .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;
}

@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%;
  }
}

@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;
  }
}

.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-action-bar {
  display: none !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;
}

body {
  font-size: var(--fs-body);
}

p {
  font-size: var(--fs-body) !important;
  line-height: 1.82;
}

small {
  font-size: var(--fs-small) !important;
  line-height: 1.65;
}

h1 {
  font-size: var(--fs-page-title) !important;
  line-height: 1.22;
}

h2 {
  font-size: var(--fs-section-title) !important;
  line-height: 1.32;
}

h3 {
  font-size: var(--fs-card-title) !important;
  line-height: 1.4;
}

h4 {
  font-size: var(--fs-medium-title) !important;
  line-height: 1.4;
}

.hero-copy h1 {
  font-size: var(--fs-hero-title) !important;
  line-height: 1.15;
}

.page-hero-grid h1,
.about-hero-copy h1,
.simple-page-hero h1,
.catalog-intro-copy h1,
.product-info h1 {
  font-size: var(--fs-page-title) !important;
}

.section-head h2,
.content-heading h2,
.narrow-copy h2,
.final-cta-copy h2,
.inner-cta h2,
.service-request h2,
.quote-aside h2,
.quote-step h3,
.search-modal-content h2,
.compare-content h2 {
  font-size: var(--fs-section-title) !important;
}

.support-entry-grid h2,
.mission-grid h2,
.text-panel h2,
.demo-banner h2,
.contact-info-panel h2,
.contact-form h2,
.map-placeholder h2,
.detail-card-head h2,
.product-info h2,
.filter-panel-head h2 {
  font-size: var(--fs-medium-title) !important;
}

.product-card h3,
.product-card-body h3,
.media-item-head h3,
.consultation-card h3,
.video-preview-message h3,
.quote-success h3,
.feature-list h3,
.footer-grid h3 {
  font-size: var(--fs-card-title) !important;
}

.desktop-nav a,
.mobile-drawer nav a,
.drawer-intro strong {
  font-size: var(--fs-nav) !important;
}

.btn,
.text-link,
.header-quote,
.hero-cta,
.category-chip,
.subcategory-chip,
.tab-button,
.play-demo,
.support-entry-grid a,
.support-entry-grid button,
.mobile-action-bar a,
.mobile-action-bar button {
  font-size: var(--fs-button) !important;
}

.eyebrow,
.breadcrumbs,
.product-category,
.product-badge,
.product-rating-line,
.result-summary span,
.sort-label,
.filter-group label,
.quick-spec-grid span,
.product-highlight-grid span,
.download-list small,
.application-grid strong,
.service-strip span,
.product-review-score small,
.catalog-category-card span,
.catalog-category-card small,
.catalog-subcategory-row > span,
.active-filter-bar,
.product-purchase-panel span,
.product-purchase-panel small,
.compatible-product-list small,
.footer-bottom,
.footer-contact-mini a,
.footer-grid a,
.footer-grid button,
.footer-grid span,
.mobile-drawer nav a small,
.drawer-contact small {
  font-size: var(--fs-small) !important;
}

.trust-item small,
.review-card-head small,
.score-card small,
.quick-spec-grid article span,
.product-specs span,
.lead-status,
.compare-bar > div > span {
  font-size: var(--fs-micro) !important;
}

.product-card-body > p,
.review-card p,
.why-card p,
.final-cta-copy > p:not(.eyebrow),
.page-hero-grid p,
.catalog-intro-copy > p:last-child,
.catalog-section-heading > p:last-child,
.narrow-copy > p:last-child,
.content-heading > p:last-child,
.about-hero-copy > p:last-of-type,
.simple-page-hero > .wrap > p:last-child,
.support-entry-grid p,
.faq-list p,
.contact-form input,
.contact-form select,
.contact-form textarea,
.quote-form input,
.quote-form select,
.quote-form textarea {
  font-size: var(--fs-body) !important;
}

.product-card h3 a,
.video-caption strong,
.why-card strong,
.review-card-head strong,
.catalog-benefit-grid strong,
.value-cards strong,
.timeline-grid strong,
.principles-grid strong,
.team-grid strong,
.contact-methods strong,
.working-hours strong,
.download-list strong,
.engineer-action strong,
.product-highlight-grid strong,
.service-strip strong {
  font-size: var(--fs-card-title) !important;
}

input,
select,
textarea {
  font-size: var(--fs-body);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
}

.brand-logo {
  width: 178px;
  height: 52px;
  object-fit: contain;
}

.site-footer .brand-logo {
  width: 190px;
  height: 64px;
}

body[data-page="home"] .hero {
  height: 590px !important;
  min-height: 590px !important;
  padding: 22px 0 0 !important;
  overflow: hidden !important;
}

body[data-page="home"] .hero-copy {
  padding-top: 38px !important;
  padding-bottom: 0 !important;
  margin-top: 0 !important;
}

body[data-page="home"] .hero-copy h1 {
  display: flex !important;
  align-items: baseline !important;
  justify-content: center !important;
  flex-wrap: nowrap !important;
  gap: .16em !important;
  width: max-content !important;
  max-width: calc(100% - 24px) !important;
  margin: 6px auto 8px !important;
  font-size: clamp(34px, 3.15vw, var(--fs-hero-title)) !important;
  line-height: 1.12 !important;
  letter-spacing: -1.2px !important;
  white-space: nowrap !important;
}

body[data-page="home"] .hero-copy h1 span,
body[data-page="home"] .hero-copy h1 em {
  display: inline !important;
}

body[data-page="home"] .hero-subtitle {
  max-width: 560px !important;
  margin: 0 auto 12px !important;
  font-size: var(--fs-body) !important;
  line-height: 1.7 !important;
}

body[data-page="home"] .hero-cta {
  position: relative !important;
  z-index: 6 !important;
  margin: 0 auto !important;
  min-height: 42px !important;
}

body[data-page="home"] .hero-stage {
  width: min(1060px, 90vw) !important;
  height: 300px !important;
  bottom: 0 !important;
}

.trust-shell {
  margin-top: 22px !important;
}

.trust-strip {
  min-height: 106px;
  padding: 15px 20px;
}

.trust-item {
  min-height: 74px;
  gap: 12px;
}

.trust-item strong {
  font-size: 13px;
  line-height: 1.35;
}

.trust-item small {
  margin-top: 3px;
  line-height: 1.55;
}

@media (max-width: 1100px) {
  body[data-page="home"] .hero {
    height: 565px !important;
    min-height: 565px !important;
  }

  body[data-page="home"] .hero-copy {
    padding-top: 34px !important;
  }

  body[data-page="home"] .hero-copy h1 {
    font-size: clamp(31px, 3.5vw, 39px) !important;
  }

  body[data-page="home"] .hero-stage {
    width: min(940px, 94vw) !important;
    height: 278px !important;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 78px;
    --wrap: calc(100% - 28px);
  }

  body {
    padding-bottom: 72px !important;
  }

  .site-header {
    height: var(--header-height) !important;
    padding: 0 !important;
    background: rgba(255, 255, 255, .985) !important;
    border-bottom: 1px solid rgba(63, 62, 63, .08) !important;
    box-shadow: 0 6px 22px rgba(33, 27, 24, .035) !important;
  }

  .header-inner {
    display: grid !important;
    grid-template-columns: 46px minmax(0, 1fr) 46px !important;
    align-items: center !important;
    gap: 10px !important;
    width: var(--wrap) !important;
    height: 100% !important;
    margin-inline: auto !important;
  }

  .menu-button {
    display: inline-grid !important;
    grid-column: 3 !important;
    grid-row: 1 !important;
    width: 46px !important;
    height: 46px !important;
    margin: 0 !important;
    border: 1px solid rgba(63, 62, 63, .13) !important;
    border-radius: 13px !important;
    color: #3f3e3f !important;
    background: #fff !important;
    box-shadow: none !important;
  }

  .menu-button .icon,
  .menu-button svg {
    width: 21px !important;
    height: 21px !important;
  }

  .header-inner > .brand {
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: center !important;
    margin: 0 !important;
  }

  .header-inner > .brand .brand-logo {
    width: min(162px, 45vw) !important;
    height: 52px !important;
    object-fit: contain !important;
  }

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

  .header-actions {
    grid-column: 1 !important;
    grid-row: 1 !important;
    width: 46px !important;
    height: 46px !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  
  .mobile-drawer {
    width: min(350px, 86vw) !important;
    padding: 14px 14px calc(16px + env(safe-area-inset-bottom)) !important;
    overflow-y: auto !important;
    background: #fff !important;
    box-shadow: -18px 0 55px rgba(31, 24, 20, .16) !important;
  }

  .drawer-head {
    min-height: 70px !important;
    padding: 0 2px 12px !important;
    border-bottom: 1px solid rgba(63, 62, 63, .09) !important;
  }

  .drawer-head .brand-logo {
    width: min(158px, 52vw) !important;
    height: 48px !important;
    object-fit: contain !important;
  }

  .drawer-head #drawer-close {
    width: 42px !important;
    height: 42px !important;
    border: 1px solid rgba(63, 62, 63, .12) !important;
    border-radius: 12px !important;
    color: #3f3e3f !important;
    background: #fff !important;
    box-shadow: none !important;
  }

  .mobile-drawer nav {
    display: grid !important;
    gap: 4px !important;
    margin-top: 14px !important;
    padding: 6px !important;
    border: 1px solid rgba(63, 62, 63, .07) !important;
    border-radius: 16px !important;
    background: #faf9f7 !important;
  }

  .mobile-drawer nav a {
    min-height: 46px !important;
    padding: 0 13px !important;
    border: 0 !important;
    border-radius: 11px !important;
    color: #2f2d2e !important;
    background: transparent !important;
    font-size: 13px !important;
    font-weight: 800 !important;
  }

  .mobile-drawer nav a::before,
  .mobile-drawer nav a::after {
    display: none !important;
    content: none !important;
  }

  .mobile-drawer nav a.active {
    color: #9b5b18 !important;
    background: #fff4e6 !important;
    box-shadow: inset 0 0 0 1px rgba(250, 167, 74, .28) !important;
  }

  .drawer-contact {
    margin-top: 14px !important;
    padding: 0 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 7px !important;
  }

  .drawer-contact a {
    min-height: 50px !important;
    padding: 8px 12px !important;
    border: 1px solid rgba(63, 62, 63, .08) !important;
    border-radius: 13px !important;
    justify-content: flex-start !important;
    gap: 10px !important;
    background: #fff !important;
  }

  .drawer-contact a .icon {
    width: 20px !important;
    height: 20px !important;
    color: #faa74a !important;
  }

  .drawer-contact a > span {
    min-width: 0 !important;
    display: grid !important;
    gap: 1px !important;
  }

  .drawer-contact b {
    font-size: 11px !important;
  }

  .drawer-contact small {
    font-size: 9px !important;
    color: var(--muted) !important;
  }

  .mobile-action-bar {
    display: flex !important;
  }

  .hero-copy h1 {
    font-size: clamp(27px, 7vw, var(--fs-hero-title)) !important;
  }

  .page-hero-grid h1,
  .about-hero-copy h1,
  .simple-page-hero h1,
  .catalog-intro-copy h1,
  .product-info h1 {
    font-size: clamp(27px, 7vw, var(--fs-page-title)) !important;
  }

  .section-head h2,
  .content-heading h2,
  .narrow-copy h2,
  .final-cta-copy h2,
  .inner-cta h2,
  .service-request h2 {
    font-size: clamp(21px, 5.8vw, var(--fs-section-title)) !important;
  }

  
  body[data-page="home"] .hero {
    height: auto !important;
    min-height: 0 !important;
    padding: 0 0 28px !important;
    border-radius: 0 0 26px 26px !important;
    overflow: hidden !important;
  }

  body[data-page="home"] .hero-copy {
    padding-top: 112px !important;
    padding-bottom: 0 !important;
  }

  body[data-page="home"] .hero-copy h1 {
    width: max-content !important;
    max-width: calc(100vw - 24px) !important;
    margin: 0 auto 14px !important;
    font-size: clamp(24px, 6.55vw, 30px) !important;
    line-height: 1.16 !important;
    letter-spacing: -.45px !important;
    white-space: nowrap !important;
  }

  body[data-page="home"] .hero-subtitle {
    max-width: min(91vw, 390px) !important;
    margin: 0 auto !important;
    font-size: 11.5px !important;
    line-height: 1.75 !important;
  }

  body[data-page="home"] .hero-cta {
    margin-top: 34px !important;
    min-height: 48px !important;
    padding-inline: 24px !important;
  }

  body[data-page="home"] .hero-stage {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: calc(100% - 8px) !important;
    height: auto !important;
    min-height: 132px !important;
    margin: 32px auto 0 !important;
    transform: none !important;
  }

  body[data-page="home"] .hero-stage::before {
    width: 90% !important;
    height: 72px !important;
    bottom: -2px !important;
  }

  body[data-page="home"] .stage-orbit-outer {
    width: 100% !important;
    height: 76px !important;
    bottom: -4px !important;
  }

  body[data-page="home"] .stage-orbit-inner {
    width: 76% !important;
    height: 48px !important;
    bottom: 8px !important;
  }

  body[data-page="home"] #hero-image {
    position: relative !important;
    inset: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    object-fit: contain !important;
    object-position: center bottom !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }

  
  .trust-shell {
    margin-top: 20px !important;
  }

  .trust-strip {
    width: calc(100% - 20px) !important;
    min-height: 0 !important;
    display: flex !important;
    gap: 6px !important;
    padding: 8px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
    overscroll-behavior-inline: contain !important;
  }

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

  .trust-item {
    flex: 0 0 118px !important;
    min-width: 118px !important;
    min-height: 78px !important;
    padding: 8px 7px !important;
    border: 0 !important;
    border-radius: 11px !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 5px !important;
    text-align: center !important;
    background: #fffaf6 !important;
    scroll-snap-align: center !important;
  }

  .trust-icon {
    width: 27px !important;
    height: 27px !important;
  }

  .trust-icon .icon,
  .trust-icon svg {
    width: 15px !important;
    height: 15px !important;
  }

  .trust-item strong {
    font-size: 10.3px !important;
    line-height: 1.3 !important;
  }

  .trust-item small {
    display: -webkit-box !important;
    overflow: hidden !important;
    -webkit-box-orient: vertical !important;
    -webkit-line-clamp: 2 !important;
    font-size: 8.3px !important;
    line-height: 1.35 !important;
  }

  .footer-bottom {
    justify-content: center !important;
    text-align: center !important;
  }

  .site-footer .brand-logo {
    width: 172px !important;
  }
}

@media (max-width: 430px) {
  :root {
    --wrap: calc(100% - 24px);
  }

  .header-inner > .brand .brand-logo {
    width: min(154px, 47vw) !important;
  }

  body[data-page="home"] .hero-copy {
    padding-top: 108px !important;
  }

  body[data-page="home"] .hero-copy h1 {
    max-width: calc(100vw - 18px) !important;
    font-size: clamp(22px, 6.45vw, 27px) !important;
  }

  body[data-page="home"] .hero-subtitle {
    font-size: 11px !important;
  }

  body[data-page="home"] .hero-cta {
    margin-top: 32px !important;
  }

  body[data-page="home"] .hero-stage {
    width: calc(100% - 2px) !important;
    min-height: 118px !important;
    margin-top: 30px !important;
  }

  .trust-item {
    flex-basis: 112px !important;
    min-width: 112px !important;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 88px;
    --wrap: calc(100% - 28px);
  }

  body { padding-bottom: 72px !important; }

  
  .site-header {
    height: var(--header-height) !important;
    padding: 0 !important;
    background: rgba(255,255,255,.985) !important;
    border-bottom: 1px solid rgba(63,62,63,.08) !important;
    box-shadow: 0 5px 18px rgba(33,27,24,.035) !important;
  }
  .header-inner {
    position: relative !important;
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 14px !important;
  }
  .header-inner > .brand {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    right: auto !important;
    margin: 0 !important;
    transform: translate(-50%, -50%) !important;
    z-index: 2 !important;
  }
  .header-inner > .brand .brand-logo {
    display: block !important;
    width: min(172px, 47vw) !important;
    height: 58px !important;
    object-fit: contain !important;
  }
  .menu-button {
    position: absolute !important;
    top: 50% !important;
    right: 14px !important;
    left: auto !important;
    display: inline-grid !important;
    width: 50px !important;
    height: 50px !important;
    margin: 0 !important;
    transform: translateY(-50%) !important;
    border: 1px solid rgba(63,62,63,.13) !important;
    border-radius: 14px !important;
    color: #3f3e3f !important;
    background: #fff !important;
    box-shadow: none !important;
    z-index: 3 !important;
  }
  .menu-button .icon,
  .menu-button svg { width: 22px !important; height: 22px !important; }
  .desktop-nav,.header-quote,.search-button { display: none !important; }
  .header-actions {
    position: absolute !important;
    left: 14px !important;
    top: 50% !important;
    width: 50px !important;
    height: 50px !important;
    transform: translateY(-50%) !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }

  
  .mobile-drawer {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: min(360px, 88vw) !important;
    height: 100dvh !important;
    max-height: none !important;
    padding: max(18px, env(safe-area-inset-top)) 18px max(18px, env(safe-area-inset-bottom)) !important;
    overflow-y: auto !important;
    display: flex !important;
    flex-direction: column !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: -20px 0 62px rgba(31,24,20,.18) !important;
    transform: translateX(105%) !important;
    transition: transform .25s cubic-bezier(.2,.8,.2,1) !important;
  }
  .mobile-drawer.open { transform: translateX(0) !important; }
  .drawer-head {
    min-height: 72px !important;
    padding: 0 0 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 14px !important;
    border-bottom: 1px solid rgba(63,62,63,.1) !important;
  }
  .drawer-head .brand { margin: 0 !important; }
  .drawer-head .brand-logo {
    width: min(168px, 49vw) !important;
    height: 52px !important;
    object-fit: contain !important;
  }
  .drawer-head #drawer-close {
    width: 44px !important;
    height: 44px !important;
    flex: 0 0 44px !important;
    border: 1px solid rgba(63,62,63,.12) !important;
    border-radius: 13px !important;
    color: #3f3e3f !important;
    background: #fff !important;
    box-shadow: none !important;
  }
  .mobile-drawer nav {
    width: 100% !important;
    margin: 12px 0 0 !important;
    padding: 0 !important;
    display: grid !important;
    gap: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
  }
  .mobile-drawer nav a {
    width: 100% !important;
    min-height: 58px !important;
    padding: 0 6px !important;
    border: 0 !important;
    border-bottom: 1px solid rgba(63,62,63,.09) !important;
    border-radius: 0 !important;
    display: flex !important;
    align-items: center !important;
    color: #252324 !important;
    background: transparent !important;
    box-shadow: none !important;
    font-size: 15px !important;
    font-weight: 800 !important;
  }
  .mobile-drawer nav a:last-child { border-bottom: 0 !important; }
  .mobile-drawer nav a::before,
  .mobile-drawer nav a::after { content: none !important; display: none !important; }
  .mobile-drawer nav a.active { color: #d8872e !important; }
  .drawer-contact {
    width: 100% !important;
    margin: auto 0 0 !important;
    padding: 16px 0 0 !important;
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 8px !important;
    border-top: 1px solid rgba(63,62,63,.09) !important;
  }
  .drawer-contact a {
    width: 100% !important;
    min-height: 56px !important;
    padding: 8px 12px !important;
    border: 1px solid rgba(250,167,74,.28) !important;
    border-radius: 14px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 11px !important;
    background: #fffaf5 !important;
  }
  .drawer-contact a .icon { width: 21px !important; height: 21px !important; color: #faa74a !important; }
  .drawer-contact a > span { display: grid !important; gap: 2px !important; min-width: 0 !important; }
  .drawer-contact b { font-size: 12px !important; }
  .drawer-contact small { font-size: 10px !important; color: #756a63 !important; }

  
  body[data-page="home"] .hero {
    height: auto !important;
    min-height: 0 !important;
    padding: 0 0 30px !important;
    overflow: hidden !important;
    border-radius: 0 0 26px 26px !important;
  }
  body[data-page="home"] .hero-copy {
    padding-top: 122px !important;
    padding-bottom: 0 !important;
  }
  body[data-page="home"] .hero-copy h1 {
    width: max-content !important;
    max-width: calc(100vw - 22px) !important;
    margin: 0 auto 16px !important;
    font-size: clamp(24px, 6.45vw, 30px) !important;
    line-height: 1.16 !important;
    letter-spacing: -.45px !important;
    white-space: nowrap !important;
  }
  body[data-page="home"] .hero-subtitle {
    max-width: min(91vw, 390px) !important;
    margin: 0 auto !important;
    font-size: 11.5px !important;
    line-height: 1.8 !important;
  }
  body[data-page="home"] .hero-cta {
    display: inline-flex !important;
    margin-top: 60px !important;
    min-height: 50px !important;
    padding-inline: 26px !important;
  }
  body[data-page="home"] .hero-stage {
    position: relative !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;
    width: calc(100% - 4px) !important;
    height: auto !important;
    min-height: 138px !important;
    margin: 34px auto 0 !important;
    transform: none !important;
  }
  body[data-page="home"] #hero-image {
    position: relative !important;
    inset: auto !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 0 auto !important;
    object-fit: contain !important;
    object-position: center bottom !important;
    -webkit-mask-image: none !important;
    mask-image: none !important;
  }

  
  .trust-shell { margin-top: 20px !important; }
  .trust-strip {
    direction: ltr !important;
    width: calc(100% - 18px) !important;
    min-height: 0 !important;
    margin-inline: auto !important;
    padding: 8px 10px !important;
    display: flex !important;
    gap: 7px !important;
    overflow-x: auto !important;
    overflow-y: hidden !important;
    scroll-behavior: smooth !important;
    scroll-snap-type: none !important;
    scrollbar-width: none !important;
    overscroll-behavior-inline: contain !important;
    border: 1px solid rgba(250,167,74,.16) !important;
    border-radius: 15px !important;
    background: rgba(255,255,255,.72) !important;
    box-shadow: none !important;
  }
  .trust-strip::-webkit-scrollbar { display: none !important; }
  .trust-strip > .trust-item {
    direction: rtl !important;
    box-sizing: border-box !important;
    flex: 0 0 108px !important;
    width: 108px !important;
    min-width: 108px !important;
    max-width: 108px !important;
    min-height: 88px !important;
    margin: 0 !important;
    padding: 8px 6px !important;
    border: 0 !important;
    border-radius: 12px !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 4px !important;
    text-align: center !important;
    background: #fffaf5 !important;
  }
  .trust-icon { width: 26px !important; height: 26px !important; flex: 0 0 26px !important; }
  .trust-icon .icon,.trust-icon svg { width: 14px !important; height: 14px !important; }
  .trust-item strong {
    display: block !important;
    width: 100% !important;
    font-size: 9.8px !important;
    line-height: 1.3 !important;
    white-space: normal !important;
  }
  .trust-item small {
    display: block !important;
    width: 100% !important;
    margin-top: 1px !important;
    font-size: 7.7px !important;
    line-height: 1.35 !important;
    color: #756a63 !important;
  }

  .mobile-action-bar { display: flex !important; }
}

@media (max-width: 390px) {
  .header-inner > .brand .brand-logo { width: min(160px, 46vw) !important; }
  .menu-button { right: 12px !important; }
  body[data-page="home"] .hero-cta { margin-top: 56px !important; }
  .trust-strip > .trust-item {
    flex-basis: 104px !important;
    width: 104px !important;
    min-width: 104px !important;
    max-width: 104px !important;
  }
}

@media (max-width: 820px) {
  .mobile-drawer nav a {
    direction: rtl !important;
    justify-content: flex-start !important;
    text-align: right !important;
  }
  .mobile-drawer nav a > span,
  .mobile-drawer nav a > strong,
  .mobile-drawer nav a > small {
    width: 100% !important;
    text-align: right !important;
  }
  .drawer-contact a,
  .drawer-contact a > span {
    direction: rtl !important;
    text-align: right !important;
  }

  .mobile-action-bar {
    position: fixed !important;
    left: 10px !important;
    right: 10px !important;
    bottom: calc(8px + env(safe-area-inset-bottom)) !important;
    width: auto !important;
    height: 58px !important;
    min-height: 58px !important;
    max-height: 58px !important;
    padding: 6px !important;
    box-sizing: border-box !important;
    display: grid !important;
    grid-template-columns: .82fr 1.36fr .82fr !important;
    align-items: stretch !important;
    gap: 6px !important;
    overflow: hidden !important;
    border: 1px solid rgba(63,62,63,.08) !important;
    border-radius: 16px !important;
    background: rgba(255,255,255,.97) !important;
    box-shadow: 0 10px 30px rgba(35,24,18,.12) !important;
    backdrop-filter: blur(14px) !important;
    -webkit-backdrop-filter: blur(14px) !important;
    transform: none !important;
    transition: opacity .18s ease !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    flex-shrink: 0 !important;
    z-index: 900 !important;
  }
  .mobile-action-bar.visible {
    transform: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
  }
  .mobile-action-bar > a,
  .mobile-action-bar > button {
    width: 100% !important;
    min-width: 0 !important;
    height: 46px !important;
    min-height: 46px !important;
    max-height: 46px !important;
    margin: 0 !important;
    padding: 0 7px !important;
    box-sizing: border-box !important;
    flex: none !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 5px !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    line-height: 1 !important;
    border-radius: 11px !important;
    font-size: 11px !important;
    font-weight: 800 !important;
  }
  .mobile-action-bar > a span,
  .mobile-action-bar > button span {
    min-width: 0 !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    line-height: 1.2 !important;
  }
  .mobile-action-bar .icon,
  .mobile-action-bar svg {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px !important;
    flex: 0 0 18px !important;
  }
  body {
    padding-bottom: calc(84px + env(safe-area-inset-bottom)) !important;
  }
}

@media (max-width: 370px) {
  .mobile-action-bar {
    left: 7px !important;
    right: 7px !important;
    gap: 4px !important;
    padding: 5px !important;
  }
  .mobile-action-bar > a,
  .mobile-action-bar > button {
    padding-inline: 5px !important;
    font-size: 10px !important;
  }
}

@media (max-width: 820px) {
  .mobile-drawer {
    padding-inline: 18px !important;
  }
  .mobile-drawer nav {
    margin: 18px 0 !important;
    padding: 0 !important;
    display: grid !important;
    gap: 10px !important;
  }
  .mobile-drawer nav a {
    min-height: 58px !important;
    padding: 14px 16px !important;
    box-sizing: border-box !important;
    border: 1px solid rgba(63,62,63,.085) !important;
    border-radius: 13px !important;
    background: #fff !important;
    line-height: 1.45 !important;
    justify-content: flex-start !important;
    text-align: right !important;
  }
  .mobile-drawer nav a.active {
    color: #3f3e3f !important;
    border-color: rgba(250,167,74,.42) !important;
    background: rgba(250,167,74,.10) !important;
    box-shadow: inset -3px 0 0 #faa74a !important;
  }
  .drawer-contact {
    padding-top: 14px !important;
    gap: 10px !important;
  }
  .drawer-contact a {
    min-height: 60px !important;
    padding: 12px 14px !important;
  }

  
  .product-slider > .product-card,
  .horizontal-slider > .product-card {
    flex: 0 0 min(82vw, 330px) !important;
    width: min(82vw, 330px) !important;
    min-width: min(82vw, 330px) !important;
    max-width: min(82vw, 330px) !important;
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
  }
  .product-card,
  .catalog-page .product-card {
    height: auto !important;
    min-height: 0 !important;
    overflow: hidden !important;
  }
  .product-card-body,
  .catalog-page .product-card-body {
    height: auto !important;
    min-height: 0 !important;
    overflow: visible !important;
    padding: 14px 14px 16px !important;
  }
  .product-card-body > p,
  .catalog-page .product-card-body > p {
    display: block !important;
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    margin: 8px 0 10px !important;
    overflow: visible !important;
    -webkit-line-clamp: unset !important;
    line-clamp: unset !important;
    -webkit-box-orient: initial !important;
    font-size: var(--fs-body) !important;
    line-height: 1.72 !important;
    color: var(--muted) !important;
    white-space: normal !important;
  }
  .product-card h3,
  .catalog-page .product-card h3,
  .product-card h3 a,
  .catalog-page .product-card h3 a {
    font-size: var(--fs-card-title) !important;
    line-height: 1.35 !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
  }
  .product-category,
  .catalog-page .product-category {
    font-size: var(--fs-small) !important;
    line-height: 1.5 !important;
  }
  .product-specs,
  .catalog-page .product-specs {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 6px !important;
    overflow: visible !important;
  }
  .product-specs span,
  .catalog-page .product-specs span {
    min-height: 30px !important;
    padding: 5px 9px !important;
    font-size: var(--fs-micro) !important;
    line-height: 1.35 !important;
  }
  .product-card-foot,
  .catalog-page .product-card-foot {
    min-height: 48px !important;
    overflow: visible !important;
  }

  
  .catalog-page .catalog-grid {
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }
  .catalog-page .product-card {
    width: 100% !important;
    max-width: 100% !important;
  }
  .catalog-page .product-media {
    height: 235px !important;
    padding: 48px 16px 12px !important;
  }
}

@media (max-width: 390px) {
  .mobile-drawer nav { gap: 9px !important; }
  .mobile-drawer nav a {
    min-height: 56px !important;
    padding-block: 13px !important;
  }
  .product-slider > .product-card,
  .horizontal-slider > .product-card {
    flex-basis: 84vw !important;
    width: 84vw !important;
    min-width: 84vw !important;
    max-width: 84vw !important;
  }
}

html.app-booting body {
  overflow: hidden !important;
}
html.app-booting body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: #ffffff;
}
html.app-booting body::after {
  content: "";
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 9999;
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  border: 3px solid rgba(250,167,74,.20);
  border-top-color: #faa74a;
  border-radius: 50%;
  animation: iwBootSpin .72s linear infinite;
}
@keyframes iwBootSpin {
  to { transform: rotate(360deg); }
}

@media (min-width: 821px) {
  body[data-page="home"] .hero-cta {
    margin-top: var(--space-2) !important;
  }
}

.section-head {
  margin-bottom: var(--space-5);
}
.product-grid,
.video-grid,
.why-grid {
  gap: var(--space-4);
}
.product-page .product-gallery {
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 14px;
}
.product-page .thumbnail-list {
  gap: 10px;
}
.product-page .thumbnail {
  height: 88px;
  border-radius: 12px;
  padding: 7px;
}
.product-page .gallery-main {
  min-height: 520px;
}
.product-page .gallery-main > img {
  width: 90%;
  height: 86%;
  max-height: 470px;
}
@media (max-width: 820px) {
  .product-page .product-gallery {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .product-page .gallery-main {
    min-height: 410px;
  }
  .product-page .gallery-main > img {
    width: 94%;
    height: 90%;
    max-height: 380px;
  }
  .product-page .thumbnail-list {
    order: 2;
    display: flex;
    gap: 9px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
  }
  .product-page .thumbnail-list::-webkit-scrollbar { display: none; }
  .product-page .thumbnail {
    flex: 0 0 86px;
    width: 86px;
    height: 82px;
    padding: 6px;
  }
}
@media (max-width: 480px) {
  .product-page .gallery-main { min-height: 360px; }
  .product-page .gallery-main > img { max-height: 330px; }
  .product-page .thumbnail { flex-basis: 78px; width: 78px; height: 76px; }
}
.contact-form-message.is-success { color: var(--success); }
.contact-form-message.is-error { color: #b42318; }
.contact-form button[disabled] { opacity: .65; cursor: wait; }

.catalog-pagination {
  margin: 30px 0 24px;
  gap: 10px;
}
.catalog-pagination button {
  min-width: 44px;
  height: 44px;
  border-radius: 10px;
  font-size: 12px;
  font-weight: 800;
}
.catalog-quick-strip article {
  min-height: 100px;
  padding: 18px 16px;
  gap: 13px;
}
.catalog-quick-strip article > span {
  font-size: 28px;
}
.catalog-quick-strip strong {
  font-size: 12px;
  line-height: 1.45;
}
.catalog-quick-strip small {
  margin-top: 3px;
  font-size: 10px;
  line-height: 1.6;
}
.footer-bottom {
  min-height: 64px;
  margin-top: 42px;
  padding: 20px 12px;
  justify-content: center;
  gap: 14px 24px;
  flex-wrap: wrap;
  text-align: center;
  color: #aaa19c;
  font-size: 11px !important;
  line-height: 1.7;
}
.footer-bottom span {
  font-size: 11px !important;
}
.footer-bottom .footer-credit {
  color: #c7bdb6;
}
.footer-bottom .footer-credit a {
  color: #faa74a;
  font-size: 11px !important;
  font-weight: 800;
  text-decoration: none;
}
.footer-bottom .footer-credit a:hover {
  text-decoration: underline;
}
@media (max-width: 700px) {
  .catalog-pagination {
    margin: 24px 0 20px;
    gap: 8px;
  }
  .catalog-pagination button {
    min-width: 40px;
    height: 40px;
    font-size: 11px;
  }
  .catalog-quick-strip article {
    min-height: 88px;
    padding: 13px 11px;
    gap: 9px;
  }
  .catalog-quick-strip article > span {
    font-size: 23px;
  }
  .catalog-quick-strip strong {
    font-size: 11px;
  }
  .catalog-quick-strip small {
    font-size: 9px;
  }
  .footer-bottom,
  .footer-bottom span,
  .footer-bottom .footer-credit a {
    font-size: 10.5px !important;
  }
}

@media (max-width: 820px) {
  #reviews-grid.reviews-carousel {
    direction: ltr;
    display: flex;
    gap: 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x pan-y;
    cursor: grab;
  }

  #reviews-grid.reviews-carousel::-webkit-scrollbar {
    display: none;
  }

  #reviews-grid.reviews-carousel .review-card {
    direction: rtl;
    flex: 0 0 min(76vw, 280px);
    width: min(76vw, 280px);
    scroll-snap-align: start;
  }
}

@media (max-width: 820px) {
  #video-grid {
    direction:ltr;
    display:flex !important;
    gap:12px;
    width:100%;
    max-width:100%;
    overflow-x:auto !important;
    overflow-y:hidden;
    scroll-snap-type:x mandatory;
    scroll-padding-inline:16px;
    padding:2px 16px 12px;
    box-sizing:border-box;
    scrollbar-width:none;
    -webkit-overflow-scrolling:touch;
    overscroll-behavior-inline:contain;
    touch-action:pan-x pan-y;
  }
  #video-grid::-webkit-scrollbar { display:none; }
  #video-grid .video-card {
    direction:rtl;
    flex:0 0 min(78vw, 310px);
    width:min(78vw, 310px);
    min-width:min(78vw, 310px);
    max-width:none;
    scroll-snap-align:center;
    scroll-snap-stop:always;
  }
  #video-grid::after { content:''; flex:0 0 4px; width:4px; }
}

@media (max-width: 820px) {
  #reviews-grid.reviews-carousel {
    direction: ltr !important;
    padding-inline: 16px !important;
    scroll-padding-inline: 16px !important;
    touch-action: pan-x pan-y !important;
  }
  #reviews-grid.reviews-carousel .review-card {
    direction: rtl !important;
    scroll-snap-align: center !important;
    scroll-snap-stop: always;
  }
  #reviews-grid.reviews-carousel::after {
    content: '';
    flex: 0 0 16px;
    width: 16px;
  }
  #video-grid {
    direction: ltr !important;
    padding-inline: 16px !important;
    scroll-padding-inline: 16px !important;
    touch-action: pan-x pan-y !important;
  }
  #video-grid .video-card { direction: rtl !important; }
  #video-grid::after { flex-basis: 16px !important; width: 16px !important; }

  .reviews-layout {
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) !important;
    overflow: visible !important;
    scroll-snap-type: none !important;
  }
  .reviews-carousel-shell {
    width: 100%;
    min-width: 0;
    overflow: hidden;
  }
  .reviews-carousel-shell > #reviews-grid.reviews-carousel {
    width: 100%;
    min-width: 0;
    overflow-x: auto !important;
  }
  .reviews-layout > .score-card {
    width: 100%;
    min-width: 0;
    min-height: 145px;
    flex: none;
  }
}

@media (max-width: 820px) {
  .header-inner > .brand {
    left: 50% !important;
    right: auto !important;
    transform: translate(-50%, -50%) !important;
  }
  .header-inner > .brand .brand-logo {
    width: min(154px, 42vw) !important;
    max-width: calc(100vw - 142px) !important;
  }

  .mobile-drawer nav {
    flex: 1 1 0 !important;
    min-height: 0 !important;
    align-content: center !important;
    align-self: stretch !important;
    margin: 0 !important;
  }
  .drawer-contact {
    margin: 0 !important;
  }

  #video-grid,
  #reviews-grid.reviews-carousel {
    direction: rtl !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
    scroll-padding-inline: 0 !important;
  }
  #video-grid .video-card,
  #reviews-grid.reviews-carousel .review-card {
    direction: rtl !important;
    scroll-snap-align: start !important;
  }
  #video-grid::after,
  #reviews-grid.reviews-carousel::after {
    content: none !important;
    display: none !important;
  }

  .reviews-carousel-controls {
    margin-top: 10px !important;
    margin-bottom: 8px !important;
  }
}

.product-page .product-gallery {
  display: flex !important;
  flex-direction: column !important;
  gap: 12px !important;
  direction: rtl;
}
.product-page .gallery-main { order: 1; cursor: zoom-in; }
.product-page .thumbnail-list {
  order: 2;
  width: 100%;
  display: flex;
  flex-direction: row;
  gap: 9px;
  overflow-x: auto;
  padding: 2px 0 5px;
  scrollbar-width: none;
  direction: rtl;
}
.product-page .thumbnail-list::-webkit-scrollbar { display: none; }
.product-page .thumbnail {
  flex: 0 0 82px;
  width: 82px;
  height: 78px;
}
.product-page .thumbnail-list[hidden] { display: none !important; }

.zoom-action {
  width: 42px;
  height: 42px;
  left: 13px;
  bottom: 13px;
  z-index: 6;
  border: 1px solid rgba(63,62,63,.14);
  border-radius: 50%;
  padding: 0;
  display: grid;
  place-items: center;
  color: var(--ink);
  background: rgba(255,255,255,.92);
  box-shadow: 0 5px 18px rgba(39,25,15,.11);
  cursor: zoom-in;
}
.zoom-action .icon { width: 19px; height: 19px; }

.image-modal-card { position: relative; overflow: hidden; }
.image-modal-photo {
  width: 100%;
  max-width: 860px;
  max-height: 78vh;
  object-fit: contain;
  opacity: 1;
  transition: opacity .2s ease;
  user-select: none;
  -webkit-user-drag: none;
  touch-action: pan-y;
}
.image-modal-photo.is-switching { opacity: .35; }
.image-modal-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(31,25,21,.66);
  transform: translateY(-50%);
}
.image-modal-arrow .icon { width: 20px; height: 20px; }
.image-modal-previous { right: 14px; }
.image-modal-previous .icon { transform: rotate(180deg); }
.image-modal-next { left: 14px; }
.image-modal-counter {
  position: absolute;
  left: 50%;
  bottom: 16px;
  z-index: 5;
  border-radius: 999px;
  padding: 7px 12px;
  color: #fff;
  background: rgba(31,25,21,.68);
  font-size: 11px;
  font-weight: 800;
  direction: ltr;
  transform: translateX(-50%);
}

.empty-product-reviews {
  width: 100%;
  min-height: 150px;
  border: 1px dashed var(--line-strong);
  border-radius: 14px;
  display: grid;
  place-items: center;
  padding: 24px;
  color: var(--muted);
  background: var(--soft);
  font-size: 11px;
  text-align: center;
}

@media (max-width: 620px) {
  .image-modal-card { min-height: 72vh; padding: 44px 10px 48px; }
  .image-modal-arrow { width: 40px; height: 40px; }
  .image-modal-previous { right: 8px; }
  .image-modal-next { left: 8px; }
}

.about-hero {
  min-height: 430px;
  display: grid;
  align-items: center;
  background: linear-gradient(145deg, #fff8f2 0%, #fff 58%, #fff3e8 100%);
}

.about-hero-grid.about-hero-text-only {
  min-height: 430px;
  grid-template-columns: minmax(0, 820px);
  justify-content: center;
  padding-block: 78px 64px;
  text-align: center;
}

.about-hero-text-only .about-hero-copy > p:last-of-type {
  max-width: 680px;
  margin-inline: auto;
}

.about-hero-text-only .about-actions { justify-content: center; }

.about-simple-hero h1 em { color: var(--orange); font-style: normal; }
.about-simple-hero h1 { line-height: 1.2; letter-spacing: -.8px; }
.about-simple-hero > .wrap > p:last-child { line-height: 1.9; }

.catalog-category-card img {
  width: 74px;
  height: 69px;
}

@media (max-width: 620px) {
  .about-hero,
  .about-hero-grid.about-hero-text-only { min-height: 470px; }
  .about-hero-grid.about-hero-text-only { padding: 108px 16px 58px; }
  .about-hero-text-only .about-hero-copy h1 { font-size: clamp(37px, 11vw, 47px); line-height: 1.14; }
  .about-hero-text-only .about-hero-copy > p:last-of-type { max-width: 360px; font-size: 11px; line-height: 1.9; }
  .about-hero-text-only .about-actions { flex-wrap: wrap; }
  .catalog-category-card img { width: 72px; height: 67px; }
  .about-simple-hero { padding: 34px 0 40px; }
  .about-simple-hero h1 { font-size: clamp(31px, 8.6vw, 38px) !important; letter-spacing: -.4px; }
  .about-simple-hero > .wrap > p:last-child { max-width: 350px; font-size: 10px; }
}

html[dir="ltr"] body {
  direction: ltr !important;
  text-align: left;
  font-family: Inter, Arial, sans-serif;
}
html[dir="ltr"] .mobile-drawer {
  right: auto !important;
  left: 0 !important;
  transform: translateX(-105%) !important;
  direction: ltr !important;
}
html[dir="ltr"] .mobile-drawer.open { transform: translateX(0) !important; }
html[dir="ltr"] .mobile-drawer nav,
html[dir="ltr"] .mobile-drawer nav a,
html[dir="ltr"] .mobile-drawer nav a > span,
html[dir="ltr"] .mobile-drawer nav a > strong,
html[dir="ltr"] .mobile-drawer nav a > small,
html[dir="ltr"] .product-page,
html[dir="ltr"] .product-gallery,
html[dir="ltr"] .product-thumbnails,
html[dir="ltr"] .video-card,
html[dir="ltr"] #video-grid .video-card,
html[dir="ltr"] .review-card,
html[dir="ltr"] .consultation-card {
  direction: ltr !important;
  text-align: left !important;
}
html[dir="ltr"] .product-thumbnails { flex-direction: row !important; }
html[dir="ltr"] .gallery-previous,
html[dir="ltr"] .image-modal-previous { left: 14px !important; right: auto !important; }
html[dir="ltr"] .gallery-next,
html[dir="ltr"] .image-modal-next { right: 14px !important; left: auto !important; }
html[dir="ltr"] .gallery-previous .icon,
html[dir="ltr"] .image-modal-previous .icon { transform: none !important; }
html[dir="ltr"] .gallery-next .icon,
html[dir="ltr"] .image-modal-next .icon { transform: rotate(180deg) !important; }
html[dir="ltr"] .consultation-card { right: auto !important; left: 18px !important; }

@media (min-width: 821px) {
  html[dir="ltr"] .catalog-filter-sheet {
    right: auto !important;
    left: 0 !important;
    direction: ltr !important;
    text-align: left !important;
  }
}

@media (max-width: 620px) {
  html[dir="ltr"] .gallery-previous,
  html[dir="ltr"] .image-modal-previous { left: 8px !important; }
  html[dir="ltr"] .gallery-next,
  html[dir="ltr"] .image-modal-next { right: 8px !important; }
  html[dir="ltr"] body[data-page="home"] .hero-copy h1 {
    width: max-content !important;
    max-width: calc(100vw - 20px) !important;
    flex-wrap: nowrap !important;
    gap: .12em !important;
    font-size: clamp(16px, 4.7vw, 20px) !important;
    letter-spacing: -.45px !important;
    white-space: nowrap !important;
  }
}

body[data-page="home"] main > .section.section-tight:last-child { padding-bottom: 0 !important; }
.site-footer { margin-top: 48px !important; }
.footer-grid { grid-template-columns: 1.45fr .95fr .9fr .9fr 1.15fr !important; gap: clamp(24px, 3vw, 54px) !important; }
.footer-grid > div { min-width: 0; }
.footer-grid a, .footer-grid button, .footer-grid span { line-height: 1.65; }
.footer-contact-column > span { max-width: 230px; }
html[dir="ltr"] .footer-grid,
html[dir="ltr"] .footer-grid > div,
html[dir="ltr"] .footer-about,
html[dir="ltr"] .footer-about p,
html[dir="ltr"] .footer-grid a,
html[dir="ltr"] .footer-grid button,
html[dir="ltr"] .footer-grid span,
html[dir="ltr"] .footer-bottom { direction: ltr !important; text-align: left !important; }
html[dir="ltr"] .footer-grid > div:not(.footer-about) { align-items: flex-start !important; }
html[dir="ltr"] .footer-contact-mini a { justify-content: flex-start !important; }
html[dir="ltr"] .footer-bottom { justify-content: space-between !important; }
@media (max-width: 1100px) {
  .footer-grid { grid-template-columns: 1.35fr repeat(2, 1fr) !important; }
}
@media (max-width: 820px) {
  .site-footer { margin-top: 34px !important; padding-top: 38px !important; }
  .footer-grid { grid-template-columns: 1fr 1fr !important; gap: 28px 20px !important; }
  .footer-about, .footer-contact-column { grid-column: 1 / -1; }
  .footer-bottom { justify-content: center !important; text-align: center !important; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr !important; gap: 24px !important; }
  .footer-about, .footer-contact-column { grid-column: auto; }
}

