:root {
  --red: #e10600;
  --ink: #171717;
  --muted: #5a5a5a;
  --paper: #ffffff;
  --mist: #f7f7f7;
  --line: #ececec;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Barlow, "Segoe UI", sans-serif;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(#d8d8d8 1px, transparent 1.2px);
  background-size: 10px 10px;
  opacity: 0.45;
  z-index: 0;
}

.dev-bar,
.top,
main,
footer {
  position: relative;
}

.dev-bar,
main,
footer {
  z-index: 1;
}

.dev-bar {
  background: var(--red);
  color: #fff;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1rem;
}

.top {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.1rem;
  padding: 0.85rem 6vw;
  min-height: 88px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--line);
  overflow: visible;
  z-index: 20;
}

.load-lane {
  position: absolute;
  left: 6vw;
  right: 6vw;
  top: 0;
  bottom: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 1;
}

.brand {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 2;
  pointer-events: auto;
  text-decoration: none;
  color: inherit;
  transform: translateY(-50%);
  animation: trolley-to-bakkie 14s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

.brand img {
  display: block;
  height: 48px;
  width: auto;
  mix-blend-mode: multiply;
}

.header-bakkie {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  height: 72px;
  width: auto;
  max-width: none;
  pointer-events: none;
  transform: translate(-50%, -50%);
  animation: bakkie-drive-off 14s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}

@keyframes trolley-to-bakkie {
  0%,
  12% {
    left: 0;
    transform: translateY(-50%);
  }
  36%,
  58% {
    left: calc(50% - 141px);
    transform: translateY(-50%);
  }
  82%,
  100% {
    left: 0;
    transform: translateY(-50%);
  }
}

@keyframes bakkie-drive-off {
  0%,
  48% {
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  78% {
    left: 50%;
    transform: translate(55vw, -50%);
    opacity: 1;
  }
  86% {
    left: 50%;
    transform: translate(80vw, -50%);
    opacity: 0;
  }
  87%,
  94% {
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
  }
  100% {
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}

@keyframes trolley-to-bakkie-mobile {
  0%,
  12% {
    left: 0;
    transform: translateY(-50%);
  }
  36%,
  58% {
    left: max(0px, calc(68% - 123px));
    transform: translateY(-50%);
  }
  82%,
  100% {
    left: 0;
    transform: translateY(-50%);
  }
}

@keyframes bakkie-drive-off-mobile {
  0%,
  48% {
    left: 68%;
    transform: translate(-50%, -50%);
    opacity: 1;
  }
  78% {
    left: 68%;
    transform: translate(55vw, -50%);
    opacity: 1;
  }
  86% {
    left: 68%;
    transform: translate(80vw, -50%);
    opacity: 0;
  }
  87%,
  94% {
    left: 68%;
    transform: translate(-50%, -50%);
    opacity: 0;
  }
  100% {
    left: 68%;
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .brand {
    animation: none;
    left: 0;
    transform: translateY(-50%);
    opacity: 1;
  }

  .header-bakkie {
    animation: none;
    transform: translate(-50%, -50%);
    opacity: 1;
  }
}

#nav-toggle {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
  opacity: 0;
  pointer-events: none;
}

.nav-btn {
  display: none;
  cursor: pointer;
  font-weight: 700;
  color: var(--red);
  position: relative;
  z-index: 5;
  pointer-events: auto;
  min-height: 44px;
  min-width: 44px;
  margin: 0;
  padding: 0 0.4rem;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  user-select: none;
  -webkit-user-select: none;
  touch-action: manipulation;
}

.nav-btn .nav-close {
  display: none;
}

nav {
  display: flex;
  gap: 1.35rem;
  position: relative;
  z-index: 4;
  flex-shrink: 0;
}

nav a {
  color: var(--ink);
  text-decoration: none;
  font-weight: 600;
}

nav a:hover {
  color: var(--red);
}

.hero {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1rem 0;
  align-items: center;
  padding: 4.5rem 6vw 3.5rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #f3f1f0 0%, #fafafa 38%, #ffffff 100%);
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  left: 6vw;
  top: 18%;
  bottom: 18%;
  width: 2px;
  background: var(--red);
  z-index: 1;
  pointer-events: none;
}

.hero-copy {
  grid-column: 1;
  grid-row: 1;
  z-index: 2;
  padding-left: 1.25rem;
  padding-right: 1.5rem;
}

.hero-brand {
  margin: 0 0 1.05rem;
  color: var(--red);
}

.hero-brand-name,
.hero-brand-legal {
  display: block;
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-brand-name {
  font-size: clamp(1.7rem, 2.4vw + 0.85rem, 2.55rem);
  line-height: 0.88;
  letter-spacing: 0.045em;
}

.hero-brand-legal {
  margin-top: 0.28rem;
  font-size: clamp(0.92rem, 0.35vw + 0.82rem, 1.12rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
}

.hero::after {
  content: "";
  position: absolute;
  right: -10%;
  top: 50%;
  width: min(58vw, 560px);
  height: min(78%, 440px);
  border-radius: 50%;
  background: radial-gradient(
    ellipse at center,
    rgb(225 6 0 / 0.12) 0%,
    rgb(225 6 0 / 0.05) 42%,
    transparent 72%
  );
  transform: translateY(-50%);
  pointer-events: none;
}

.eyebrow {
  color: var(--red);
  font-size: clamp(1.12rem, 0.55vw + 1.05rem, 1.38rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 0.8rem;
}

h1,
h2,
.fed-split h2,
.person {
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: 0.01em;
}

h1 {
  font-size: clamp(3.2rem, 9vw, 6.4rem);
  margin-bottom: 1.1rem;
  max-width: 10ch;
}

.hero h1 {
  color: var(--ink);
  max-width: none;
  margin-bottom: 0;
  font-size: clamp(4.15rem, 8.6vw, 7.2rem);
  line-height: 0.84;
  letter-spacing: -0.018em;
  text-transform: uppercase;
}

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

.hero h1 em {
  font-style: italic;
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.055em;
}

.hero h1::after {
  content: "";
  display: block;
  width: 2.75rem;
  height: 3px;
  background: var(--red);
  margin: 1.05rem 0 1.2rem;
}

h2 {
  font-size: clamp(2.6rem, 6.5vw, 4.2rem);
  max-width: 16ch;
  margin-bottom: 1.1rem;
}

.lead,
.section-lead,
.split p,
.fed-split p {
  max-width: 36rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.8rem;
}

.hero .btn-ghost {
  background: #fff;
  border-color: #dedede;
}

.btn,
.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
}

.btn {
  background: var(--red);
  color: #fff;
}

.btn-ink {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0.7rem 1.2rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 700;
  background: var(--ink);
  color: #fff;
}

.btn-ink:hover {
  background: #000;
  color: #fff;
}

.btn-ghost {
  color: var(--ink);
  border: 1px solid var(--line);
}

.hero-mark {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  pointer-events: none;
  z-index: 0;
}

.trolley {
  display: block;
  position: relative;
  width: min(100%, 460px);
}

.trolley-rig {
  position: relative;
  z-index: 1;
  transform-origin: 22% 92%;
  animation: trolley-burnout 10s ease-in 0.8s infinite;
}

.trolley-rig img {
  display: block;
  width: 100%;
  height: auto;
  mix-blend-mode: multiply;
}

.tyre {
  position: absolute;
  z-index: 2;
  width: 9.2%;
  aspect-ratio: 1;
  bottom: 17.4%;
  border-radius: 50%;
  box-sizing: border-box;
  background: #fff;
  border: 6px solid #e10600;
  animation: tyre-spin 0.22s linear infinite;
}

.tyre.rear {
  left: 30.4%;
}

.tyre.front {
  left: 64.2%;
  animation-duration: 0.28s;
}

.tyre::before {
  content: "";
  position: absolute;
  inset: 16%;
  border: 3px solid #e10600;
  border-right-color: transparent;
  border-radius: 50%;
}

.tyre::after {
  content: "";
  position: absolute;
  inset: 40%;
  border-radius: 50%;
  background: #e10600;
}

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

.skid {
  position: absolute;
  left: 8%;
  bottom: 7%;
  height: 7px;
  width: 0;
  border-radius: 6px;
  background: linear-gradient(90deg, rgb(20 20 20 / 0%), rgb(28 28 28 / 55%), rgb(18 18 18 / 80%));
  transform: rotate(-3deg);
  transform-origin: right center;
  animation: skid-mark 10s ease-in 0.8s infinite;
}

.smoke {
  position: absolute;
  left: 18%;
  bottom: 8%;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgb(90 90 90 / 38%);
  filter: blur(7px);
  opacity: 0;
  animation: tire-smoke 10s ease-out 0.8s infinite;
}

.smoke.s2 {
  left: 26%;
  animation-delay: 0.95s;
  width: 30px;
  height: 30px;
}

.smoke.s3 {
  left: 14%;
  animation-delay: 1.1s;
  width: 36px;
  height: 36px;
}

.smoke.s4 {
  left: 22%;
  animation-delay: 1.25s;
  width: 26px;
  height: 26px;
}

@keyframes trolley-burnout {
  0%,
  10% {
    transform: rotate(0deg) translate(0, 0) scale(1);
    filter: none;
    opacity: 1;
  }
  14% {
    transform: rotate(-6deg) translate(-1%, 1%) scale(1);
  }
  16% {
    transform: rotate(-9deg) translate(1%, 2%) scale(1.02);
  }
  18% {
    transform: rotate(-5deg) translate(-1%, 1%) scale(1);
  }
  22% {
    transform: rotate(-11deg) translate(1%, 2%) scale(1.03);
  }
  26% {
    transform: rotate(-7deg) translate(-2%, 2%) scale(1.01);
  }
  30% {
    transform: rotate(-10deg) translate(0, 2%) scale(1.04);
  }
  34% {
    transform: rotate(-4deg) translate(8%, 1%) scale(1.02);
    filter: none;
    opacity: 1;
  }
  52% {
    transform: rotate(4deg) translate(160%, -6%) scale(0.92, 0.86);
    filter: blur(1.5px);
    opacity: 0;
  }
  53%,
  68% {
    transform: rotate(0deg) translate(-30%, 0) scale(1);
    filter: none;
    opacity: 0;
  }
  86% {
    transform: rotate(-1deg) translate(0, 0) scale(1);
    filter: none;
    opacity: 1;
  }
  100% {
    transform: rotate(0deg) translate(0, 0) scale(1);
    filter: none;
    opacity: 1;
  }
}

@keyframes skid-mark {
  0%,
  12% {
    width: 0;
    opacity: 0;
  }
  20% {
    width: 28%;
    opacity: 0.85;
  }
  32% {
    width: 46%;
    opacity: 1;
  }
  48% {
    width: 58%;
    opacity: 0.35;
  }
  55%,
  100% {
    width: 0;
    opacity: 0;
  }
}

@keyframes tire-smoke {
  0%,
  12% {
    opacity: 0;
    transform: translate(0, 0) scale(0.4);
  }
  20% {
    opacity: 0.7;
    transform: translate(-10%, -20%) scale(1);
  }
  32% {
    opacity: 0.55;
    transform: translate(-40%, -70%) scale(2.1);
  }
  42% {
    opacity: 0.2;
    transform: translate(-10%, -110%) scale(2.6);
  }
  50%,
  100% {
    opacity: 0;
    transform: translate(80%, -40%) scale(1.4);
  }
}

@media (prefers-reduced-motion: reduce) {
  .trolley-rig,
  .tyre,
  .skid,
  .smoke {
    animation: none;
  }
}

.fed-split {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  padding: 1.5rem 6vw;
  background: var(--mist);
  border-block: 1px solid var(--line);
}

.fed-split article {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  padding: 0.4rem 0.9rem 0.4rem 0.4rem;
  min-height: 76px;
}

.fed-icon {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  color: var(--red);
}

.fed-icon svg {
  width: 52px;
  height: 52px;
  display: block;
}

.fed-split h2 {
  font-size: 1.65rem;
  max-width: none;
  margin-bottom: 0.15rem;
}

.fed-split p {
  max-width: none;
  font-size: 0.95rem;
  line-height: 1.35;
}

.fed-people {
  margin-top: 0.3rem;
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.block {
  padding: 4.2rem 6vw;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.products {
  background: var(--mist);
}

.product-pricelist {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.85rem 1.15rem;
  margin-top: 1.15rem;
}

.product-pricelist .btn {
  flex-shrink: 0;
}

.product-pricelist span {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 34rem;
}

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

.product-search {
  margin-top: 1.15rem;
}

.product-search-field {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  width: min(38rem, 100%);
  min-height: 56px;
  padding: 0 1.05rem;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
}

.product-search-field svg {
  flex-shrink: 0;
  color: var(--red);
}

.product-search-field input {
  display: block;
  width: 100%;
  min-height: 54px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  font: inherit;
  font-size: 1.05rem;
  appearance: none;
}

.product-search-field input:focus {
  outline: none;
}

.product-search-field:focus-within {
  border-color: #f0c4c2;
  box-shadow: 0 10px 28px rgba(23, 23, 23, 0.06);
}

.product-hits {
  margin-top: 1.35rem;
}

.product-hits-status {
  margin: 0 0 0.9rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.product-hits-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.85rem;
}

.product-hits-list a {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.95rem 1rem;
  min-height: 108px;
  padding: 0.65rem 1.05rem 0.65rem 0.55rem;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  text-decoration: none;
  color: inherit;
}

.product-hits-list a:hover {
  border-color: var(--ink);
  border-left-color: var(--red);
}

.product-hits-list img {
  display: block;
  width: 88px;
  height: 88px;
  object-fit: cover;
  background: var(--mist);
}

.product-hits-list a:not(:has(img)) {
  grid-template-columns: minmax(0, 1fr) auto;
}

.product-hits-list .copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  min-width: 0;
}

.product-hits-list .kicker {
  color: var(--red);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.product-hits-list strong {
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-size: 1.28rem;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.product-hits-list small {
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.3;
}

.product-hits-list .price {
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-size: 1.55rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  color: var(--red);
  white-space: nowrap;
}

@media (max-width: 980px) {
  .product-hits-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 700px) {
  .product-hits-list a,
  .product-hits-list a:not(:has(img)) {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .product-hits-list img {
    width: 72px;
    height: 72px;
  }

  .product-hits-list .price {
    grid-column: 2;
    justify-self: start;
  }
}

.catalog-pricelist {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin: 0 0 1.4rem;
}

.product-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.7rem;
  margin-top: 1.8rem;
}

.product-list li {
  padding: 0;
  background: transparent;
  border: none;
}

.product-list a {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  padding: 0.4rem 0.9rem 0.4rem 0.4rem;
  min-height: 76px;
  text-decoration: none;
  color: inherit;
}

.product-list a:hover {
  border-color: #f0c4c2;
  background: #fffaf9;
}

.product-list a:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
}

.product-list img {
  width: 64px;
  height: 64px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.product-list .copy {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  min-width: 0;
}

.product-list strong {
  font-weight: 700;
  font-size: 1.12rem;
  line-height: 1.2;
}

.product-list small {
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 400;
  line-height: 1.3;
}

.people {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 1.8rem;
}

.people article {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  padding: 1.35rem 1.25rem 1.3rem;
  display: grid;
  align-content: start;
  gap: 0.2rem;
}

.person {
  font-size: 2rem;
}

.people-phone {
  color: var(--muted);
  text-decoration: none;
  font-weight: 700;
}

.people-phone:hover,
.address a:hover {
  color: var(--red);
}

.people-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 0.85rem;
}

.people-actions .btn,
.people-actions .btn-ink {
  min-height: 42px;
  padding: 0.45rem 1.05rem;
  font-size: 0.84rem;
}

.people-actions .btn {
  color: #fff;
}

.people-actions .btn:hover {
  color: #fff;
  background: #c10500;
}

.people-actions .btn-ink {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.contact-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.15rem;
  margin-top: 1.35rem;
}

.address {
  margin: 0;
}

.social {
  margin: 0;
}

.site-foot a {
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
}

.site-foot a:hover {
  color: var(--red);
}

.address a {
  color: var(--muted);
  font-weight: 600;
}

.portal-cta {
  margin-top: 1.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  padding: 1.15rem 1.25rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem 1.2rem;
}

.portal-cta-kicker {
  margin: 0;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.portal-cta .btn {
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0.45rem 1.15rem;
  font-size: 0.92rem;
  color: #fff;
}

.portal-cta .btn:hover {
  background: #c10500;
  color: #fff;
}

.portal-cta-note {
  margin: 0.35rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.4;
  max-width: 34rem;
}

footer {
  display: grid;
  gap: 0;
  padding: 0;
  border-top: 1px solid var(--line);
  background: #fff;
  color: var(--muted);
  font-size: 0.9rem;
}

.site-foot {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.4rem 6vw 1.1rem;
}

.footer-vibeit {
  display: grid;
  justify-items: center;
  gap: 0;
  padding: 1rem 6vw 1.5rem;
  border-top: 1px solid var(--line);
  background: #fff;
  text-decoration: none;
}

.footer-vibeit-sign {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #6a6a6a;
}

.footer-vibeit img {
  width: 4.6rem;
  height: 4.6rem;
  margin: -0.2rem 0 -0.1rem;
  object-fit: contain;
  pointer-events: none;
}

.footer-vibeit-cta {
  font-family: Georgia, "Times New Roman", serif;
  font-style: italic;
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  background-image: linear-gradient(105deg, #c45cff 0%, #7a5cff 22%, #2ad6ff 52%, #ff9a3c 86%, #ff7a2e 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.footer-vibeit:hover .footer-vibeit-sign {
  color: #171717;
}

@media (max-width: 900px) {
  .nav-btn {
    display: inline-flex;
  }

  #nav-toggle:checked ~ .nav-btn .nav-open {
    display: none;
  }

  #nav-toggle:checked ~ .nav-btn .nav-close {
    display: inline;
  }

  .load-lane {
    left: 1rem;
    right: 5.5rem;
  }

  .brand {
    left: 0;
    animation-name: trolley-to-bakkie-mobile;
  }

  .header-bakkie {
    height: 52px;
    left: 68%;
    animation-name: bakkie-drive-off-mobile;
  }

  nav {
    display: none;
    position: absolute;
    top: 100%;
    right: 6vw;
    left: 6vw;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.45rem 0.85rem;
    flex-direction: column;
    gap: 0;
    z-index: 6;
  }

  nav a {
    min-height: 44px;
    display: flex;
    align-items: center;
  }

  #nav-toggle:checked ~ nav {
    display: flex;
  }

  .fed-split,
  .split,
  .product-list,
  .people {
    grid-template-columns: 1fr;
  }

  .hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "brand brand"
      "title mark"
      "lead lead"
      "act act";
    column-gap: 0.4rem;
    align-items: start;
    padding-top: 2.6rem;
    padding-bottom: 2.4rem;
    background: linear-gradient(180deg, #f4f2f1 0%, #ffffff 48%);
  }

  .hero::before {
    top: 14%;
    bottom: 14%;
  }

  .hero-copy {
    display: contents;
  }

  .hero-brand {
    grid-area: brand;
    padding-left: 1.25rem;
    margin-bottom: 0.55rem;
    min-width: 0;
  }

  .hero-brand-name,
  .hero-brand-legal {
    display: inline;
  }

  .hero-brand-name {
    font-size: clamp(1.12rem, 4.4vw, 1.45rem);
    letter-spacing: 0.04em;
    line-height: 1.15;
  }

  .hero-brand-legal {
    margin-top: 0;
    margin-left: 0.35em;
    letter-spacing: 0.12em;
    font-size: 0.92em;
    white-space: nowrap;
  }

  .hero h1 {
    grid-area: title;
    padding-left: 1.25rem;
    min-width: 0;
    font-size: clamp(3.05rem, 14.5vw, 4.7rem);
    line-height: 0.82;
  }

  .hero-mark {
    grid-area: mark;
    align-self: end;
    justify-content: flex-end;
    align-items: flex-end;
    width: auto;
    padding: 0 0 2.2rem;
    z-index: 1;
  }

  .trolley {
    width: clamp(110px, 32vw, 148px);
  }

  .tyre {
    border-width: 3px;
  }

  .tyre::before {
    border-width: 2px;
  }

  .smoke {
    width: 12px;
    height: 12px;
    filter: blur(4px);
  }

  .smoke.s2 {
    width: 16px;
    height: 16px;
  }

  .smoke.s3 {
    width: 20px;
    height: 20px;
  }

  .smoke.s4 {
    width: 14px;
    height: 14px;
  }

  .hero .lead {
    grid-area: lead;
    padding-left: 1.25rem;
    max-width: none;
  }

  .hero-actions {
    grid-area: act;
    padding-left: 1.25rem;
  }
}

.catalog {
  background: var(--mist);
  padding-bottom: 2rem;
}

.catalog-wrap {
  padding: 2.2rem 6vw 1rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--muted);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.92rem;
  margin-bottom: 1.4rem;
}

.back-link:hover,
.back-link:focus-visible {
  color: var(--red);
}

.catalog-head {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  margin-bottom: 1rem;
}

.catalog-head img {
  width: 124px;
  height: 124px;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  flex-shrink: 0;
  border: 1px solid var(--line);
}

.catalog-head h1 {
  font-size: clamp(2.45rem, 6.8vw, 4rem);
  max-width: 18ch;
  margin-bottom: 0.35rem;
}

.catalog-head .lead {
  margin-bottom: 0;
}

.catalog-note {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  padding: 0.9rem 1.1rem;
  margin: 1.3rem 0 0.4rem;
  max-width: 46rem;
  color: var(--ink);
  font-size: 0.98rem;
}

.catalog-note strong {
  font-weight: 700;
}

.catalog-stamp {
  color: var(--muted);
  font-size: 0.82rem;
  margin: 0.7rem 0 1.6rem;
}

.catalog-group {
  margin: 0 6vw 1.6rem;
}

.catalog-group h2 {
  font-size: clamp(1.7rem, 3vw, 1.95rem);
  max-width: none;
  margin-bottom: 0.7rem;
  padding-left: calc(4px + 0.85rem);
}

.catalog-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  width: 100%;
}

.catalog-table {
  width: 100%;
  table-layout: fixed;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.catalog-table th,
.catalog-table td {
  padding: 0.62rem 0.85rem;
  text-align: left;
  vertical-align: top;
  border-bottom: 1px solid var(--line);
  overflow-wrap: break-word;
}

.catalog-table th {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
  background: #fafafa;
}

.catalog-table tbody tr:last-child td {
  border-bottom: none;
}

.catalog-table th:nth-child(1),
.catalog-table td:nth-child(1) {
  width: auto;
  background: #fff;
}

.catalog-table th:nth-child(1) {
  background: #fafafa;
}

.catalog-table th:nth-child(2),
.catalog-table td:nth-child(2) {
  width: 32%;
}

.catalog-table th:nth-child(n + 3),
.catalog-table td:nth-child(n + 3) {
  width: 8rem;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.catalog-table:has(th:nth-child(4)) th:nth-child(2),
.catalog-table:has(th:nth-child(4)) td:nth-child(2) {
  width: 28%;
}

.catalog-table:has(th:nth-child(4)) th:nth-child(n + 3),
.catalog-table:has(th:nth-child(4)) td:nth-child(n + 3) {
  width: 7.5rem;
}

.catalog-table .code {
  display: block;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-top: 0.12rem;
}

.catalog-table .pack {
  color: var(--muted);
}

.catalog-table .price {
  font-weight: 700;
  white-space: nowrap;
}

.catalog-table .rsp {
  color: var(--muted);
  white-space: nowrap;
}

.catalog-empty {
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  padding: 1.2rem 1.2rem 1.3rem;
  max-width: 40rem;
}

.catalog-empty p {
  color: var(--muted);
  max-width: 36rem;
}

.catalog-empty .catalog-note {
  margin: 0;
  border: 0;
  padding: 0;
  background: transparent;
  max-width: none;
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.55rem;
}

.btn-row .btn,
.btn-row .btn-ghost {
  min-height: 42px;
  padding: 0.45rem 0.95rem;
  font-size: 0.9rem;
}

@media (max-width: 520px) {
  .catalog-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.85rem;
  }

  .catalog-head img {
    width: 112px;
    height: 112px;
  }
}

@media (max-width: 900px) {
  .catalog-scroll {
    overflow-x: hidden;
    max-width: 100%;
  }

  .catalog-table {
    min-width: 0;
    width: 100%;
    max-width: 100%;
    font-size: 0.88rem;
  }

  .catalog-table th,
  .catalog-table td {
    padding: 0.5rem 0.42rem;
  }

  .catalog-table th {
    letter-spacing: 0.04em;
  }

  .catalog-table th:nth-child(1),
  .catalog-table td:nth-child(1),
  .catalog-table th:nth-child(2),
  .catalog-table td:nth-child(2),
  .catalog-table th:nth-child(n + 3),
  .catalog-table td:nth-child(n + 3),
  .catalog-table:has(th:nth-child(4)) th:nth-child(2),
  .catalog-table:has(th:nth-child(4)) td:nth-child(2),
  .catalog-table:has(th:nth-child(4)) th:nth-child(n + 3),
  .catalog-table:has(th:nth-child(4)) td:nth-child(n + 3) {
    position: static;
    left: auto;
    z-index: auto;
    box-shadow: none;
  }

  .catalog-table th:nth-child(1),
  .catalog-table td:nth-child(1) {
    width: auto;
  }

  .catalog-table th:nth-child(2),
  .catalog-table td:nth-child(2) {
    width: 26%;
  }

  .catalog-table th:nth-child(n + 3),
  .catalog-table td:nth-child(n + 3) {
    width: 5.4rem;
  }

  .catalog-table .pack {
    white-space: normal;
    overflow-wrap: break-word;
  }

  .catalog-table th:nth-child(3):last-child {
    font-size: 0;
    letter-spacing: 0;
  }

  .catalog-table th:nth-child(3):last-child::after {
    content: "Price";
    font-size: 0.68rem;
    letter-spacing: 0.06em;
    line-height: 1.3;
  }
}

@media (max-width: 600px) {
  .catalog-table {
    display: block;
    position: relative;
  }

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

  .catalog-table tbody {
    display: block;
    width: 100%;
  }

  .catalog-table tbody tr {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    grid-template-areas:
      "name price"
      "pack price";
    column-gap: 0.8rem;
    row-gap: 0.1rem;
    align-items: baseline;
    padding: 0.7rem 0.75rem;
    border-bottom: 1px solid var(--line);
  }

  .catalog-table tbody tr:last-child {
    border-bottom: none;
  }

  .catalog-table td,
  .catalog-table th:nth-child(1),
  .catalog-table td:nth-child(1),
  .catalog-table th:nth-child(2),
  .catalog-table td:nth-child(2),
  .catalog-table th:nth-child(n + 3),
  .catalog-table td:nth-child(n + 3),
  .catalog-table:has(th:nth-child(4)) th:nth-child(2),
  .catalog-table:has(th:nth-child(4)) td:nth-child(2),
  .catalog-table:has(th:nth-child(4)) th:nth-child(n + 3),
  .catalog-table:has(th:nth-child(4)) td:nth-child(n + 3) {
    display: block;
    width: auto;
    max-width: none;
    padding: 0;
    border: none;
    background: transparent;
    text-align: left;
  }

  .catalog-table td:nth-child(1) {
    grid-area: name;
    min-width: 0;
  }

  .catalog-table td:nth-child(2) {
    grid-area: pack;
  }

  .catalog-table td:nth-child(3) {
    grid-area: price;
    text-align: right;
    align-self: center;
  }

  .catalog-table:has(th:nth-child(4)) tbody tr {
    grid-template-areas:
      "name list"
      "pack rsp";
  }

  .catalog-table:has(th:nth-child(4)) td:nth-child(3),
  .catalog-table:has(th:nth-child(4)) td:nth-child(4) {
    display: grid;
    grid-template-columns: 2.4rem auto;
    justify-content: end;
    align-items: baseline;
    column-gap: 0.35rem;
    text-align: right;
  }

  .catalog-table:has(th:nth-child(4)) td:nth-child(3) {
    grid-area: list;
    align-self: end;
  }

  .catalog-table:has(th:nth-child(4)) td:nth-child(4) {
    grid-area: rsp;
    align-self: start;
  }

  .catalog-table:has(th:nth-child(4)) td.price::before,
  .catalog-table:has(th:nth-child(4)) td.rsp::before {
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--muted);
  }

  .catalog-table:has(th:nth-child(4)) td.price::before {
    content: "List";
  }

  .catalog-table:has(th:nth-child(4)) td.rsp::before {
    content: "RSP";
  }
}

.login-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  background: linear-gradient(180deg, #f3f1f0 0%, #fafafa 38%, #ffffff 100%);
}

.login-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.25rem;
}

.login-card {
  width: 100%;
  max-width: 28.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-left: 4px solid var(--red);
  padding: 2.15rem 1.7rem 1.9rem;
  box-shadow: 0 18px 50px rgb(23 23 23 / 0.06);
}

.login-brand {
  display: flex;
  justify-content: center;
}

.login-brand a {
  display: inline-flex;
}

.login-brand img {
  display: block;
  height: 64px;
  width: auto;
  max-width: 98px;
  object-fit: contain;
}

.login-eyebrow {
  margin: 1.15rem 0 0.35rem;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
}

.login-card h1 {
  margin: 0;
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-weight: 800;
  font-size: clamp(1.7rem, 5vw, 2.2rem);
  letter-spacing: 0.04em;
  line-height: 0.95;
  text-transform: uppercase;
  text-align: center;
  max-width: none;
}

.login-kicker {
  margin: 0.45rem 0 0;
  text-align: center;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--muted);
}

.login-lead {
  margin: 0.85rem 0 1.4rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.94rem;
  line-height: 1.45;
}

.login-card .field {
  display: block;
  width: 100%;
  min-height: 50px;
  margin: 0.4rem 0 1rem;
  border: 1px solid var(--line);
  background: #fff;
  padding: 0.7rem 0.9rem;
  font: inherit;
}

.login-card .field:focus {
  outline: none;
  border-color: var(--ink);
}

.login-card label {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.login-card form > .btn {
  width: 100%;
  margin-top: 0.2rem;
}

.login-contacts {
  margin-top: 1.6rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
}

.login-contacts-kicker {
  margin: 0;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-align: center;
}

.login-contacts-lead {
  margin: 0.4rem 0 0.95rem;
  text-align: center;
  color: var(--muted);
  font-size: 0.88rem;
}

.login-contact {
  padding: 0.95rem 1rem 1.05rem;
  border: 1px solid var(--line);
  background: var(--mist);
}

.login-contact + .login-contact {
  margin-top: 0.7rem;
}

.login-contact-name {
  margin: 0;
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.login-contact-phone {
  display: inline-block;
  margin: 0.15rem 0 0.7rem;
  color: var(--muted);
  font-weight: 700;
  text-decoration: none;
}

.login-contact-phone:hover {
  color: var(--red);
}

.login-contact-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem;
}

.login-contact-actions .btn,
.login-contact-actions .btn-ink {
  min-height: 42px;
  padding: 0.45rem 0.7rem;
  font-size: 0.84rem;
  color: #fff;
}

.login-contact-actions .btn:hover {
  background: #c10500;
}

.login-contact-actions .btn-ink:hover {
  background: #000;
}

.login-help {
  margin-top: 1.45rem;
  font-size: 0.875rem;
  color: var(--muted);
  text-align: center;
}

.login-help a {
  color: var(--red);
  font-weight: 700;
}

.login-error {
  margin: 0 0 1rem;
  color: var(--red);
  font-weight: 700;
  text-align: center;
  font-size: 0.92rem;
}

.login-ok {
  margin: 0 0 1rem;
  color: var(--ink);
  font-weight: 700;
  text-align: center;
  font-size: 0.92rem;
}

.login-foot {
  border-top: 1px solid var(--line);
  padding: 1rem 1.25rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
}

.live-notices {
  position: relative;
  z-index: 5;
  background: #171717;
  border-bottom: 4px solid var(--red);
  padding: 0;
}

.live-specials-rail {
  display: flex;
  align-items: stretch;
  height: 46px;
  overflow: hidden;
  background: #e10600;
  color: #fff;
}

.live-specials-stamp {
  flex: 0 0 auto;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 0 1.15rem;
  background: #111;
  color: #fff;
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  line-height: 1;
  text-transform: uppercase;
  animation: specials-stamp 1.8s ease-in-out infinite;
}

.live-specials-window {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
  -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 1.6rem, #000 calc(100% - 1.4rem), transparent);
  mask-image: linear-gradient(90deg, transparent 0, #000 1.6rem, #000 calc(100% - 1.4rem), transparent);
}

.live-specials-track {
  display: flex;
  width: max-content;
  align-items: center;
  margin: 0;
  will-change: transform;
  animation: specials-ticker 24s linear infinite;
}

.live-specials-track span {
  flex: 0 0 auto;
  padding-right: 3.2rem;
  white-space: nowrap;
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-size: 1.22rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.live-specials-row {
  display: grid;
  grid-template-columns: 1fr;
}

.live-specials-row:has(> article:nth-child(2)) {
  grid-template-columns: 1fr 1fr;
}

.live-specials-row > article + article {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
}

.live-notices > article,
.live-specials-row > article {
  display: grid;
  grid-template-columns: 1fr;
  height: 168px;
  min-height: 0;
  overflow: hidden;
  align-items: stretch;
  border: 0;
  padding: 0;
  background: #171717;
  color: #fff;
}

.live-notices > article:has(.live-notice-photos),
.live-specials-row > article:has(.live-notice-photos) {
  grid-template-columns: 168px 1fr;
}

.live-notices > article .live-notice-photos,
.live-specials-row > article .live-notice-photos {
  position: relative;
  width: 168px;
  height: 168px;
  overflow: hidden;
  background: #111;
}

.live-notices > article .live-notice-photos img,
.live-specials-row > article .live-notice-photos img {
  display: block;
  width: 168px;
  height: 168px;
  object-fit: cover;
}

.live-notices > article .live-notice-copy,
.live-specials-row > article .live-notice-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.7rem 1.4rem;
}

.live-notice-kicker {
  margin: 0 0 0.35rem;
  width: fit-content;
  padding: 0.18rem 0.5rem;
  background: var(--red);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: specials-flash 1.2s steps(1, end) infinite;
}

.live-notices > article .live-notice-title,
.live-specials-row > article .live-notice-title {
  display: block;
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-size: clamp(1.8rem, 3.4vw, 2.8rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}

.live-notices > article .live-notice-offer,
.live-specials-row > article .live-notice-offer {
  margin: 0.2rem 0 0;
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-size: clamp(1.25rem, 2.4vw, 1.85rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red);
  animation: specials-offer 1.2s steps(1, end) infinite;
}

@keyframes specials-flash {
  0%,
  49% {
    background: #e10600;
    color: #fff;
  }
  50%,
  100% {
    background: #171717;
    color: #e10600;
  }
}

@keyframes specials-stamp {
  0%,
  100% {
    background: #111;
    color: #fff;
  }
  50% {
    background: #e10600;
    color: #fff;
  }
}

@keyframes specials-offer {
  0%,
  49% {
    color: #e10600;
  }
  50%,
  100% {
    color: #fff;
  }
}

@keyframes specials-ticker {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .live-specials-stamp,
  .live-specials-track,
  .live-notice-kicker,
  .live-notices > article .live-notice-offer,
  .live-specials-row > article .live-notice-offer {
    animation: none;
  }
}

.live-notice-lock {
  overflow: hidden;
}

.live-notice-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 1.25rem;
  background: rgba(10, 10, 10, 0.72);
}

.live-notice-modal article {
  width: min(30rem, 100%);
  display: grid;
  grid-template-columns: 1fr;
  height: auto;
  min-height: 0;
  padding: 0 0 1.2rem;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.45);
  background: #171717;
  color: #fff;
}

.live-notice-modal .live-notice-photos {
  width: 100%;
  height: 220px;
}

.live-notice-modal .live-notice-photos img {
  display: block;
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.live-notice-modal .live-notice-copy {
  padding: 1.15rem 1.25rem 0;
}

.live-notice-modal .live-notice-kicker {
  margin: 0 0 0.45rem;
  width: fit-content;
  padding: 0.22rem 0.55rem;
  background: var(--red);
  color: #fff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.live-notice-modal .live-notice-title {
  display: block;
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-size: clamp(2.2rem, 8vw, 3.2rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
}

.live-notice-modal .live-notice-offer {
  margin: 0.35rem 0 0;
  font-family: "Barlow Condensed", Barlow, sans-serif;
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--red);
}

.live-notice-modal .btn {
  margin: 1.1rem 1.25rem 0;
  width: calc(100% - 2.5rem);
}

@media (max-width: 900px) {
  .live-specials-row:has(> article:nth-child(2)) {
    grid-template-columns: 1fr;
  }

  .live-specials-row > article + article {
    border-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
  }
}

@media (max-width: 700px) {
  .live-specials-row > article:has(.live-notice-photos) {
    grid-template-columns: 112px 1fr;
    height: 112px;
  }

  .live-specials-row > article .live-notice-photos,
  .live-specials-row > article .live-notice-photos img {
    width: 112px;
    height: 112px;
  }

  .live-specials-row > article .live-notice-copy {
    padding: 0.55rem 0.9rem;
  }
}

.catalog-table .live-thumb {
  width: 48px;
  height: 48px;
  object-fit: cover;
  margin-right: 0.6rem;
  vertical-align: middle;
}
