﻿/** Shopify CDN: Minification failed

Line 3691:17 Unterminated string token
Line 3908:17 Unterminated string token

**/
:root {
  --color-bg: #ffffff;
  --color-surface: #f8f8f8;
  --color-text-main: #1a1a1a;
  --color-text-secondary: #757575;
  --color-accent: #000000;
  --color-border: #eeeeee;
  --page-width: 1280px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text-main);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
body.is-locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
button, input { font: inherit; }

.material-symbols-outlined {
  font-variation-settings: "FILL" 0, "wght" 300, "GRAD" 0, "opsz" 24;
  line-height: 1;
}
.material-symbols-outlined.filled {
  font-variation-settings: "FILL" 1, "wght" 300, "GRAD" 0, "opsz" 24;
}
.skip-link {
  position: absolute;
  left: -999px;
  top: 12px;
  z-index: 999;
  background: #fff;
  color: #000;
  padding: 12px 16px;
}
.skip-link:focus { left: 12px; }
.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  padding: 14px 28px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: opacity .2s ease, background .2s ease, color .2s ease;
}
.button:disabled { cursor: not-allowed; opacity: .45; }
.button--dark { background: #000; color: #fff; }
.button--light { background: #fff; color: #000; }
.button--outline { background: transparent; border-color: #000; color: #000; }
.button:hover { opacity: .8; }
.eyebrow {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}

.brand-logo {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(240px, 14.4vw, 280px);
  height: 78px;
  overflow: visible;
  z-index: 2;
}
.brand-logo__image {
  position: absolute;
  left: 50%;
  top: 50%;
  width: clamp(240px, 14.4vw, 280px);
  max-width: none;
  max-height: none;
  height: auto;
  object-fit: contain;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: filter .25s ease, opacity .25s ease;
}
.brand-logo__text {
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 2px;
}
.site-header__menu-toggle { display: none; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(255,255,255,.95);
  border-bottom: 1px solid var(--color-border);
  transition: background .2s ease, border-color .2s ease;
}
.site-header__bar {
  position: relative;
  height: 124px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 40px;
  max-width: calc(var(--page-width) + 160px);
  margin: 0 auto;
}
.site-header__actions {
  position: absolute;
  right: 40px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  gap: 22px;
  z-index: 4;
}
.icon-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  color: var(--color-text-main);
  cursor: pointer;
}
.cart-count {
  position: absolute;
  top: 0;
  right: 0;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
}
.site-header__nav {
  position: relative;
  z-index: 3;
  padding: 0 40px 20px;
}
.site-header__nav-shell {
  max-width: min(1400px, calc(100vw - 80px));
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 2vw, 40px);
  position: relative;
}
.site-nav-item { position: static; }
.site-nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0 14px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  white-space: nowrap;
  color: var(--color-text-main);
  transition: color .2s ease, transform .2s ease, text-shadow .2s ease;
}
.site-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}
.site-nav-item:hover > .site-nav-link,
.site-nav-item:focus-within > .site-nav-link,
.site-nav-link--summer:hover {
  transform: translateY(-2px);
}
.site-nav-item:hover > .site-nav-link::after,
.site-nav-item:focus-within > .site-nav-link::after,
.site-nav-link--summer:hover::after {
  transform: scaleX(1);
}
.site-nav-link--summer { margin-left: 6px; }
.site-nav-link--summer::after {
  background: linear-gradient(90deg, #ffd65c 0%, #ffa62a 55%, #ff6b2d 100%);
}
.site-nav-link__summer-text {
  position: relative;
  z-index: 1;
  font-size: 14px;
  font-weight: 900;
  font-style: italic;
  letter-spacing: 1.9px;
  background: linear-gradient(180deg, #fff8bc 0%, #ffd960 28%, #ffb33a 56%, #ff6b2d 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 6px 18px rgba(255, 149, 46, .2);
}
.site-nav-panel {
  position: absolute;
  left: 50%;
  top: calc(100% - 4px);
  width: min(1220px, calc(100vw - 48px));
  padding: 28px 28px 30px;
  background: rgba(255,255,255,.98);
  border: 1px solid rgba(13, 24, 39, .08);
  border-radius: 0 0 28px 28px;
  box-shadow: 0 28px 60px rgba(11, 18, 34, .18);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -14px);
  transition: opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.site-nav-item:hover > .site-nav-panel,
.site-nav-item:focus-within > .site-nav-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}
.site-nav-panel--simple {
  width: min(420px, calc(100vw - 48px));
}
.site-nav-panel--about {
  width: min(560px, calc(100vw - 48px));
}
.site-nav-panel__inner,
.site-nav-panel__inner--air {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(320px, .96fr);
  gap: 40px;
  align-items: start;
}
.site-nav-panel__eyebrow,
.site-nav-column__title {
  margin: 0 0 16px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #101828;
}
.site-nav-panel__main { min-width: 0; }
.site-nav-list,
.site-nav-simple-links {
  margin: 0;
  padding: 0;
  list-style: none;
}
.site-nav-list li + li,
.site-nav-simple-links li + li {
  margin-top: 12px;
}
.site-nav-list a,
.site-nav-simple-links a,
.site-nav-featured__head a {
  color: #5d6675;
}
.site-nav-list a,
.site-nav-simple-links a {
  font-size: 15px;
  line-height: 1.42;
}
.site-nav-list--products li + li { margin-top: 16px; }
.site-nav-list--products a {
  font-size: 19px;
  font-weight: 800;
  line-height: 1.18;
  letter-spacing: -.02em;
  color: #172033;
}
.site-nav-list--products a:hover {
  color: #0a58ca;
}
.site-nav-list a:hover,
.site-nav-simple-links a:hover,
.site-nav-featured__head a:hover,
.site-nav-social:hover {
  color: #0f1728;
}
.site-nav-featured__head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}
.site-nav-featured__head h3 {
  margin: 0;
  font-size: 26px;
  line-height: 1;
}
.site-nav-featured__head a {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .8px;
  text-transform: uppercase;
}
.site-nav-featured__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px 20px;
}
.site-nav-featured--social .site-nav-featured__head {
  margin-bottom: 18px;
}
.site-nav-product-card {
  display: block;
}
.site-nav-product-card__media {
  aspect-ratio: 1 / 1;
  border-radius: 20px;
  overflow: hidden;
  background: #f6f7fb;
  box-shadow: inset 0 0 0 1px rgba(15, 23, 42, .06);
}
.site-nav-product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.site-nav-product-card__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 2px;
  color: #9aa4b2;
  background: linear-gradient(135deg, #f7f9fc 0%, #edf2f8 100%);
}
.site-nav-product-card__body {
  padding-top: 12px;
}
.site-nav-product-card__title {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.35;
  color: #111827;
}
.site-nav-product-card__text {
  margin: 0;
  font-size: 13px;
  color: #667085;
}
.site-nav-socials {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.site-nav-social {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 84px;
  padding: 18px 16px;
  border-radius: 20px;
  background: #f5f7fb;
  color: #344054;
  font-size: 14px;
  font-weight: 800;
  transition: background .2s ease, color .2s ease, transform .2s ease;
}
.site-nav-social:hover {
  background: #edf2f8;
  transform: translateY(-1px);
}
.site-nav-social svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  flex: none;
}
.mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 180;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
}
.mobile-nav__scrim {
  border: 0;
  background: rgba(0,0,0,.34);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.mobile-nav__panel {
  background: #fff;
  overflow: auto;
  padding: 28px 24px 24px;
}
.mobile-nav__head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}
.mobile-nav__head h2 {
  margin: 8px 0 0;
  font-size: 34px;
  line-height: 1;
}
.mobile-nav__menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.mobile-nav__menu > ul > li + li {
  border-top: 1px solid var(--color-border);
}
.mobile-nav__menu a,
.mobile-nav__menu summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 0;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.mobile-nav__menu details > ul {
  padding: 0 0 12px 14px;
}
.mobile-nav__menu details > ul > li + li {
  border-top: 1px solid rgba(0,0,0,.05);
}
.mobile-nav__menu details > ul a,
.mobile-nav__menu details > ul summary {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .8px;
}
.mobile-nav__menu summary {
  cursor: pointer;
}
.mobile-nav__menu summary::-webkit-details-marker {
  display: none;
}
.mobile-nav__menu summary .material-symbols-outlined {
  font-size: 18px;
  transition: transform .2s ease;
}
.mobile-nav__menu details[open] > summary .material-symbols-outlined {
  transform: rotate(180deg);
}
.mobile-nav__footer {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.mobile-nav__footer a {
  color: var(--color-text-secondary);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.mobile-nav__summer-link {
  justify-content: center !important;
  margin-top: 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff6ad 0%, #ffd45f 28%, #ffb03a 60%, #ff6c2f 100%);
  color: #111827 !important;
  box-shadow: 0 14px 34px rgba(255, 146, 35, .26);
}

body.template-index .site-header {
  position: absolute;
  width: 100%;
  background: transparent;
  border-bottom-color: transparent;
  color: #fff;
}

body.template-index .site-header:hover,
body.template-index .site-header:focus-within {
  background: rgba(255,255,255,.96);
  border-bottom-color: var(--color-border);
  color: var(--color-text-main);
}

body.template-index .site-header .brand-logo__image {
  filter: brightness(0) invert(1);
}

body.template-index .site-header:hover .brand-logo__image,
body.template-index .site-header:focus-within .brand-logo__image {
  filter: none;
}

body.template-index .site-header .icon-button {
  color: #fff;
}

body.template-index .site-header:hover .icon-button,
body.template-index .site-header:focus-within .icon-button {
  color: var(--color-text-main);
}

body.template-index .site-header .cart-count {
  background: #fff;
  color: #000;
}

body.template-index .site-header:hover .cart-count,
body.template-index .site-header:focus-within .cart-count {
  background: #000;
  color: #fff;
}

body.template-index .site-nav-link:not(.site-nav-link--summer) {
  color: rgba(255,255,255,.86);
}

body.template-index .site-header:not(:hover):not(:focus-within) .site-nav-link:not(.site-nav-link--summer),
body.template-index .site-header:not(:hover):not(:focus-within) .icon-button {
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
}

body.template-index .site-header:hover .site-nav-link,
body.template-index .site-header:focus-within .site-nav-link {
  color: var(--color-text-main);
}

body.template-index .site-header:hover .site-nav-link:hover,
body.template-index .site-header:focus-within .site-nav-link:hover {
  color: var(--color-text-main);
}

body.template-index .hero {
  min-height: 100vh;
  aspect-ratio: auto;
}

.hero {
  min-height: calc(100vh - 142px);
  aspect-ratio: 16 / 9;
  position: relative;
  overflow: hidden;
  background: #000;
}
.hero__background {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to top, rgba(0,0,0,.34), rgba(0,0,0,.04), rgba(0,0,0,.16)),
    var(--hero-image, url("https://images.unsplash.com/photo-1556910103-1c02745a872f?q=80&w=2200&auto=format&fit=crop")) center / cover;
  opacity: 1;
}
.hero__video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}
.hero:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.34), rgba(0,0,0,.04), rgba(0,0,0,.16));
  pointer-events: none;
}
.hero__content {
  position: absolute;
  left: clamp(24px, 6vw, 80px);
  bottom: clamp(48px, 8vw, 96px);
  max-width: 620px;
  color: #fff;
  z-index: 1;
  text-shadow: 0 3px 18px rgba(0,0,0,.72);
}
.hero__content .button {
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
  text-shadow: none;
}
.hero h1 {
  margin: 0 0 28px;
  font-size: clamp(46px, 8vw, 88px);
  line-height: 1.02;
  letter-spacing: -1px;
}
.promo-strip {
  padding: 16px 32px;
  display: flex;
  justify-content: center;
  gap: 24px;
  align-items: center;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
  font-size: 13px;
}
.promo-strip a,
.section-heading--split a {
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.category-worlds { padding: 40px; }
.category-worlds__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
  min-height: 450px;
}
.category-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}
.category-card:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  height: 30%;
  display: block;
  background: linear-gradient(to top, rgba(0,0,0,.64), rgba(0,0,0,0));
  pointer-events: none;
}
.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.category-card:hover img { transform: scale(1.05); }
.category-card span {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 2;
  color: rgba(255,255,255,.86);
  font-size: 13px;
  text-shadow: 0 2px 10px rgba(0,0,0,.55);
}
.category-card strong {
  display: block;
  margin-bottom: 6px;
  color: #fff;
  font-size: 14px;
}

.section-heading {
  max-width: var(--page-width);
  margin: 0 auto 42px;
}
.section-heading h2 {
  margin: 0 0 14px;
  font-size: clamp(30px, 5vw, 48px);
  line-height: 1.1;
}
.section-heading p { margin: 0; color: var(--color-text-secondary); }
.section-heading--center { text-align: center; }
.section-heading--split {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
.social-section,
.best-sellers,
.benefits,
.collection-products,
.product-page,
.cart-page,
.search-results,
.favorites-page {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 72px 40px;
}

.social-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}
.social-card {
  display: grid;
  gap: 10px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--color-text-main);
  cursor: pointer;
  text-align: left;
}
.social-card__media {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #eee;
}
.social-card img,
.social-card__video,
.social-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.social-card__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, #d7dce5 0%, #edf1f6 100%);
  color: #6b7280;
}
.social-card__placeholder .material-symbols-outlined {
  font-size: 54px;
}
.social-card:hover img,
.social-card:hover .social-card__video,
.social-card:hover video { transform: scale(1.05); }
.social-card:hover .social-card__placeholder { transform: none; }
.social-card__play {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  font-size: 44px;
  color: #fff;
  text-shadow: 0 6px 18px rgba(0,0,0,.34);
}
.social-card__meta {
  display: grid;
  gap: 4px;
  min-width: 0;
}
.social-card__handle {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .9px;
  text-transform: uppercase;
  color: #111827;
}
.social-card__caption {
  display: -webkit-box;
  overflow: hidden;
  color: var(--color-text-secondary);
  font-size: 12px;
  line-height: 1.45;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.best-sellers {
  background: #fff;
  max-width: none;
  padding-left: max(40px, calc((100vw - var(--page-width)) / 2 + 40px));
  padding-right: max(40px, calc((100vw - var(--page-width)) / 2 + 40px));
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.best-sellers__heading {
  margin-bottom: 24px;
}
.showcase-carousel {
  overflow: hidden;
}
.showcase-carousel__track {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 28px;
}
.showcase-carousel__track::-webkit-scrollbar {
  display: none;
}
.showcase-card {
  position: relative;
  flex: 0 0 min(42vw, 520px);
  aspect-ratio: 1.08 / 1;
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--color-surface);
  color: #111;
}
.showcase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.showcase-card:hover img {
  transform: scale(1.03);
}
.showcase-card__content {
  position: absolute;
  left: 24px;
  top: 24px;
  max-width: 70%;
  z-index: 1;
}
.showcase-card__content h3 {
  margin: 0;
  font-size: clamp(22px, 3vw, 32px);
  line-height: 1.05;
}
.showcase-card__content p {
  margin: 10px 0 0;
  color: #333;
  font-size: 13px;
  line-height: 1.45;
}
.showcase-carousel__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.showcase-carousel__dots {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.showcase-carousel__dots span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #bdbdbd;
}
.showcase-carousel__dots span.is-active {
  width: 10px;
  height: 10px;
  background: #000;
}
.showcase-carousel__controls > div:last-child {
  display: flex;
  gap: 14px;
}
.showcase-carousel__controls button {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  border: 1px solid #111;
  border-radius: 999px;
  background: #fff;
  color: #111;
  cursor: pointer;
}
.showcase-carousel__controls button:hover {
  background: #111;
  color: #fff;
}
.product-grid,
.favorites-grid,
.suggested-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 28px 24px;
}
.suggested-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.product-card {
  position: relative;
  background: #fff;
  border: 1px solid var(--color-border);
  padding: 18px;
}
.product-card__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f0f0f0;
  margin-bottom: 20px;
}
.product-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
  transition: transform .55s ease;
}
.product-card:hover .product-card__image { transform: scale(1.05); }
.product-card__quick {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #000;
  color: #fff;
  padding: 12px;
  text-align: center;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0;
  transform: translateY(8px);
  transition: all .25s ease;
}
.product-card:hover .product-card__quick {
  opacity: 1;
  transform: translateY(0);
}
.product-card__body {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}
.product-card__title {
  margin: 0 0 8px;
  font-size: 15px;
  line-height: 1.3;
}
.product-card__vendor,
.product-card__price,
.product-card s {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 13px;
}
.product-card__price { color: #111; white-space: nowrap; }
.product-card__placeholder {
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 48px;
  font-weight: 800;
  color: #ccc;
}

.benefit-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.benefit-grid > div {
  padding-top: 30px;
  border-top: 1px solid var(--color-border);
}
.benefit-grid .material-symbols-outlined {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #000;
  color: #fff;
  font-size: 32px;
  box-shadow: 0 12px 28px rgba(0,0,0,.16);
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 32;
}
.benefit-grid h3 { margin: 16px 0 12px; font-size: 18px; }
.benefit-grid p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.6;
}

.site-footer {
  padding: 0 40px 36px;
  border-top: 1px solid var(--color-border);
  background: #f5f7fb;
}
.site-footer__subscribe,
.site-footer__grid,
.site-footer__payments,
.site-footer__bottom {
  max-width: var(--page-width);
  margin: 0 auto;
}
.site-footer__subscribe {
  padding: 36px 0 34px;
  text-align: center;
  border-bottom: 1px solid var(--color-border);
}
.site-footer__subscribe h3 {
  margin: 0;
  color: #111;
  font-size: clamp(30px, 4vw, 46px);
  line-height: 1.05;
  letter-spacing: -0.03em;
}
.site-footer__subscribe p {
  margin: 14px auto 0;
  max-width: 620px;
}
.site-footer__social-icons {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}
.site-footer__social-icons a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 7px;
  background: #eceff3;
  color: #111;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.site-footer__social-icons svg,
.site-footer__socials svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.site-footer__social-icons svg path,
.site-footer__socials svg path {
  fill: currentColor;
  stroke: none;
}
.site-footer__social-icons svg rect,
.site-footer__social-icons svg circle,
.site-footer__socials svg rect,
.site-footer__socials svg circle {
  fill: none;
  stroke: currentColor;
}
.site-footer__social-icons .social-icon__cutout,
.site-footer__socials .social-icon__cutout {
  fill: #eceff3;
}
.site-footer__subscribe-form {
  display: flex;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}
.site-footer__subscribe-form input {
  width: min(320px, 100%);
  height: 52px;
  padding: 0 18px;
  border: 1px solid #1d2430;
  background: transparent;
  color: #111;
  outline: 0;
}
.site-footer__subscribe-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 190px;
  height: 52px;
  border: 0;
  background: #202633;
  color: #fff;
  cursor: pointer;
  font-size: 14px;
  font-weight: 800;
}
.site-footer__subscribe-form .material-symbols-outlined {
  font-size: 20px;
}
.site-footer__grid {
  padding-top: 54px;
  display: grid;
  grid-template-columns: 1.3fr repeat(4, minmax(110px, .75fr)) 1.2fr;
  gap: 34px;
}
.site-footer h4 {
  margin: 0 0 22px;
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.site-footer p,
.site-footer a,
.site-footer li {
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.6;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer li + li { margin-top: 10px; }
.site-footer__socials {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.site-footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 7px;
  background: transparent;
  color: #111;
}
.site-footer__socials .social-icon__cutout {
  fill: #f5f7fb;
}
.site-footer__about p {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 14px;
}
.site-footer__about .material-symbols-outlined {
  margin-top: 1px;
  color: #111;
  font-size: 18px;
}
.newsletter-form {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid #000;
  padding-bottom: 8px;
}
.newsletter-form input,
.coupon-form input,
.search-results__form input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #111;
}
.newsletter-form button {
  border: 0;
  background: transparent;
  cursor: pointer;
}
.site-footer__payments {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 42px;
}
.site-footer__payment-icon {
  width: 38px;
  height: 24px;
  border-radius: 4px;
  box-shadow: 0 0 0 1px rgba(17, 24, 39, 0.08);
}
.site-footer__bottom {
  margin-top: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.site-footer__bottom div {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 18px;
}
.site-footer__bottom div a:not(:last-child)::after {
  content: "|";
  margin-left: 18px;
  color: #c4c9d1;
}

.collection-hero {
  position: relative;
  height: 450px;
  overflow: hidden;
}
.collection-hero__image,
.collection-hero__fallback {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #111;
}
.collection-hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.72), rgba(0,0,0,.18));
}
.collection-hero__content {
  position: absolute;
  inset: auto 0 56px;
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 40px;
  color: #fff;
}
.collection-hero h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 72px);
  line-height: 1;
}
.collection-products__head {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 44px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--color-border);
}
.collection-products__head h2 { margin: 0 0 12px; font-size: 28px; }
.collection-products__head p,
.collection-products__head .rte {
  color: var(--color-text-secondary);
  line-height: 1.6;
}
.collection-products__tools {
  display: flex;
  gap: 12px;
  align-items: flex-end;
}
.collection-tool {
  border: 1px solid #ddd;
  background: #fff;
  padding: 10px 16px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}
.collection-tool--button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.collection-tool--button strong {
  min-width: 18px;
  height: 18px;
  border-radius: 999px;
  background: #000;
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
}
.collection-sort-form { margin: 0; }
.collection-sort {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.collection-sort select {
  border: 0;
  padding: 0;
  background: transparent;
  color: #111;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  cursor: pointer;
  appearance: none;
  min-width: 110px;
}
.collection-sort .material-symbols-outlined {
  font-size: 18px;
  pointer-events: none;
}
.collection-active-filters {
  margin-bottom: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.collection-filter-chip,
.collection-filter-reset {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--color-border);
  padding: 10px 14px;
  background: var(--color-surface);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.collection-filter-chip .material-symbols-outlined {
  font-size: 16px;
}
.collection-filter-reset {
  background: #fff;
}
.collection-empty-state {
  grid-column: 1 / -1;
  display: grid;
  gap: 18px;
  place-items: start;
  padding: 32px 0 8px;
}
.pagination {
  margin-top: 44px;
  display: flex;
  justify-content: center;
}
.pagination .page,
.pagination a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--color-border);
  color: #111;
}
.pagination .page.current {
  background: #111;
  color: #fff;
  border-color: #111;
}
.pagination .next,
.pagination .prev {
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
}
.collection-filter-modal {
  position: fixed;
  inset: 0;
  z-index: 220;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 460px);
}
.collection-filter-modal__scrim {
  border: 0;
  background: rgba(0,0,0,.34);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.collection-filter-modal__panel {
  position: relative;
  background: #fff;
  overflow: auto;
  padding: 32px 28px 28px;
}
.collection-filter-modal__head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}
.collection-filter-modal__head h2 {
  margin: 6px 0 0;
  font-size: 34px;
  line-height: 1;
}
.collection-filter-form {
  display: grid;
  gap: 16px;
}
.collection-filter-group {
  border-top: 1px solid var(--color-border);
  padding-top: 16px;
}
.collection-filter-group summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  gap: 16px;
  align-items: center;
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.collection-filter-group summary::-webkit-details-marker {
  display: none;
}
.collection-filter-group summary small {
  color: var(--color-text-secondary);
  font-size: 11px;
}
.collection-filter-options {
  margin-top: 16px;
  display: grid;
  gap: 10px;
}
.collection-filter-option {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px 14px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  font-size: 13px;
}
.collection-filter-option input {
  width: 16px;
  height: 16px;
  margin: 0;
}
.collection-filter-option small {
  color: var(--color-text-secondary);
}
.collection-filter-option.is-disabled {
  opacity: .45;
}
.collection-price-range {
  margin-top: 16px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.collection-price-range label {
  display: grid;
  gap: 8px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
}
.collection-price-range input {
  border: 1px solid var(--color-border);
  padding: 14px 12px;
  background: var(--color-surface);
}
.collection-filter-actions {
  position: sticky;
  bottom: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding-top: 20px;
  background: #fff;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 40px;
  color: var(--color-text-secondary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.breadcrumbs .material-symbols-outlined { font-size: 14px; }
.product-layout {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 64px;
}
.product-media__main {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f0f0f0;
}
.product-media__image,
.product-media__placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: multiply;
}
.product-media__placeholder {
  display: grid;
  place-items: center;
  color: #999;
}
.product-thumbs {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(9, 1fr);
  gap: 8px;
}
.product-thumb {
  aspect-ratio: 1;
  padding: 0;
  border: 1px solid var(--color-border);
  background: #f0f0f0;
  cursor: pointer;
  overflow: hidden;
}
.product-thumb.is-active { border-color: #000; }
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-info h1 {
  margin: 18px 0 18px;
  font-size: clamp(30px, 4vw, 42px);
  line-height: 1.12;
}
.badge {
  display: inline-block;
  border: 1px solid #000;
  padding: 7px 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.rating-line {
  display: flex;
  align-items: center;
  gap: 4px;
  margin-bottom: 28px;
  color: var(--color-text-secondary);
}
.rating-line span:last-child {
  margin-left: 12px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.product-description {
  color: var(--color-text-secondary);
  line-height: 1.65;
}
.product-price {
  margin: 30px 0;
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 16px;
}
.product-price span { font-size: 32px; font-weight: 600; }
.product-price s { color: var(--color-text-secondary); }
.product-price__savings {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: #ecfccb;
  color: #3f6212;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-purchase-meta {
  display: grid;
  gap: 12px;
  margin: -4px 0 28px;
}
.product-purchase-meta__row {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  align-items: start;
  padding: 14px 16px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}
.product-purchase-meta__row .material-symbols-outlined {
  font-size: 18px;
  margin-top: 1px;
  color: #111827;
}
.product-purchase-meta__row strong,
.product-purchase-meta__row p {
  margin: 0;
}
.product-purchase-meta__row strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.4;
}
.product-purchase-meta__row p {
  margin-top: 4px;
  color: var(--color-text-secondary);
  font-size: 12px;
  line-height: 1.5;
}
.product-purchase-meta__row--stock[data-stock-state="in-stock"] {
  border-color: rgba(22, 163, 74, .24);
  background: rgba(22, 163, 74, .06);
}
.product-purchase-meta__row--stock[data-stock-state="in-stock"] .material-symbols-outlined {
  color: #15803d;
}
.product-purchase-meta__row--stock[data-stock-state="low-stock"] {
  border-color: rgba(245, 158, 11, .24);
  background: rgba(245, 158, 11, .08);
}
.product-purchase-meta__row--stock[data-stock-state="low-stock"] .material-symbols-outlined {
  color: #c2410c;
}
.product-purchase-meta__row--stock[data-stock-state="preorder"] {
  border-color: rgba(59, 130, 246, .22);
  background: rgba(59, 130, 246, .06);
}
.product-purchase-meta__row--stock[data-stock-state="preorder"] .material-symbols-outlined {
  color: #2563eb;
}
.product-purchase-meta__row--stock[data-stock-state="sold-out"],
.product-purchase-meta__row--stock[data-stock-state="unavailable"] {
  border-color: rgba(239, 68, 68, .22);
  background: rgba(239, 68, 68, .06);
}
.product-purchase-meta__row--stock[data-stock-state="sold-out"] .material-symbols-outlined,
.product-purchase-meta__row--stock[data-stock-state="unavailable"] .material-symbols-outlined {
  color: #dc2626;
}
.variant-block {
  padding: 28px 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.variant-block fieldset {
  border: 0;
  padding: 0;
  margin: 0 0 24px;
}
.variant-block fieldset:last-child { margin-bottom: 0; }
.variant-block legend {
  margin-bottom: 14px;
  color: var(--color-text-secondary);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.variant-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.variant-option input {
  position: absolute;
  opacity: 0;
}
.variant-option span {
  display: block;
  border: 1px solid var(--color-border);
  padding: 14px 18px;
  min-width: 76px;
  text-align: center;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}
.variant-option input:checked + span {
  border-color: #000;
  background: var(--color-surface);
}
.product-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 34px 0 18px;
}
.wishlist-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--color-text-secondary);
  cursor: pointer;
  font-size: 13px;
}
.trust-row {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid var(--color-border);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
  color: var(--color-text-secondary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.trust-row span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.trust-row .material-symbols-outlined { font-size: 16px; }
.product-conversion {
  margin-top: 22px;
}
.product-conversion__note {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  margin-bottom: 16px;
  padding: 16px 18px;
  border-radius: 18px;
  background: #f8fafc;
  border: 1px solid rgba(148, 163, 184, .18);
}
.product-conversion__note .material-symbols-outlined {
  margin-top: 2px;
  color: #0f172a;
  font-size: 18px;
}
.product-conversion__note strong,
.product-conversion__note p {
  margin: 0;
}
.product-conversion__note p {
  margin-top: 4px;
  color: var(--color-text-secondary);
  font-size: 12px;
  line-height: 1.6;
}
.product-conversion__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.product-conversion-card {
  display: grid;
  grid-template-columns: 20px minmax(0, 1fr);
  gap: 12px;
  padding: 16px 16px 15px;
  border: 1px solid var(--color-border);
  border-radius: 18px;
  background: #fff;
}
.product-conversion-card .material-symbols-outlined {
  margin-top: 2px;
  color: #111827;
  font-size: 18px;
}
.product-conversion-card strong,
.product-conversion-card p {
  margin: 0;
}
.product-conversion-card strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  line-height: 1.35;
}
.product-conversion-card p {
  margin-top: 4px;
  color: var(--color-text-secondary);
  font-size: 12px;
  line-height: 1.55;
}

.feature-band,
.aplus,
.reviews {
  max-width: var(--page-width);
  margin: 48px auto 0;
  padding: 0 40px 72px;
}
.feature-band {
  display: grid;
  grid-template-columns: 1fr 420px;
  background: #111;
  color: #fff;
  padding: 0;
}
.feature-band > div:first-child { padding: 72px; }
.feature-band h2,
.aplus h2 {
  margin: 0 0 18px;
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.08;
}
.feature-band p { color: #a1a1aa; line-height: 1.6; }
.feature-points {
  margin-top: 34px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
}
.feature-points > div {
  padding-top: 22px;
  border-top: 1px solid #333;
}
.feature-points strong {
  display: block;
  margin: 10px 0 6px;
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.feature-band__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.aplus__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.aplus__row > div {
  border-left: 1px solid var(--color-border);
  padding-left: 38px;
}
.aplus p,
.reviews p {
  color: var(--color-text-secondary);
  line-height: 1.7;
}
.aplus ul { padding-left: 18px; line-height: 1.9; }
.aplus img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--color-surface);
}
.reviews {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 64px;
  border-top: 1px solid var(--color-border);
  padding-top: 72px;
}
.review-score { font-size: 64px; font-weight: 600; }
.reviews__list article {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}
.product-detail-panels,
.product-recommendations {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 0 40px 72px;
}
.product-detail-panels {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}
.product-detail-panel {
  padding: 34px 32px;
  border: 1px solid var(--color-border);
  background: #fff;
}
.product-detail-panel__head {
  margin-bottom: 24px;
}
.product-detail-panel__head .eyebrow {
  margin-bottom: 10px;
}
.product-detail-panel__head h2,
.product-recommendations__head h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.08;
}
.product-specs {
  display: grid;
  gap: 0;
}
.product-specs__row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-top: 1px solid var(--color-border);
}
.product-specs__row:first-child {
  padding-top: 0;
  border-top: 0;
}
.product-specs__row span {
  color: var(--color-text-secondary);
  font-size: 13px;
  letter-spacing: .3px;
  text-transform: uppercase;
}
.product-specs__row strong {
  text-align: right;
  font-size: 15px;
  line-height: 1.4;
}
.product-faq {
  display: grid;
  gap: 0;
}
.product-faq__item {
  border-top: 1px solid var(--color-border);
}
.product-faq__item:first-child {
  border-top: 0;
}
.product-faq__item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 0;
  cursor: pointer;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}
.product-faq__item summary::-webkit-details-marker {
  display: none;
}
.product-faq__item summary .material-symbols-outlined {
  font-size: 20px;
  color: var(--color-text-secondary);
  transition: transform .2s ease;
}
.product-faq__item[open] summary .material-symbols-outlined {
  transform: rotate(45deg);
}
.product-faq__answer {
  padding: 0 32px 18px 0;
  color: var(--color-text-secondary);
  line-height: 1.7;
}
.product-faq__answer p:first-child {
  margin-top: 0;
}
.product-faq__answer p:last-child {
  margin-bottom: 0;
}
.product-recommendations__head {
  margin-bottom: 28px;
}

.cart-promo {
  background: #111;
  color: #fff;
  text-align: center;
  padding: 12px 24px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
}
.cart-page h1,
.search-results h1,
.favorites-page h1,
.simple-page h1 {
  margin: 0 0 48px;
  padding-bottom: 22px;
  border-bottom: 1px solid var(--color-border);
  font-size: clamp(32px, 5vw, 46px);
}
.cart-layout {
  display: grid;
  grid-template-columns: 7fr 5fr;
  gap: 80px;
}
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 34px;
}
.cart-item {
  display: grid;
  grid-template-columns: 150px 1fr;
  gap: 30px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--color-border);
}
.cart-item__image {
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--color-surface);
}
.cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cart-item__details {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.cart-item__top {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}
.cart-item__title {
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.cart-item__remove { color: var(--color-text-secondary); }
.quantity-control {
  width: max-content;
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}
.quantity-control a,
.quantity-control input {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  text-align: center;
  background: transparent;
}
.cart-summary {
  position: sticky;
  top: 164px;
  align-self: start;
  padding: 32px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
}
.cart-summary h2 {
  margin: 0 0 28px;
  font-size: 18px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.cart-summary__progress {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-border);
}
.cart-summary__progress-copy {
  margin-bottom: 12px;
}
.cart-summary__progress-copy strong {
  font-size: 13px;
  line-height: 1.5;
}
.cart-summary__progress-track {
  height: 8px;
  overflow: hidden;
  background: #e8ebf1;
}
.cart-summary__progress-track span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, #111827 0%, #4b5563 100%);
}
.cart-summary > div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
  color: var(--color-text-secondary);
  font-size: 14px;
}
.cart-summary__shipping-free {
  align-items: center;
  padding: 14px 16px;
  border: 1px solid rgba(22, 163, 74, .18);
  background: rgba(22, 163, 74, .08);
  color: #166534 !important;
}
.cart-summary__shipping-free span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  letter-spacing: .2px;
}
.cart-summary__shipping-free .material-symbols-outlined {
  font-size: 18px;
}
.cart-summary__shipping-free strong {
  font-size: 18px;
  font-weight: 900;
  text-transform: uppercase;
}
.cart-summary__discount {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--color-border);
  color: #111 !important;
}
.cart-summary__total {
  align-items: baseline;
  margin: 28px 0 !important;
  color: #111 !important;
  font-weight: 800;
  text-transform: uppercase;
}
.cart-summary__total span:last-child { font-size: 24px; }
.cart-summary .button { width: 100%; margin-bottom: 12px; }
.empty-cart { text-align: center; padding: 80px 0; }
.cart-drawer-panel {
  position: fixed;
  inset: 0;
  z-index: 210;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 520px);
}
.cart-drawer-panel__scrim {
  border: 0;
  background: rgba(0,0,0,.34);
  backdrop-filter: blur(4px);
  cursor: pointer;
}
.cart-drawer-panel__aside {
  display: grid;
  grid-template-rows: auto 1fr;
  background: #fff;
  overflow: hidden;
}
.cart-drawer-panel__head {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: flex-start;
  padding: 28px 24px 20px;
  border-bottom: 1px solid var(--color-border);
}
.cart-drawer-panel__head h2 {
  margin: 8px 0 0;
  font-size: 34px;
  line-height: 1;
}
.cart-drawer-panel__head-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}
.cart-drawer-panel__head-actions a {
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.cart-drawer-panel__body {
  overflow: auto;
  padding: 24px;
}
.cart-drawer-panel__items {
  gap: 24px;
}
.cart-drawer-panel .cart-item {
  grid-template-columns: 104px 1fr;
  gap: 18px;
  padding-bottom: 24px;
}
.cart-drawer-panel .cart-item__details {
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
}
.cart-drawer-panel .cart-item__top {
  justify-content: space-between;
}
.cart-drawer-panel .cart-item__title {
  font-size: 13px;
  line-height: 1.4;
}
.cart-drawer-panel .cart-item__remove {
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.cart-drawer-panel .cart-item__price {
  margin-top: 14px;
  font-size: 14px;
  font-weight: 700;
}
.quantity-control button,
.quantity-control input {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 0;
  text-align: center;
  background: transparent;
}
.quantity-control button {
  cursor: pointer;
}
.cart-drawer-panel .cart-summary {
  position: static;
  top: auto;
  margin-top: 24px;
}
.cart-drawer-panel__empty {
  min-height: 100%;
  display: grid;
  align-content: center;
  gap: 18px;
  text-align: center;
}
.cart-drawer-panel__empty h3 {
  margin: 0;
  font-size: 28px;
  line-height: 1.05;
}
.cart-drawer-panel__empty p {
  margin: 0;
  color: var(--color-text-secondary);
  line-height: 1.6;
}
.cart-drawer-recommendations {
  margin-top: 28px;
  padding-top: 28px;
  border-top: 1px solid var(--color-border);
}
.cart-drawer-recommendations--empty {
  margin-top: 12px;
  text-align: left;
}
.cart-drawer-recommendations__head {
  margin-bottom: 18px;
}
.cart-drawer-recommendations__head h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.15;
}
.cart-drawer-recommendations__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}
.cart-drawer-recommendations .product-card {
  border-color: var(--color-border);
}
.cart-drawer-recommendations .product-card__media {
  margin-bottom: 14px;
}
.cart-drawer-recommendations .product-card__body {
  gap: 12px;
}
.cart-drawer-recommendations .product-card__title {
  font-size: 14px;
}

.search-results__form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  margin-bottom: 36px;
}
.search-results__form input {
  border: 1px solid var(--color-border);
  padding: 14px 16px;
  background: var(--color-surface);
}
.search-results__count {
  color: var(--color-text-secondary);
  margin-bottom: 32px;
}
.simple-page {
  max-width: 860px;
  margin: 0 auto;
  padding: 88px 40px;
}
.support-page {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 80px 40px 96px;
}
.support-page__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, .9fr);
  gap: 28px;
  margin-bottom: 42px;
}
.support-page__hero-copy,
.support-page__hero-panel,
.support-page__content,
.support-card {
  border: 1px solid var(--color-border);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(17, 24, 39, .06);
}
.support-page__hero-copy {
  padding: 40px 42px;
}
.support-page__hero-copy h1 {
  margin: 0;
  font-size: clamp(38px, 6vw, 64px);
  line-height: .98;
  max-width: 10ch;
}
.support-page__lead {
  margin: 22px 0 0;
  max-width: 58ch;
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 1.7;
}
.support-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.support-page__hero-panel {
  padding: 34px 32px;
  background: linear-gradient(160deg, #0d1117 0%, #202938 100%);
  color: #fff;
}
.support-page__hero-panel .eyebrow,
.support-page__hero-panel p,
.support-page__hero-panel a {
  color: rgba(255,255,255,.86);
}
.support-page__hero-panel h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.06;
}
.support-page__panel-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.support-page__section + .support-page__section,
.support-page__content + .support-page__section {
  margin-top: 56px;
}
.support-page__topics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}
.support-card {
  padding: 28px 24px;
}
.support-card .material-symbols-outlined {
  font-size: 34px;
}
.support-card h3 {
  margin: 18px 0 10px;
  font-size: 24px;
  line-height: 1.08;
}
.support-card p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.7;
}
.support-card a {
  display: inline-flex;
  margin-top: 18px;
  color: #111;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.support-page__content {
  padding: 28px 32px;
  margin-top: 20px;
}
.support-page__faq {
  display: grid;
  gap: 16px;
}
.brand-page {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 80px 40px 96px;
}
.brand-page__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, .92fr);
  gap: 28px;
  margin-bottom: 38px;
}
.brand-page__hero-copy,
.brand-page__hero-panel,
.brand-page__content,
.brand-stat,
.brand-story-card,
.brand-media-card {
  border: 1px solid var(--color-border);
  border-radius: 28px;
  background: #fff;
  box-shadow: 0 18px 44px rgba(17, 24, 39, .06);
}
.brand-page__hero-copy {
  padding: 40px 42px;
}
.brand-page__hero-copy h1 {
  margin: 0;
  font-size: clamp(40px, 6vw, 68px);
  line-height: .98;
  max-width: 10ch;
}
.brand-page__lead {
  margin: 22px 0 0;
  max-width: 58ch;
  color: var(--color-text-secondary);
  font-size: 16px;
  line-height: 1.7;
}
.brand-page__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.brand-page__hero-panel {
  padding: 34px 32px;
  background: linear-gradient(160deg, #111827 0%, #1f2937 100%);
  color: #fff;
}
.brand-page__hero-panel .eyebrow,
.brand-page__hero-panel p,
.brand-page__hero-panel a {
  color: rgba(255,255,255,.86);
}
.brand-page__hero-panel h2 {
  margin: 0 0 14px;
  font-size: clamp(28px, 4vw, 36px);
  line-height: 1.06;
}
.brand-page__panel-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}
.brand-page__stats {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 28px;
}
.brand-stat {
  padding: 24px;
}
.brand-stat strong {
  display: block;
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1;
}
.brand-stat h3 {
  margin: 12px 0 8px;
  font-size: 16px;
}
.brand-stat p,
.brand-story-card p,
.brand-media-card p {
  margin: 0;
  color: var(--color-text-secondary);
  line-height: 1.7;
}
.brand-page__content {
  padding: 28px 32px;
  margin-bottom: 28px;
}
.brand-page__section + .brand-page__section {
  margin-top: 56px;
}
.brand-page__story-grid,
.brand-page__media-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.brand-story-card,
.brand-media-card {
  overflow: hidden;
}
.brand-story-card__media,
.brand-media-card__frame {
  aspect-ratio: 1 / 1;
  background: #f4f4f5;
}
.brand-story-card__media img,
.brand-media-card__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.brand-story-card__body,
.brand-media-card__body {
  padding: 22px 22px 24px;
}
.brand-story-card h3,
.brand-media-card h3 {
  margin: 0 0 10px;
  font-size: 26px;
  line-height: 1.08;
}
.brand-story-card a,
.brand-media-card__link {
  display: inline-flex;
  margin-top: 16px;
  color: #111;
  font-weight: 700;
  letter-spacing: .05em;
  text-transform: uppercase;
}
.brand-media-card__placeholder {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  background: linear-gradient(160deg, #111827 0%, #374151 100%);
  color: #fff;
}
.brand-media-card__placeholder .material-symbols-outlined {
  font-size: 64px;
}
.rte { line-height: 1.7; }

.coupon-modal,
.search-modal,
.social-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
}
.coupon-modal {
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(0,0,0,.42);
  backdrop-filter: blur(6px);
}
.coupon-modal__panel {
  position: relative;
  width: min(900px, calc(100vw - 40px));
  min-height: min(585px, calc(100vh - 48px));
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, .96fr);
  border-radius: 24px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 28px 70px rgba(0,0,0,.14);
}
.coupon-modal__gallery {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: 1.12fr .92fr .96fr;
  gap: 6px;
  padding: 22px 0 22px 22px;
  background: linear-gradient(180deg, #fffdfa 0%, #f7f0e9 100%);
}
.coupon-modal__gallery-card,
.coupon-modal__gallery-row {
  overflow: hidden;
}
.coupon-modal__gallery-card {
  position: relative;
  background: #efe6dc;
}
.coupon-modal__gallery-card--top {
  border-radius: 20px 0 0 0;
}
.coupon-modal__gallery-card--bottom {
  border-radius: 0 0 0 20px;
}
.coupon-modal__gallery-row {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, .92fr);
  gap: 6px;
}
.coupon-modal__gallery-image,
.coupon-modal__gallery-placeholder {
  width: 100%;
  height: 100%;
}
.coupon-modal__gallery-image {
  object-fit: cover;
}
.coupon-modal__gallery-placeholder {
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.94) 0%, rgba(255,255,255,.56) 18%, rgba(255,255,255,0) 40%),
    linear-gradient(135deg, #f4ede5 0%, #e8ddd1 100%);
}
.coupon-modal__content-shell {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  justify-content: stretch;
}
.coupon-modal__content-shape {
  position: absolute;
  inset: 0;
  background: #fff;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}
.coupon-modal__content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 38px 34px 30px 72px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.coupon-modal__brand {
  margin-bottom: 14px;
}
.coupon-modal__brand-logo {
  width: min(205px, 50vw);
  height: auto;
  object-fit: contain;
}
.coupon-modal__brand-name {
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 2px;
}
.coupon-modal__panel-view {
  width: 100%;
  max-width: 356px;
}
.coupon-modal__eyebrow {
  margin: 0 0 12px;
  color: #6f7b8d;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.coupon-modal__heading {
  margin: 0;
  color: #040404;
  font-size: clamp(38px, 3.9vw, 56px);
  font-weight: 900;
  line-height: .95;
  letter-spacing: -.05em;
}
.coupon-modal__heading--form {
  color: #142b59;
  font-size: clamp(30px, 2.8vw, 40px);
  line-height: 1.04;
}
.coupon-modal__heading-accent {
  display: block;
  margin-top: 8px;
  color: #161616;
  font-size: clamp(24px, 2.05vw, 36px);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.03em;
}
.coupon-modal__subheading,
.coupon-modal__text {
  margin: 16px auto 0;
  max-width: 28ch;
  color: #4c5565;
  font-size: 12px;
  line-height: 1.55;
}
.coupon-modal__subheading {
  display: -webkit-box;
  overflow: hidden;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}
.coupon-modal__primary {
  width: 100%;
  margin-top: 22px;
  min-height: 48px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: .2px;
  text-transform: none;
}
.coupon-modal__secondary {
  margin-top: 14px;
  border: 0;
  background: transparent;
  color: #7b8088;
  font-size: 15px;
  text-decoration: underline;
  cursor: pointer;
}
.coupon-modal__legal {
  display: block;
  margin: 20px auto 0;
  max-width: 34ch;
  color: #8a909b;
  font-size: 11px;
  line-height: 1.55;
}
.coupon-modal__legal a {
  color: inherit;
  text-decoration: underline;
}
.coupon-form {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.coupon-form__field {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 16px;
  border: 1px solid rgba(17, 24, 39, .16);
  border-radius: 999px;
  background: #fff;
}
.coupon-form__field .material-symbols-outlined {
  color: #9198a5;
  font-size: 20px;
}
.coupon-form input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #22314d;
  padding: 0;
  font-size: 14px;
}
.coupon-form input::placeholder {
  color: #9aa3af;
}
.coupon-form__submit {
  width: 100%;
  min-height: 48px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: .2px;
  text-transform: none;
}
.coupon-code {
  width: 100%;
  margin: 16px 0 0;
  border: 1px dashed rgba(20, 43, 89, .24);
  border-radius: 18px;
  background: #f7fafc;
  padding: 14px;
  font-family: ui-monospace, SFMono-Regular, Consolas, monospace;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: .08em;
  cursor: pointer;
}
.coupon-modal__success {
  display: grid;
  gap: 12px;
  margin-top: 22px;
}
.coupon-modal__success-title {
  margin: 0;
  color: #142b59;
  font-size: 21px;
  font-weight: 800;
}
.coupon-modal__success-text {
  margin: 0;
  color: #6b7280;
  font-size: 12px;
  line-height: 1.55;
}
.coupon-form__errors {
  margin: 0;
  padding: 12px 14px;
  border-radius: 16px;
  background: #fff2f2;
  color: #991b1b;
  font-size: 13px;
  line-height: 1.5;
}
.coupon-form__errors ul {
  margin: 0;
  padding-left: 18px;
}
.coupon-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #111827;
  box-shadow: 0 8px 18px rgba(17, 24, 39, .08);
  cursor: pointer;
}
.coupon-modal__close .material-symbols-outlined {
  font-size: 24px;
}

.search-modal { background: #fff; }
.search-modal__head {
  position: relative;
  min-height: 30vh;
  display: flex;
  align-items: flex-end;
  padding: 64px;
  border-bottom: 1px solid var(--color-border);
  background: var(--color-surface);
}
.search-modal__form {
  max-width: var(--page-width);
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 24px;
}
.search-modal__form input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: clamp(34px, 7vw, 72px);
  font-weight: 800;
  color: #111;
}
.search-modal__body {
  max-width: var(--page-width);
  margin: 0 auto;
  padding: 64px;
  display: grid;
  grid-template-columns: 4fr 8fr;
  gap: 88px;
}
.search-modal h3 {
  margin: 0 0 28px;
  color: var(--color-text-secondary);
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.trending-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.trending-list li + li { margin-top: 22px; }
.trending-list a { font-size: 20px; font-weight: 700; }
.search-modal__recent {
  margin-top: 36px;
}
.search-modal__recent-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}
.search-modal__recent-head h3 {
  margin: 0;
}
.search-modal__recent-clear {
  border: 0;
  background: transparent;
  padding: 0;
  color: var(--color-text-secondary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
}
.search-modal__recent-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.search-modal__recent-link {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  font-size: 13px;
  font-weight: 700;
}
.search-modal__panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 28px;
}
.search-modal__panel-title h3 {
  margin: 0;
}
.search-modal__panel-text {
  max-width: 48ch;
  margin: -8px 0 28px;
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.7;
}
.search-modal__view-all {
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.predictive-search-results {
  display: grid;
  gap: 28px;
}
.predictive-search-section {
  display: grid;
  gap: 16px;
}
.predictive-search-section h4 {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 12px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.predictive-search-items {
  display: grid;
  gap: 14px;
}
.predictive-search-item {
  display: grid;
  grid-template-columns: 92px 1fr;
  gap: 16px;
  align-items: center;
  padding: 14px;
  border: 1px solid var(--color-border);
  background: #fff;
}
.predictive-search-item__media {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-surface);
}
.predictive-search-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.predictive-search-item__content {
  display: grid;
  gap: 6px;
}
.predictive-search-item__title {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.3;
}
.predictive-search-item__meta,
.predictive-search-item__price,
.predictive-search-link-list a,
.predictive-search-empty {
  color: var(--color-text-secondary);
  font-size: 13px;
}
.predictive-search-link-list {
  display: grid;
  gap: 10px;
}
.predictive-search-link-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.predictive-search-link-list .material-symbols-outlined {
  font-size: 18px;
}
.predictive-search-empty {
  margin: 0;
  line-height: 1.6;
}
.search-feature-card {
  border: 1px solid var(--color-border);
  background: #fff;
  padding: 18px;
}
.search-feature-card__media {
  display: block;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #f0f0f0;
  margin-bottom: 18px;
}
.search-feature-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.search-feature-card:hover .search-feature-card__image {
  transform: scale(1.04);
}
.search-feature-card__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 48px;
  font-weight: 800;
  color: #d1d5db;
}
.search-feature-card__body h4,
.search-feature-card__body p {
  margin: 0;
}
.search-feature-card__body h4 {
  font-size: 16px;
  line-height: 1.3;
}
.search-feature-card__body p {
  margin-top: 8px;
  color: var(--color-text-secondary);
  font-size: 13px;
  line-height: 1.6;
}
.search-empty-state {
  display: grid;
  gap: 28px;
}
.search-empty-state__copy {
  display: grid;
  gap: 12px;
  max-width: 56ch;
}
.search-empty-state__copy h4,
.search-empty-state__copy p {
  margin: 0;
}
.search-empty-state__copy h4 {
  font-size: clamp(26px, 3vw, 36px);
  line-height: 1.05;
}
.search-empty-state__copy p {
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.7;
}
.suggested-grid--search-fallback {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.social-modal {
  display: grid;
  grid-template-columns: minmax(300px, 520px) minmax(280px, 360px);
  place-content: center;
  align-items: start;
  gap: 22px;
  padding: 40px;
  background: #000;
  color: #fff;
}
.social-modal__phone {
  position: relative;
  height: min(80vh, 760px);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border-radius: 28px;
  background: #111;
  box-shadow: 0 24px 60px rgba(0,0,0,.34);
}
.social-modal__phone img,
.social-modal__phone video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
  background: #111;
}
.social-modal__shop {
  align-self: start;
  min-width: 0;
}
.social-modal__shop h3 {
  margin: 0 0 14px;
  font-size: 22px;
  line-height: 1.05;
}
.social-modal__cards {
  display: grid;
  gap: 14px;
}
.social-shop-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  padding: 14px;
  border-radius: 18px;
  background: #fff;
  color: #111827;
  box-shadow: 0 18px 44px rgba(0, 0, 0, .28);
}
.social-shop-card__media {
  width: 82px;
  height: 82px;
  border-radius: 14px;
  overflow: hidden;
  background: #f3f4f6;
}
.social-shop-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.social-shop-card__content {
  min-width: 0;
}
.social-shop-card__eyebrow,
.social-shop-card__title,
.social-shop-card__price {
  margin: 0;
}
.social-shop-card__eyebrow {
  color: #6b7280;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
}
.social-shop-card__title {
  margin-top: 4px;
  font-size: 14px;
  line-height: 1.35;
  font-weight: 700;
}
.social-shop-card__price {
  margin-top: 8px;
  font-size: 13px;
  font-weight: 800;
}
.social-shop-card__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 68px;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 12px;
  background: #ef2b6e;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .4px;
  text-transform: uppercase;
}
.wishlist-remove {
  margin-top: 14px;
  border: 0;
  background: transparent;
  color: var(--color-text-secondary);
  cursor: pointer;
  text-decoration: underline;
}
.summer-deal {
  padding: 168px 40px 88px;
  background:
    radial-gradient(circle at 14% 9%, rgba(255, 225, 116, .34), transparent 26%),
    radial-gradient(circle at 84% 14%, rgba(255, 160, 73, .22), transparent 22%),
    linear-gradient(180deg, #fff9ee 0%, #fff6ea 18%, #fff8f1 34%, #ffffff 100%);
}
.summer-deal__hero,
.summer-deal__section-head,
.summer-deal__page-content,
.summer-deal__grid,
.summer-deal__benefits {
  max-width: var(--page-width);
  margin-left: auto;
  margin-right: auto;
}
.summer-deal__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
  gap: 26px;
  margin-bottom: 34px;
}
.summer-deal__copy,
.summer-deal__art {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 28px 70px rgba(54, 28, 8, .08);
}
.summer-deal__copy {
  padding: clamp(34px, 4vw, 56px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.68) 0%, rgba(255,255,255,.44) 100%),
    linear-gradient(135deg, #fff7ca 0%, #ffe072 24%, #ffbf55 54%, #ff8a3d 100%);
  color: #101828;
}
.summer-deal__hero-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 0 0 18px;
  padding: 0 14px;
  border-radius: 999px;
  background: rgba(16, 24, 40, .08);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.summer-deal__eyebrow,
.summer-deal__kicker {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}
.summer-deal__title {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(44px, 5.5vw, 72px);
  line-height: .92;
  letter-spacing: -.04em;
}
.summer-deal__text {
  max-width: 54ch;
  margin: 18px 0 0;
  color: rgba(16, 24, 40, .76);
  font-size: 16px;
  line-height: 1.65;
}
.summer-deal__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 26px;
}
.summer-deal__secondary {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0 4px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.summer-deal__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}
.summer-deal__highlight {
  min-height: 92px;
  padding: 16px 16px 18px;
  border-radius: 20px;
  background: rgba(255,255,255,.54);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.42);
}
.summer-deal__highlight-label {
  display: block;
  margin-bottom: 10px;
  color: rgba(16, 24, 40, .56);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.summer-deal__highlight strong {
  display: block;
  font-size: 15px;
  line-height: 1.35;
}
.summer-deal__art {
  min-height: 430px;
  background: linear-gradient(160deg, #2a1609 0%, #6a3412 42%, #ff7d30 100%);
}
.summer-deal__art--empty {
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 225, 110, .28) 0%, rgba(255, 225, 110, 0) 18%),
    linear-gradient(160deg, #311809 0%, #804118 46%, #ff7d30 100%);
}
.summer-deal__hero-image,
.summer-deal__overlay {
  position: absolute;
  inset: 0;
}
.summer-deal__hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.summer-deal__overlay {
  background:
    linear-gradient(90deg, rgba(40, 19, 7, .22) 0%, rgba(40, 19, 7, .12) 100%),
    linear-gradient(180deg, rgba(255,255,255,.04) 0%, rgba(255,255,255,0) 100%);
}
.summer-deal__promo-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  z-index: 1;
  width: min(380px, calc(100% - 56px));
  padding: 24px;
  border-radius: 28px;
  background: rgba(16, 24, 40, .84);
  color: #fff;
  box-shadow: 0 28px 64px rgba(11, 18, 34, .22);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.summer-deal__promo-eyebrow {
  margin: 0 0 10px;
  color: rgba(255,255,255,.72);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}
.summer-deal__promo-card h2 {
  margin: 0;
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.05;
  letter-spacing: -.03em;
}
.summer-deal__promo-text {
  margin: 14px 0 0;
  color: rgba(255,255,255,.8);
  font-size: 14px;
  line-height: 1.65;
}
.summer-deal__promo-row {
  display: grid;
  gap: 12px;
  margin-top: 18px;
}
.summer-deal__promo-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 56px;
  padding: 0 16px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
}
.summer-deal__promo-code span {
  color: rgba(255,255,255,.7);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.summer-deal__promo-code strong {
  font-size: 20px;
  letter-spacing: .05em;
}
.summer-deal__promo-note {
  margin: 0;
  color: rgba(255,255,255,.72);
  font-size: 12px;
  line-height: 1.5;
}
.summer-deal__glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(4px);
}
.summer-deal__glow--one {
  top: 34px;
  right: 36px;
  width: 144px;
  height: 144px;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.86) 0%, rgba(255,226,112,.72) 22%, rgba(255,168,71,.28) 62%, rgba(255,168,71,0) 100%);
}
.summer-deal__glow--two {
  left: -46px;
  bottom: -62px;
  width: 220px;
  height: 220px;
  background: radial-gradient(circle at 50% 50%, rgba(255,195,104,.18) 0%, rgba(255,195,104,0) 72%);
}
.summer-deal__page-content {
  margin-bottom: 28px;
  padding: 24px 28px;
  border-radius: 24px;
  background: rgba(255,255,255,.82);
  box-shadow: 0 16px 40px rgba(17, 24, 39, .06);
}
.summer-deal__section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 26px;
}
.summer-deal__section-head h2 {
  margin: 0;
  max-width: 14ch;
  font-size: clamp(34px, 3.2vw, 48px);
  line-height: .98;
  letter-spacing: -.03em;
}
.summer-deal__section-head a {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.summer-deal__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.summer-deal-card {
  position: relative;
  border-radius: 26px;
  overflow: hidden;
  background: linear-gradient(180deg, #fffdfa 0%, #fff3e7 100%);
  border: 1px solid rgba(255, 180, 115, .24);
  box-shadow: 0 22px 52px rgba(104, 49, 13, .08);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.summer-deal-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 160, 81, .34);
  box-shadow: 0 30px 62px rgba(104, 49, 13, .13);
}
.summer-deal-card__media {
  position: relative;
  display: block;
  margin: 14px 14px 0;
  border-radius: 22px;
  aspect-ratio: 1 / .95;
  overflow: hidden;
  background: linear-gradient(135deg, #fff8cf 0%, #ffe790 38%, #ffd05b 100%);
}
.summer-deal-card__badge {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 11px;
  border-radius: 999px;
  background: rgba(255,255,255,.88);
  color: #8a3f0d;
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .85px;
  text-transform: uppercase;
  box-shadow: 0 10px 18px rgba(104, 49, 13, .12);
}
.summer-deal-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.summer-deal-card:hover .summer-deal-card__image {
  transform: scale(1.04);
}
.summer-deal-card__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 38px;
  font-weight: 900;
  color: rgba(135, 74, 18, .28);
}
.summer-deal-card__body {
  padding: 18px 18px 20px;
}
.summer-deal-card__body h3 {
  margin: 0;
  font-size: 21px;
  line-height: 1.12;
  letter-spacing: -.02em;
}
.summer-deal-card__body h3 a:hover {
  color: #b44d10;
}
.summer-deal-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: 12px 0 0;
  color: #8a3f0d;
  font-size: 24px;
  font-weight: 900;
  line-height: 1;
}
.summer-deal-card__price s {
  color: #b99680;
  font-size: 12px;
  font-weight: 800;
}
.summer-deal-card__saving {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  margin: 12px 0 0;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 177, 84, .18);
  color: #b44d10;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .85px;
  text-transform: uppercase;
}
.summer-deal-card__body p {
  margin: 12px 0 0;
  color: #7a5a47;
  font-size: 13px;
  line-height: 1.58;
}
.summer-deal__benefits {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}
.summer-deal__benefit {
  min-height: 154px;
  padding: 22px;
  border-radius: 24px;
  background: linear-gradient(180deg, #fffefb 0%, #fff5eb 100%);
  border: 1px solid rgba(255, 188, 128, .2);
  box-shadow: 0 18px 42px rgba(104, 49, 13, .06);
}
.summer-deal__benefit .material-symbols-outlined {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border-radius: 14px;
  background: #111827;
  color: #fff;
  font-size: 28px;
  box-shadow: 0 14px 30px rgba(17, 24, 39, .18);
}
.summer-deal__benefit strong {
  display: block;
  margin-top: 16px;
  font-size: 18px;
  line-height: 1.2;
}
.summer-deal__benefit p {
  margin: 10px 0 0;
  color: #6b5b4e;
  font-size: 14px;
  line-height: 1.58;
}
.summer-playbook {
  padding: 0 0 96px;
  background:
    radial-gradient(circle at 16% 8%, rgba(118, 214, 255, .18), transparent 24%),
    linear-gradient(180deg, #f8fdff 0%, #ffffff 28%, #ffffff 100%);
}
.summer-playbook__top-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-height: 34px;
  padding: 0 20px;
  background: linear-gradient(90deg, #52bff1 0%, #7acdfa 100%);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .9px;
  text-transform: uppercase;
}
.summer-playbook__shell {
  max-width: min(1320px, calc(100vw - 48px));
  margin: 0 auto;
  padding-top: 18px;
}
.summer-playbook__hero {
  display: grid;
  grid-template-columns: minmax(280px, .38fr) minmax(0, .62fr);
  gap: 0;
  overflow: hidden;
  border-radius: 34px;
  background: #fff;
  box-shadow: 0 28px 64px rgba(22, 76, 122, .08);
}
.summer-playbook__hero-copy {
  padding: clamp(34px, 4vw, 54px) clamp(28px, 3vw, 42px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background:
    linear-gradient(180deg, rgba(255,255,255,.96) 0%, rgba(242, 250, 255, .98) 100%);
}
.summer-playbook__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: #3eb7e8;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 1.1px;
  text-transform: uppercase;
}
.summer-playbook__eyebrow::before {
  content: "�?;
  font-size: 11px;
}
.summer-playbook__title {
  margin: 0;
  max-width: 8.5ch;
  color: #163864;
  font-size: clamp(46px, 5.8vw, 78px);
  font-weight: 900;
  line-height: .94;
  letter-spacing: -.05em;
}
.summer-playbook__title span {
  display: block;
}
.summer-playbook__title-accent {
  color: #37bae8;
}
.summer-playbook__hero-text {
  max-width: 24ch;
  margin: 18px 0 0;
  color: #56708b;
  font-size: 15px;
  line-height: 1.6;
}
.summer-playbook__hero-actions {
  margin-top: 24px;
}
.summer-playbook__hero-actions .button {
  min-height: 48px;
  padding-inline: 20px;
  border-radius: 999px;
  background: linear-gradient(180deg, #36b7e7 0%, #1b9fd5 100%);
  font-size: 12px;
  box-shadow: 0 14px 28px rgba(33, 145, 201, .22);
}
.summer-playbook__hero-media {
  position: relative;
  min-height: 500px;
  overflow: hidden;
  background:
    linear-gradient(180deg, #e7f7ff 0%, #f7fdff 100%);
}
.summer-playbook__hero-media--empty {
  background:
    radial-gradient(circle at 15% 18%, rgba(109, 215, 255, .18), transparent 18%),
    linear-gradient(180deg, #effaff 0%, #ffffff 100%);
}
.summer-playbook__hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.summer-playbook__hero-glow {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.08) 0%, rgba(255,255,255,0) 28%),
    radial-gradient(circle at 18% 50%, rgba(110, 211, 255, .3) 0%, rgba(110, 211, 255, 0) 24%);
  pointer-events: none;
}
.summer-playbook__feature-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  margin: 18px auto 0;
  padding: 16px 20px 20px;
  align-items: center;
}
.summer-playbook__feature-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  min-height: 52px;
  color: #7090a8;
  text-align: center;
}
.summer-playbook__feature-pill .material-symbols-outlined {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(96, 192, 234, .12);
  color: #38b5e6;
  font-size: 20px;
}
.summer-playbook__feature-pill strong,
.summer-playbook__feature-pill span {
  display: block;
}
.summer-playbook__feature-pill strong {
  color: #5881a0;
  font-size: 12px;
  line-height: 1.2;
}
.summer-playbook__feature-pill span {
  font-size: 11px;
  line-height: 1.25;
}
.summer-playbook__story,
.summer-playbook__trending,
.summer-playbook__shore {
  margin-top: 40px;
}
.summer-playbook__section-intro {
  margin-bottom: 24px;
}
.summer-playbook__section-intro--center {
  text-align: center;
}
.summer-playbook__section-intro--split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}
.summer-playbook__section-intro h2 {
  margin: 0;
  color: #163864;
  font-size: clamp(34px, 4vw, 52px);
  line-height: .98;
  letter-spacing: -.04em;
}
.summer-playbook__section-note {
  margin: 0;
  color: #6e87a0;
  font-size: 13px;
  font-weight: 700;
}
.summer-playbook__essential-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 18px;
}
.summer-playbook-card {
  position: relative;
}
.summer-playbook-card--essential:nth-child(1) {
  grid-column: 1 / 2;
  grid-row: span 2;
}
.summer-playbook-card--essential:nth-child(4),
.summer-playbook-card--essential:nth-child(5) {
  transform: translateY(-22px) rotate(-1.5deg);
}
.summer-playbook-card--essential:nth-child(2),
.summer-playbook-card--essential:nth-child(3) {
  transform: rotate(1.1deg);
}
.summer-playbook-card__media {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 28px;
  background: #edf7fd;
  box-shadow: 0 22px 52px rgba(29, 88, 132, .08);
}
.summer-playbook-card--essential .summer-playbook-card__media {
  aspect-ratio: .92 / 1;
}
.summer-playbook-card--essential:nth-child(1) .summer-playbook-card__media {
  aspect-ratio: .92 / 1.32;
}
.summer-playbook-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.summer-playbook-card__placeholder {
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at 18% 18%, rgba(255,255,255,.94) 0%, rgba(255,255,255,.56) 18%, rgba(255,255,255,0) 40%),
    linear-gradient(135deg, #eef8ff 0%, #dbeefa 100%);
}
.summer-playbook-card__handle {
  position: absolute;
  left: 14px;
  top: 14px;
  z-index: 1;
  min-height: 28px;
  padding: 0 12px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: rgba(255,255,255,.96);
  color: #4c6f8c;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .7px;
}
.summer-playbook-card__sticker {
  position: absolute;
  right: 14px;
  bottom: 18px;
  z-index: 1;
  max-width: 8ch;
  color: #35b6e7;
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 700;
  font-style: italic;
  line-height: .95;
  text-shadow: 0 3px 12px rgba(255,255,255,.8);
}
.summer-playbook-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 6px 0;
  color: #7691a8;
  font-size: 12px;
  font-weight: 700;
}
.summer-playbook-card__likes::before {
  content: "�?;
  margin-right: 6px;
  color: #ff778f;
}
.summer-playbook__trending-row {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}
.summer-playbook-card--trending .summer-playbook-card__media {
  aspect-ratio: .88 / 1;
  border-radius: 24px;
}
.summer-playbook-card__footer {
  padding-top: 10px;
}
.summer-playbook-card__footer h3 {
  margin: 0;
  color: #163864;
  font-size: 18px;
  line-height: 1.08;
}
.summer-playbook-card__footer p {
  margin: 8px 0 0;
  color: #6d8aa0;
  font-size: 13px;
}
.summer-playbook__shore {
  position: relative;
  overflow: hidden;
  padding: 50px 42px 42px;
  border-radius: 34px;
  background:
    linear-gradient(180deg, #e9f9ff 0%, #ffffff 34%);
  box-shadow: 0 24px 58px rgba(22, 76, 122, .08);
}
.summer-playbook__shore--empty {
  background:
    radial-gradient(circle at 18% 24%, rgba(117, 220, 255, .18), transparent 18%),
    linear-gradient(180deg, #ecfbff 0%, #ffffff 38%);
}
.summer-playbook__shore-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: .82;
}
.summer-playbook__shore-copy,
.summer-playbook__spotlights {
  position: relative;
  z-index: 1;
}
.summer-playbook__shore-copy {
  max-width: 320px;
}
.summer-playbook__shore-copy h2 {
  margin: 0;
  color: #3bb9e7;
  font-size: clamp(42px, 5vw, 68px);
  line-height: .92;
  letter-spacing: -.05em;
}
.summer-playbook__shore-copy p {
  margin: 16px 0 0;
  color: #4f708a;
  font-size: 15px;
  line-height: 1.6;
}
.summer-playbook__spotlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: end;
  margin-top: 24px;
}
.summer-playbook__spotlight {
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255,255,255,.88);
  box-shadow: 0 22px 48px rgba(24, 79, 123, .1);
  backdrop-filter: blur(8px);
}
.summer-playbook__spotlight-media {
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: linear-gradient(135deg, #edf8fe 0%, #d8eef9 100%);
}
.summer-playbook__spotlight-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.summer-playbook__spotlight-body {
  padding: 14px 16px 16px;
}
.summer-playbook__spotlight-body h3 {
  margin: 0;
  color: #163864;
  font-size: 18px;
}
.summer-playbook__spotlight-body p {
  margin: 8px 0 0;
  color: #5f7d95;
  font-size: 13px;
  line-height: 1.45;
}
.category-hub {
  padding: 36px 40px 88px;
  background:
    radial-gradient(circle at 14% 0%, rgba(120, 196, 255, .16), transparent 30%),
    linear-gradient(180deg, #f8fbff 0%, #f7f7fb 26%, #ffffff 100%);
}
.category-hub__banner,
.category-hub__section-head,
.category-hub__page-content,
.category-hub__grid,
.category-hub__featured-grid,
.category-hub__chips,
.category-hub-benefits {
  max-width: var(--page-width);
  margin-left: auto;
  margin-right: auto;
}
.category-hub__banner,
.category-hub__page-content {
  position: relative;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .08);
}
.category-hub__banner {
  min-height: 0;
  aspect-ratio: 8 / 3;
  max-height: 500px;
  margin-bottom: 20px;
  padding: clamp(24px, 3vw, 38px);
  background:
    linear-gradient(115deg, rgba(15, 23, 42, .26) 0%, rgba(15, 23, 42, .12) 32%, rgba(15, 23, 42, .08) 60%, rgba(15, 23, 42, .18) 100%),
    linear-gradient(140deg, #e5f1ff 0%, #f9fbff 24%, #dee7d9 68%, #a8b69a 100%);
  isolation: isolate;
}
.category-hub__banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(15, 23, 42, .38) 0%, rgba(15, 23, 42, .2) 26%, rgba(15, 23, 42, .02) 56%, rgba(15, 23, 42, .08) 100%),
    radial-gradient(circle at 18% 78%, rgba(255,255,255,.22) 0%, rgba(255,255,255,0) 24%),
    radial-gradient(circle at 72% 18%, rgba(255,255,255,.18) 0%, rgba(255,255,255,0) 22%);
  pointer-events: none;
}
.category-hub__banner--empty {
  background: transparent;
  box-shadow: none;
}
.category-hub__banner--empty::after {
  display: none;
}
.category-hub__banner--empty .category-hub__title {
  color: #0f1728;
  text-shadow: none;
}
.category-hub__banner--empty .category-hub__text {
  color: #334155;
  text-shadow: none;
}
.category-hub__banner--empty .category-hub__eyebrow {
  text-shadow: none;
}
.category-hub__banner-art {
  position: absolute;
  inset: 0;
}
.category-hub__banner-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}
.category-hub__copy {
  position: absolute;
  left: clamp(24px, 3vw, 40px);
  bottom: clamp(22px, 3vw, 34px);
  z-index: 1;
  max-width: 400px;
}
.category-hub__eyebrow,
.category-hub__kicker {
  margin: 0 0 12px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}
.category-hub__title {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(26px, 2.8vw, 38px);
  line-height: 1.02;
  letter-spacing: -.04em;
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,.42), 0 10px 28px rgba(0,0,0,.28);
}
.category-hub__text {
  max-width: 34ch;
  margin: 10px 0 0;
  color: rgba(255,255,255,.94);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.58;
  text-shadow: 0 2px 10px rgba(0,0,0,.34), 0 8px 22px rgba(0,0,0,.22);
}
.category-hub__orb,
.category-hub__line {
  position: absolute;
  z-index: 0;
  display: block;
}
.category-hub__orb {
  border-radius: 999px;
  filter: blur(6px);
}
.category-hub__orb--one {
  top: 20px;
  right: 28px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle at 35% 35%, rgba(255,255,255,.95) 0%, rgba(168, 224, 255, .92) 26%, rgba(70, 164, 255, .4) 62%, rgba(70, 164, 255, 0) 100%);
}
.category-hub__orb--two {
  left: -48px;
  bottom: -42px;
  width: 240px;
  height: 240px;
  background: radial-gradient(circle at 50% 50%, rgba(134, 198, 255, .34) 0%, rgba(134, 198, 255, 0) 72%);
}
.category-hub__line {
  left: -10%;
  width: 120%;
  height: 90px;
  border-radius: 999px;
}
.category-hub__line--one {
  right: -6%;
  bottom: -8px;
  background: linear-gradient(90deg, rgba(255,255,255,.12) 0%, rgba(255,255,255,.28) 38%, rgba(120, 196, 255, .16) 100%);
  transform: rotate(-8deg);
}
.category-hub__line--two {
  bottom: -18px;
  background: linear-gradient(90deg, rgba(255,255,255,.14) 0%, rgba(146, 204, 255, .24) 42%, rgba(255,255,255,.06) 100%);
  transform: rotate(7deg);
}
.category-hub__eyebrow {
  color: var(--category-hub-eyebrow-color, rgb(15, 134, 183));
  text-shadow: 0 2px 8px rgba(0,0,0,.36), 0 0 1px rgba(0,0,0,.42);
}
.category-hub__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}
.category-hub__chip {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(15, 23, 42, .08);
  color: #667085;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .2px;
}
.category-hub__chip--active {
  background: #0f86b7;
  border-color: #0f86b7;
  color: #fff;
}
.category-hub__page-content {
  margin-bottom: 32px;
  padding: 24px 28px;
  background: #fff;
}
.category-hub__section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}
.category-hub__section-head h2 {
  margin: 0;
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1;
}
.category-hub__section-head a {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.category-hub__grid,
.category-hub__featured-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
}
.category-hub__featured-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.category-hub__section-head--featured {
  margin-top: 36px;
}
.category-hub-card {
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .08);
  box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
  transition: transform .24s ease, box-shadow .24s ease, border-color .24s ease;
}
.category-hub-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1 / .88;
  overflow: hidden;
  background: #fafafa;
}
.category-hub-card__badge {
  position: absolute;
  left: 10px;
  top: 10px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  min-height: 22px;
  padding: 0 8px;
  border-radius: 999px;
  background: #e4f3f8;
  color: #0f86b7;
  font-size: 9px;
  font-weight: 900;
  letter-spacing: .4px;
}
.category-hub-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.category-hub-card:hover .category-hub-card__image {
  transform: scale(1.04);
}
.category-hub-card__placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  font-size: 34px;
  font-weight: 900;
  color: rgba(17, 24, 39, .32);
}
.category-hub-card__body {
  padding: 16px 16px 18px;
}
.category-hub-card__body h3,
.category-hub-card__body p,
.category-hub-card__points {
  margin: 0;
}
.category-hub-card__body h3 {
  font-size: 18px;
  line-height: 1.2;
}
.category-hub-card__price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-top: 10px;
  color: #0f1728;
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}
.category-hub-card__price s {
  color: #98a2b3;
  font-size: 13px;
  font-weight: 700;
}
.category-hub-card__rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
}
.category-hub-card__stars {
  color: #f59e0b;
  font-size: 14px;
  letter-spacing: 1px;
}
.category-hub-card__rating-text {
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}
.category-hub-card__description {
  margin-top: 10px;
  color: #667085;
  font-size: 13px;
  line-height: 1.55;
}
.category-hub-card__points {
  display: grid;
  gap: 8px;
  margin-top: 12px;
  padding: 0;
  list-style: none;
}
.category-hub-card__points li {
  position: relative;
  padding-left: 18px;
  color: #475467;
  font-size: 13px;
  line-height: 1.45;
}
.category-hub-card__points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 1px solid #0f86b7;
  box-shadow: inset 0 0 0 2px #fff;
  background: #0f86b7;
}
.category-hub--air,
.category-hub--fans,
.category-hub--heating,
.category-hub--outdoor,
.category-hub--kitchen {
  --hub-card-border: rgba(88, 146, 210, .18);
  --hub-card-surface: linear-gradient(180deg, #ffffff 0%, #f6fbff 100%);
  --hub-card-shadow: 0 24px 48px rgba(24, 80, 141, .08);
  --hub-card-shadow-hover: 0 30px 54px rgba(24, 80, 141, .14);
  --hub-card-media: linear-gradient(160deg, #fbfdff 0%, #eef7ff 54%, #ddefff 100%);
  --hub-badge-bg: rgba(10, 111, 195, .94);
  --hub-badge-color: #fff;
  --hub-badge-shadow: 0 10px 18px rgba(13, 103, 200, .2);
  --hub-title-hover: #0a63b7;
  --hub-price-color: #0b4f94;
  --hub-price-compare: #8ea2ba;
  --hub-rating-bg: rgba(227, 243, 255, .94);
  --hub-description: #47617c;
  --hub-point-color: #24384f;
  --hub-point-border: rgba(111, 154, 203, .16);
  --hub-point-dot: #58a8e8;
  --hub-point-dot-bg: #dff0ff;
  --hub-placeholder-color: rgba(11, 79, 148, .22);
}
.category-hub--fans {
  --hub-card-border: rgba(52, 171, 164, .18);
  --hub-card-surface: linear-gradient(180deg, #ffffff 0%, #f4fffd 100%);
  --hub-card-shadow: 0 24px 48px rgba(14, 102, 95, .08);
  --hub-card-shadow-hover: 0 30px 54px rgba(14, 102, 95, .14);
  --hub-card-media: linear-gradient(160deg, #f8fffe 0%, #e7fbf8 54%, #d3f3ee 100%);
  --hub-badge-bg: rgba(12, 139, 131, .94);
  --hub-badge-shadow: 0 10px 18px rgba(12, 139, 131, .18);
  --hub-title-hover: #0c8b83;
  --hub-price-color: #0b726c;
  --hub-price-compare: #8faeab;
  --hub-rating-bg: rgba(226, 250, 247, .94);
  --hub-description: #436d69;
  --hub-point-color: #1f4240;
  --hub-point-border: rgba(74, 160, 154, .16);
  --hub-point-dot: #2fbfb4;
  --hub-point-dot-bg: #dcfbf7;
  --hub-placeholder-color: rgba(12, 139, 131, .22);
}
.category-hub--heating {
  --hub-card-border: rgba(202, 112, 51, .18);
  --hub-card-surface: linear-gradient(180deg, #ffffff 0%, #fff8f3 100%);
  --hub-card-shadow: 0 24px 48px rgba(140, 65, 26, .08);
  --hub-card-shadow-hover: 0 30px 54px rgba(140, 65, 26, .14);
  --hub-card-media: linear-gradient(160deg, #fffdfb 0%, #fff0e5 54%, #ffe1cd 100%);
  --hub-badge-bg: rgba(192, 87, 26, .94);
  --hub-badge-shadow: 0 10px 18px rgba(192, 87, 26, .18);
  --hub-title-hover: #c0571a;
  --hub-price-color: #9f4516;
  --hub-price-compare: #bda093;
  --hub-rating-bg: rgba(255, 239, 229, .94);
  --hub-description: #7a5648;
  --hub-point-color: #4b2e22;
  --hub-point-border: rgba(188, 116, 77, .16);
  --hub-point-dot: #d7773d;
  --hub-point-dot-bg: #ffeadf;
  --hub-placeholder-color: rgba(159, 69, 22, .22);
}
.category-hub--outdoor {
  --hub-card-border: rgba(94, 155, 54, .18);
  --hub-card-surface: linear-gradient(180deg, #ffffff 0%, #f8fff4 100%);
  --hub-card-shadow: 0 24px 48px rgba(61, 110, 28, .08);
  --hub-card-shadow-hover: 0 30px 54px rgba(61, 110, 28, .14);
  --hub-card-media: linear-gradient(160deg, #fbfffa 0%, #eef9e7 54%, #dceecf 100%);
  --hub-badge-bg: rgba(78, 142, 31, .94);
  --hub-badge-shadow: 0 10px 18px rgba(78, 142, 31, .18);
  --hub-title-hover: #4e8e1f;
  --hub-price-color: #45791f;
  --hub-price-compare: #9cab8c;
  --hub-rating-bg: rgba(239, 249, 230, .94);
  --hub-description: #56704a;
  --hub-point-color: #2b421f;
  --hub-point-border: rgba(108, 164, 73, .16);
  --hub-point-dot: #77b845;
  --hub-point-dot-bg: #e9f7de;
  --hub-placeholder-color: rgba(69, 121, 31, .22);
}
.category-hub--kitchen {
  --hub-card-border: rgba(120, 88, 210, .18);
  --hub-card-surface: linear-gradient(180deg, #ffffff 0%, #f9f7ff 100%);
  --hub-card-shadow: 0 24px 48px rgba(83, 56, 154, .08);
  --hub-card-shadow-hover: 0 30px 54px rgba(83, 56, 154, .14);
  --hub-card-media: linear-gradient(160deg, #fcfbff 0%, #f0eaff 54%, #e3d8ff 100%);
  --hub-badge-bg: rgba(115, 80, 216, .94);
  --hub-badge-shadow: 0 10px 18px rgba(115, 80, 216, .18);
  --hub-title-hover: #7350d8;
  --hub-price-color: #6540cf;
  --hub-price-compare: #a092c9;
  --hub-rating-bg: rgba(241, 236, 255, .94);
  --hub-description: #625583;
  --hub-point-color: #34275a;
  --hub-point-border: rgba(129, 101, 212, .16);
  --hub-point-dot: #8f6cf0;
  --hub-point-dot-bg: #eee6ff;
  --hub-placeholder-color: rgba(101, 64, 207, .22);
}
.category-hub--air .category-hub__grid,
.category-hub--fans .category-hub__grid,
.category-hub--heating .category-hub__grid,
.category-hub--outdoor .category-hub__grid,
.category-hub--kitchen .category-hub__grid {
  gap: 26px;
}
.category-hub--air .category-hub-card,
.category-hub--fans .category-hub-card,
.category-hub--heating .category-hub-card,
.category-hub--outdoor .category-hub-card,
.category-hub--kitchen .category-hub-card {
  border-radius: 26px;
  border-color: var(--hub-card-border);
  background: var(--hub-card-surface);
  box-shadow: var(--hub-card-shadow);
}
.category-hub--air .category-hub-card:hover,
.category-hub--fans .category-hub-card:hover,
.category-hub--heating .category-hub-card:hover,
.category-hub--outdoor .category-hub-card:hover,
.category-hub--kitchen .category-hub-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--hub-card-shadow-hover);
}
.category-hub--air .category-hub-card__media,
.category-hub--fans .category-hub-card__media,
.category-hub--heating .category-hub-card__media,
.category-hub--outdoor .category-hub-card__media,
.category-hub--kitchen .category-hub-card__media {
  margin: 16px 16px 0;
  border-radius: 22px;
  aspect-ratio: 1 / .96;
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, .96) 0%, rgba(255, 255, 255, .52) 18%, rgba(255, 255, 255, 0) 36%),
    var(--hub-card-media);
  box-shadow: inset 0 0 0 1px rgba(109, 168, 226, .14);
}
.category-hub--air .category-hub-card__badge,
.category-hub--fans .category-hub-card__badge,
.category-hub--heating .category-hub-card__badge,
.category-hub--outdoor .category-hub-card__badge,
.category-hub--kitchen .category-hub-card__badge {
  left: 14px;
  top: 14px;
  min-height: 28px;
  padding: 0 11px;
  background: var(--hub-badge-bg);
  color: var(--hub-badge-color);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .85px;
  text-transform: uppercase;
  box-shadow: var(--hub-badge-shadow);
}
.category-hub--air .category-hub-card__body,
.category-hub--fans .category-hub-card__body,
.category-hub--heating .category-hub-card__body,
.category-hub--outdoor .category-hub-card__body,
.category-hub--kitchen .category-hub-card__body {
  padding: 18px 18px 22px;
}
.category-hub--air .category-hub-card__body h3,
.category-hub--fans .category-hub-card__body h3,
.category-hub--heating .category-hub-card__body h3,
.category-hub--outdoor .category-hub-card__body h3,
.category-hub--kitchen .category-hub-card__body h3 {
  font-size: 20px;
  line-height: 1.14;
  letter-spacing: -.025em;
  min-height: 46px;
}
.category-hub--air .category-hub-card__body h3 a:hover,
.category-hub--fans .category-hub-card__body h3 a:hover,
.category-hub--heating .category-hub-card__body h3 a:hover,
.category-hub--outdoor .category-hub-card__body h3 a:hover,
.category-hub--kitchen .category-hub-card__body h3 a:hover {
  color: var(--hub-title-hover);
}
.category-hub--air .category-hub-card__price,
.category-hub--fans .category-hub-card__price,
.category-hub--heating .category-hub-card__price,
.category-hub--outdoor .category-hub-card__price,
.category-hub--kitchen .category-hub-card__price {
  margin-top: 10px;
  color: var(--hub-price-color);
  font-size: 24px;
  letter-spacing: -.02em;
}
.category-hub--air .category-hub-card__price s,
.category-hub--fans .category-hub-card__price s,
.category-hub--heating .category-hub-card__price s,
.category-hub--outdoor .category-hub-card__price s,
.category-hub--kitchen .category-hub-card__price s {
  color: var(--hub-price-compare);
  font-size: 12px;
  font-weight: 800;
}
.category-hub--air .category-hub-card__rating,
.category-hub--fans .category-hub-card__rating,
.category-hub--heating .category-hub-card__rating,
.category-hub--outdoor .category-hub-card__rating,
.category-hub--kitchen .category-hub-card__rating {
  width: fit-content;
  gap: 7px;
  margin-top: 12px;
  padding: 7px 11px;
  border-radius: 999px;
  background: var(--hub-rating-bg);
  border: 1px solid rgba(255, 255, 255, .7);
}
.category-hub--air .category-hub-card__stars,
.category-hub--fans .category-hub-card__stars,
.category-hub--heating .category-hub-card__stars,
.category-hub--outdoor .category-hub-card__stars,
.category-hub--kitchen .category-hub-card__stars {
  font-size: 13px;
  letter-spacing: .9px;
}
.category-hub--air .category-hub-card__rating-text,
.category-hub--fans .category-hub-card__rating-text,
.category-hub--heating .category-hub-card__rating-text,
.category-hub--outdoor .category-hub-card__rating-text,
.category-hub--kitchen .category-hub-card__rating-text {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .25px;
}
.category-hub--air .category-hub-card__description,
.category-hub--fans .category-hub-card__description,
.category-hub--heating .category-hub-card__description,
.category-hub--outdoor .category-hub-card__description,
.category-hub--kitchen .category-hub-card__description {
  min-height: 58px;
  margin-top: 11px;
  color: var(--hub-description);
  font-size: 13px;
  line-height: 1.56;
}
.category-hub--air .category-hub-card__points,
.category-hub--fans .category-hub-card__points,
.category-hub--heating .category-hub-card__points,
.category-hub--outdoor .category-hub-card__points,
.category-hub--kitchen .category-hub-card__points {
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--hub-point-border);
}
.category-hub--air .category-hub-card__points li,
.category-hub--fans .category-hub-card__points li,
.category-hub--heating .category-hub-card__points li,
.category-hub--outdoor .category-hub-card__points li,
.category-hub--kitchen .category-hub-card__points li {
  padding-left: 21px;
  color: var(--hub-point-color);
  font-size: 12px;
  font-weight: 800;
  line-height: 1.45;
}
.category-hub--air .category-hub-card__points li::before,
.category-hub--fans .category-hub-card__points li::before,
.category-hub--heating .category-hub-card__points li::before,
.category-hub--outdoor .category-hub-card__points li::before,
.category-hub--kitchen .category-hub-card__points li::before {
  top: 5px;
  width: 10px;
  height: 10px;
  border: 2px solid var(--hub-point-dot);
  box-shadow: inset 0 0 0 2px #fff;
  background: var(--hub-point-dot-bg);
}
.category-hub--air .category-hub-card__placeholder,
.category-hub--fans .category-hub-card__placeholder,
.category-hub--heating .category-hub-card__placeholder,
.category-hub--outdoor .category-hub-card__placeholder,
.category-hub--kitchen .category-hub-card__placeholder {
  color: var(--hub-placeholder-color);
}
.category-hub-benefits {
  margin-top: 52px;
  padding-top: 6px;
}
.category-hub-benefits__head {
  margin-bottom: 24px;
}
.category-hub-benefits__head h2,
.category-hub-benefits__head p {
  margin: 0;
}
.category-hub-benefits__head h2 {
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.04;
  letter-spacing: -.03em;
}
.category-hub-benefits__head p {
  margin-top: 12px;
  color: var(--color-text-secondary);
  font-size: 14px;
}
.category-hub-benefits__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 32px;
}
.category-hub-benefit {
  padding-top: 30px;
  border-top: 1px solid var(--color-border);
}
.category-hub-benefit .material-symbols-outlined {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: #000;
  color: #fff;
  font-size: 32px;
  box-shadow: 0 12px 28px rgba(0,0,0,.16);
  font-variation-settings: "FILL" 0, "wght" 500, "GRAD" 0, "opsz" 32;
}
.category-hub-benefit h3 {
  margin: 16px 0 12px;
  font-size: 18px;
}
.category-hub-benefit p {
  margin: 0;
  color: var(--color-text-secondary);
  font-size: 14px;
  line-height: 1.6;
}
.category-hub--air {
  background:
    radial-gradient(circle at 12% 0%, rgba(125, 201, 255, .18), transparent 30%),
    linear-gradient(180deg, #f6fbff 0%, #ffffff 30%, #ffffff 100%);
}
.category-hub--air .category-hub__kicker,
.category-hub--air .category-hub__section-head a {
  color: #0f67c8;
}
.category-hub--fans {
  background:
    radial-gradient(circle at 88% 0%, rgba(122, 228, 219, .18), transparent 26%),
    linear-gradient(180deg, #f6fffd 0%, #ffffff 30%, #ffffff 100%);
}
.category-hub--fans .category-hub__kicker,
.category-hub--fans .category-hub__section-head a {
  color: #0c8b83;
}
.category-hub--fans .category-hub__art {
  background: linear-gradient(160deg, #062f34 0%, #0e4f5c 40%, #0f6b74 100%);
}
.category-hub--heating {
  background:
    radial-gradient(circle at 10% 0%, rgba(255, 183, 104, .18), transparent 26%),
    linear-gradient(180deg, #fffaf6 0%, #ffffff 30%, #ffffff 100%);
}
.category-hub--heating .category-hub__kicker,
.category-hub--heating .category-hub__section-head a {
  color: #c0571a;
}
.category-hub--heating .category-hub__art {
  background: linear-gradient(160deg, #3d1608 0%, #6c2610 42%, #9d3814 100%);
}
.category-hub--outdoor {
  background:
    radial-gradient(circle at 88% 0%, rgba(177, 222, 148, .16), transparent 28%),
    linear-gradient(180deg, #fbfff7 0%, #ffffff 30%, #ffffff 100%);
}
.category-hub--outdoor .category-hub__kicker,
.category-hub--outdoor .category-hub__section-head a {
  color: #4e8e1f;
}
.category-hub--outdoor .category-hub__art {
  background: linear-gradient(160deg, #1a3411 0%, #265422 40%, #3b7c3b 100%);
}
.category-hub--kitchen {
  background:
    radial-gradient(circle at 14% 0%, rgba(199, 167, 255, .16), transparent 28%),
    linear-gradient(180deg, #faf8ff 0%, #ffffff 30%, #ffffff 100%);
}
.category-hub--kitchen .category-hub__kicker,
.category-hub--kitchen .category-hub__section-head a {
  color: #7350d8;
}
.category-hub--kitchen .category-hub__art {
  background: linear-gradient(160deg, #22103f 0%, #372060 42%, #5533a0 100%);
}
[hidden] { display: none !important; }

@media (max-width: 960px) {
  .site-header__bar {
    height: 94px;
    padding: 0 20px;
  }
  .site-header__nav,
  .mega-menu { display: none; }
  .site-header__menu-toggle { display: none; }
  .site-header__actions {
    gap: 10px;
    right: 20px;
  }
  .brand-logo {
    width: min(76vw, 340px);
    height: 68px;
  }
  .brand-logo__image {
    width: min(76vw, 340px);
    max-height: none;
  }
  .hero { min-height: 620px; aspect-ratio: auto; }
  .promo-strip { flex-direction: column; gap: 8px; }
  .category-worlds,
  .social-section,
  .best-sellers,
  .benefits,
  .collection-products,
  .product-page,
  .cart-page,
  .search-results,
  .favorites-page { padding: 48px 20px; }
  .category-worlds__grid,
  .social-grid,
  .product-grid,
  .favorites-grid,
  .benefit-grid,
  .category-hub-benefits__grid,
  .category-hub__grid,
  .category-hub__featured-grid,
  .site-footer__grid,
  .product-layout,
  .cart-layout,
  .feature-band,
  .aplus__row,
  .reviews,
  .search-modal__body,
  .social-modal,
  .support-page__hero,
  .support-page__topics,
  .brand-page__hero,
  .brand-page__stats,
  .brand-page__story-grid,
  .brand-page__media-grid,
  .product-conversion__grid { grid-template-columns: 1fr; }
  .category-card { min-height: 340px; }
  .showcase-card {
    flex-basis: 82vw;
    aspect-ratio: 1 / 1;
  }
  .showcase-card__content {
    left: 18px;
    top: 18px;
    max-width: 76%;
  }
  .showcase-carousel__controls {
    align-items: flex-start;
  }
  .site-footer {
    padding: 0 24px 32px;
  }
  .site-footer__subscribe-form {
    flex-direction: column;
    align-items: stretch;
  }
  .site-footer__subscribe-form input,
  .site-footer__subscribe-form button {
    width: 100%;
  }
  .site-footer__payments {
    justify-content: flex-start;
  }
  .section-heading--split,
  .collection-products__head,
  .site-footer__bottom,
  .cart-item__details,
  .product-specs__row {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer__bottom div {
    justify-content: flex-start;
  }
  .support-page {
    padding: 64px 24px 80px;
  }
  .support-page__hero-copy,
  .support-page__hero-panel,
  .support-page__content,
  .support-card,
  .brand-page__hero-copy,
  .brand-page__hero-panel,
  .brand-page__content,
  .brand-stat,
  .brand-story-card,
  .brand-media-card {
    border-radius: 22px;
  }
  .brand-page {
    padding: 64px 24px 80px;
  }
  .collection-products__tools {
    width: 100%;
    flex-wrap: wrap;
    align-items: stretch;
  }
  .collection-tool,
  .collection-sort-form {
    width: 100%;
  }
  .collection-sort {
    width: 100%;
    justify-content: space-between;
  }
  .collection-sort select {
    min-width: 0;
    width: 100%;
  }
  .collection-filter-modal {
    grid-template-columns: 1fr;
  }
  .collection-filter-modal__scrim {
    display: none;
  }
  .collection-filter-modal__panel {
    padding: 24px 20px;
  }
  .collection-price-range,
  .collection-filter-actions {
    grid-template-columns: 1fr;
  }
  .product-thumbs { grid-template-columns: repeat(5, 1fr); }
  .feature-band > div:first-child { padding: 40px 24px; }
  .feature-band__image { min-height: 340px; }
  .product-detail-panels,
  .product-recommendations {
    padding: 0 20px 48px;
  }
  .product-detail-panels {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .product-detail-panel {
    padding: 28px 20px;
  }
  .product-specs__row strong {
    text-align: left;
  }
  .product-faq__answer {
    padding-right: 0;
  }
  .cart-item {
    grid-template-columns: 110px 1fr;
    gap: 18px;
  }
  .cart-summary { position: static; }
  .cart-drawer-panel {
    grid-template-columns: 1fr;
  }
  .cart-drawer-panel__scrim {
    display: none;
  }
  .cart-drawer-panel__head,
  .cart-drawer-panel__body {
    padding-left: 20px;
    padding-right: 20px;
  }
  .coupon-modal__panel {
    width: min(calc(100vw - 24px), 640px);
    min-height: 0;
    grid-template-columns: 1fr;
    border-radius: 22px;
  }
  .coupon-modal__gallery {
    grid-template-rows: 1fr .78fr .82fr;
    min-height: 300px;
    padding: 16px 0 0 16px;
  }
  .coupon-modal__gallery-card--top {
    border-radius: 22px 0 0 0;
  }
  .coupon-modal__gallery-card--bottom {
    border-radius: 0;
  }
  .coupon-modal__content-shape {
    clip-path: polygon(0 4%, 100% 0, 100% 100%, 0 100%);
  }
  .coupon-modal__content {
    padding: 30px 22px 28px;
  }
  .coupon-modal__panel-view {
    max-width: none;
  }
  .coupon-modal__brand-logo {
    width: min(190px, 58vw);
  }
  .coupon-modal__heading {
    font-size: clamp(34px, 10vw, 54px);
  }
  .coupon-modal__heading-accent {
    font-size: clamp(24px, 6vw, 34px);
  }
  .coupon-modal__success-title {
    font-size: 20px;
  }
  .coupon-modal__subheading,
  .coupon-modal__text,
  .coupon-modal__success-text,
  .coupon-form__errors {
    font-size: 12px;
  }
  .search-modal__head,
  .search-modal__body { padding: 44px 20px; }
  .search-modal__panel-title {
    flex-direction: column;
    align-items: flex-start;
  }
  .mobile-nav {
    grid-template-columns: 1fr;
  }
  .mobile-nav__scrim {
    display: none;
  }
  .mobile-nav__panel {
    padding: 24px 20px;
  }
  .suggested-grid { grid-template-columns: 1fr; }
  .social-shop-card {
    grid-template-columns: 72px minmax(0, 1fr);
  }
  .social-shop-card__button {
    grid-column: 1 / -1;
    width: 100%;
  }
  .summer-deal {
    padding: 126px 20px 56px;
  }
  .category-hub {
    padding: 40px 20px 56px;
  }
  .summer-deal__hero,
  .summer-deal__grid {
    grid-template-columns: 1fr;
  }
  .category-hub__copy,
  .category-hub__banner,
  .category-hub__page-content,
  .category-hub-card {
    border-radius: 24px;
  }
  .category-hub__banner {
    aspect-ratio: auto;
    min-height: 240px;
    max-height: none;
    padding: 20px;
  }
  .category-hub__copy {
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: 300px;
  }
  .category-hub__title {
    max-width: 10ch;
    font-size: 28px;
  }
  .category-hub__section-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .category-hub__grid,
  .category-hub__featured-grid {
    gap: 18px;
  }
  .category-hub__chips {
    gap: 8px;
    margin-bottom: 20px;
  }
  .category-hub__chip {
    min-height: 34px;
    padding: 0 14px;
    font-size: 11px;
  }
  .category-hub-benefits {
    margin-top: 40px;
  }
  .category-hub-benefits__head h2 {
    font-size: 32px;
  }
  .summer-deal__section-head {
    flex-direction: column;
    align-items: flex-start;
  }
  .summer-deal__copy,
  .summer-deal__art {
    border-radius: 26px;
  }
  .summer-deal__copy {
    padding: 28px 24px;
  }
  .summer-deal__title {
    max-width: 10ch;
    font-size: clamp(34px, 10vw, 48px);
  }
  .summer-deal__text {
    font-size: 14px;
  }
  .summer-deal__highlights,
  .summer-deal__benefits {
    grid-template-columns: 1fr;
  }
  .summer-deal__highlight,
  .summer-deal__benefit {
    min-height: 0;
  }
  .summer-deal__art {
    min-height: 320px;
  }
  .summer-deal__promo-card {
    right: 18px;
    bottom: 18px;
    width: calc(100% - 36px);
    padding: 20px;
    border-radius: 24px;
  }
  .summer-deal__promo-card h2 {
    font-size: 24px;
  }
  .summer-deal__grid {
    gap: 18px;
  }
  .summer-playbook {
    padding: 112px 0 56px;
  }
  .summer-playbook__top-strip {
    flex-wrap: wrap;
    gap: 6px 12px;
    padding: 8px 16px;
  }
  .summer-playbook__shell {
    max-width: calc(100vw - 24px);
    padding-top: 14px;
  }
  .summer-playbook__hero,
  .summer-playbook__essential-grid,
  .summer-playbook__trending-row,
  .summer-playbook__spotlights {
    grid-template-columns: 1fr;
  }
  .summer-playbook__hero {
    border-radius: 24px;
  }
  .summer-playbook__hero-copy {
    padding: 28px 22px;
  }
  .summer-playbook__title {
    font-size: clamp(38px, 11vw, 56px);
  }
  .summer-playbook__hero-media {
    min-height: 300px;
  }
  .summer-playbook__feature-strip {
    grid-template-columns: 1fr 1fr;
    gap: 14px 12px;
    padding: 14px 12px 16px;
  }
  .summer-playbook__feature-pill {
    justify-content: flex-start;
  }
  .summer-playbook__section-intro--split {
    flex-direction: column;
    align-items: flex-start;
  }
  .summer-playbook-card--essential,
  .summer-playbook-card--essential:nth-child(1),
  .summer-playbook-card--essential:nth-child(2),
  .summer-playbook-card--essential:nth-child(3),
  .summer-playbook-card--essential:nth-child(4),
  .summer-playbook-card--essential:nth-child(5) {
    transform: none;
    grid-column: auto;
    grid-row: auto;
  }
  .summer-playbook-card--essential .summer-playbook-card__media,
  .summer-playbook-card--essential:nth-child(1) .summer-playbook-card__media {
    aspect-ratio: .96 / 1.04;
  }
  .summer-playbook__shore {
    padding: 30px 22px 24px;
    border-radius: 24px;
  }
  .summer-playbook__shore-copy {
    max-width: none;
  }
  .summer-playbook__shore-copy h2 {
    font-size: clamp(34px, 11vw, 48px);
  }
  .summer-playbook__spotlights {
    margin-top: 18px;
  }
}
