:root {
  --za-graphite: #071a38;
  --za-paper: #eef3f9;
  --za-tag: #f7faff;
  --za-ink: #071a38;
  --za-muted: #3d4a63;
  --za-blue: #0073cf;
  --za-cyan: #3ba8e8;
  --za-amber: #0073cf;
  --za-spec: #0056a8;
  --za-used: #c9a227;
  --za-line: #c5d4e8;
  --za-wa: #128c7e;
  --za-font-display: "Barlow Condensed", sans-serif;
  --za-font-body: "Source Sans 3", sans-serif;
  --za-max: 1280px;
  --za-radius: 2px;
  --z-dropdown: 20;
  --z-sticky: 40;
  --z-bar: 50;
  --z-nav: 60;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--za-paper);
  color: var(--za-ink);
  font-family: var(--za-font-body);
  font-size: 16px;
  line-height: 1.55;
  min-height: 100dvh;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--za-spec);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--za-amber);
}

:focus-visible {
  outline: 2px solid var(--za-amber);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 12px;
  top: -40px;
  z-index: 100;
  background: var(--za-amber);
  color: #fff;
  padding: 8px 12px;
}

.skip-link:focus {
  top: 12px;
}

.wrap {
  width: min(100% - 32px, var(--za-max));
  margin-inline: auto;
}

h1,
h2,
h3,
.display {
  font-family: var(--za-font-display);
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 0.95;
  text-wrap: balance;
  margin: 0;
}

h1 {
  font-size: clamp(2.25rem, 6vw, 4rem);
  text-transform: uppercase;
}

h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  text-transform: uppercase;
}

h3 {
  font-size: 1.35rem;
  text-transform: uppercase;
}

p {
  max-width: 68ch;
}

/* Header ticket */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-nav);
  background: var(--za-graphite);
  color: #f7faff;
}

.site-header a {
  color: inherit;
  text-decoration: none;
}

.header-ticket {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 0;
}

.wordmark {
  display: flex;
  align-items: center;
  gap: 10px;
  line-height: 1;
  text-transform: none;
}

.wordmark__logo {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  flex-shrink: 0;
}

.wordmark__name {
  font-family: var(--za-font-display);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #f7faff;
}

.wordmark__place {
  display: none;
  font-family: var(--za-font-body);
  font-size: 0.75rem;
  letter-spacing: 0.04em;
  color: #c5d4e8;
}

.search-ticket {
  flex: 1;
  display: none;
  position: relative;
}

.search-ticket input {
  width: 100%;
  height: 48px;
  border: 1px solid #1c3a6e;
  background: #fff;
  color: var(--za-ink);
  padding: 0 108px 0 14px;
  font: inherit;
  border-radius: var(--za-radius);
}

.search-ticket input::placeholder {
  color: #6b778c;
}

.search-ticket__go {
  position: absolute;
  right: 4px;
  top: 4px;
  height: 40px;
  padding: 0 14px;
  border: 0;
  background: var(--za-blue);
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--za-font-display);
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.search-ticket__go:hover {
  background: var(--za-spec);
}

.header-actions {
  display: flex;
  gap: 8px;
  margin-left: auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 0 16px;
  border-radius: var(--za-radius);
  border: 1px solid transparent;
  font-family: var(--za-font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms var(--ease), color 180ms var(--ease), border-color 180ms var(--ease);
}

.btn--amber {
  background: var(--za-amber);
  color: #fff;
}

.btn--amber:hover {
  background: #0056a8;
  color: #fff;
}

.btn--ghost {
  background: transparent;
  border-color: #5b6470;
  color: #f7f8fa;
}

.btn--ghost:hover {
  border-color: #f7f8fa;
  color: #fff;
}

.btn--wa {
  background: var(--za-wa);
  color: #fff;
}

.btn--wa:hover {
  background: #0e7368;
  color: #fff;
}

.btn--full {
  width: 100%;
}

.nav-toggle {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: 1px solid #5b6470;
  color: #f7f8fa;
  cursor: pointer;
}

.shelf-nav {
  border-top: 1px dashed #1c3a6e;
  background: #05142c;
}

.shelf-nav ul {
  display: flex;
  gap: 4px;
  list-style: none;
  margin: 0;
  padding: 8px 0;
  overflow-x: auto;
}

.shelf-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 10px;
  font-family: var(--za-font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.95rem;
  white-space: nowrap;
}

.shelf-nav a:hover,
.shelf-nav .current-menu-item a,
.shelf-nav a[aria-current="page"] {
  color: var(--za-amber);
}

.mobile-panel {
  background: #05142c;
  padding: 12px 16px 20px;
}

.mobile-panel[hidden] {
  display: none;
}

.mobile-panel .search-ticket {
  display: block;
  margin-bottom: 12px;
}

.mobile-panel ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-panel a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid #2a3038;
  font-family: var(--za-font-display);
  text-transform: uppercase;
  color: #f7f8fa;
  text-decoration: none;
}

/* Hero */
.hero {
  background: var(--za-graphite);
  color: #f7f8fa;
  padding: clamp(40px, 8vw, 88px) 0 48px;
  position: relative;
  overflow: hidden;
}

.hero__place {
  font-family: var(--za-font-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--za-amber);
  font-size: 0.95rem;
  margin-bottom: 16px;
}

.hero p {
  color: #d5d9e0;
  font-size: 1.125rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}

.hero__punch {
  position: absolute;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--za-paper);
  top: 24px;
  right: 24px;
  box-shadow: inset 0 0 0 6px var(--za-graphite);
}

/* Category shelf */
.shelf {
  padding: 32px 0 8px;
}

.shelf-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
  gap: 8px;
}

.shelf-label {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 92px;
  padding: 12px;
  background: var(--za-tag);
  border: 1px solid var(--za-line);
  color: var(--za-ink);
  text-decoration: none;
  box-shadow: 2px 2px 0 #d5d9e0;
}

.shelf-label:hover {
  border-color: var(--za-amber);
  color: var(--za-ink);
}

.shelf-label span {
  font-family: var(--za-font-display);
  text-transform: uppercase;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}

.shelf-label small {
  color: var(--za-muted);
}

/* Shop tags */
.section {
  padding: clamp(32px, 6vw, 72px) 0;
}

.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 20px;
}

.tag-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.shop-tag {
  position: relative;
  background: var(--za-tag);
  border: 1px solid var(--za-line);
  padding: 18px 16px 16px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  box-shadow: 3px 3px 0 #d0d4db;
  transition: transform 180ms var(--ease), box-shadow 180ms var(--ease);
}

a.shop-tag:hover,
.shop-tag:hover {
  box-shadow: 4px 6px 0 #c5cad3;
  border-color: var(--za-blue);
  color: inherit;
}

.shop-tag__punch {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 16px;
  height: 16px;
  margin-left: -8px;
  border-radius: 50%;
  background: var(--za-paper);
  box-shadow: inset 0 0 0 1px var(--za-line);
}

.shop-tag__tear {
  border-bottom: 1px dashed var(--za-line);
  margin: 14px -16px 14px;
}

.shop-tag__media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #dfe3e8;
  margin-top: 8px;
}

.shop-tag__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.shop-tag__stamp {
  position: absolute;
  top: 18px;
  right: 12px;
  font-family: var(--za-font-display);
  letter-spacing: 0.12em;
  font-size: 0.8rem;
  border: 2px solid currentColor;
  padding: 2px 8px;
  transform: rotate(8deg);
}

.shop-tag__stamp--new {
  color: var(--za-spec);
}

.shop-tag__stamp--used {
  color: #8a6e12;
}

.shop-tag h3,
.shop-tag .woocommerce-loop-product__title {
  font-size: 1.35rem;
  margin: 0 0 8px;
  text-transform: uppercase;
}

.shop-tag .price,
.shop-tag__price {
  font-family: var(--za-font-display);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--za-amber);
  font-variant-numeric: tabular-nums;
}

.shop-tag__ask {
  font-family: var(--za-font-display);
  font-size: 1.2rem;
  color: var(--za-muted);
  text-transform: uppercase;
}

.pills {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 8px 0 12px;
}

.pill {
  font-size: 0.75rem;
  border: 1px solid var(--za-line);
  padding: 2px 8px;
  color: var(--za-muted);
  font-family: var(--za-font-display);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* Counter ticket */
.counter-ticket {
  background: var(--za-tag);
  border: 1px solid var(--za-line);
  padding: 28px 24px;
  box-shadow: 4px 4px 0 #c5cad3;
}

.counter-ticket dl {
  display: grid;
  gap: 0;
  margin: 16px 0 0;
}

.counter-ticket div {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 12px;
  padding: 12px 0;
  border-top: 1px dashed var(--za-line);
  font-size: 1rem;
}

.counter-ticket dt {
  font-family: var(--za-font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.counter-ticket dd {
  margin: 0;
  color: var(--za-muted);
}

/* Visit */
.visit {
  display: grid;
  gap: 16px;
}

.visit iframe {
  width: 100%;
  min-height: 280px;
  border: 1px solid var(--za-line);
  filter: grayscale(0.35) contrast(1.05);
}

/* Product single */
.product-hero {
  display: grid;
  gap: 24px;
  padding: 32px 0;
}

.product-hero__media {
  background: var(--za-tag);
  border: 1px solid var(--za-line);
}

.product-hero__media img {
  width: 100%;
}

.product-hero .shop-tag__stamp {
  position: static;
  display: inline-block;
  margin-bottom: 12px;
}

.specs {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0 24px;
}

.specs th,
.specs td {
  text-align: left;
  padding: 10px 0;
  border-bottom: 1px dashed var(--za-line);
}

.specs th {
  font-family: var(--za-font-display);
  text-transform: uppercase;
  width: 40%;
  letter-spacing: 0.04em;
}

.woocommerce-notices-wrapper,
.woocommerce-info,
.woocommerce-message,
.cart,
.checkout,
.woocommerce-cart,
.add_to_cart_button,
.single_add_to_cart_button,
.quantity,
.woocommerce-mini-cart,
.wp-block-woocommerce-empty-mini-cart {
  display: none !important;
}

.site-main .woocommerce-notices-wrapper {
  display: none !important;
}

/* Forms */
label {
  display: block;
  font-family: var(--za-font-display);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid var(--za-line);
  background: #fff;
  color: var(--za-ink);
  font: inherit;
  padding: 8px 10px;
  border-radius: var(--za-radius);
  margin-bottom: 16px;
}

textarea {
  min-height: 120px;
}

/* Footer */
.site-footer {
  background: var(--za-graphite);
  color: #d5d9e0;
  padding: 40px 0 96px;
  margin-top: 24px;
}

.site-footer a {
  color: #f7f8fa;
}

.footer-grid {
  display: grid;
  gap: 24px;
}

.site-footer small {
  display: block;
  margin-top: 24px;
  color: #9aa3b2;
}

.phone-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: var(--z-bar);
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--za-graphite);
}

.phone-bar a {
  min-height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-family: var(--za-font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #fff;
}

.phone-bar a:first-child {
  background: var(--za-wa);
}

.phone-bar a:last-child {
  background: var(--za-amber);
}

.page-copy {
  padding: 40px 0 24px;
}

.page-copy p {
  color: var(--za-muted);
  font-size: 1.05rem;
}

.empty {
  padding: 48px 0;
  color: var(--za-muted);
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.filters a {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--za-line);
  background: var(--za-tag);
  color: var(--za-ink);
  text-decoration: none;
  font-family: var(--za-font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.filters a.is-active,
.filters a:hover {
  border-color: var(--za-amber);
}

@media (max-width: 767px) {
  .header-actions .btn {
    display: none;
  }

  .shelf-nav {
    display: none;
  }
}

@media (min-width: 768px) {
  .wordmark__place {
    display: inline;
    margin-left: 8px;
  }

  .search-ticket {
    display: block;
  }

  .nav-toggle {
    display: none;
  }

  .product-hero,
  .visit {
    grid-template-columns: 1.1fr 0.9fr;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 0.8fr 0.8fr 1fr;
  }

  .phone-bar {
    display: none;
  }

  .site-footer {
    padding-bottom: 40px;
  }
}

/* Announcement + retailer home */
.announce {
  background: #05142c;
  color: #c5d4e8;
  font-size: 0.82rem;
  border-bottom: 1px solid #1c3a6e;
}

.announce__row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
}

.announce p {
  margin: 0;
  max-width: none;
}

.announce a {
  color: #fff;
  text-decoration: none;
}

.announce a:hover {
  color: var(--za-cyan);
}

.announce__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
}

.za-ico {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

.hero-stage {
  background: var(--za-graphite);
  padding: 16px 0 20px;
}

.hero-grid {
  display: grid;
  gap: 12px;
}

.hero-slider {
  position: relative;
  min-height: 320px;
  overflow: hidden;
  background: #05142c;
}

.hero-slider__track {
  position: relative;
}

.hero-slide {
  position: relative;
  min-height: 320px;
}

.hero-slide[hidden] {
  display: none;
}

.hero-slide img {
  width: 100%;
  height: min(56vw, 460px);
  min-height: 320px;
  object-fit: cover;
  display: block;
  position: relative;
  z-index: 0;
}

.hero-slide__copy {
  position: absolute;
  inset: 0;
  z-index: 1;
  padding: clamp(16px, 4vw, 36px);
  background: linear-gradient(90deg, rgba(7, 26, 56, 0.94) 0%, rgba(7, 26, 56, 0.82) 38%, rgba(7, 26, 56, 0.35) 68%, rgba(7, 26, 56, 0.12) 100%);
  color: #f7faff;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.hero-slide__copy h1,
.hero-slide__copy h2 {
  font-size: clamp(1.55rem, 3.4vw, 2.6rem);
  max-width: 18ch;
  color: #fff;
}

.hero-slide__copy p {
  color: #d5d9e0;
  max-width: 46ch;
}

.hero-slide__kicker {
  font-family: var(--za-font-display);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--za-cyan);
  font-size: 0.9rem;
  margin: 0 0 8px;
}

.hero-slider__nav {
  position: absolute;
  right: 12px;
  top: 12px;
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 2;
}

.hero-slider__btn {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(7, 26, 56, 0.55);
  color: #fff;
  font-size: 1.4rem;
  cursor: pointer;
}

.hero-slider__btn:hover {
  background: var(--za-blue);
  border-color: var(--za-blue);
}

.hero-slider__dots {
  display: flex;
  gap: 6px;
}

.hero-slider__dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
}

.hero-slider__dots button.is-active {
  background: #fff;
}

.hero-side {
  display: grid;
  gap: 12px;
}

.hero-tile {
  position: relative;
  display: block;
  min-height: 150px;
  overflow: hidden;
  color: #fff;
  text-decoration: none;
}

.hero-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 150px;
}

.hero-tile span {
  position: absolute;
  inset: auto 0 0;
  padding: 14px 16px;
  background: linear-gradient(transparent, rgba(7, 26, 56, 0.92));
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.hero-tile strong {
  font-family: var(--za-font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1.25rem;
}

.hero-tile em {
  font-style: normal;
  font-size: 0.85rem;
  color: #c5d4e8;
}

.hero-tile:hover {
  color: #fff;
}

.hero-tile:hover strong {
  color: var(--za-cyan);
}

.trust {
  background: #fff;
  border-bottom: 1px solid var(--za-line);
}

.trust__grid {
  display: grid;
  gap: 0;
}

.trust__item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 18px 0;
  border-top: 1px solid var(--za-line);
  color: var(--za-blue);
}

.trust__item:first-child {
  border-top: 0;
}

.trust__item strong {
  display: block;
  color: var(--za-ink);
  font-family: var(--za-font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 1rem;
}

.trust__item span {
  display: block;
  color: var(--za-muted);
  font-size: 0.9rem;
  max-width: 42ch;
}

.section-head__more {
  font-family: var(--za-font-display);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-decoration: none;
  color: var(--za-spec);
  white-space: nowrap;
}

.shelf-label__ico {
  color: var(--za-blue);
  margin-bottom: 8px;
}

.shelf-label {
  cursor: pointer;
}

.brands {
  padding: 28px 0;
  background: #fff;
  border-block: 1px solid var(--za-line);
}

.brands__label {
  margin: 0 0 12px;
  font-family: var(--za-font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--za-muted);
  font-size: 0.85rem;
}

.brands__row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.brands__row li {
  font-family: var(--za-font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.05rem;
  padding: 8px 14px;
  border: 1px solid var(--za-line);
  background: var(--za-tag);
  color: var(--za-ink);
}

.buy-steps {
  padding: clamp(32px, 6vw, 64px) 0;
}

.buy-steps h2 {
  margin-bottom: 20px;
}

.buy-steps__grid {
  display: grid;
  gap: 16px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.buy-steps__grid li {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--za-tag);
  border: 1px solid var(--za-line);
  padding: 18px 16px;
}

.buy-steps__n {
  font-family: var(--za-font-display);
  font-size: 1.6rem;
  color: var(--za-blue);
  line-height: 1;
  min-width: 1.4ch;
}

.buy-steps__grid strong {
  display: block;
  font-family: var(--za-font-display);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 4px;
}

.buy-steps__grid p {
  margin: 0;
  color: var(--za-muted);
}

.visit-band {
  padding-top: 0;
}

.shop-tag__ph {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  min-height: 160px;
  background:
    repeating-linear-gradient(-45deg, #e8eef6, #e8eef6 10px, #f4f7fb 10px, #f4f7fb 20px);
  color: var(--za-spec);
  font-family: var(--za-font-display);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 1.2rem;
}

.site-footer h2 {
  font-size: 1.1rem;
  color: #f7faff;
  margin: 0 0 10px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer li {
  margin: 0 0 6px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--za-cyan);
}

.footer-lead {
  color: #c5d4e8;
}

.mobile-panel .search-ticket__go {
  position: static;
  width: 100%;
  margin-top: 8px;
  height: 44px;
  justify-content: center;
}

.mobile-panel .search-ticket input {
  padding-right: 14px;
}

@media (min-width: 900px) {
  .hero-grid {
    grid-template-columns: 1.75fr 0.85fr;
    align-items: stretch;
  }

  .hero-slide,
  .hero-slide img {
    min-height: 460px;
    height: 460px;
  }

  .hero-side {
    grid-template-rows: 1fr 1fr;
  }

  .hero-tile,
  .hero-tile img {
    min-height: 0;
    height: 100%;
  }

  .trust__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
  }

  .trust__item {
    padding: 20px 16px 20px 0;
    border-top: 0;
    border-right: 1px solid var(--za-line);
  }

  .trust__item:last-child {
    border-right: 0;
    padding-right: 0;
  }

  .buy-steps__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .shelf-grid {
    grid-template-columns: repeat(8, 1fr);
  }
}

@media (max-width: 767px) {
  .wordmark__name {
    font-size: 1.05rem;
  }

  .announce__meta span:nth-child(2) {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
