/** Shopify CDN: Minification failed

Line 799:19 Unexpected "/"
Line 799:73 Unterminated string token

**/
/* ==========================================================================
   ARYOS — Base stylesheet
   Design tokens are defined as CSS custom properties in layout/theme.liquid
   (driven by settings_schema.json) and consumed here. Avoid hardcoding
   colors, spacing, or type values directly in section CSS — reference the
   tokens below so everything stays editable from the theme editor.
   ========================================================================== */

/* -------------------- Reset -------------------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--color-background);
  color: var(--color-text);
  font-family: var(--font-body);
  font-weight: var(--font-body-weight);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video {
  max-width: 100%;
  display: block;
}

button {
  font-family: inherit;
  cursor: pointer;
}

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

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: var(--font-heading);
  font-weight: var(--font-heading-weight);
  line-height: 1.2;
}

p {
  margin: 0;
}

/* -------------------- Type scale -------------------- */
h1, .h1 {
  font-size: clamp(2.25rem, 1.8rem + 2vw, 4rem);
  letter-spacing: 0.01em;
}

h2, .h2 {
  font-size: clamp(1.75rem, 1.5rem + 1.2vw, 2.75rem);
  letter-spacing: 0.01em;
}

h3, .h3 {
  font-size: clamp(1.25rem, 1.1rem + 0.6vw, 1.75rem);
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-text);
  opacity: 0.7;
}

/* -------------------- Layout system -------------------- */
.container {
  width: 100%;
  max-width: var(--page-width);
  margin-inline: auto;
  padding-inline: var(--container-padding);
}

.section {
  padding-block: var(--section-spacing-mobile);
}

@media screen and (min-width: 750px) {
  .section {
    padding-block: var(--section-spacing-desktop);
  }
}

.grid {
  display: grid;
  gap: var(--grid-gap);
}

.grid--2 { grid-template-columns: repeat(2, 1fr); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }

@media screen and (max-width: 989px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media screen and (max-width: 589px) {
  .grid--2,
  .grid--3,
  .grid--4 {
    grid-template-columns: 1fr;
  }
}

/* -------------------- Buttons -------------------- */
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--button-height);
  padding-inline: 32px;
  border: 1px solid var(--color-text);
  border-radius: var(--radius);
  background: transparent;
  color: var(--color-text);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  min-width: 44px;
}

.button--primary {
  background: var(--color-text);
  color: var(--color-surface);
}

.button--primary:hover {
  background: transparent;
  color: var(--color-text);
}

.button--secondary:hover {
  background: var(--color-text);
  color: var(--color-surface);
}

/* -------------------- Wordmark -------------------- */
.wordmark {
  font-family: var(--font-heading);
  font-size: var(--wordmark-font-size);
  letter-spacing: var(--wordmark-letter-spacing);
  text-transform: uppercase;
  white-space: nowrap;
}

/* -------------------- Accessibility -------------------- */
.skip-to-content {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  background: var(--color-surface);
  color: var(--color-text);
  padding: 12px 20px;
  border: 1px solid var(--color-border);
}

.skip-to-content:focus {
  left: var(--container-padding);
  top: var(--container-padding);
}

:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

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

/* Minimum touch target sizing for interactive icons */
.icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  color: var(--color-text);
}

/* -------------------- Motion -------------------- */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

/* -------------------- Product card component --------------------
   Used by snippets/product-card.liquid, shared identically by
   sections/featured-collection.liquid and sections/best-sellers.liquid.
   Lives here (once) rather than in the snippet, since the snippet renders
   inside a product loop and would otherwise duplicate this CSS per card.
   ------------------------------------------------------------------ */
.product-card {
  display: flex;
  flex-direction: column;
  color: var(--color-text);
}

.product-card__media {
  position: relative;
  display: block;
  aspect-ratio: var(--pc-ratio, 4 / 5);
  overflow: hidden;
  background: var(--color-border);
}

.product-card__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-card__image--secondary {
  opacity: 0;
  transition: opacity 300ms ease;
}

@media (hover: hover) and (pointer: fine) {
  .product-card:hover .product-card__image--secondary {
    opacity: 1;
  }
}

.product-card__media--placeholder {
  position: absolute;
  inset: 0;
  background: var(--color-border);
}

.product-card__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-top: 16px;
}

.product-card__vendor {
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.6;
}

.product-card__title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
}

.product-card__price {
  font-size: 0.9rem;
  display: flex;
  gap: 8px;
}

.product-card__price--sale {
  color: var(--color-accent);
}

.product-card__price--compare {
  text-decoration: line-through;
  opacity: 0.5;
}

.product-card__variants {
  display: flex;
  gap: 6px;
  font-size: 0.7rem;
  opacity: 0.6;
  margin-top: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .product-card__image--secondary {
    transition: none;
  }
}

/* -------------------- Product gallery component --------------------
   Used by snippets/product-gallery.liquid (rendered once per product page,
   but kept here since it's a reusable, product-page-wide component in the
   same family as the product-card rules above).
   ------------------------------------------------------------------ */
.product-gallery__track {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.product-gallery__item {
  scroll-margin-top: calc(var(--header-height) + 16px);
}

.product-gallery__image,
.product-gallery__image img {
  width: 100%;
  height: auto;
}

.product-gallery__zoom-link {
  display: block;
  cursor: zoom-in;
}

.product-gallery__media-embed {
  width: 100%;
}

.product-gallery__media-embed video,
.product-gallery__media-embed model-viewer,
.product-gallery__media-embed iframe {
  width: 100%;
  height: auto;
  display: block;
}

.product-gallery__placeholder {
  background: var(--color-border);
}

.product-gallery__placeholder-svg {
  width: 100%;
  height: auto;
  display: block;
}

.product-gallery__thumbnails {
  display: flex;
  gap: 12px;
  margin-top: 16px;
  overflow-x: auto;
}

.product-gallery__thumbnail {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  overflow: hidden;
  border: 1px solid var(--color-border);
}

.product-gallery__thumbnail-image,
.product-gallery__thumbnail-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (max-width: 749px) {
  .product-gallery__track {
    flex-direction: row;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0;
  }

  .product-gallery__item {
    flex: 0 0 100%;
    scroll-snap-align: center;
  }
}

/* -------------------- Product price component -------------------- */
.product-price {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 1.1rem;
}

.product-price__sale {
  color: var(--color-accent);
}

.product-price__compare {
  text-decoration: line-through;
  opacity: 0.5;
  font-size: 0.95rem;
}

.product-price__from-label {
  font-size: 0.85rem;
  opacity: 0.7;
}

.product-price__unit {
  font-size: 0.8rem;
  opacity: 0.6;
}

.product-price__unavailable {
  opacity: 0.6;
}

/* -------------------- Product variant picker component -------------------- */
.product-variant-picker {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.product-variant-picker__fieldset {
  border: none;
  padding: 0;
  margin: 0;
}

.product-variant-picker__legend {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  margin-bottom: 12px;
  padding: 0;
}

.product-variant-picker__selected-value {
  text-transform: none;
  letter-spacing: normal;
  opacity: 0.6;
}

.product-variant-picker__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-variant-picker__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  padding-inline: 18px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.85rem;
  cursor: pointer;
}

.product-variant-picker__radio:checked + .product-variant-picker__pill,
.product-variant-picker__pill.is-selected {
  border-color: var(--color-text);
  font-weight: 500;
}

.product-variant-picker__radio:focus-visible + .product-variant-picker__pill {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.product-variant-picker__pill.is-unavailable {
  opacity: 0.4;
  text-decoration: line-through;
}

.product-variant-picker__select-wrap {
  position: relative;
}

.product-variant-picker__select {
  width: 100%;
  height: var(--button-height);
  padding-inline: 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  color: var(--color-text);
  font-family: var(--font-body);
}

.product-variant-picker__select:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

/* -------------------- Product quantity selector component -------------------- */
.product-quantity-selector {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-quantity-selector__label {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  opacity: 0.7;
}

.product-quantity-selector__controls {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  width: fit-content;
}

.product-quantity-selector__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  background: none;
  border: none;
  color: var(--color-text);
}

.product-quantity-selector__button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
}

.product-quantity-selector__input {
  width: 48px;
  min-height: 44px;
  border: none;
  border-inline: 1px solid var(--color-border);
  text-align: center;
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-surface);
  -moz-appearance: textfield;
}

.product-quantity-selector__input::-webkit-outer-spin-button,
.product-quantity-selector__input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.product-quantity-selector__input:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
}

/* -------------------- Product form / buy buttons component -------------------- */
.product-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-form__buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.product-form__submit {
  width: 100%;
}

.product-form__submit[disabled],
.product-form__submit[aria-disabled="true"] {
  opacity: 0.5;
  cursor: not-allowed;
  border-style: dashed;
}

.product-form__dynamic-checkout {
  width: 100%;
}

.product-form__error {
  font-size: 0.85rem;
  color: #B3261E;
  border: 1px solid #B3261E;
  border-radius: var(--radius);
  padding: 12px 16px;
}

.product-form__noscript-variants {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* -------------------- Page hero component --------------------
   Used by sections/page-hero.liquid (About/Contact/FAQ/Shipping/Returns/
   Care/homepage-style page heroes) and sections/main-404.liquid, which
   reuses the same classes rather than duplicating this CSS.
   ------------------------------------------------------------------ */
.page-hero {
  position: relative;
  text-align: center;
}

.page-hero__content {
  max-width: var(--text-width-narrow);
  display: flex;
  flex-direction: column;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.page-hero--align-left .page-hero__content {
  text-align: left;
  margin-inline: 0;
}

.page-hero--align-center .page-hero__content {
  margin-inline: auto;
}

.page-hero__title {
  font-size: clamp(2rem, 1.6rem + 1.6vw, 3rem);
}

.page-hero__intro {
  opacity: 0.8;
  line-height: 1.7;
}

.page-hero__image {
  margin-bottom: 40px;
  max-height: 420px;
  overflow: hidden;
}

.page-hero__image-el,
.page-hero__image-el img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero--background {
  display: flex;
  align-items: center;
  min-height: 360px;
  overflow: hidden;
  color: #FFFFFF;
}

.page-hero__background-image {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.page-hero__background-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.35);
}

.page-hero__background-image-el,
.page-hero__background-image-el img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media screen and (min-width: 750px) {
  .page-hero {
    padding-top: var(--ph-spacing-desktop);
    padding-bottom: var(--ph-spacing-desktop);
  }
}

/* -------------------- Policy content component --------------------
   Used by sections/policy-page-content.liquid (manual Pages) and
   sections/main-policy.liquid (native Shopify policy pages) — identical
   readable-legal-content treatment for both, defined once.
   ------------------------------------------------------------------ */
.policy-content__inner {
  max-width: 720px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.policy-content__title {
  font-family: var(--font-heading);
  font-size: clamp(1.75rem, 1.4rem + 1.6vw, 2.5rem);
  text-align: center;
}

.policy-content__intro {
  opacity: 0.75;
  font-size: 1rem;
}

.policy-content__body {
  line-height: 1.8;
}

.policy-content__body h1,
.policy-content__body h2,
.policy-content__body h3 {
  font-family: var(--font-heading);
  margin-top: 32px;
  margin-bottom: 12px;
}

.policy-content__body p {
  margin-bottom: 16px;
}

.policy-content__body ul,
.policy-content__body ol {
  margin-bottom: 16px;
  padding-left: 20px;
  list-style: revert;
}

.policy-content__body a {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.policy-content__body table {
  width: 100%;
  border-collapse: collapse;
  display: block;
  overflow-x: auto;
  margin-bottom: 16px;
}

.policy-content__body th,
.policy-content__body td {
  border: 1px solid var(--color-border);
  padding: 8px 12px;
  text-align: left;
}

@media screen and (min-width: 750px) {
  .policy-content {
    padding-block: var(--pc-spacing-desktop);
  }
}


   Used by snippets/disclosure.liquid — shared by main-product.liquid's
   accordion blocks and sections/faq-accordion.liquid. Generic on purpose:
   no product-specific naming.
   ------------------------------------------------------------------ */
.disclosure {
  border-top: 1px solid var(--color-border);
}

.disclosure:last-of-type {
  border-bottom: 1px solid var(--color-border);
}

.disclosure__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 16px;
  min-height: 44px;
  cursor: pointer;
  list-style: none;
  font-size: 0.9rem;
}

.disclosure__summary::-webkit-details-marker {
  display: none;
}

.disclosure__summary:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.disclosure__icon {
  display: inline-flex;
  transition: transform 200ms ease;
  flex-shrink: 0;
}

.disclosure[open] .disclosure__icon {
  transform: rotate(45deg);
}

.disclosure__content {
  padding-bottom: 20px;
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.85;
}

@media (prefers-reduced-motion: reduce) {
  .disclosure__icon {
    transition: none;
  }
}

/* -------------------- Collection header component -------------------- */
.collection-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 40px;
}

.collection-header--center {
  text-align: center;
  align-items: center;
}

.collection-header__title {
  font-size: clamp(2rem, 1.6rem + 1.6vw, 3rem);
}

.collection-header__description {
  max-width: var(--text-width-narrow);
  opacity: 0.8;
  line-height: 1.7;
}

.collection-header--center .collection-header__description {
  margin-inline: auto;
}

.collection-header__image {
  width: 100%;
  overflow: hidden;
  margin-bottom: 8px;
}

.collection-header__image--small { height: 240px; }
.collection-header__image--medium { height: 360px; }
.collection-header__image--large { height: 480px; }

.collection-header__image-el,
.collection-header__image-el img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.collection-header__image--background {
  position: relative;
}

.collection-header__image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.25);
}

.collection-header__image-content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.collection-header__image-content .collection-header__title {
  color: #FFFFFF;
}

/* -------------------- Collection toolbar / sorting component -------------------- */
.collection-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding-block: 20px;
  border-block: 1px solid var(--color-border);
  margin-bottom: 40px;
}

.collection-toolbar__count {
  font-size: 0.85rem;
  opacity: 0.7;
}

.collection-toolbar__sort-form {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: auto;
}

.collection-toolbar__sort-label {
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  opacity: 0.7;
}

.collection-toolbar__select-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.collection-toolbar__select {
  appearance: none;
  height: 44px;
  padding-inline: 16px 36px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 0.85rem;
}

.collection-toolbar__select:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.collection-toolbar__select-icon {
  position: absolute;
  right: 14px;
  pointer-events: none;
  display: inline-flex;
}

.collection-toolbar__submit {
  height: 44px;
}

/* -------------------- Collection product grid component -------------------- */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(var(--cg-mobile-cols, 2), 1fr);
  gap: var(--cg-gap, 24px);
}

@media screen and (min-width: 750px) {
  .collection-grid {
    grid-template-columns: repeat(var(--cg-tablet-cols, 2), 1fr);
  }
}

@media screen and (min-width: 990px) {
  .collection-grid {
    grid-template-columns: repeat(var(--cg-desktop-cols, 3), 1fr);
  }
}

/* -------------------- Collection empty state -------------------- */
.collection-empty {
  padding-block: 64px;
  text-align: center;
  opacity: 0.7;
}

/* -------------------- Pagination component -------------------- */
.pagination {
  margin-top: 56px;
  display: flex;
  justify-content: center;
}

.pagination__list {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding-inline: 12px;
  font-size: 0.85rem;
  border-radius: var(--radius);
}

.pagination__link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.pagination__link.is-current {
  border: 1px solid var(--color-text);
  font-weight: 500;
}

.pagination__link.is-disabled {
  opacity: 0.35;
}

.pagination__ellipsis {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  opacity: 0.5;
}

@media (prefers-reduced-motion: reduce) {
  .collection-toolbar__select,
  .pagination__link {
    transition: none;
  }
}

/* -------------------- Collection filters layout -------------------- */
.collection-layout {
  display: block;
}

.collection-layout--with-filters {
  display: block;
}

@media screen and (min-width: 990px) {
  .collection-layout--with-filters {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 48px;
    align-items: start;
  }
}

.collection-layout__main {
  min-width: 0;
}

/* -------------------- Filter drawer (default: inline, no-JS safe) --------------------
   By default this renders as a normal block in the page flow at every
   breakpoint — this is the no-JavaScript fallback. The off-canvas mobile
   drawer behavior (overlay, slide-in panel, hidden-until-opened) only
   applies once theme.js adds `.js-enhanced` to the section root, which
   only happens when JavaScript actually runs.
   ------------------------------------------------------------------ */
.filter-drawer__overlay {
  display: none;
}

.collection-filters {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-block: 24px;
  border-bottom: 1px solid var(--color-border);
  margin-bottom: 32px;
}

@media screen and (min-width: 990px) {
  .collection-filters {
    border-bottom: none;
    padding-block: 0;
    margin-bottom: 0;
    position: sticky;
    top: calc(var(--header-height, 84px) + 24px);
  }
}

.collection-filters__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.collection-filters__heading {
  font-family: var(--font-heading);
  font-size: 1.25rem;
}

.collection-filters__close {
  display: none;
}

.collection-filters__groups {
  display: flex;
  flex-direction: column;
}

.collection-filters__footer {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.collection-filters__apply {
  width: 100%;
}

.collection-filters__clear {
  text-align: center;
  font-size: 0.8rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* -------------------- Off-canvas mobile drawer (JS-enhanced only) -------------------- */
@media screen and (max-width: 989px) {
  .js-enhanced .filter-drawer {
    position: fixed;
    inset: 0;
    z-index: 90;
    display: none;
  }

  .js-enhanced .filter-drawer.is-open {
    display: block;
  }

  .js-enhanced .filter-drawer__overlay {
    display: block;
    position: absolute;
    inset: 0;
    background: rgba(17, 17, 17, 0.4);
  }

  .js-enhanced .collection-filters {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 90%;
    max-width: 360px;
    background: var(--color-background);
    border-bottom: none;
    margin-bottom: 0;
    padding: var(--container-padding);
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 280ms ease;
  }

  .js-enhanced .filter-drawer.is-open .collection-filters {
    transform: translateX(0);
  }

  .js-enhanced .collection-filters__close {
    display: inline-flex;
  }

  .js-enhanced .collection-filters__footer {
    position: sticky;
    bottom: 0;
    background: var(--color-background);
    padding-top: 16px;
    border-top: 1px solid var(--color-border);
  }
}

@media (prefers-reduced-motion: reduce) {
  .js-enhanced .collection-filters {
    transition: none;
  }
}

/* -------------------- Mobile filter trigger (visible only once JS-enhanced) -------------------- */
.collection-toolbar__filter-trigger {
  display: none;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding-inline: 16px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: none;
  color: var(--color-text);
  font-size: 0.85rem;
  position: relative;
}

.js-enhanced .collection-toolbar__filter-trigger {
  display: inline-flex;
}

@media screen and (min-width: 990px) {
  .js-enhanced .collection-toolbar__filter-trigger {
    display: none;
  }
}

.collection-toolbar__filter-trigger:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.collection-toolbar__filter-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 18px;
  height: 18px;
  padding-inline: 4px;
  border-radius: 999px;
  background: var(--color-text);
  color: var(--color-surface);
  font-size: 0.65rem;
}

/* -------------------- Filter group component -------------------- */
.filter-group {
  border-bottom: 1px solid var(--color-border);
}

.filter-group__summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding-block: 16px;
  min-height: 44px;
  cursor: pointer;
  list-style: none;
  font-size: 0.85rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.filter-group__summary::-webkit-details-marker {
  display: none;
}

.filter-group__summary:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.filter-group__icon {
  display: inline-flex;
  transition: transform 200ms ease;
  flex-shrink: 0;
}

.filter-group[open] .filter-group__icon {
  transform: rotate(180deg);
}

.filter-group__values {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-bottom: 20px;
  max-height: 320px;
  overflow-y: auto;
}

.filter-group__value {
  display: flex;
  align-items: flex-start;
}

.filter-group__checkbox {
  width: 18px;
  height: 18px;
  min-width: 18px;
  margin-top: 2px;
  margin-right: 10px;
  accent-color: var(--color-text);
}

.filter-group__checkbox:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.filter-group__value-label {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.9rem;
  min-height: 44px;
  align-items: flex-start;
  justify-content: center;
  cursor: pointer;
}

.filter-group__count {
  font-size: 0.75rem;
  opacity: 0.55;
}

.filter-group__value--unavailable .filter-group__value-label {
  opacity: 0.5;
}

.filter-group__unavailable-text {
  font-size: 0.7rem;
  text-decoration: underline;
  text-underline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .filter-group__icon {
    transition: none;
  }
}

/* -------------------- Price range filter component -------------------- */
.price-range-filter {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  padding-bottom: 20px;
}

.price-range-filter__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  flex: 1;
}

.price-range-filter__label {
  font-size: 0.7rem;
  letter-spacing: 0.03em;
  text-transform: none;
  opacity: 0.7;
}

.price-range-filter__input {
  height: 44px;
  padding-inline: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  background: var(--color-surface);
  color: var(--color-text);
  font-family: var(--font-body);
  width: 100%;
}

.price-range-filter__input:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.price-range-filter__separator {
  padding-bottom: 12px;
  opacity: 0.5;
}

/* -------------------- Active filters component -------------------- */
.active-filters {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.active-filters__list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.active-filters__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding-inline: 12px;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.75rem;
}

.active-filters__chip:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.active-filters__clear-all {
  font-size: 0.75rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.75;
}

/* -------------------- Search form component (shared: header + search page) -------------------- */
.search-form {
  display: flex;
  align-items: center;
  gap: 12px;
}

.search-form__input {
  flex: 1;
  min-width: 0;
  height: 44px;
  border: none;
  border-bottom: 1px solid var(--color-border);
  background: none;
  font-family: var(--font-heading);
  font-size: 1.15rem;
  color: var(--color-text);
}

.search-form__input:focus {
  outline: none;
  border-color: var(--color-text);
}

.search-form__submit {
  min-width: 44px;
  min-height: 44px;
}

/* -------------------- Main search page -------------------- */
.search-header {
  scroll-margin-top: calc(var(--header-height, 84px) + 16px);
}

.search-results-grid__group {
  margin-bottom: 56px;
}

.search-results-grid__group-heading {
  font-size: 1.1rem;
  margin-bottom: 24px;
  text-align: left;
}

.search-results-grid__editorial-list,
.search-results-grid__mixed {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--grid-gap);
}

@media screen and (min-width: 750px) {
  .search-results-grid__editorial-list,
  .search-results-grid__mixed {
    grid-template-columns: repeat(3, 1fr);
  }
}

.search-result-card {
  display: flex;
}

.search-result-card__link {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--color-text);
}

.search-result-card__media {
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--color-border);
}

.search-result-card__image,
.search-result-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.search-result-card__title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
}

.search-result-card__excerpt {
  font-size: 0.85rem;
  opacity: 0.75;
  line-height: 1.6;
}

/* -------------------- Predictive search panel -------------------- */
.predictive-search {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.predictive-search__group-heading {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 12px;
}

.predictive-search__list {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.predictive-search__item {
  display: flex;
}

.predictive-search__query-link,
.predictive-search__text-link {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  width: 100%;
  color: var(--color-text);
  font-size: 0.9rem;
}

.predictive-search__product-link {
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 44px;
  width: 100%;
  color: var(--color-text);
}

.predictive-search__product-media {
  flex-shrink: 0;
  width: 56px;
  height: 70px;
  overflow: hidden;
  background: var(--color-border);
}

.predictive-search__product-image,
.predictive-search__product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.predictive-search__product-placeholder {
  display: block;
  width: 100%;
  height: 100%;
}

.predictive-search__product-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.predictive-search__product-title {
  font-size: 0.9rem;
  overflow-wrap: break-word;
}

.predictive-search__product-price {
  font-size: 0.8rem;
  opacity: 0.7;
}

.predictive-search__price--sale {
  color: var(--color-accent);
  opacity: 1;
}

.predictive-search__price--compare {
  text-decoration: line-through;
  margin-left: 6px;
}

.predictive-search__query-link:focus-visible,
.predictive-search__text-link:focus-visible,
.predictive-search__product-link:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.predictive-search__view-all {
  align-self: center;
  font-size: 0.8rem;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media screen and (max-width: 749px) {
  .search-panel__results {
    max-width: 100vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .search-form__input {
    transition: none;
  }
}

/* -------------------- Cart items component -------------------- */
.cart-items {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr auto;
  gap: 16px;
}

.cart-item__media-link {
  display: block;
  width: 72px;
  height: 90px;
  overflow: hidden;
  background: var(--color-border);
}

.cart-item__image,
.cart-item__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item__details {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
}

.cart-item__title {
  font-family: var(--font-heading);
  font-size: 1rem;
}

.cart-item__options,
.cart-item__discounts,
.cart-item__properties {
  display: flex;
  flex-direction: column;
  gap: 2px;
  font-size: 0.8rem;
  opacity: 0.7;
}

.cart-item.is-loading {
  opacity: 0.6;
}

.cart-item__quantity-button[disabled],
.cart-item__remove[aria-disabled="true"] {
  opacity: 0.4;
  cursor: not-allowed;
}

.button.is-loading,
.cart-footer__checkout.is-loading {
  opacity: 0.7;
  cursor: wait;
}

.cart-item__selling-plan,
.cart-item__vendor {
  font-size: 0.75rem;
  opacity: 0.6;
}

.cart-item__discount {
  color: var(--color-accent);
  opacity: 1;
}

.cart-item__quantity {
  display: inline-flex;
  align-items: stretch;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  width: fit-content;
  margin-top: 4px;
}

.cart-item__quantity-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  min-height: 40px;
  background: none;
  border: none;
  color: var(--color-text);
}

.cart-item__quantity-button:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: -2px;
}

.cart-item__quantity-input {
  width: 40px;
  min-height: 40px;
  border: none;
  border-inline: 1px solid var(--color-border);
  text-align: center;
  background: var(--color-surface);
  color: var(--color-text);
  font-family: var(--font-body);
  -moz-appearance: textfield;
}

.cart-item__quantity-input::-webkit-outer-spin-button,
.cart-item__quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.cart-item__remove {
  font-size: 0.75rem;
  text-decoration: underline;
  text-underline-offset: 3px;
  opacity: 0.7;
  width: fit-content;
}

.cart-item__price {
  text-align: right;
  font-size: 0.9rem;
  white-space: nowrap;
}

.cart-item__price--sale {
  color: var(--color-accent);
  display: block;
}

.cart-item__price--compare {
  text-decoration: line-through;
  opacity: 0.5;
  font-size: 0.8rem;
  display: block;
}

/* -------------------- Cart footer component -------------------- */
.cart-footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cart-footer__note {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.cart-footer__note-label {
  font-size: 0.8rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  opacity: 0.7;
}

.cart-footer__note-input {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  padding: 10px 12px;
  font-family: var(--font-body);
  background: var(--color-surface);
  color: var(--color-text);
  resize: vertical;
}

.cart-footer__note-input:focus-visible {
  outline: 2px solid var(--color-accent);
  outline-offset: 2px;
}

.cart-footer__subtotal-row {
  display: flex;
  justify-content: space-between;
  font-size: 1rem;
  padding-top: 12px;
  border-top: 1px solid var(--color-border);
}

.cart-footer__tax-notice {
  font-size: 0.75rem;
  opacity: 0.65;
}

.cart-footer__checkout {
  width: 100%;
}

.cart-footer__checkout[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}

/* -------------------- Cart empty state -------------------- */
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
  padding-block: 56px;
}

.cart-empty__message {
  opacity: 0.75;
}

/* -------------------- Main cart page -------------------- */
.main-cart__form {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

@media screen and (min-width: 750px) {
  .main-cart__form {
    max-width: 640px;
    margin-inline: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cart-item__quantity-button {
    transition: none;
  }
}

/* -------------------- Empty state -------------------- */
.empty-state {
  border: 1px dashed var(--color-border);
  padding: 48px 24px;
  text-align: center;
  color: var(--color-text);
  opacity: 0.6;
}
