:root {
  --black: #000000;
  --near-black: #060606;
  --hero-black: #0b0b0c;
  --dark-band: #151515;
  --dark-line: #272727;
  --gold: #f7bf18;
  --gold-strong: #ffc615;
  --gold-dark: #dba70b;
  --white: #ffffff;
  --soft-white: #e7e7e7;
  --light-bg: #f7f7f5;
  --card-bg: #ffffff;
  --text: #111111;
  --muted: #787878;
  --border: #d9d9d9;
  --shadow: 0 10px 26px rgba(0, 0, 0, 0.1);
  --font-ui: "Rubik", Arial, sans-serif;
  --font-display: "Rubik", Arial, sans-serif;
  --font-hebrew: var(--font-ui);
}

* {
  box-sizing: border-box;
}

html {
  background: var(--light-bg);
  scroll-behavior: smooth;
  scroll-padding-top: 16px;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--light-bg);
  font-family: var(--font-ui);
  letter-spacing: 0;
  overflow-x: hidden;
}

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

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(247, 191, 24, 0.92);
  outline-offset: 4px;
}

img,
svg {
  display: block;
}

[hidden] {
  display: none !important;
}

button,
input {
  font: inherit;
}

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

.page-shell {
  width: min(100% - 96px, 1340px);
  margin-inline: auto;
}

.site-header {
  background: var(--black);
  color: var(--white);
}

.header-top {
  min-height: 98px;
  border-bottom: 1px solid #181818;
}

.header-inner {
  width: min(100% - 76px, 1364px);
  display: grid;
  grid-template-columns: 286px minmax(430px, 560px) 320px;
  grid-template-areas: "actions search brand";
  align-items: center;
  justify-content: space-between;
  column-gap: 24px;
  min-height: 98px;
  direction: ltr;
}

.brand {
  grid-area: brand;
  justify-self: end;
  direction: rtl;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
}

.brand-logo {
  width: 218px;
  height: auto;
}

.brand-title {
  display: block;
  white-space: nowrap;
  font-size: 44px;
  font-family: var(--font-display);
  font-weight: 900;
  letter-spacing: 0;
}

.brand-gold {
  color: var(--gold);
}

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

.brand-subtitle {
  margin-top: 2px;
  color: var(--soft-white);
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0;
}

.mobile-menu-toggle {
  grid-area: menu;
  display: none;
  place-items: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid rgba(247, 191, 24, 0.48);
  border-radius: 7px;
  color: var(--gold);
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
}

.mobile-menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition:
    transform 160ms ease,
    opacity 160ms ease;
}

.site-header.is-nav-open .mobile-menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-nav-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .mobile-menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.search-form {
  grid-area: search;
  justify-self: center;
  width: min(100%, 558px);
  height: 56px;
  transform: translateX(14px);
  direction: rtl;
  display: grid;
  grid-template-columns: 1fr 58px;
  overflow: hidden;
  border: 1px solid #d7d7d7;
  border-radius: 7px;
  background: var(--white);
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.22);
}

.search-form input {
  min-width: 0;
  border: 0;
  padding: 0 28px;
  color: #555;
  background: var(--white);
  font-size: 15px;
  font-weight: 400;
}

.search-form input::placeholder {
  color: #939393;
}

.search-form button {
  display: grid;
  place-items: center;
  border: 0;
  border-right: 1px solid #d4d4d4;
  color: #242424;
  background: #f8f8f8;
  cursor: pointer;
}

.search-form svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}

.header-actions {
  grid-area: actions;
  justify-self: start;
  direction: rtl;
  display: flex;
  align-items: center;
  min-height: 54px;
}

.utility-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 0 20px;
  color: #f5f5f5;
}

.utility-link + .utility-link {
  border-right: 1px solid #242424;
}

.utility-icon {
  width: 37px;
  height: 37px;
  color: #efefef;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.utility-link strong,
.utility-link small {
  display: block;
  white-space: nowrap;
}

.utility-link strong {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
}

.utility-link small {
  margin-top: 3px;
  color: #c6c6c6;
  font-size: 12px;
  line-height: 1.2;
}

.cart-icon-wrap {
  position: relative;
}

.cart-badge {
  position: absolute;
  top: -7px;
  right: -7px;
  display: grid;
  place-items: center;
  width: 21px;
  height: 21px;
  border-radius: 999px;
  color: #151515;
  background: var(--gold-strong);
  font-size: 12px;
  font-weight: 900;
}

.main-nav {
  height: 62px;
  border-bottom: 1px solid #151515;
  background: var(--black);
}

.main-nav .page-shell {
  width: min(100% - 168px, 1276px);
}

.nav-list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 18px;
  height: 62px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.nav-list a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 46px;
  height: 62px;
  padding-inline: 4px;
  color: #f1f1f1;
  font-family: var(--font-ui);
  font-size: 14.5px;
  font-weight: 500;
  white-space: nowrap;
  transition: color 160ms ease;
}

.nav-list a:hover,
.nav-list a.active {
  color: var(--gold);
}

.nav-list a.active::after {
  content: "";
  position: absolute;
  right: 50%;
  bottom: -1px;
  width: 136px;
  height: 3px;
  transform: translateX(50%);
  background: var(--gold);
}

.hero {
  position: relative;
  min-height: 462px;
  overflow: hidden;
  color: var(--white);
  background:
    radial-gradient(ellipse at 22% 42%, rgba(255, 255, 255, 0.105), transparent 28%),
    radial-gradient(ellipse at 42% 12%, rgba(255, 255, 255, 0.055), transparent 32%),
    linear-gradient(104deg, rgba(255, 255, 255, 0.055) 0 9%, transparent 9% 20%, rgba(255, 255, 255, 0.045) 20% 30%, transparent 30%),
    linear-gradient(90deg, #17181a 0%, #111214 42%, #070708 78%, #050505 100%);
  border-bottom: 1px solid #303030;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 38% 64%, rgba(255, 255, 255, 0.04), transparent 22rem),
    linear-gradient(115deg, rgba(255, 255, 255, 0.04), transparent 45%),
    repeating-linear-gradient(152deg, rgba(255, 255, 255, 0.024) 0 1px, transparent 1px 19px),
    repeating-linear-gradient(72deg, rgba(0, 0, 0, 0.18) 0 2px, transparent 2px 17px);
  opacity: 0.42;
  pointer-events: none;
}

.hero-clean {
  min-height: 462px;
  background: #070707;
}

.hero-clean::before,
.hero-clean .hero-line {
  display: none;
}

.hero-picture {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
}

.hero-background-image {
  position: absolute;
  inset: 0;
  width: 116%;
  height: 118%;
  object-fit: cover;
  object-position: 38% center;
  transform: translate(9%, -8%);
  transform-origin: left center;
}

.hero-clean::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0) 0 42%, rgba(0, 0, 0, 0.08) 58%, rgba(0, 0, 0, 0.3) 100%),
    radial-gradient(ellipse at 80% 48%, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.32) 74%);
  pointer-events: none;
}

.hero-line {
  position: absolute;
  display: block;
  width: 4px;
  background: var(--gold);
  transform: rotate(36deg);
  transform-origin: center;
  box-shadow: 0 0 20px rgba(247, 191, 24, 0.16);
}

.hero-line-left {
  left: 52px;
  top: -45px;
  height: 248px;
}

.hero-line-center {
  left: 48.2%;
  top: -9px;
  height: 170px;
}

.hero-line-corner {
  right: 50px;
  bottom: -84px;
  height: 184px;
}

.hero-inner {
  position: relative;
  z-index: 1;
  direction: ltr;
  display: grid;
  grid-template-columns: minmax(635px, 1.06fr) minmax(470px, 0.94fr);
  align-items: center;
  min-height: 462px;
}

.hero-clean .hero-inner {
  direction: rtl;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.hero-media {
  align-self: end;
  justify-self: start;
  width: 975px;
  max-width: 100%;
  margin-left: -86px;
  margin-bottom: 0;
  transform: translateY(-12px);
}

.hero-media img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 34px 34px rgba(0, 0, 0, 0.58)) contrast(1.04) saturate(1.04);
}

.hero-copy {
  direction: rtl;
  justify-self: end;
  width: min(100%, 475px);
  padding-top: 7px;
  text-align: right;
  transform: translateX(-22px) translateY(-14px);
}

.hero-clean .hero-copy {
  width: min(100%, 500px);
  transform: translateX(-24px) translateY(-8px);
}

.hero-copy h1 {
  margin: 0;
  font-size: clamp(53px, 4.45vw, 65px);
  font-family: var(--font-display);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: 0;
  text-shadow: 0 3px 12px rgba(0, 0, 0, 0.38);
}

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

.hero-copy h1 span {
  color: var(--white);
}

.hero-copy h1 strong {
  margin-top: 8px;
  color: var(--gold-strong);
  font-weight: 800;
}

.hero-accent {
  display: block;
  width: 86px;
  height: 4px;
  margin: 27px 0 23px;
  background: var(--gold);
}

.hero-kicker {
  margin: 0;
  color: #f3f3f3;
  font-family: var(--font-ui);
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
  text-shadow: 0 2px 9px rgba(0, 0, 0, 0.34);
}

.hero-description {
  max-width: 356px;
  margin: 12px 0 0;
  color: #e3e3e3;
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.5;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.32);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 31px;
}

.mobile-hero-cta {
  display: none;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  padding: 14px 28px;
  border-radius: 5px;
  font-family: var(--font-ui);
  font-size: 16.5px;
  font-weight: 700;
  line-height: 1;
  transition:
    transform 160ms ease,
    background 160ms ease,
    border-color 160ms ease;
}

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

.btn svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.btn-primary {
  min-width: 232px;
  color: #171717;
  background: var(--gold-strong);
  border: 1px solid var(--gold-dark);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.23);
}

.btn-outline {
  min-width: 204px;
  color: var(--white);
  background: rgba(0, 0, 0, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.54);
}

.benefits {
  background: var(--dark-band);
  color: var(--white);
  border-bottom: 1px solid #272727;
}

.benefits-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 92px;
}

.benefit-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  gap: 14px;
  min-height: 92px;
  padding: 0 28px;
}

.benefit-item + .benefit-item {
  border-right: 0;
}

.benefit-item + .benefit-item::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 48px;
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%);
}

.benefit-icon {
  width: 40px;
  height: 40px;
  flex: 0 0 auto;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 2.2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.benefit-item h2 {
  margin: 0;
  color: var(--white);
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.25;
  white-space: nowrap;
}

.benefit-item p {
  margin: 7px 0 0;
  color: #dedede;
  font-family: var(--font-ui);
  font-size: 13.5px;
  font-weight: 400;
  line-height: 1.25;
  white-space: nowrap;
}

.phone-capture {
  padding: 28px 0;
  background:
    linear-gradient(90deg, rgba(247, 191, 24, 0.1), transparent 34%),
    #fdfdfb;
  border-bottom: 1px solid #e4e4e1;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.04);
}

.phone-capture-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 590px);
  align-items: center;
  gap: 42px;
}

.phone-capture-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  margin-bottom: 10px;
  border-radius: 999px;
  color: #151515;
  background: var(--gold);
  font-size: 13px;
  font-weight: 600;
}

.phone-capture-copy h2 {
  margin: 0;
  color: #111111;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.15;
}

.phone-capture-copy p {
  margin: 8px 0 0;
  color: #686868;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
}

.phone-capture-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.phone-capture-trust span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid #dfdfdc;
  border-radius: 999px;
  color: #333333;
  background: #ffffff;
  font-size: 13px;
  font-weight: 500;
}

.phone-capture-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 134px;
  align-items: center;
  min-height: 62px;
  overflow: hidden;
  border: 1px solid #cfcfca;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.09);
}

.phone-capture-form:focus-within {
  border-color: var(--gold-dark);
  box-shadow:
    0 0 0 3px rgba(247, 191, 24, 0.2),
    0 14px 28px rgba(0, 0, 0, 0.09);
}

.phone-capture-form input {
  min-width: 0;
  height: 62px;
  border: 0;
  padding: 0 24px;
  color: #111111;
  background: transparent;
  font-size: 16px;
  font-weight: 400;
}

.phone-capture-form input::placeholder {
  color: #929292;
  font-weight: 400;
}

.phone-capture-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  height: 62px;
  border: 0;
  border-right: 1px solid #dededb;
  color: #121212;
  background: var(--gold);
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition:
    filter 160ms ease,
    transform 160ms ease;
}

.phone-capture-form button:hover {
  filter: brightness(1.03);
}

.phone-capture-status {
  grid-column: 2;
  min-height: 20px;
  margin: 10px 0 0;
  color: #5e5e5e;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.45;
}

.phone-capture-status:empty {
  display: none;
}

.phone-capture-status[data-state="success"] {
  color: #1f7a3d;
}

.phone-capture-status[data-state="warning"] {
  color: #8b6100;
}

.whatsapp-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

.whatsapp-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.truck-divider {
  position: relative;
  height: 258px;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), transparent 28%, transparent 72%, rgba(0, 0, 0, 0.2)),
    url("assets/videos/t-work-truck-poster.webp") center 52% / cover no-repeat,
    #0b0b0a;
  border-top: 1px solid #232323;
  border-bottom: 1px solid #252525;
}

.truck-divider-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 52%;
  filter: contrast(1.05) saturate(1.04);
}

.truck-divider-shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.22), transparent 26%, transparent 70%, rgba(0, 0, 0, 0.34)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18), transparent 18%, transparent 82%, rgba(0, 0, 0, 0.22));
}

.business-intro {
  position: relative;
  overflow: hidden;
  padding: 42px 0 44px;
  color: #f4f4f1;
  background: #050505;
  border-bottom: 1px solid #252525;
}

.business-intro::before {
  display: none;
}

.business-intro-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 330px;
  align-items: center;
  gap: 56px;
}

.section-kicker {
  display: inline-block;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
}

.business-intro h2 {
  max-width: 720px;
  margin: 0;
  color: #f8f8f5;
  font-size: 32px;
  font-weight: 850;
  line-height: 1.16;
}

.business-intro p {
  max-width: 820px;
  margin: 14px 0 0;
  color: #deded8;
  font-size: 16.5px;
  font-weight: 400;
  line-height: 1.68;
}

.business-intro-points {
  display: grid;
  gap: 10px;
}

.business-intro-points span {
  position: relative;
  display: block;
  padding: 0 22px 0 0;
  border: 0;
  border-radius: 0;
  color: #e8e8df;
  background: transparent;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.45;
}

.business-intro-points span::before {
  content: "";
  position: absolute;
  top: 0.62em;
  right: 0;
  width: 8px;
  height: 8px;
  background: var(--gold);
  transform: translateY(-50%);
}

.home-catalogue {
  padding: 42px 0 76px;
  background:
    radial-gradient(circle at 88% 0%, rgba(0, 0, 0, 0.035), transparent 22rem),
    var(--light-bg);
}

.home-catalogue-heading {
  align-items: flex-end;
  margin-bottom: 20px;
}

.home-catalogue-heading .section-kicker {
  margin-bottom: 10px;
}

.catalogue-anchor-nav {
  position: sticky;
  top: 0;
  z-index: 8;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0 0 34px;
  padding: 12px 0 18px;
  border-bottom: 1px solid #dedede;
  background: rgba(247, 247, 245, 0.96);
  backdrop-filter: blur(8px);
}

.catalogue-anchor-nav a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border: 1px solid #cfcfcf;
  border-radius: 999px;
  color: #151515;
  background: #ffffff;
  font-size: 15px;
  font-weight: 700;
  transition:
    transform 160ms ease,
    border-color 160ms ease,
    background 160ms ease;
}

.catalogue-anchor-nav a:hover {
  transform: translateY(-1px);
  border-color: var(--gold-dark);
  background: var(--gold);
}

.home-catalogue-groups {
  display: grid;
  gap: 48px;
}

.home-catalogue-section {
  scroll-margin-top: 18px;
}

.home-catalogue-section-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 18px;
}

.home-catalogue-section-heading h3 {
  margin: 0;
  color: #111111;
  font-size: 29px;
  font-weight: 850;
  line-height: 1.12;
}

.home-catalogue-section-heading span {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 14px;
  border-radius: 999px;
  color: #151515;
  background: var(--gold);
  font-size: 14px;
  font-weight: 800;
}

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

.home-product-card {
  min-width: 0;
}

.home-product-card-inner {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 414px;
  height: 100%;
  overflow: hidden;
  border: 1px solid #dcdcdc;
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.055);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.home-product-card-inner:hover {
  transform: translateY(-2px);
  border-color: #c8c8c8;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.095);
}

.home-product-image-link {
  display: block;
}

.home-product-image {
  display: grid;
  place-items: center;
  height: 270px;
  padding: 18px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #ffffff 0%, #f8f8f7 100%);
  border-bottom: 1px solid #ededed;
}

.home-product-image img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.home-product-code {
  position: absolute;
  top: 16px;
  right: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  min-height: 30px;
  padding: 0 12px;
  border-radius: 999px;
  color: #111111;
  background: var(--gold);
  font-size: 14px;
  font-weight: 900;
  direction: ltr;
}

.home-product-name {
  margin: 6px 22px 0;
  color: #121212;
  font-size: 18px;
  font-weight: 850;
  line-height: 1.22;
}

.home-product-category {
  margin: 16px 22px 0;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 850;
  line-height: 1.1;
}

.home-product-description {
  margin: 9px 22px 22px;
  color: #707070;
  font-size: 14.5px;
  font-weight: 400;
  line-height: 1.5;
}

.home-product-sizes {
  margin: auto 22px 20px;
  color: #4f4f4f;
  font-size: 13px;
  font-weight: 600;
}

.home-product-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 44px;
  margin: auto 22px 22px;
  padding: 0 18px;
  border-radius: 999px;
  color: #151515;
  background: #f3f3ef;
  font-size: 13px;
  font-weight: 850;
}

.home-product-card-inner:hover .home-product-action,
.home-product-action:focus-visible {
  background: var(--gold);
}

.home-product-card.is-search-hit .home-product-card-inner {
  border-color: var(--gold-dark);
  box-shadow:
    0 0 0 3px rgba(247, 191, 24, 0.28),
    0 16px 34px rgba(0, 0, 0, 0.12);
}

.categories {
  background:
    radial-gradient(circle at 12% 0%, rgba(0, 0, 0, 0.035), transparent 23rem),
    var(--light-bg);
  padding: 31px 0 48px;
}

.section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 7px;
}

.section-heading h2 {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.1;
  color: #161616;
}

.section-heading p {
  margin: 7px 0 0;
  color: #8a8a8a;
  font-family: var(--font-ui);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.35;
}

.all-categories {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 165px;
  min-height: 48px;
  margin-top: 4px;
  border: 1px solid #818181;
  border-radius: 5px;
  color: #141414;
  background: transparent;
  font-size: 16px;
  font-weight: 500;
}

.all-categories svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 19px;
  margin-top: -4px;
}

.category-card {
  min-width: 0;
}

.category-card a {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 252px;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 6px;
  background: var(--card-bg);
  text-align: center;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.03);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.category-card a:hover {
  transform: translateY(-2px);
  border-color: #c8c8c8;
  box-shadow: var(--shadow);
}

.category-card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  background: #f1f1f1;
  border-bottom: 1px solid #e7e7e7;
  filter: contrast(1.04) saturate(1.06);
}

.category-icon {
  position: absolute;
  top: 139px;
  left: 50%;
  display: grid;
  place-items: center;
  width: 51px;
  height: 51px;
  transform: translateX(-50%);
  border: 3px solid var(--white);
  border-radius: 999px;
  color: var(--white);
  background: #191919;
  box-shadow: 0 5px 11px rgba(0, 0, 0, 0.22);
}

.category-icon svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.category-title {
  display: block;
  margin: 36px 16px 0;
  color: #1b1b1b;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.category-desc {
  display: block;
  min-height: 18px;
  margin: 8px 18px 16px;
  color: #8a8a8a;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 400;
  line-height: 1.25;
}

.category-arrow {
  position: absolute;
  right: 23px;
  bottom: 18px;
  color: var(--gold);
  font-size: 28px;
  font-weight: 300;
  line-height: 0.7;
}

.catalogue-strip {
  padding: 8px 0 58px;
  background: var(--light-bg);
}

.catalogue-strip-heading {
  align-items: center;
  margin-bottom: 20px;
}

.catalogue-link {
  border-color: #171717;
  color: #111111;
  background: #ffffff;
}

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

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

.product-card a {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 352px;
  overflow: hidden;
  border: 1px solid #d9d9d9;
  border-radius: 7px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    border-color 160ms ease;
}

.product-card a::before {
  content: "";
  position: absolute;
  inset-inline-start: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: var(--gold);
}

.product-card a:hover {
  transform: translateY(-2px);
  border-color: #c9c9c9;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.1);
}

.product-image-wrap {
  display: grid;
  place-items: center;
  height: 218px;
  padding: 14px;
  background: #fbfbfa;
  border-bottom: 1px solid #ededed;
}

.product-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.product-meta {
  margin: 18px 22px 0;
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 700;
}

.product-title {
  margin: 8px 22px 0;
  color: #151515;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
}

.product-description {
  margin: 8px 22px 22px;
  color: #747474;
  font-size: 14px;
  line-height: 1.4;
}

@media (max-width: 1200px) {
  .page-shell {
    width: min(100% - 48px, 1120px);
  }

  .header-inner {
    grid-template-columns: 250px minmax(340px, 1fr) 310px;
  }

  .brand-title {
    font-size: 40px;
  }

  .brand-logo {
    width: 198px;
  }

  .hero-inner {
    grid-template-columns: minmax(520px, 1fr) minmax(410px, 0.86fr);
  }

  .hero-media {
    width: 735px;
    margin-left: -34px;
  }

  .category-grid {
    gap: 14px;
  }

  .featured-products-grid {
    gap: 16px;
  }

  .business-intro-inner {
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 40px;
  }

  .home-products-grid {
    gap: 16px;
  }

  .home-product-image {
    height: 242px;
  }

  .truck-divider {
    height: 230px;
  }

  .phone-capture-inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 500px);
    gap: 22px;
  }

  .phone-capture-copy h2 {
    font-size: 24px;
  }
}

@media (max-width: 980px) {
  .page-shell {
    width: min(100% - 32px, 900px);
  }

  .header-top {
    min-height: 0;
  }

  .header-inner {
    width: min(100% - 32px, 900px);
    display: grid;
    grid-template-columns: auto minmax(0, 1fr) auto;
    grid-template-areas:
      "menu brand actions"
      "search search search";
    gap: 12px;
    padding-block: 12px;
    min-height: 0;
    direction: rtl;
  }

  .brand {
    grid-area: brand;
    justify-self: center;
    align-items: center;
    min-width: 0;
  }

  .brand-logo {
    width: min(178px, 44vw);
  }

  .brand-subtitle {
    max-width: 230px;
    overflow: hidden;
    font-size: 12px;
    line-height: 1.2;
    text-align: center;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .mobile-menu-toggle {
    display: grid;
    justify-self: end;
  }

  .search-form {
    grid-area: search;
    justify-self: center;
    width: 100%;
    max-width: 520px;
    transform: none;
  }

  .header-actions {
    grid-area: actions;
    justify-self: start;
    min-height: 46px;
  }

  .utility-link {
    min-height: 46px;
    padding: 0 10px;
  }

  .main-nav {
    height: auto;
    max-height: 0;
    overflow: hidden;
    border-top: 1px solid #161616;
    transition: max-height 180ms ease;
  }

  .site-header.is-nav-open .main-nav {
    max-height: 560px;
  }

  .main-nav.is-open {
    max-height: 560px;
  }

  .main-nav .page-shell {
    width: min(100% - 32px, 900px);
  }

  .nav-list {
    display: grid;
    width: 100%;
    min-width: 100%;
    gap: 0;
    height: auto;
    padding: 8px 0 14px;
  }

  .nav-list a {
    justify-content: flex-start;
    height: auto;
    min-height: 46px;
    padding: 0 18px;
    border-bottom: 1px solid #151515;
    font-size: 15px;
  }

  .nav-list a.active::after {
    right: 0;
    bottom: 50%;
    width: 4px;
    height: 24px;
    transform: translateY(50%);
    border-radius: 999px;
  }

  .hero,
  .hero-clean {
    min-height: 520px;
  }

  .hero-background-image {
    width: 142%;
    height: 100%;
    object-position: 40% center;
    transform: translate(9%, 0);
    filter: brightness(0.9);
  }

  .hero-clean::after {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.26), rgba(0, 0, 0, 0.44)),
      radial-gradient(ellipse at 58% 46%, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.62) 78%);
  }

  .hero-inner,
  .hero-clean .hero-inner {
    display: flex;
    justify-content: center;
    min-height: 520px;
    padding-block: 28px;
    direction: rtl;
  }

  .hero-copy,
  .hero-clean .hero-copy {
    width: min(100%, 560px);
    text-align: center;
    transform: none;
  }

  .hero-accent {
    margin-inline: auto;
  }

  .hero-copy h1 {
    font-size: clamp(42px, 11vw, 56px);
  }

  .hero-description {
    margin-inline: auto;
  }

  .hero-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

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

  .benefit-item {
    min-height: 120px;
    padding: 20px 16px;
  }

  .benefit-item + .benefit-item::before {
    display: none;
  }

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

  .business-intro-inner {
    grid-template-columns: 1fr;
  }

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

  .truck-divider {
    height: 190px;
  }

  .phone-capture-inner {
    grid-template-columns: 1fr;
  }

  .phone-capture-form {
    grid-template-columns: minmax(0, 1fr) 116px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 24px, 620px);
  }

  .header-inner {
    width: min(100% - 24px, 620px);
    grid-template-columns: auto minmax(0, 1fr);
    grid-template-areas:
      "menu brand"
      "search search";
    gap: 9px 12px;
    padding-block: 9px 11px;
    direction: ltr;
  }

  .brand {
    justify-self: end;
    align-items: flex-end;
  }

  .brand-logo {
    width: min(144px, 44vw);
  }

  .brand-subtitle {
    max-width: 188px;
    font-size: 11px;
    text-align: right;
  }

  .search-form {
    height: 46px;
    grid-template-columns: 1fr 48px;
    border-radius: 6px;
  }

  .search-form input {
    padding: 0 16px;
    font-size: 14px;
  }

  .search-form svg {
    width: 23px;
    height: 23px;
  }

  .header-actions {
    display: none;
  }

  .utility-link {
    flex: 0 0 auto;
    justify-content: center;
    gap: 8px;
    min-width: 42px;
    min-height: 44px;
    padding: 0 8px;
  }

  .utility-link > span:not(.cart-icon-wrap) {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

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

  .mobile-menu-toggle {
    justify-self: start;
    width: 44px;
    height: 44px;
  }

  .cart-badge {
    top: -8px;
    right: -8px;
  }

  .hero,
  .hero-clean {
    min-height: clamp(350px, 94vw, 455px);
    height: clamp(350px, 94vw, 455px);
    overflow: hidden;
    background: #050505;
  }

  .hero-background-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform: none;
    filter: contrast(1.04) saturate(1.03);
  }

  .hero-clean::after {
    display: none;
  }

  .hero-inner,
  .hero-clean .hero-inner,
  .hero-clean .hero-copy {
    display: none;
  }

  .mobile-hero-cta {
    display: block;
    padding: 16px 0 17px;
    background:
      linear-gradient(180deg, #050505 0%, #111111 100%);
    border-bottom: 1px solid #242424;
  }

  .mobile-hero-cta-inner {
    display: grid;
    gap: 10px;
  }

  .mobile-hero-cta h2 {
    margin: 0 0 4px;
    color: #ffffff;
    font-size: 25px;
    font-weight: 400;
    line-height: 1.16;
    text-align: center;
  }

  .mobile-hero-cta .btn {
    width: 100%;
    min-height: 52px;
    padding-inline: 18px;
    font-size: 15px;
  }

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

  .benefit-item {
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 86px;
    padding: 12px 9px;
    text-align: center;
  }

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

  .benefit-item h2 {
    font-size: 13px;
    line-height: 1.22;
  }

  .benefit-item p {
    display: none;
  }

  .phone-capture {
    padding: 18px 0;
  }

  .phone-capture-inner {
    gap: 14px;
  }

  .phone-capture-copy h2 {
    font-size: 21px;
    line-height: 1.18;
  }

  .phone-capture-copy p {
    margin-top: 6px;
    font-size: 13.5px;
    line-height: 1.45;
  }

  .phone-capture-trust {
    display: none;
  }

  .phone-capture-form {
    grid-template-columns: minmax(0, 1fr) 92px;
    min-height: 54px;
  }

  .phone-capture-form input {
    height: 54px;
    padding: 0 14px;
    font-size: 14px;
  }

  .phone-capture-form button {
    height: 54px;
    border-top: 0;
    border-right: 1px solid #dededb;
    font-size: 14px;
  }

  .phone-capture-status {
    grid-column: 1 / -1;
    margin: 8px 0 0;
    font-size: 12.5px;
  }

  .truck-divider {
    height: 132px;
  }

  .business-intro {
    padding: 28px 0;
  }

  .business-intro h2,
  .section-heading h2 {
    font-size: 26px;
  }

  .business-intro p {
    font-size: 15px;
  }

  .business-intro-points {
    gap: 9px;
  }

  .catalogue-anchor-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    margin-inline: -12px;
    padding-inline: 12px;
    scroll-padding-inline: 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .catalogue-anchor-nav::-webkit-scrollbar {
    display: none;
  }

  .catalogue-anchor-nav a {
    flex: 0 0 auto;
    min-height: 46px;
  }

  .home-catalogue-groups,
  .home-catalogue-section {
    min-width: 0;
  }

  .home-catalogue-section {
    overflow: hidden;
  }

  .home-products-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 14px;
    width: 100%;
    max-width: 100%;
    overflow-x: visible;
    margin-inline: 0;
    padding: 0;
    scroll-snap-type: none;
  }

  .home-products-grid::-webkit-scrollbar {
    display: none;
  }

  .home-product-card {
    min-width: 0;
  }

  .home-product-card-inner {
    min-height: 0;
  }

  .home-product-image {
    height: auto;
    aspect-ratio: 1 / 1;
    padding: 18px;
  }

  .home-product-image img {
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .home-product-code {
    position: static;
    align-self: flex-start;
    min-height: 28px;
    margin: 14px 16px 0;
    font-size: 13px;
  }

  .home-product-category,
  .home-product-name,
  .home-product-description,
  .home-product-sizes {
    margin-inline: 16px;
  }

  .home-product-category {
    margin-top: 8px;
  }

  .home-product-name {
    font-size: 17px;
    line-height: 1.25;
  }

  .home-product-description {
    font-size: 13.5px;
    line-height: 1.42;
    margin-bottom: 14px;
  }

  .home-product-action {
    align-self: stretch;
    margin: 0 16px 16px;
  }
}

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

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

  .truck-divider-video {
    opacity: 0;
  }
}
