:root {
  --black: #050505;
  --white: #ffffff;
  --text: #111111;
  --muted: #616161;
  --line: #d9d9d9;
  --light: #f3f3f3;
  --promo-blue: #001a70;
  --product-bg: #e8e6e7;
  --max-page: 1180px;
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  background: #efefef;
  color: var(--text);
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  letter-spacing: 0;
  scroll-behavior: smooth;
}

body {
  width: min(var(--max-page), 100%);
  min-height: 100vh;
  margin: 0;
  margin-right: auto;
  margin-left: auto;
  background: var(--white);
}

body.is-locked {
  overflow: hidden;
}

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

img,
picture {
  display: block;
}

img {
  max-width: 100%;
}

button,
input {
  font: inherit;
}

button {
  letter-spacing: 0;
}

.usp {
  position: relative;
  z-index: 40;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 40px;
  align-items: center;
  min-height: 33px;
  background: var(--promo-blue);
  color: var(--white);
}

.usp__message {
  display: none;
  min-width: 0;
  padding: 8px 12px;
  text-align: center;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.usp__message.is-active {
  display: block;
}

.usp__arrow {
  width: 40px;
  height: 33px;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-size: 26px;
  line-height: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 35;
  background: var(--black);
  color: var(--white);
}

.site-header__bar {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  min-height: 64px;
  padding: 0 24px;
}

.site-header__logo {
  display: inline-flex;
  align-items: center;
}

.site-header__logo img {
  width: 104px;
  height: auto;
  filter: invert(1);
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 34px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.desktop-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 64px;
  border-bottom: 3px solid transparent;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  border-bottom-color: var(--white);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.icon-button {
  display: inline-grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
}

.icon-button svg,
.icon-button img {
  width: 22px;
  height: 22px;
  fill: currentColor;
  object-fit: contain;
}

.icon-button img {
  filter: invert(1);
}

.icon-button--dark {
  color: var(--black);
}

.search-panel {
  position: fixed;
  top: 33px;
  right: auto;
  left: 50%;
  z-index: 50;
  width: min(var(--max-page), 100vw);
  transform: translateX(-50%);
  border-bottom: 1px solid var(--line);
  background: var(--white);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.18);
}

.search-panel__form {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 32px 42px;
  align-items: center;
  gap: 12px;
  max-width: var(--max-page);
  min-height: 70px;
  margin: 0 auto;
  padding: 0 24px;
}

.search-panel__form svg {
  width: 22px;
  height: 22px;
}

.search-panel__form input {
  width: 100%;
  min-width: 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  outline: 0;
  font-size: 18px;
}

.search-panel__results,
.search-panel__recent {
  max-width: var(--max-page);
  margin: 0 auto;
  padding: 0 24px 16px;
}

.search-panel__results:empty {
  display: none;
}

.search-panel__section-title,
.search-panel__recent-head p {
  margin: 0 0 10px;
  padding: 0 0 10px;
  border-bottom: 1px solid var(--line);
  color: var(--black);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.search-panel__list,
.search-panel__recent ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.search-panel__list li,
.search-panel__recent li {
  border-bottom: 1px solid #f0f0f0;
}

.search-panel__list li:last-child,
.search-panel__recent li:last-child {
  border-bottom: 0;
}

.search-result {
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
  padding: 10px 0;
  color: var(--black);
  text-decoration: none;
}

.search-result img {
  display: block;
  width: 58px;
  height: 58px;
  border: 1px solid #ececec;
  background: #f6f6f6;
  object-fit: contain;
  padding: 3px;
}

.search-result__meta {
  min-width: 0;
}

.search-result__meta span {
  display: block;
  color: #666;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.45;
  text-transform: uppercase;
}

.search-result__meta strong {
  display: block;
  margin-bottom: 2px;
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
}

.search-result__meta em {
  display: block;
  margin-top: 3px;
  color: var(--black);
  font-size: 12px;
  font-style: normal;
  font-weight: 700;
  line-height: 1.45;
}

.search-panel__empty {
  padding: 4px 0 12px;
  color: #666;
  font-size: 12px;
  line-height: 1.5;
}

.search-panel__recent-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.search-panel__recent-head button {
  border: 0;
  background: transparent;
  color: #666;
  cursor: pointer;
  padding: 0 0 10px;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.4;
  text-transform: uppercase;
}

.search-panel__recent a {
  display: block;
  padding: 10px 0;
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.45;
  text-decoration: none;
}

.drawer {
  position: fixed;
  top: 0;
  right: auto;
  bottom: 0;
  left: 50%;
  z-index: 60;
  width: min(var(--max-page), 100vw);
  transform: translateX(-50%);
}

.drawer__scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}

.drawer__panel {
  position: relative;
  width: min(410px, 88vw);
  height: 100%;
  overflow-y: auto;
  background: var(--black);
  color: var(--white);
  box-shadow: 16px 0 45px rgba(0, 0, 0, 0.35);
}

.drawer__top {
  position: sticky;
  top: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 18px;
  background: var(--black);
  border-bottom: 1px solid #242424;
}

.drawer__top img {
  width: 102px;
  filter: invert(1);
}

.drawer details {
  border-bottom: 1px solid #242424;
}

.drawer summary {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 54px;
  padding: 0 20px;
  cursor: pointer;
  list-style: none;
  font-weight: 800;
  text-transform: uppercase;
}

.drawer summary::-webkit-details-marker {
  display: none;
}

.drawer summary::after {
  content: "+";
  margin-left: auto;
  font-size: 22px;
  font-weight: 400;
}

.drawer details[open] summary::after {
  content: "-";
}

.drawer details a,
.drawer details button {
  display: block;
  width: 100%;
  padding: 13px 28px;
  border-top: 1px solid #171717;
  border-right: 0;
  border-bottom: 0;
  border-left: 0;
  background: #101010;
  color: #f3f3f3;
  cursor: pointer;
  font-size: 13px;
  text-align: left;
}

.drawer__footer {
  display: grid;
  gap: 1px;
  padding: 16px 20px 28px;
  background: #101010;
}

.drawer__footer a,
.drawer__footer button {
  padding: 12px 0;
  border: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
}

main {
  overflow: hidden;
}

.main-banner {
  width: 100%;
}

.main-banner a,
.main-banner picture,
.main-banner img {
  width: 100%;
}

.main-banner img {
  aspect-ratio: 2868 / 1080;
  object-fit: cover;
}

.main-banner--thin {
  margin-top: 24px;
}

.main-banner--thin img {
  aspect-ratio: 2460 / 300;
}

.product-spotlight,
.brand-spotlight {
  width: 100%;
  padding: 30px 0 18px;
}

.section-heading {
  max-width: var(--max-page);
  margin: 0 auto 18px;
  padding: 0 24px;
}

.section-heading h1,
.brand-spotlight__title {
  display: block;
  margin: 0;
  text-align: center;
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.carousel-wrap {
  position: relative;
  max-width: var(--max-page);
  margin: 0 auto;
}

.product-row,
.brand-row {
  display: grid;
  grid-auto-flow: column;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.product-row::-webkit-scrollbar,
.brand-row::-webkit-scrollbar {
  display: none;
}

.product-row {
  grid-auto-columns: 220px;
  gap: 16px;
  padding: 0 24px 8px;
}

.product-card {
  scroll-snap-align: start;
  display: grid;
  grid-template-rows: auto auto auto auto;
  min-width: 0;
  color: var(--black);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--product-bg);
}

.product-card__brand {
  margin-top: 11px;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.25;
}

.product-card__title {
  min-height: 38px;
  margin-top: 2px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.25;
}

.product-card__price {
  margin-top: 7px;
  font-size: 14px;
  font-weight: 700;
}

.carousel-arrow {
  position: absolute;
  top: 0;
  z-index: 4;
  display: grid;
  width: 38px;
  height: min(220px, 100%);
  place-items: center;
  border: 0;
  background: rgba(150, 150, 150, 0.55);
  color: var(--white);
  cursor: pointer;
  font-size: 38px;
  line-height: 1;
}

.carousel-arrow--left {
  left: 0;
}

.carousel-arrow--right {
  right: 0;
}

.carousel-arrow--dark {
  background: var(--white);
  color: var(--black);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin: 10px 0 0;
}

.pagination span {
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: #d0d0d0;
}

.pagination .is-active {
  background: var(--black);
}

.spot-list {
  display: grid;
  width: min(var(--max-page), calc(100% - 48px));
  margin: 22px auto 0;
  padding: 0;
  gap: 16px;
}

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

.spot-list--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: 34px;
}

.spot-card {
  display: block;
  min-width: 0;
  text-align: center;
}

.spot-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.spot-card strong {
  display: block;
  padding: 12px 6px 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.spot-card--large-title strong {
  font-size: 30px;
}

.brand-spotlight {
  padding-top: 40px;
}

.brand-spotlight__title {
  margin-bottom: 18px;
}

.brand-row {
  grid-auto-columns: 192px;
  max-width: 80vw;
  margin: 0 auto;
}

.brand-row a {
  scroll-snap-align: start;
  display: grid;
  width: 192px;
  aspect-ratio: 1;
  place-items: center;
}

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

.brand-spotlight .carousel-arrow {
  height: 192px;
}

.site-footer {
  margin-top: 34px;
  background: #0a0a0a;
  color: var(--white);
  text-align: center;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0 18px;
  max-width: 980px;
  margin: 0 auto;
  padding: 26px 24px 14px;
}

.footer-links a {
  padding: 7px 0;
  color: #e6e6e6;
  font-size: 12px;
}

.footer-links button {
  border: 0;
  background: transparent;
  color: #e6e6e6;
  cursor: pointer;
  padding: 7px 0;
  font-size: 12px;
}

.footer-trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  padding: 4px 24px 12px;
}

.footer-trust span {
  min-width: 72px;
  border: 1px solid #525252;
  border-radius: 4px;
  padding: 7px 10px;
  color: #f4f4f4;
  font-size: 11px;
  font-weight: 800;
}

.copyright {
  padding: 14px 24px 18px;
  border-top: 1px solid #2b2b2b;
  color: #cfcfcf;
  font-size: 12px;
}

.utility-panel {
  position: fixed;
  top: 0;
  right: auto;
  bottom: 0;
  left: 50%;
  z-index: 70;
  width: min(var(--max-page), 100vw);
  transform: translateX(-50%);
}

.utility-panel__scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.utility-panel__sheet {
  position: absolute;
  top: 0;
  right: 0;
  display: grid;
  align-content: start;
  gap: 22px;
  width: min(430px, 92vw);
  height: 100%;
  overflow-y: auto;
  background: var(--white);
  color: var(--black);
  box-shadow: -18px 0 45px rgba(0, 0, 0, 0.24);
}

.utility-panel__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 64px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
}

.utility-panel__head h2 {
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  text-transform: uppercase;
}

.account-form {
  display: grid;
  gap: 16px;
  padding: 0 20px;
}

.account-form label {
  display: grid;
  gap: 7px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.account-form input {
  width: 100%;
  border: 1px solid var(--line);
  padding: 12px;
  outline: 0;
  font-size: 15px;
  font-weight: 400;
  text-transform: none;
}

.account-form button,
.empty-state a,
.cookie-banner__actions button,
.cookie-modal__actions button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--white);
  cursor: pointer;
  padding: 0 16px;
  font-weight: 800;
  text-transform: uppercase;
}

.utility-links {
  display: grid;
  gap: 1px;
  padding: 0 20px 28px;
}

.utility-links a {
  border-top: 1px solid var(--line);
  padding: 14px 0;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
}

.empty-state {
  display: grid;
  justify-items: center;
  gap: 14px;
  padding: 48px 28px;
  text-align: center;
}

.empty-state strong {
  font-size: 20px;
  font-weight: 800;
  text-transform: uppercase;
}

.empty-state p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}

.cookie-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  width: min(820px, calc(100vw - 36px));
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--black);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.22);
  padding: 18px;
}

.cookie-banner strong {
  display: block;
  margin-bottom: 4px;
  font-size: 16px;
  font-weight: 800;
}

.cookie-banner p {
  margin: 0;
  color: #333333;
  font-size: 13px;
  line-height: 1.4;
}

.cookie-banner__actions,
.cookie-modal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  justify-content: flex-end;
}

.cookie-banner__actions button:first-child,
.cookie-banner__actions button:nth-child(2),
.cookie-modal__actions button:first-child,
.cookie-modal__actions button:nth-child(2) {
  background: var(--white);
  color: var(--black);
}

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  background: rgba(0, 0, 0, 0.58);
  padding: 18px;
}

.cookie-modal__box {
  width: min(680px, 100%);
  max-height: calc(100vh - 36px);
  overflow-y: auto;
  background: var(--white);
  color: var(--black);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.28);
}

.cookie-modal__box > p {
  margin: 0;
  padding: 18px 20px;
  color: #333333;
  font-size: 14px;
  line-height: 1.45;
}

.cookie-options {
  display: grid;
  border-top: 1px solid var(--line);
}

.cookie-options label {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) auto;
  align-items: center;
  gap: 9px;
  min-height: 54px;
  padding: 0 20px;
  border-bottom: 1px solid var(--line);
  font-weight: 800;
  text-transform: uppercase;
}

.cookie-options span {
  color: var(--muted);
  font-size: 12px;
}

.cookie-modal__actions {
  padding: 18px 20px 20px;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: 22px;
  z-index: 100;
  transform: translateX(-50%);
  max-width: min(420px, calc(100vw - 32px));
  background: var(--black);
  color: var(--white);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 700;
  text-align: center;
}

@media (max-width: 920px) {
  .site-header__bar {
    grid-template-columns: auto auto;
  }

  .desktop-nav {
    display: none;
  }

  .site-header__actions {
    justify-content: flex-end;
  }

  .icon-button--desktop {
    display: none;
  }

  .spot-list--three,
  .spot-list--two {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 22px;
    margin-top: 18px;
  }

  .spot-card strong,
  .spot-card--large-title strong {
    padding-top: 10px;
    font-size: 20px;
  }
}

@media (max-width: 765px) {
  html,
  body {
    background: var(--white);
  }

  body {
    width: 100%;
  }

  .site-header__bar {
    min-height: 58px;
    padding: 0 12px;
  }

  .site-header__logo img {
    width: 94px;
  }

  .site-header__actions {
    gap: 2px;
  }

  .icon-button {
    width: 34px;
    height: 34px;
  }

  .main-banner img {
    aspect-ratio: 1;
  }

  .main-banner--thin {
    margin-top: 18px;
  }

  .main-banner--thin img {
    aspect-ratio: 1890 / 789;
  }

  .product-spotlight,
  .brand-spotlight {
    padding-top: 26px;
  }

  .section-heading {
    margin-bottom: 14px;
    padding: 0 12px;
  }

  .section-heading h1,
  .brand-spotlight__title {
    font-size: 20px;
  }

  .product-row {
    grid-auto-columns: calc((100vw - 32px) / 2.5);
    gap: 8px;
    padding: 0 8px 4px;
  }

  .product-card__brand,
  .product-card__title,
  .product-card__price {
    font-size: 12px;
  }

  .product-card__title {
    min-height: 34px;
  }

  .carousel-arrow {
    display: none;
  }

  .spot-card img {
    aspect-ratio: 200 / 165;
  }

  .brand-row {
    grid-auto-columns: calc(100vw / 3);
    max-width: 100vw;
  }

  .brand-row a {
    width: calc(100vw / 3);
  }

  .utility-panel__sheet {
    width: min(390px, 94vw);
  }

  .cookie-banner {
    right: 10px;
    bottom: 10px;
    grid-template-columns: 1fr;
    width: calc(100vw - 20px);
    padding: 14px;
  }

  .cookie-banner__actions,
  .cookie-modal__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .cookie-banner__actions button,
  .cookie-modal__actions button {
    width: 100%;
  }

  .cookie-options label {
    grid-template-columns: 22px minmax(0, 1fr);
    gap: 8px;
    padding: 13px 16px;
  }

  .cookie-options span {
    grid-column: 2;
  }
}

@media (max-width: 420px) {
  .usp {
    grid-template-columns: 32px minmax(0, 1fr) 32px;
  }

  .usp__arrow {
    width: 32px;
  }

  .site-header__logo img {
    width: 86px;
  }

  .product-row {
    grid-auto-columns: calc((100vw - 24px) / 2.2);
  }
}
