/** Shopify CDN: Minification failed

Line 1958:14 Expected identifier but found whitespace
Line 1958:16 Expected identifier but found "%"
Line 1958:24 Unexpected "{"
Line 1958:25 Unexpected "{"
Line 1958:34 Expected ":"
Line 1958:60 Unexpected "{"
Line 1958:61 Expected identifier but found "%"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:announcement-bar (INDEX:1) */
.announcement-bar {
  position: relative;
  width: 100%;
  font-size: var(--ab-font-size, 14px);
  font-weight: var(--ab-font-weight, 400);
  text-transform: var(--ab-text-transform, none);
}
.announcement-bar--divider {
  border-bottom: 1px solid rgb(var(--color-foreground, 26 26 26) / 0.12);
}
.announcement-bar--height-small .announcement-bar__inner { min-height: 32px; }
.announcement-bar--height-medium .announcement-bar__inner { min-height: 44px; }
.announcement-bar--height-large .announcement-bar__inner { min-height: 56px; }
.announcement-bar__inner {
  gap: 0.75rem;
  width: 100%;
}
.announcement-bar__content {
  position: relative;
}

/* Carousel */
.announcement-bar__swiper {
  width: 100%;
  max-width: var(--ab-carousel-max-width, none);
  margin-inline: auto;
}
.announcement-bar__track .swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
}
.announcement-bar__nav-btn {
  color: inherit;
}
.announcement-bar__nav-btn::after {
  font-size: 0.75rem;
}
.announcement-bar__pagination {
  position: static;
  margin-top: 0.25rem;
}

/* Marquee */
.announcement-bar__marquee {
  overflow: hidden;
  width: 100%;
}
.announcement-bar__marquee-track {
  display: flex;
  width: max-content;
  animation: announcement-bar-marquee var(--ab-marquee-speed, 30s) linear infinite;
  animation-direction: var(--ab-marquee-direction, normal);
}
.announcement-bar__marquee[data-pause-hover='true']:hover .announcement-bar__marquee-track {
  animation-play-state: paused;
}
.announcement-bar__marquee-group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
@keyframes announcement-bar-marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
.announcement-bar__marquee-group > * + * {
  margin-left: var(--ab-divider-gap, 24px);
}
.announcement-bar-item + .announcement-bar-item {
  position: relative;
}
.announcement-bar-item + .announcement-bar-item::before {
  content: '';
  display: inline-block;
  vertical-align: middle;
  margin-right: var(--ab-divider-gap, 24px);
  background: var(--ab-divider-color, currentColor);
}
.announcement-bar--shape-bar .announcement-bar-item + .announcement-bar-item::before {
  width: 1px;
  height: var(--ab-divider-size, 14px);
}
.announcement-bar--shape-diamond .announcement-bar-item + .announcement-bar-item::before {
  width: var(--ab-divider-size, 6px);
  height: var(--ab-divider-size, 6px);
  transform: rotate(45deg);
}
.announcement-bar--shape-flower .announcement-bar-item + .announcement-bar-item::before {
  width: var(--ab-divider-size, 8px);
  height: var(--ab-divider-size, 8px);
  border-radius: 50%;
  box-shadow:
    calc(var(--ab-divider-size, 8px) * 0.6) 0 0 -1px var(--ab-divider-color, currentColor),
    calc(var(--ab-divider-size, 8px) * -0.6) 0 0 -1px var(--ab-divider-color, currentColor);
}

/* Localization & social */
.announcement-bar__social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.announcement-bar__social a {
  display: inline-flex;
  color: inherit;
}
.announcement-bar__social svg {
  width: var(--ab-social-size, 16px);
  height: var(--ab-social-size, 16px);
}

@media (max-width: 749.98px) {
  .announcement-bar__localization,
  .announcement-bar__social {
    display: none;
  }
}
/* END_SECTION:announcement-bar */

/* START_SECTION:article (INDEX:2) */
.article {
    max-width: var(--page-width, 1400px);
    margin-inline: auto;
  }
  .article__hero { margin-bottom: 2rem; }
  .article__hero-image { width: 100%; max-height: 500px; object-fit: cover; }
  .article__inner {
    max-width: 48rem;
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
    padding-block: var(--section-padding-fluid, 3rem);
  }
  .article__tags {
    display: flex; gap: 0.4rem; flex-wrap: wrap;
    margin-bottom: 0.75rem;
  }
  .article__tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.6;
  }
  .article__title { margin: 0 0 0.75rem; }
  .article__meta { font-size: 0.85rem; opacity: 0.6; margin-bottom: 2rem; }
  .article__content { line-height: 1.7; }
  .article__share {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgb(0 0 0 / 0.1);
    font-size: 0.9rem;
  }
  .article__share a { color: var(--color-foreground); }
  .article__comments { margin-top: 3rem; padding-top: 2rem; border-top: 1px solid rgb(0 0 0 / 0.1); }
  .article__comments-title { margin-bottom: 2rem; }
  .article__comment {
    padding: 1rem 0;
    border-bottom: 1px solid rgb(0 0 0 / 0.08);
  }
  .article__comment-author { font-weight: bold; margin: 0 0 0.25rem; }
  .article__comment-date { font-size: 0.8rem; opacity: 0.6; margin: 0 0 0.5rem; }
  .article__comment-field { margin-bottom: 1rem; }
  .article__comment-field label { display: block; margin-bottom: 0.4rem; font-size: 0.9rem; }
  .article__comment-field input,
  .article__comment-field textarea {
    width: 100%;
    padding: 0.6rem 0.75rem;
    border: 1px solid rgb(0 0 0 / 0.2);
    border-radius: var(--input-border-radius, 0px);
    background: var(--color-background);
    color: var(--color-foreground);
    font: inherit;
  }
/* END_SECTION:article */

/* START_SECTION:before-after (INDEX:3) */
.before-after {
  background-color: var(--color-background, #fff);
  color: var(--color-foreground, #1a1a1a);
}
.before-after__root {
  display: block;
}
.before-after__body {
  min-width: 0;
}

/* Vertical layout — header | categories */
.before-after--vertical .before-after__root > div {
  display: grid;
  grid-template-columns: var(--ba-sidebar-width, 38%) minmax(0, 1fr);
  gap: var(--ba-column-gap, 48px);
  align-items: center;
}
.before-after--vertical .before-after__header-col {
  align-self: center;
}
.before-after--vertical .before-after__categories {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  min-width: 0;
}
.before-after--vertical .before-after__nav {
  margin-top: 1.5rem;
}

/* Horizontal layout — comparison | content split */
.before-after--horizontal .before-after__root > div {
  display: flex;
  flex-direction: column;
}
.before-after--horizontal.before-after--has-header-row .before-after__header-col {
  padding: var(--ba-content-padding, 48px);
  padding-bottom: 0;
}
.before-after--horizontal .before-after__categories {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
}
.before-after--horizontal.before-after--split-reverse .before-after-category__comparison-col {
  order: 2;
}
.before-after--horizontal.before-after--split-reverse .before-after-category__content-col {
  order: 1;
}
.before-after--horizontal .before-after-category__comparison-col {
  align-self: stretch;
}
.before-after--horizontal .before-after__nav {
  position: absolute;
  inset-block: 0;
  inset-inline: 0;
  pointer-events: none;
  z-index: 5;
}
.before-after--horizontal .before-after__body {
  position: relative;
}
.before-after--horizontal .before-after__nav-btn {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.before-after--horizontal .before-after__nav-btn--prev {
  left: calc(var(--ba-split-media, 50%) - 1.5rem);
}
.before-after--horizontal.before-after--split-reverse .before-after__nav-btn--prev {
  left: calc(var(--ba-split-content, 50%) - 1.5rem);
}
.before-after--horizontal .before-after__nav-btn--next {
  right: 1rem;
}
.before-after--horizontal .before-after__dots {
  display: none;
}

/* Category navigation */
.before-after__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.before-after__nav-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent);
  border-radius: 50%;
  background: var(--color-background, #fff);
  color: inherit;
  cursor: pointer;
}
.before-after__nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.before-after__nav-btn:focus-visible {
  outline: 2px solid var(--color-foreground, #1a1a1a);
  outline-offset: 2px;
}
.before-after__dots {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.before-after__dot {
  width: 0.5rem;
  height: 0.5rem;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: color-mix(in srgb, var(--color-foreground) 25%, transparent);
  cursor: pointer;
}
.before-after__dot.is-active {
  background: var(--color-foreground, #1a1a1a);
}
.before-after__dot:focus-visible {
  outline: 2px solid var(--color-foreground, #1a1a1a);
  outline-offset: 2px;
}

@media (max-width: 991.98px) {
  .before-after--vertical .before-after__root > div {
    grid-template-columns: minmax(0, 1fr);
    gap: 2rem;
  }
  .before-after--horizontal .before-after-category.is-active {
    grid-template-columns: minmax(0, 1fr);
  }
  .before-after--horizontal .before-after-category__comparison-col,
  .before-after--horizontal .before-after-category__content-col {
    order: unset;
  }
  .before-after--horizontal .before-after-category__content-col {
    padding: clamp(1.5rem, 5vw, 2.5rem);
  }
  .before-after--horizontal .before-after__nav-btn--prev {
    left: 1rem;
  }
}
/* END_SECTION:before-after */

/* START_SECTION:blog (INDEX:4) */
.blog {
    max-width: var(--page-width, 1400px);
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
    padding-block: var(--section-padding-fluid, 3rem);
  }
  .blog__title { margin-bottom: 2rem; }
  .blog__grid {
    display: grid;
    grid-template-columns: repeat(var(--cols, 2), 1fr);
    gap: 2rem;
  }
  @media (max-width: 600px) {
    .blog__grid { grid-template-columns: 1fr; }
  }
  .article-card { display: flex; flex-direction: column; }
  .article-card__image { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
  .article-card__body { padding: 1rem 0; flex: 1; }
  .article-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    margin-bottom: 0.5rem;
  }
  .article-card__tag {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.6;
  }
  .article-card__title { margin: 0 0 0.5rem; font-size: 1.1rem; }
  .article-card__title a { text-decoration: none; color: var(--color-foreground); }
  .article-card__title a:hover { text-decoration: underline; }
  .article-card__meta { font-size: 0.8rem; opacity: 0.6; margin: 0 0 0.75rem; }
  .article-card__excerpt { font-size: 0.9rem; opacity: 0.8; margin-bottom: 0.75rem; }
  .article-card__read-more { font-size: 0.9rem; text-decoration: underline; color: var(--color-foreground); }
  .blog__pagination { margin-top: 3rem; text-align: center; }
/* END_SECTION:blog */

/* START_SECTION:cart-drawer (INDEX:5) */
.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;
  }

  /* ---------- Dialog / drawer shell ---------- */
  dialog.cart-drawer {
    position: fixed;
    inset-block: 0;
    inset-inline-end: 0;
    margin: 0;
    height: 100%;
    max-height: 100svh;
    width: min(28rem, 100vw);
    max-width: 100%;
    padding: 0;
    border: none;
    color: var(--color-foreground);
    background-color: var(--color-background);
    box-shadow: -4px 0 30px rgb(0 0 0 / 0.1);
    overflow: hidden;
    /* Slide in/out. allow-discrete lets us transition to/from display:none. */
    translate: 100% 0;
    transition:
      translate 0.3s ease,
      overlay 0.3s ease allow-discrete,
      display 0.3s ease allow-discrete;
  }

  dialog.cart-drawer[open] {
    translate: 0 0;
  }

  @starting-style {
    dialog.cart-drawer[open] {
      translate: 100% 0;
    }
  }

  dialog.cart-drawer::backdrop {
    background-color: rgb(0 0 0 / 0.5);
    opacity: 0;
    transition:
      opacity 0.3s ease,
      overlay 0.3s ease allow-discrete,
      display 0.3s ease allow-discrete;
  }

  dialog.cart-drawer[open]::backdrop {
    opacity: 1;
  }

  @starting-style {
    dialog.cart-drawer[open]::backdrop {
      opacity: 0;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    dialog.cart-drawer,
    dialog.cart-drawer::backdrop {
      transition: none;
    }
  }

  .cart-drawer__inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    margin: 0;
  }

  .cart-drawer[aria-busy='true'] .cart-drawer__inner {
    opacity: 0.6;
    pointer-events: none;
  }

  /* ---------- Header ---------- */
  .cart-drawer__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid rgb(0 0 0 / 0.08);
  }

  .cart-drawer__heading {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    font-size: 1.25rem;
    margin: 0;
  }

  .cart-drawer__count {
    font-size: 0.875rem;
    font-weight: normal;
    opacity: 0.7;
  }

  .cart-drawer__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    padding: 0;
    color: currentcolor;
    background: none;
    border: none;
    border-radius: var(--style-border-radius-inputs);
    cursor: pointer;
  }

  .cart-drawer__close:hover {
    background-color: rgb(0 0 0 / 0.05);
  }

  .cart-drawer__close svg {
    width: 1.25rem;
    height: 1.25rem;
  }

  /* ---------- Content layout ---------- */
  .cart-drawer__content {
    display: flex;
    flex-direction: column;
    flex: 1;
    min-height: 0;
  }

  .cart-drawer__items {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    list-style: none;
    margin: 0;
    padding: 0.5rem 1.5rem;
  }

  /* ---------- Empty state ---------- */
  .cart-drawer__empty {
    display: flex;
    flex: 1;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 2rem 1.5rem;
    text-align: center;
  }

  /* ---------- Free shipping bar ---------- */
  .cart-drawer__shipping {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid rgb(0 0 0 / 0.08);
  }

  .cart-drawer__shipping-text {
    font-size: 0.875rem;
    margin: 0 0 0.5rem;
    text-align: center;
  }

  .cart-drawer__progress {
    height: 0.375rem;
    border-radius: 999px;
    background-color: rgb(0 0 0 / 0.1);
    overflow: hidden;
  }

  .cart-drawer__progress-fill {
    display: block;
    height: 100%;
    width: var(--progress, 0%);
    border-radius: inherit;
    background-color: var(--color-foreground);
    transition: width 0.4s ease;
  }

  /* ---------- Line item ---------- */
  .cart-item {
    display: grid;
    grid-template-columns: 4.5rem 1fr auto;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid rgb(0 0 0 / 0.08);
  }

  .cart-item:last-child {
    border-bottom: none;
  }

  .cart-item__media {
    display: block;
  }

  .cart-item__media img {
    width: 100%;
    height: auto;
    border-radius: var(--style-border-radius-inputs);
  }

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

  .cart-item__title {
    font-weight: bold;
    text-decoration: none;
    color: currentcolor;
  }

  .cart-item__title:hover {
    text-decoration: underline;
  }

  .cart-item__option,
  .cart-item__properties,
  .cart-item__discounts {
    font-size: 0.8125rem;
    opacity: 0.7;
    margin: 0;
    padding: 0;
    list-style: none;
  }

  .cart-item__discounts {
    opacity: 1;
    color: var(--color-foreground);
  }

  .cart-item__quantity {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
  }

  .cart-item__price {
    text-align: end;
    white-space: nowrap;
  }

  .cart-item__price-original {
    display: block;
    font-size: 0.8125rem;
    opacity: 0.6;
  }

  .cart-item__remove {
    font-size: 0.8125rem;
    color: currentcolor;
    opacity: 0.7;
    text-underline-offset: 2px;
  }

  .cart-item__remove:hover {
    opacity: 1;
  }

  /* ---------- Quantity stepper ---------- */
  .quantity {
    display: inline-flex;
    align-items: center;
    border: 1px solid rgb(0 0 0 / 0.2);
    border-radius: var(--style-border-radius-inputs);
    overflow: hidden;
  }

  .quantity__button {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2rem;
    height: 2rem;
    padding: 0;
    color: currentcolor;
    background: none;
    border: none;
    cursor: pointer;
  }

  .quantity__button:disabled {
    opacity: 0.4;
    cursor: not-allowed;
  }

  .quantity__button svg {
    width: 0.875rem;
    height: 0.875rem;
  }

  .quantity__input {
    width: 2.5rem;
    height: 2rem;
    padding: 0;
    text-align: center;
    border: none;
    border-inline: 1px solid rgb(0 0 0 / 0.2);
    background: none;
    color: currentcolor;
    border-radius: 0;
    -moz-appearance: textfield;
    appearance: textfield;
  }

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

  /* ---------- Note ---------- */
  .cart-drawer__note {
    padding: 1rem 1.5rem 0;
  }

  .cart-drawer__note label {
    display: block;
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
  }

  .cart-drawer__note-input {
    width: 100%;
    min-height: 4rem;
    padding: 0.625rem;
    border: 1px solid rgb(0 0 0 / 0.2);
    background-color: var(--color-background);
    color: currentcolor;
    resize: vertical;
  }

  /* ---------- Footer ---------- */
  .cart-drawer__footer {
    padding: 1.25rem 1.5rem;
    border-top: 1px solid rgb(0 0 0 / 0.08);
    background-color: var(--color-background);
  }

  .cart-drawer__discounts {
    list-style: none;
    margin: 0 0 0.75rem;
    padding: 0;
    font-size: 0.875rem;
  }

  .cart-drawer__subtotal {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1.125rem;
    font-weight: bold;
  }

  .cart-drawer__taxes {
    font-size: 0.8125rem;
    opacity: 0.7;
    margin: 0.25rem 0 1rem;
  }

  .cart-drawer__actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
  }

  .cart-drawer__view-cart {
    color: currentcolor;
    text-underline-offset: 2px;
  }

  /* ---------- Shared button ---------- */
  .cart-drawer-component .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1.5rem;
    font: inherit;
    text-decoration: none;
    color: var(--color-background);
    background-color: var(--color-foreground);
    border: 1px solid var(--color-foreground);
    border-radius: var(--style-border-radius-inputs);
    cursor: pointer;
  }

  .cart-drawer-component .button--primary {
    width: 100%;
  }

  .cart-drawer-component .button:hover {
    opacity: 0.9;
  }
/* END_SECTION:cart-drawer */

/* START_SECTION:cart (INDEX:6) */
.cart-page {
    max-width: var(--page-width, 1400px);
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
    padding-block: var(--section-padding-fluid, 3rem);
  }
  .cart-page__title { margin-bottom: 2rem; }
  .cart-page__body {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 3rem;
    align-items: start;
  }
  @media (max-width: 900px) {
    .cart-page__body { grid-template-columns: 1fr; }
  }
  .cart-page__items-header {
    display: grid;
    grid-template-columns: 1fr auto auto;
    gap: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 2px solid currentColor;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    opacity: 0.6;
  }
  .cart-page__item {
    display: grid;
    grid-template-columns: 80px 1fr auto auto;
    gap: 1rem;
    align-items: start;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgb(0 0 0 / 0.08);
  }
  .cart-page__item-image img { width: 80px; height: 80px; object-fit: cover; border-radius: var(--input-border-radius, 0px); }
  .cart-page__item-title a { text-decoration: none; color: var(--color-foreground); font-weight: 600; }
  .cart-page__item-variant { font-size: 0.85rem; opacity: 0.6; margin: 0.25rem 0; }
  .cart-page__item-price { margin: 0.25rem 0; }
  .cart-page__item-remove { font-size: 0.8rem; opacity: 0.6; text-underline-offset: 2px; }
  .cart-page__item-quantity input {
    width: 3.5rem;
    padding: 0.4rem;
    text-align: center;
    border: 1px solid rgb(0 0 0 / 0.2);
    border-radius: var(--input-border-radius, 0px);
    background: var(--color-background);
    color: var(--color-foreground);
  }
  .cart-page__update-btn {
    margin-top: 0.4rem;
    font-size: 0.8rem;
    background: none;
    border: none;
    cursor: pointer;
    text-decoration: underline;
    color: var(--color-foreground);
  }
  .cart-page__item-total { font-weight: 600; text-align: right; }
  .cart-page__summary {
    padding: 1.5rem;
    border: 1px solid rgb(0 0 0 / 0.1);
    border-radius: var(--input-border-radius, 0px);
  }
  .cart-page__note label { display: block; font-size: 0.9rem; margin-bottom: 0.4rem; }
  .cart-page__note textarea {
    width: 100%;
    padding: 0.6rem;
    border: 1px solid rgb(0 0 0 / 0.2);
    border-radius: var(--input-border-radius, 0px);
    background: var(--color-background);
    color: var(--color-foreground);
    font: inherit;
    resize: vertical;
    margin-bottom: 1.25rem;
  }
  .cart-page__subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
  }
  .cart-page__taxes-note { font-size: 0.8rem; opacity: 0.6; margin-bottom: 1.25rem; }
  .cart-page__checkout {
    display: block;
    width: 100%;
    padding: var(--button-padding-vertical, 14px) var(--button-padding-horizontal, 28px);
    background-color: var(--color-primary);
    color: var(--color-background);
    border: 1px solid var(--color-primary-border);
    border-radius: var(--button-border-radius, 0px);
    cursor: pointer;
    font: inherit;
    font-size: 1rem;
    text-align: center;
  }
  .cart-page__checkout:hover { background-color: var(--color-primary-hover); }
  .cart-page__payment-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
    justify-content: center;
    margin-top: 1rem;
  }
  .cart-page__payment-icons svg { height: 24px; width: auto; }
  .cart-page__continue {
    display: block;
    text-align: center;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--color-foreground);
    text-decoration: underline;
    text-underline-offset: 2px;
  }
  .cart-page__empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 4rem 1rem;
    text-align: center;
  }
/* END_SECTION:cart */

/* START_SECTION:collection-list (INDEX:7) */
.collection-list {
  padding-top:    var(--cl-pt, 50px);
  padding-bottom: var(--cl-pb, 50px);
  background: var(--color-background);
  color:      var(--color-foreground);
}

/* ── Carousel (Swiper) ── */
.collection-list-carousel {
  position: relative;
  overflow: hidden;
  --swiper-navigation-color:  var(--color-foreground);
  --swiper-navigation-size:   20px;
  --swiper-pagination-color:  var(--color-foreground);
  --swiper-pagination-bullet-inactive-color: var(--color-foreground);
}
.collection-list-carousel--dots { padding-bottom: 2.25rem; }
.collection-list-carousel--dots .swiper-button-prev,
.collection-list-carousel--dots .swiper-button-next { margin-top: calc(-1.125rem - var(--swiper-navigation-size, 20px) / 2); }
.collection-list-carousel .swiper-slide { height: auto; }
.collection-list-carousel .swiper-button-prev,
.collection-list-carousel .swiper-button-next {
  width: 44px; height: 44px;
  border-radius: var(--cl-nav-radius, 50%);
  border: var(--cl-nav-border, 1px solid rgba(0,0,0,0.12));
  background: var(--color-background, #fff);
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
  transition: transform 0.2s ease;
}
.collection-list-carousel .swiper-button-prev { left: 0; }
.collection-list-carousel .swiper-button-next { right: 0; }
.collection-list-carousel .swiper-button-prev:hover,
.collection-list-carousel .swiper-button-next:hover { transform: scale(1.08); }
.collection-list-carousel .swiper-button-prev::after,
.collection-list-carousel .swiper-button-next::after { font-size: var(--swiper-navigation-size); font-weight: 700; }
.collection-list-carousel .swiper-pagination { bottom: 0; }
.collection-list-carousel .swiper-pagination-bullet { opacity: 0.3; transition: opacity 0.2s ease, transform 0.2s ease; }
.collection-list-carousel .swiper-pagination-bullet-active { opacity: 1; transform: scale(1.25); }
/* END_SECTION:collection-list */

/* START_SECTION:collection (INDEX:8) */
.collection {
    max-width: var(--page-width, 1400px);
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
    padding-top: var(--collection-pt, 40px);
    padding-bottom: var(--collection-pb, 40px);
  }

  /* Banner */
  .collection__banner { margin-bottom: 2rem; }
  .collection__banner-img { width: 100%; max-height: 400px; object-fit: cover; display: block; }

  /* Header */
  .collection__header { margin-bottom: 1.75rem; }
  .collection__title  { margin: 0 0 0.5rem; }
  .collection__description { font-size: 0.95rem; opacity: 0.75; }

  /* Toolbar */
  .collection__toolbar {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    margin-bottom: 1.25rem;
  }
  .collection__sort-label { font-size: 0.85rem; opacity: 0.7; white-space: nowrap; }
  .collection__sort-select {
    padding: 0.4rem 0.7rem;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: var(--input-border-radius, 0px);
    background: var(--color-background);
    color: var(--color-foreground);
    font: inherit;
    font-size: 0.85rem;
    cursor: pointer;
  }

  /* Grid */
  .collection__grid {
    display: grid;
    grid-template-columns: repeat(var(--cols, 3), 1fr);
    gap: clamp(0.75rem, 2vw, 1.5rem);
  }
  @media (max-width: 768px) {
    .collection__grid { grid-template-columns: repeat(var(--cols-mobile, 2), 1fr); }
  }
  @media (max-width: 400px) {
    .collection__grid { grid-template-columns: 1fr; }
  }

  /* Empty */
  .collection__empty { grid-column: 1 / -1; padding: 3rem 0; text-align: center; opacity: 0.6; }

  /* Pagination */
  .collection__pagination { margin-top: 2.5rem; text-align: center; }
/* END_SECTION:collection */

/* START_SECTION:collections (INDEX:9) */
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
/* END_SECTION:collections */

/* START_SECTION:contact-form (INDEX:10) */
.contact-form {
  overflow-x: clip;
}
.contact-form__grid {
  align-items: stretch;
}
.contact-form__form {
  height: 100%;
  padding: clamp(1.5rem, 1rem + 2vw, 3rem);
  border-radius: 1.5rem;
  background-color: rgb(var(--background-color));
  color: rgb(var(--foreground-color));
}
.contact-form__heading {
  margin: 0 0 0.5rem;
  color: rgb(var(--heading-color));
}
.contact-form__helper {
  margin: 0 0 1.5rem;
  font-size: var(--font-sm, 14px);
  color: rgba(var(--foreground-color), 0.7);
}
.contact-form__input {
  display: block;
  width: 100%;
  min-height: 3.25rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid rgba(var(--foreground-color), 0.18);
  border-radius: 0.75rem;
  background-color: rgba(var(--foreground-color), 0.04);
  color: rgb(var(--foreground-color));
  font-family: var(--body-font-family);
  font-size: var(--font-md, 16px);
  line-height: 1.4;
}
.contact-form__input::placeholder {
  color: rgba(var(--foreground-color), 0.5);
}
.contact-form__input:focus {
  outline: 2px solid rgb(var(--primary-button-bg));
  outline-offset: 2px;
  border-color: rgba(var(--foreground-color), 0.4);
}
.contact-form__textarea {
  min-height: 8rem;
  resize: vertical;
}
.contact-form__topics {
  margin: 0;
  padding: 0;
  border: 0;
  min-inline-size: 0;
}
.contact-form__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.625rem;
}
.contact-form__chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(var(--foreground-color), 0.25);
  border-radius: 999px;
  background-color: transparent;
  color: rgb(var(--foreground-color));
  font-size: var(--font-sm, 14px);
  font-weight: var(--body-font-weight-bold, 600);
  cursor: pointer;
  transition: var(--transition-2, all 0.2s linear);
}
.contact-form__chip:hover {
  border-color: rgb(var(--primary-button-bg));
}
.contact-form__chip-input:checked + .contact-form__chip {
  background-color: rgb(var(--primary-button-bg));
  border-color: rgb(var(--primary-button-bg));
  color: rgb(var(--primary-button-text));
}
.contact-form__chip-input:focus-visible + .contact-form__chip {
  outline: 2px solid rgb(var(--primary-button-bg));
  outline-offset: 2px;
}
.contact-form__submit {
  min-height: 3.5rem;
  border-radius: 999px;
  font-weight: 600;
}
.contact-form__message {
  margin: 0 0 1rem;
  padding: 0.875rem 1.25rem;
  border-radius: 0.75rem;
  font-size: var(--font-sm, 14px);
}
.contact-form__message--success {
  background-color: rgba(var(--primary-button-bg), 0.15);
  color: rgb(var(--foreground-color));
}
.contact-form__message--error {
  background-color: rgba(180, 0, 32, 0.12);
  color: #b00020;
}
.contact-form__error-list {
  margin: 0;
  padding-inline-start: 1.25rem;
}

.contact-form__sidebar {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  height: 100%;
}
.contact-form__card {
  padding: clamp(1.25rem, 1rem + 1.5vw, 2rem);
  border-radius: 1.5rem;
  background-color: rgb(var(--background-color));
  color: rgb(var(--foreground-color));
}
.contact-form__eyebrow {
  margin: 0 0 1.25rem;
  color: rgb(var(--primary-button-bg));
  font-size: var(--font-xs, 12px);
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contact-form__hours-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contact-form__hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.75rem;
  border-bottom: 1px solid rgba(var(--foreground-color), 0.12);
}
.contact-form__hours-row:last-child {
  border-bottom: 0;
}
.contact-form__hours-label {
  color: rgba(var(--foreground-color), 0.85);
}
.contact-form__hours-value {
  font-weight: 600;
  color: rgb(var(--foreground-color));
  text-align: end;
}
.contact-form__footnote {
  margin: 1.25rem 0 0;
  font-size: var(--font-sm, 14px);
  color: rgba(var(--foreground-color), 0.6);
}
.contact-form__card-heading {
  margin: 0 0 0.75rem;
  color: rgb(var(--heading-color));
}
.contact-form__card-text {
  margin-bottom: 1.25rem;
  color: rgba(var(--foreground-color), 0.85);
}
.contact-form__card-text > :last-child {
  margin-bottom: 0;
}
.contact-form__card-button {
  border-radius: 999px;
  font-weight: 600;
}

@media (min-width: 992px) {
  .contact-form__form {
    border-radius: 1.75rem;
  }
}
/* END_SECTION:contact-form */

/* START_SECTION:content-showcase (INDEX:11) */
.content-showcase__inner {
  gap: var(--cs-gap, 16px);
  margin-inline: auto;
}
.content-showcase__media-img {
  object-fit: cover;
}
.content-showcase__overlay {
  background: var(--nl-banner-overlay, transparent);
  pointer-events: none;
}
/* END_SECTION:content-showcase */

/* START_SECTION:custom-section (INDEX:12) */
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
/* END_SECTION:custom-section */

/* START_SECTION:faq-categories (INDEX:13) */
.faq-cats {
  background-color: var(--color-background, #fff);
  color: var(--color-foreground, #1a1a1a);
}
.faq-cats__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "nav"
    "main"
    "help";
  gap: 1.5rem;
}
.faq-cats__nav-col {
  grid-area: nav;
  min-width: 0;
}
.faq-cats__aside {
  grid-area: help;
  min-width: 0;
}
.faq-cats__main {
  grid-area: main;
  min-width: 0;
}

/* Sidebar title */
.faq-cats__nav-title {
  margin: 0 0 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.6;
}

/* Tablist — mobile: horizontal scrollable chips */
.faq-cats__nav {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 0.25rem;
}
.faq-cats__nav::-webkit-scrollbar {
  display: none;
}
.faq-cats__tab {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  flex: 0 0 auto;
  min-height: 44px;
  padding: 0.6rem 1rem;
  border: 1px solid color-mix(in srgb, var(--color-foreground) 14%, transparent);
  border-radius: 999px;
  background: transparent;
  color: inherit;
  font: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.3;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.faq-cats__tab:hover {
  border-color: color-mix(in srgb, var(--color-foreground) 35%, transparent);
}
.faq-cats__tab.is-active {
  background: var(--color-foreground, #1a1a1a);
  color: var(--color-background, #fff);
  border-color: var(--color-foreground, #1a1a1a);
}
.faq-cats__tab:focus-visible {
  outline: 2px solid var(--color-foreground, #1a1a1a);
  outline-offset: 2px;
}
.faq-cats__count {
  flex-shrink: 0;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 0.6;
}
.faq-cats__tab.is-active .faq-cats__count {
  opacity: 0.85;
}

/* Panels */
.faq-cats__panel-head {
  margin-bottom: clamp(1rem, 3vw, 1.75rem);
}
.faq-cats__main .faq-cats__panel + .faq-cats__panel {
  margin-top: 2.5rem;
}

/* Progressive enhancement: only after JS marks ready do we hide inactive panels */
.faq-cats.is-ready .faq-cats__panel[hidden] {
  display: none;
}

/* Desktop layout */
@media (min-width: 992px) {
  .faq-cats__grid {
    grid-template-columns: minmax(0, var(--faq-cats-sidebar, 280px)) minmax(0, 1fr);
    grid-template-areas:
      "nav main"
      "help main";
    align-content: start;
    column-gap: clamp(2rem, 5vw, 4rem);
    row-gap: 1.5rem;
  }
  .faq-cats__nav {
    flex-direction: column;
    flex-wrap: nowrap;
    overflow: visible;
    gap: 0.5rem;
    padding-bottom: 0;
  }
  .faq-cats__tab {
    width: 100%;
    border: none;
    border-radius: 0.65rem;
    padding: 0.85rem 1.1rem;
  }
  .faq-cats__tab:not(.is-active):hover {
    background: color-mix(in srgb, var(--color-foreground) 6%, transparent);
  }
}
/* END_SECTION:faq-categories */

/* START_SECTION:faq (INDEX:14) */
.faq {
  background-color: var(--color-background, #fff);
  color: var(--color-foreground, #1a1a1a);
}
.faq__grid {
  display: grid;
  min-width: 0;
}
.faq__media-col,
.faq__header-col,
.faq__list-col {
  min-width: 0;
}

/* Split layout */
.faq--split .faq__grid {
  grid-template-columns: var(--faq-split-media, 50%) var(--faq-split-content, 50%);
  grid-template-areas:
    "media header"
    "media list";
  align-items: stretch;
  row-gap: 0;
  column-gap: 0;
}
.faq--split.faq--split-reverse .faq__grid {
  grid-template-areas:
    "header media"
    "list media";
}
.faq--split .faq__media-col {
  grid-area: media;
}
.faq--split .faq__header-col {
  grid-area: header;
  align-self: end;
}
.faq--split .faq__list-col {
  grid-area: list;
  align-self: start;
}
.faq--split .faq__header-inner,
.faq--split .faq__list-inner {
  padding-inline: var(--faq-content-padding, 48px);
}
.faq--split .faq__header-inner {
  padding-top: var(--faq-content-padding, 48px);
  padding-bottom: 0;
}
.faq--split .faq__list-inner {
  padding-top: 0;
  padding-bottom: var(--faq-content-padding, 48px);
}
.faq--split.faq--split-reverse .faq__header-inner,
.faq--split.faq--split-reverse .faq__list-inner {
  padding-inline: var(--faq-content-padding, 48px);
}

/* Centered layout */
.faq--centered .faq__grid {
  grid-template-columns: minmax(0, 1fr);
  grid-template-areas:
    "header"
    "list";
  justify-items: center;
}
.faq--centered .faq__media-col {
  display: none;
}
.faq--centered .faq__header-col {
  grid-area: header;
  width: 100%;
  text-align: center;
}
.faq--centered .faq__list-col {
  grid-area: list;
  width: 100%;
}
.faq--centered .faq__list {
  max-width: 800px;
  margin-inline: auto;
  gap: var(--faq-item-gap, 12px);
  counter-reset: faq-item;
}
.faq--centered .faq__list .faq-item {
  counter-increment: faq-item;
}
.faq--centered .faq__header {
  text-align: center;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}
.faq--centered .faq-button__wrap {
  justify-content: center;
}

/* Two-column layout */
.faq--two_column .faq__grid {
  grid-template-columns: var(--faq-sidebar-width, 38%) minmax(0, 1fr);
  grid-template-areas: "header list";
  gap: var(--faq-column-gap, 48px);
  align-items: start;
}
.faq--two_column .faq__media-col {
  display: none;
}
.faq--two_column .faq__header-col {
  grid-area: header;
}
.faq--two_column .faq__list-col {
  grid-area: list;
}

.faq__list {
  display: flex;
  flex-direction: column;
}

@media (max-width: 991.98px) {
  .faq--split .faq__grid,
  .faq--two_column .faq__grid {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "media"
      "header"
      "list";
    gap: 0;
  }
  .faq--split .faq__media-col {
    display: block;
  }
  .faq--split.faq--split-reverse .faq__grid {
    grid-template-areas:
      "media"
      "header"
      "list";
  }
  .faq--split .faq__header-inner,
  .faq--split .faq__list-inner {
    padding: clamp(1.5rem, 5vw, 2.5rem);
  }
  .faq--split .faq__header-inner {
    padding-bottom: 0;
  }
  .faq--split .faq__list-inner {
    padding-top: 0;
  }
  .faq--two_column .faq__grid {
    gap: 2rem;
  }
}
/* END_SECTION:faq */

/* START_SECTION:featured-product (INDEX:15) */
.featured-product {
    padding-top: var(--featured-product-pt, 60px);
    padding-bottom: var(--featured-product-pb, 60px);
  }

  .featured-product__inner {
    max-width: var(--page-width, 1400px);
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
  }
  .featured-product__inner--full {
    max-width: 100%;
    padding-inline: 0;
  }
  .featured-product__inner--fluid {
    max-width: 100%;
    padding-inline: var(--page-margin, 20px);
  }

  .featured-product__header {
    text-align: center;
    margin-bottom: clamp(1.5rem, 4vw, 3rem);
  }
  .featured-product__subheading {
    margin: 0 0 0.5rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.65;
  }
  .featured-product__heading {
    margin: 0;
    font-family: var(--font-heading--family, inherit);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    line-height: 1.2;
  }

  .featured-product__form {
    display: grid;
    grid-template-columns: var(--product-media-width, 55%) 1fr;
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: start;
  }
  @media (max-width: 768px) {
    .featured-product__form { grid-template-columns: 1fr; }
  }
/* END_SECTION:featured-product */

/* START_SECTION:footer (INDEX:16) */
footer {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
  }
  footer a {
    text-decoration: none;
    color: var(--color-foreground);
  }
  footer .footer__links,
  footer .footer__payment {
    display: flex;
    gap: 1rem;
  }
/* END_SECTION:footer */

/* START_SECTION:header (INDEX:17) */
.site-header {
  position: relative;
  z-index: 30;
  width: 100%;
  background-color: rgb(var(--color-background, 255 255 255));
  color: rgb(var(--color-foreground, 26 26 26));
}

.site-header--transparent {
  position: absolute;
  top: 0;
  left: 0;
  background-color: transparent;
}

.site-header--transparent.site-header--scrolled,
.site-header--transparent:focus-within {
  background-color: rgb(var(--color-background, 255 255 255));
}

.site-header--sticky {
  position: sticky;
  top: 0;
}

.site-header--divider {
  border-bottom: 1px solid rgb(var(--color-foreground, 26 26 26) / 0.12);
}

.site-header--boxed .site-header__shell {
  margin-block: 0.75rem;
}

@media (min-width: 992px) {
  .site-header--boxed .site-header__shell {
    margin-inline: 1rem;
  }
}

.site-header--boxed .site-header__inner {
  border-radius: var(--header-boxed-radius, 16px);
  background: rgb(var(--color-background, 255 255 255) / 0.92);
  padding: 0.75rem 1rem;
}

.site-header--boxed-border .site-header__inner {
  border: 1px solid rgb(var(--color-foreground, 26 26 26) / 0.12);
}

.site-header--glass .site-header__inner {
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.site-header--transparent.site-header--boxed .site-header__inner {
  background: rgb(var(--color-background, 26 26 26) / 0.55);
  color: rgb(var(--color-foreground, 255 255 255));
}

.site-header__inner {
  display: grid;
  align-items: center;
  gap: 0.75rem 1rem;
  position: relative;
}

.site-header__inner--stacked {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.75rem;
}

.site-header__inner--stacked .site-header__utilities-slot {
  order: 1;
  width: 100%;
}

.site-header__inner--stacked .site-header__logo {
  order: 2;
  display: flex;
  justify-content: center;
  width: 100%;
}

.site-header__inner--stacked .site-header__menu {
  order: 3;
  width: 100%;
}

.site-header__inner--stacked:has(.header-search--search_bar) {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
}

.site-header__inner--stacked:has(.header-search--search_bar) .site-header__logo {
  order: 1;
  width: auto;
  flex: 0 0 auto;
  justify-content: flex-start;
}

.site-header__inner--stacked:has(.header-search--search_bar) .site-header__utilities-slot {
  order: 2;
  flex: 1 1 auto;
  min-width: 0;
}

.site-header__inner--stacked:has(.header-search--search_bar) .site-header__menu {
  order: 3;
  flex: 0 0 100%;
}

.site-header--menu-top .site-header__inner {
  grid-template-areas: 'menu logo utilities';
  grid-template-columns: 1fr auto 1fr;
}

.site-header__logo {
  grid-area: logo;
}

.site-header--logo-left .site-header__logo {
  justify-self: start;
}

.site-header--logo-center .site-header__logo {
  justify-self: center;
}

.site-header--logo-right .site-header__logo {
  justify-self: end;
}

.site-header__menu {
  grid-area: menu;
}

.site-header--menu-align-left .site-header__menu,
.site-header--menu-top .site-header__menu {
  justify-self: start;
}

.site-header--menu-align-center .site-header__menu {
  justify-self: center;
}

.site-header--menu-align-right .site-header__menu {
  justify-self: end;
}

.site-header__utilities-slot {
  grid-area: utilities;
  min-width: 0;
}

.site-header--menu-top .header-utilities {
  justify-self: end;
}

.site-header--logo-center.site-header--menu-top .site-header__logo {
  justify-self: center;
}

@media (max-width: 991.98px) {
  .site-header--menu-top .site-header__inner {
    grid-template-areas:
      'logo utilities'
      'menu menu';
    grid-template-columns: 1fr auto;
  }

  .site-header__inner--stacked:has(.header-search--search_bar) {
    flex-direction: column;
  }

  .site-header__inner--stacked:has(.header-search--search_bar) .site-header__logo,
  .site-header__inner--stacked:has(.header-search--search_bar) .site-header__utilities-slot {
    width: 100%;
  }
}
/* END_SECTION:header */

/* START_SECTION:hello-world (INDEX:18) */
.welcome {
    display: grid;
    grid-template-columns: var(--content-grid);
    background-color: #f6f6f7;
    padding: 72px 0;
  }

  .welcome-content {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 24px;
  }

  .welcome-description {
    max-width: 80ch;
    line-height: 1.4;
    margin-top: 1.5rem;
  }

  .icon {
    width: 300px;
  }

  .highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

  @media (max-width: 1100px) {
    .highlights {
      grid-template-columns: 1fr;
    }
  }

  .highlight {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background-color: #eef3ff;
    color: rgb(92, 95, 98);
    line-height: 1.4;
  }

  .highlight > * + * {
    margin-top: 1rem;
  }

  .highlight h3 {
    font-size: 1rem;
    color: rgb(32, 34, 35);
  }

  .highlight-description {
    flex: 1 1;
  }

  .highlight a {
    display: flex;
    width: fit-content;
    background-color: rgb(250, 251, 251);
    box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px 0px inset, rgba(255, 255, 255, 0.9) 0px 2px 0px 0px inset;
    border: 1px solid rgb(140, 145, 150);
    border-radius: 4px;
    color: rgb(92, 95, 98);
    padding: 3px 10px 5px;
    text-decoration: none;
  }
/* END_SECTION:hello-world */

/* START_SECTION:icon-with-text (INDEX:19) */
.support__inner {
  gap: 2rem;
}
.support__header-col {
  width: 100%;
}
@media (min-width: 768px) {
  .support__header-col {
    width: var(--sp-header-width, 50%);
    max-width: var(--sp-header-width, 50%);
  }
  .support__content-col {
    width: var(--sp-content-width, 50%);
  }
}
/* END_SECTION:icon-with-text */

/* START_SECTION:image-banner (INDEX:20) */
.image-banner__banner {
    min-height: var(--ib-height-mobile, 320px);
    width: 100%;
  }
  @media (min-width: 768px) {
    .image-banner__banner {
      min-height: var(--ib-height-desktop, 480px);
    }
  }
  .image-banner__media-img {
    object-fit: cover;
  }
  .image-banner__placeholder {
    background: rgb(var(--color-foreground, 26 26 26) / 0.04);
  }
  .image-banner__placeholder-svg {
    object-fit: cover;
    opacity: 0.6;
  }
  .image-banner__overlay {
    background: var(--nl-banner-overlay, transparent);
    pointer-events: none;
  }
  .image-banner__inner {
    padding: calc(var(--shape-height) + 30px) 1.5rem;
  }
  .image-banner__content {
    max-width: var(--ib-content-width, 100%);
  }
/* END_SECTION:image-banner */

/* START_SECTION:image-with-text (INDEX:21) */
.image-with-text__inner {
  gap: var(--iwt-gap, 32px);
}
.image-with-text__media {
  width: 100%;
}
@media (min-width: 768px) {
  .image-with-text__media {
    width: var(--iwt-image-width, 50%);
  }
}
.image-with-text__content {
  width: 100%;
}
@media (min-width: 768px) {
  .image-with-text__content {
    width: calc(100% - var(--iwt-image-width, 50%));
  }
}
/* END_SECTION:image-with-text */

/* START_SECTION:page (INDEX:22) */
.page-section {
    max-width: {% raw %}{{ section.settings.content_width }}{% endraw %};
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
    padding-block: var(--section-padding-fluid, 3rem);
  }
  .page-section__title { margin-bottom: 1.5rem; }
  .page-section__content { line-height: 1.75; }
  .page-section__content h2,
  .page-section__content h3 { margin-top: 2rem; }
  .page-section__content img { max-width: 100%; height: auto; }
  .page-section__content a { color: var(--color-primary); }
/* END_SECTION:page */

/* START_SECTION:product (INDEX:24) */
main-product,
  product-form {
    display: block;
    min-width: 0;
  }

  .product-section {
    padding-top: var(--product-pt, 60px);
    padding-bottom: var(--product-pb, 60px);
  }

  /* ── Container types ── */
  .product-section__inner {
    max-width: var(--page-width, 1400px);
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
  }
  .product-section__inner--full {
    max-width: 100%;
    padding-inline: 0;
  }
  .product-section__inner--fluid {
    max-width: 100%;
    padding-inline: var(--page-margin, 20px);
  }

  /* ── Two-column grid (form element is the grid container) ── */
  .product-section__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: var(--row-gap, 1rem);
    align-items: var(--grid-align, start);
  }

  /* Mobile ordering */
  .product-section--content_first .product-media-gallery {
    order: 2;
  }

  @media (min-width: 990px) {
    .product-section__grid {
      grid-template-columns: minmax(0, var(--media-fr, 1.15fr)) minmax(0, var(--content-fr, 1fr));
      column-gap: var(--col-gap, 3rem);
      row-gap: 0;
    }
    .product-section--content_first .product-media-gallery {
      order: 0;
    }
    .product-section--media_right .product-section__grid {
      grid-template-columns: minmax(0, var(--content-fr, 1fr)) minmax(0, var(--media-fr, 1.15fr));
    }
    .product-section--media_right .product-media-gallery {
      order: 2;
    }

    .product-section--sticky-media .product-media-gallery,
    .product-section--sticky-info .product-section__content {
      position: sticky;
      top: var(--sticky-offset, 20px);
      align-self: start;
    }
  }

  .product-section__content {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    min-width: 0;
  }
/* END_SECTION:product */

/* START_SECTION:search (INDEX:26) */
.search-section {
    max-width: var(--page-width, 1400px);
    margin-inline: auto;
    padding-inline: var(--page-margin, 20px);
    padding-block: var(--section-padding-fluid, 3rem);
  }
  .search-section__title { margin-bottom: 1.5rem; }
  .search-section__form { margin-bottom: 2.5rem; }
  .search-section__input-wrapper { display: flex; gap: 0.5rem; max-width: 42rem; }
  .search-section__input {
    flex: 1;
    padding: 0.65rem 1rem;
    border: 1px solid rgb(0 0 0 / 0.25);
    border-radius: var(--input-border-radius, 0px);
    background: var(--color-background);
    color: var(--color-foreground);
    font: inherit;
  }
  .search-section__submit {
    padding: var(--button-padding-vertical, 10px) var(--button-padding-horizontal, 20px);
    background-color: var(--color-primary);
    color: var(--color-background);
    border: 1px solid var(--color-primary-border);
    border-radius: var(--button-border-radius, 0px);
    cursor: pointer;
    font: inherit;
  }
  .search-section__submit:hover { background-color: var(--color-primary-hover); }
  .search-section__results-count { opacity: 0.7; margin-bottom: 1.5rem; font-size: 0.9rem; }
  .search-section__no-results { opacity: 0.7; }
  .search-section__grid {
    display: grid;
    grid-template-columns: repeat(var(--cols, 3), 1fr);
    gap: 1.5rem;
  }
  @media (max-width: 768px) { .search-section__grid { grid-template-columns: repeat(2, 1fr); } }
  @media (max-width: 480px) { .search-section__grid { grid-template-columns: 1fr; } }
  .search-result-card__image { width: 100%; aspect-ratio: 1; object-fit: cover; }
  .search-result-card__info { padding: 0.6rem 0; }
  .search-result-card__type { font-size: 0.75rem; text-transform: uppercase; opacity: 0.5; margin: 0 0 0.2rem; }
  .search-result-card__title a { text-decoration: none; color: var(--color-foreground); font-weight: 600; }
  .search-result-card__title a:hover { text-decoration: underline; }
  .search-result-card__price { margin: 0.3rem 0 0; font-size: 0.95rem; }
  .search-section__pagination { margin-top: 2rem; text-align: center; }
/* END_SECTION:search */

/* START_SECTION:shoppable-video (INDEX:27) */
.shoppable-video {
  padding-top: var(--shoppable-video-pt, 40px);
  padding-bottom: var(--shoppable-video-pb, 40px);
  background-color: var(--color-background, #fff);
  color: var(--color-foreground, #1a1a1a);
}
/* END_SECTION:shoppable-video */

/* START_SECTION:testimonial (INDEX:28) */
.wdt-testimonial {
  padding-top: var(--wdt-sec-pt, 40px);
  padding-bottom: var(--wdt-sec-pb, 40px);
  background-color: var(--color-background, #fff);
  color: var(--color-foreground, #1a1a1a);
}
/* END_SECTION:testimonial */

/* START_SECTION:video-banner (INDEX:29) */
.video-banner__banner {
  min-height: var(--vb-height-mobile, 420px);
}
@media (min-width: 768px) {
  .video-banner__banner {
    min-height: var(--vb-height-desktop, 560px);
  }
}
.video-banner__banner--custom-height {
  height: var(--vb-height-mobile, 420px);
}
@media (min-width: 768px) {
  .video-banner__banner--custom-height {
    height: var(--vb-height-desktop, 560px);
  }
}
.video-banner__video {
  object-fit: cover;
}
.video-banner__placeholder {
  background: rgb(var(--color-foreground, 26 26 26) / 0.06);
}
.video-banner__placeholder-svg {
  object-fit: cover;
  opacity: 0.6;
}
.video-banner__inner {
  gap: var(--vb-gap, 20px);
  padding: 24px;
}
/* END_SECTION:video-banner */

/* CSS from block stylesheet tags */
/* START_BLOCK:announcement-item (INDEX:30) */
.announcement-bar-item {
  white-space: nowrap;
}
.announcement-bar-item--align-center {
  justify-content: center;
  width: 100%;
}
.announcement-bar-item--align-left {
  justify-content: flex-start;
}
.announcement-bar-item--align-right {
  justify-content: flex-end;
}
.announcement-bar-item__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.announcement-bar-item--icon-left .announcement-bar-item__icon--left {
  margin-right: var(--ab-icon-gap, 8px);
}
.announcement-bar-item--icon-right .announcement-bar-item__icon--right {
  margin-left: var(--ab-icon-gap, 8px);
}
.announcement-bar-item__icon svg {
  width: 100%;
  height: auto;
  display: block;
}
.announcement-bar-item__link {
  color: inherit;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
}
.announcement-bar-item__link:hover {
  text-decoration: underline;
}
.announcement-bar-item__text p {
  margin: 0;
  display: inline;
}
/* END_BLOCK:announcement-item */

/* START_BLOCK:before-after-button (INDEX:31) */
.before-after-button__wrap {
  display: flex;
  justify-content: inherit;
}
.before-after-button.btn-link {
  padding-left: 0;
  padding-right: 0;
}
.before-after--vertical .before-after-button__wrap .btn {
  border-radius: 999px;
}
/* END_BLOCK:before-after-button */

/* START_BLOCK:before-after-category (INDEX:32) */
.before-after-category {
  display: none;
  min-width: 0;
}
.before-after-category.is-active {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  width: 100%;
}
.before-after--horizontal .before-after-category.is-active {
  grid-template-columns: var(--ba-split-media, 50%) var(--ba-split-content, 50%);
  align-items: stretch;
}
.before-after--horizontal.before-after--split-reverse .before-after-category.is-active {
  grid-template-columns: var(--ba-split-content, 50%) var(--ba-split-media, 50%);
}
@media (max-width: 991.98px) {
  .before-after--horizontal .before-after-category.is-active {
    grid-template-columns: minmax(0, 1fr);
  }
}
.before-after-category__comparison-col,
.before-after-category__content-col {
  min-width: 0;
}
.before-after-category__content-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  padding: var(--ba-content-padding, 48px);
}
.before-after-category__features {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid color-mix(in srgb, var(--color-foreground) 12%, transparent);
}
.before-after-category__features:empty {
  display: none;
  padding-top: 0;
  border-top: 0;
}
.before-after--vertical .before-after-category__content-col {
  padding: 0;
}
.before-after--vertical .before-after-category__comparison-col {
  border-radius: var(--ba-category-radius, 16px);
  overflow: hidden;
}
@media (max-width: 575.98px) {
  .before-after-category__features {
    grid-template-columns: minmax(0, 1fr);
  }
}
/* END_BLOCK:before-after-category */

/* START_BLOCK:before-after-comparison (INDEX:33) */
.before-after-comparison {
  width: 100%;
  min-width: 0;
}
.before-after-comparison__slider {
  display: block;
  width: 100%;
}
.before-after-comparison__frame {
  position: relative;
  width: 100%;
  aspect-ratio: var(--ba-comparison-ratio, 3 / 4);
  border-radius: var(--ba-comparison-radius, 0);
  overflow: hidden;
  user-select: none;
  touch-action: none;
}
.before-after-comparison__layer {
  position: absolute;
  inset: 0;
}
.before-after-comparison__layer--after {
  z-index: 0;
}
.before-after-comparison__layer--before {
  z-index: 1;
  clip-path: inset(0 calc(100% - var(--ba-comparison-position, 50%)) 0 0);
}
.before-after-comparison__image,
.before-after-comparison__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.before-after-comparison__label {
  position: absolute;
  top: 1rem;
  z-index: 2;
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--color-foreground, #1a1a1a);
  background-color: color-mix(in srgb, var(--color-background, #fff) 88%, transparent);
  border-radius: 999px;
}
.before-after-comparison__label--before {
  left: 1rem;
}
.before-after-comparison__label--after {
  right: 1rem;
}
.before-after-comparison__divider {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--ba-comparison-position, 50%);
  z-index: 3;
  width: 2px;
  margin-left: -1px;
  background-color: var(--color-background, #fff);
  pointer-events: none;
}
.before-after-comparison__handle {
  position: absolute;
  top: 50%;
  left: var(--ba-comparison-position, 50%);
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 0.35rem;
  background-color: var(--color-background, #fff);
  box-shadow: 0 2px 12px color-mix(in srgb, var(--color-foreground) 18%, transparent);
  transform: translate(-50%, -50%);
  cursor: ew-resize;
  touch-action: none;
}
.before-after-comparison__handle:focus-visible {
  outline: 2px solid var(--color-foreground, #1a1a1a);
  outline-offset: 2px;
}
.before-after-comparison__handle-icon {
  display: block;
  width: 1rem;
  height: 1rem;
  background:
    linear-gradient(to right, var(--color-foreground, #1a1a1a) 0 35%, transparent 35% 65%, var(--color-foreground, #1a1a1a) 65% 100%);
  opacity: 0.55;
}
/* END_BLOCK:before-after-comparison */

/* START_BLOCK:before-after-feature (INDEX:34) */
.before-after-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--ba-feature-gap, 12px);
  min-width: 0;
}
.before-after-feature.text-start {
  align-items: flex-start;
}
.before-after-feature.text-end {
  align-items: flex-end;
}
.before-after-feature__media {
  flex-shrink: 0;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  overflow: hidden;
}
.before-after-feature__image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.before-after-feature__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  font-size: 1.25rem;
  background-color: color-mix(in srgb, var(--color-foreground) 8%, transparent);
}
.before-after-feature__content {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 100%;
}
.before-after-feature__title {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.3;
}
.before-after-feature__description {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.45;
  opacity: 0.65;
}
/* END_BLOCK:before-after-feature */

/* START_BLOCK:before-after-header (INDEX:35) */
.before-after__header {
  margin-bottom: var(--ba-hdr-mb, 32px);
}
/* END_BLOCK:before-after-header */

/* START_BLOCK:before-after-heading (INDEX:36) */
.before-after__heading {
  font-family: var(--font-heading--family, inherit);
  font-weight: var(--font-heading--weight, 700);
  font-size: clamp(1.75rem, 3.5vw, 2.75rem);
  line-height: 1.12;
  margin: 0;
  color: inherit;
}
/* END_BLOCK:before-after-heading */

/* START_BLOCK:before-after-product (INDEX:37) */
.before-after-product {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  text-align: center;
  width: 100%;
}
.before-after-product__media-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(100%, 220px);
}
.before-after-product__image,
.before-after-product__placeholder {
  display: block;
  width: 100%;
  height: auto;
  max-height: 280px;
  object-fit: contain;
}
.before-after-product__info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  width: 100%;
}
.before-after-product__title {
  margin: 0;
  font-family: var(--font-heading--family, inherit);
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  font-weight: 600;
  line-height: 1.2;
}
.before-after-product__subtitle {
  margin: 0;
  font-size: 0.9rem;
  opacity: 0.75;
}
.before-after-product__actions {
  width: 100%;
  max-width: 320px;
}
.before-after-product__form {
  width: 100%;
}
.before-after-product__button {
  width: 100%;
  border-radius: 999px;
}
/* END_BLOCK:before-after-product */

/* START_BLOCK:before-after-text (INDEX:38) */
.before-after__text {
  font-size: 0.95rem;
  line-height: 1.65;
  margin: 0;
  color: inherit;
  opacity: 0.85;
}
/* END_BLOCK:before-after-text */

/* START_BLOCK:collection-button (INDEX:40) */
.cl-arrow-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: inherit;
  text-decoration: none;
  font: inherit;
}
.cl-arrow-btn--icon-only { gap: 0; }
.cl-arrow-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width:  var(--cl-arrow-size, 32px);
  height: var(--cl-arrow-size, 32px);
  flex-shrink: 0;
  transition: transform 0.2s ease, background 0.2s ease;
}
.cl-arrow-btn__icon svg { width: 52%; height: 52%; display: block; }
.cl-arrow-btn--filled-circle .cl-arrow-btn__icon {
  border-radius: 50%;
  background: var(--button-primary-bg);
  color: var(--button-primary-color);
}
.cl-arrow-btn--outline-circle .cl-arrow-btn__icon {
  border-radius: 50%;
  border: 1.5px solid currentColor;
}
.cl-arrow-btn--square .cl-arrow-btn__icon {
  border-radius: 4px;
  background: var(--button-primary-bg);
  color: var(--button-primary-color);
}
.cl-arrow-btn--minimal .cl-arrow-btn__icon {
  width: auto;
  height: auto;
}
@media (prefers-reduced-motion: no-preference) {
  .cl-arrow-btn:hover .cl-arrow-btn__icon { transform: translateX(4px); }
}
/* END_BLOCK:collection-button */

/* START_BLOCK:collection-card (INDEX:41) */
.cl-collection-card {
  position: relative;
  border-radius: var(--cl-card-radius, 0);
  overflow: hidden;
  color: inherit;
  transition: box-shadow 0.25s ease;
}
.cl-collection-card:hover { box-shadow: 0 12px 32px rgba(0,0,0,0.10); }

.cl-card__content.pe-none > * { pointer-events: auto; }

.cl-shape-circle .cl-collection-image__media { border-radius: 50%; aspect-ratio: 1/1; }
.cl-shape-oval   .cl-collection-image__media { border-radius: 50%/42%; aspect-ratio: 4/5; }
.cl-shape-pill   .cl-collection-image__media { border-radius: 999px; aspect-ratio: 3/4; }
.cl-shape-rounded-rectangle .cl-collection-image__media { border-radius: 16px; }
.cl-shape-custom-radius .cl-collection-image__media { border-radius: var(--cl-custom-radius,16px); }
.cl-shape-arch .cl-collection-image__media {
  height: var(--cl-arch-h,300px); aspect-ratio: auto;
  border-radius: 50% 50% 0 0 / 65% 65% 0 0;
}
.cl-shape-rounded-arch .cl-collection-image__media {
  height: var(--cl-arch-h,300px); aspect-ratio: auto;
  border-radius: calc(var(--cl-arch-w,250px)/2) calc(var(--cl-arch-w,250px)/2) 0 0;
}
.cl-shape-circle .cl-collection-image,
.cl-shape-oval   .cl-collection-image,
.cl-shape-pill   .cl-collection-image { margin-inline: auto; }

@media (prefers-reduced-motion: reduce) { .cl-collection-card { transition: none; } }
/* END_BLOCK:collection-card */

/* START_BLOCK:collection-description (INDEX:42) */
.cl-collection-description {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding-top:    var(--cl-desc-pt, 0);
  padding-bottom: var(--cl-desc-pb, 0);
  color: inherit;
}
.cl-desc__body {
  opacity: 0.78;
  font-size: 0.9rem;
  line-height: 1.55;
}
.cl-desc__body > :first-child { margin-top: 0; }
.cl-desc__body > :last-child  { margin-bottom: 0; }
.cl-desc__body--placeholder   { opacity: 0.35; font-style: italic; }
.cl-desc--uppercase .cl-desc__body { text-transform: uppercase; }
/* END_BLOCK:collection-description */

/* START_BLOCK:collection-image (INDEX:43) */
/* ─────────────────────────────────────────────
   Collection Image — block styles
───────────────────────────────────────────── */

.cl-collection-image {
  width: 100%;
  display: block;
}

.cl-collection-image__media {
  position: relative;
  display: block;
  overflow: hidden;
  width: 100%;
  border-radius: var(--cl-img-radius, 0);
  border: var(--cl-img-border, none);
  background: rgba(0,0,0,0.05);
}

/* ── Aspect ratios ── */
.cl-img--ratio-square    .cl-collection-image__media { aspect-ratio: 1 / 1; }
.cl-img--ratio-landscape .cl-collection-image__media { aspect-ratio: 4 / 3; }
.cl-img--ratio-portrait  .cl-collection-image__media { aspect-ratio: 3 / 4; }
.cl-img--ratio-adapt     .cl-collection-image__media { aspect-ratio: auto; }

/* ── Image fill ── */
.cl-collection-image__img,
.cl-collection-image__placeholder {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--cl-img-pos, center);
  transition: transform 0.5s ease;
}
.cl-img--fit-contain .cl-collection-image__img,
.cl-img--fit-contain .cl-collection-image__placeholder {
  object-fit: contain;
}

/* Transparent background (for isolated product/icon images) */
.cl-img--transparent .cl-collection-image__media { background: transparent; }

/* Hover zoom — only when reduced-motion is not requested */
@media (prefers-reduced-motion: no-preference) {
  .cl-collection-card:hover .cl-collection-image__img {
    transform: scale(1.04);
  }
}

/* ── Dark scrim overlay ── */
.cl-collection-image__overlay {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: var(--cl-img-overlay-opacity, 0.2);
  pointer-events: none;
}
/* END_BLOCK:collection-image */

/* START_BLOCK:collection-text (INDEX:44) */
/* ─────────────────────────────────────────────
   Text Block — block styles
───────────────────────────────────────────── */

.cl-text {
  margin: 0;
  padding-top:    var(--cl-text-pt, 0);
  padding-bottom: var(--cl-text-pb, 0);
  border:         var(--cl-text-border, none);
  border-radius:  var(--cl-text-radius, 0);
  font-family: var(--font-heading--family, inherit);
  font-weight: var(--font-heading--weight, 700);
  color: inherit;
  line-height: 1.2;
}
.cl-text--uppercase { text-transform: uppercase; }

/* Badge / pill label */
.cl-text--badge {
  display: inline-block;
  width: auto;
  padding: 0.35em 0.85em;
  border-radius: var(--cl-text-radius, 999px);
  background: var(--cl-text-bg, rgba(255,255,255,0.72));
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

h3.cl-text { font-size: clamp(1.25rem, 2.6vw, 1.6rem); }
h4.cl-text { font-size: clamp(1.05rem, 2.2vw, 1.25rem); }
h5.cl-text { font-size: 1rem; }
h6.cl-text { font-size: 0.85rem; letter-spacing: 0.04em; }
/* END_BLOCK:collection-text */

/* START_BLOCK:collection-title (INDEX:45) */
/* ─────────────────────────────────────────────
   Collection Title — block styles
───────────────────────────────────────────── */

.cl-collection-title {
  margin: 0;
  padding-top:    var(--cl-title-pt, 0);
  padding-bottom: var(--cl-title-pb, 0);
  font-family:  var(--font-heading--family, inherit);
  font-weight:  var(--font-heading--weight, 700);
  color: inherit;
  line-height: 1.2;
}
.cl-collection-title__link {
  color: inherit;
  text-decoration: none;
}
.cl-collection-title__link:hover { text-decoration: underline; }

.cl-title--uppercase { text-transform: uppercase; }

.cl-collection-title__count {
  font-weight: 400;
  opacity: 0.55;
}
.cl-collection-title__count::before { content: "\00a0("; }
.cl-collection-title__count::after  { content: ")"; }

/* Size scale */
h3.cl-collection-title { font-size: clamp(1.25rem, 2.6vw, 1.6rem); }
h4.cl-collection-title { font-size: clamp(1.05rem, 2.2vw, 1.25rem); }
h5.cl-collection-title { font-size: 1rem; }
h6.cl-collection-title { font-size: 0.85rem; letter-spacing: 0.04em; }
/* END_BLOCK:collection-title */

/* START_BLOCK:content-showcase-badge (INDEX:46) */
.content-showcase__badge {
  gap: var(--cs-badge-gap, 8px);
  background-color: var(--cs-badge-bg, transparent);
  color: var(--cs-badge-text, inherit);
  transition: background-color 0.2s ease, color 0.2s ease;
}
.content-showcase__badge:hover {
  background-color: var(--cs-badge-hover, var(--cs-badge-bg, transparent));
}
.content-showcase__badge--icon-right {
  flex-direction: row-reverse;
}
.content-showcase__badge-icon,
.content-showcase__badge-icon-img {
  width: var(--cs-badge-icon-size, 16px);
  height: var(--cs-badge-icon-size, 16px);
}
.content-showcase__badge-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}
.content-showcase__badge-icon-img {
  display: block;
  object-fit: contain;
}
/* END_BLOCK:content-showcase-badge */

/* START_BLOCK:content-showcase-image (INDEX:47) */
.content-showcase__image {
  width: var(--cs-image-size, 60px);
  height: var(--cs-image-size, 60px);
  overflow: hidden;
  margin-left: var(--cs-image-ml, 0px);
  margin-right: var(--cs-image-mr, 0px);
  transform: rotate(var(--cs-image-rotate, 0deg));
}
.content-showcase__image--valign-baseline { vertical-align: baseline; }
.content-showcase__image--valign-top { vertical-align: top; }
.content-showcase__image--valign-middle { vertical-align: middle; }
.content-showcase__image--valign-bottom { vertical-align: bottom; }
.content-showcase__image-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-showcase__image-placeholder {
  fill: currentColor;
  opacity: 0.2;
  background-color: color-mix(in srgb, var(--color-foreground) 8%, transparent);
}
/* END_BLOCK:content-showcase-image */

/* START_BLOCK:content-showcase-rich-text (INDEX:48) */
.content-showcase__rich-text {
  max-width: var(--cs-text-max-width, none);
  color: var(--cs-text-color, inherit);
}
.content-showcase__rich-text mark,
.content-showcase__rich-text-inner mark {
  background-color: var(--cs-highlight-color, transparent);
  color: inherit;
  padding: 0 0.15em;
}
.content-showcase__rich-text-inner {
  margin: 0;
}
/* END_BLOCK:content-showcase-rich-text */

/* START_BLOCK:faq-button (INDEX:50) */
.faq-button__wrap {
  display: flex;
  justify-content: inherit;
}
.faq-button.btn-link {
  padding-left: 0;
  padding-right: 0;
}
.faq--two-column .faq-button__wrap .btn {
  border-radius: 999px;
}
/* END_BLOCK:faq-button */

/* START_BLOCK:faq-category (INDEX:51) */
.faq-cats__panel-title {
  font-family: var(--font-heading--family, inherit);
  font-weight: var(--font-heading--weight, 700);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  line-height: 1.15;
  margin: 0;
  color: inherit;
}
.faq-cats__panel-sub {
  margin: 0.5rem 0 0;
  font-size: 0.95rem;
  line-height: 1.5;
  opacity: 0.7;
}
.faq-cats__items {
  display: flex;
  flex-direction: column;
}
/* END_BLOCK:faq-category */

/* START_BLOCK:faq-header (INDEX:52) */
.faq__header {
  margin-bottom: var(--faq-hdr-mb, 32px);
}
/* END_BLOCK:faq-header */

/* START_BLOCK:faq-heading (INDEX:53) */
.faq__heading {
  font-family: var(--font-heading--family, inherit);
  font-weight: var(--font-heading--weight, 700);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.15;
  margin: 0;
  color: inherit;
}
/* END_BLOCK:faq-heading */

/* START_BLOCK:faq-help-card (INDEX:54) */
.faq-help-card {
  background-color: var(--color-background, #1a1a1a);
  color: var(--color-foreground, #fff);
  border-radius: 0.9rem;
  padding: clamp(1.25rem, 3vw, 1.75rem);
}
.faq-help-card__heading {
  margin: 0 0 0.5rem;
  font-family: var(--font-heading--family, inherit);
  font-weight: var(--font-heading--weight, 700);
  font-size: 1.15rem;
  line-height: 1.2;
}
.faq-help-card__text {
  margin: 0 0 1rem;
  font-size: 0.9rem;
  line-height: 1.5;
  opacity: 0.8;
}
.faq-help-card__btn {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}
/* END_BLOCK:faq-help-card */

/* START_BLOCK:faq-item (INDEX:55) */
.faq-item {
  border-block-end: 1px solid color-mix(in srgb, var(--color-foreground) 12%, transparent);
}
.faq-item:last-child {
  border-block-end: none;
}
.faq-item__trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  padding-block: 1rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1.4;
  list-style: none;
  user-select: none;
  color: inherit;
}
.faq-item__trigger::-webkit-details-marker {
  display: none;
}
.faq-item__question {
  flex: 1;
  min-width: 0;
  text-align: start;
}
.faq-item__icon {
  position: relative;
  flex-shrink: 0;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--color-foreground) 25%, transparent);
}
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.faq-item__icon::before {
  width: 0.65rem;
  height: 1.5px;
}
.faq-item__icon::after {
  width: 1.5px;
  height: 0.65rem;
}
.faq-item[open] > summary .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq-item__content {
  padding-bottom: 1rem;
}
.faq-item__body {
  font-size: 0.9rem;
  line-height: 1.7;
  opacity: 0.85;
}
.faq-item__body > :first-child {
  margin-top: 0;
}
.faq-item__body > :last-child {
  margin-bottom: 0;
}
.faq-item__image-wrap {
  margin-top: 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
}
.faq-item__image {
  width: 100%;
  height: auto;
  display: block;
}

/* Centered card layout */
.faq--centered .faq-item {
  border: none;
  background-color: color-mix(in srgb, var(--color-foreground) 6%, var(--color-background));
  border-radius: var(--faq-item-radius, 12px);
  padding-inline: clamp(1rem, 3vw, 1.5rem);
}
.faq--centered .faq-item__trigger {
  padding-block: 1.25rem;
  font-size: 1rem;
}
.faq--centered .faq-item__icon {
  border: none;
  background-color: color-mix(in srgb, var(--color-foreground) 10%, transparent);
}
.faq--centered.faq--numbered .faq-item__question::before {
  content: counter(faq-item) '. ';
  font-weight: 700;
}
.faq--centered .faq-item__image-wrap {
  border-radius: 0.75rem;
}

/* Split layout */
.faq--split .faq-item__trigger {
  padding-block: 0.85rem;
  font-weight: 500;
}
.faq--split .faq-item__icon {
  width: 1.5rem;
  height: 1.5rem;
}

/* Two-column layout */
.faq--two-column .faq-item {
  border-block-end: 1px solid color-mix(in srgb, var(--color-foreground) 15%, transparent);
}
.faq--two-column .faq-item__trigger {
  padding-block: 1.1rem;
}
.faq--two-column .faq-item__icon {
  border: none;
  background-color: var(--color-button, var(--color-foreground));
  color: var(--color-button-text, var(--color-background));
}
.faq--two-column .faq-item__icon::before,
.faq--two-column .faq-item__icon::after {
  background: currentColor;
}
/* END_BLOCK:faq-item */

/* START_BLOCK:faq-media (INDEX:56) */
.faq__media {
  position: relative;
  min-height: 280px;
  height: 100%;
}
.faq__media-wrap,
.faq__media-placeholder {
  position: absolute;
  inset: 0;
}
.faq__media-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.faq__media-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: color-mix(in srgb, var(--color-foreground) 6%, var(--color-background));
}
.faq__media-placeholder-svg {
  width: 40%;
  max-width: 200px;
  opacity: 0.35;
}
/* END_BLOCK:faq-media */

/* START_BLOCK:faq-text (INDEX:57) */
.faq__text {
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
  color: inherit;
}
.faq--centered .faq__text {
  opacity: 0.85;
}
/* END_BLOCK:faq-text */

/* START_BLOCK:group (INDEX:58) */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
/* END_BLOCK:group */

/* START_BLOCK:header-account (INDEX:59) */
.header-account {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.header-account__icon-wrap a,
.header-account__avatar-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: inherit;
  text-decoration: none;
}

.header-account__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.header-account__links {
  display: none;
  gap: 0.75rem;
}

@media (min-width: 1200px) {
  .header-account__links {
    display: inline-flex;
  }
}

.header-account__link {
  color: inherit;
  text-decoration: none;
  font-size: 0.875rem;
}

.header-account__link:hover,
.header-account__link:focus-visible {
  opacity: 0.75;
}
/* END_BLOCK:header-account */

/* START_BLOCK:header-cart (INDEX:60) */
.header-cart {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: inherit;
  text-decoration: none;
}

.header-cart__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.header-cart__count {
  position: absolute;
  top: -0.35rem;
  right: -0.45rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1rem;
  height: 1rem;
  padding: 0 0.2rem;
  border-radius: 999px;
  background: rgb(var(--color-foreground, 26 26 26));
  color: rgb(var(--color-background, 255 255 255));
  font-size: 0.625rem;
  line-height: 1;
}

.header-cart__count[hidden] {
  display: none;
}

.header-cart--text .header-cart__label {
  font-size: 0.875rem;
}
/* END_BLOCK:header-cart */

/* START_BLOCK:header-localization (INDEX:61) */
.header-localization {
  margin-right: auto;
}
 
.header-localization__form {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.header-localization__disclosure {
  position: relative;
}

.header-localization__trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
  font: inherit;
}

.header-localization__flag img {
  width: 1.125rem;
  height: auto;
  border-radius: 0.125rem;
}

.header-localization__chevron svg {
  width: 0.75rem;
  height: 0.75rem;
}

.header-localization__list {
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  z-index: 25;
  min-width: 14rem;
  max-height: 16rem;
  overflow: auto;
  margin: 0;
  padding: 0.35rem 0;
  list-style: none;
  background: rgb(var(--color-background, 255 255 255));
  border: 1px solid rgb(var(--color-foreground, 26 26 26) / 0.12);
  border-radius: 0.375rem;
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.08);
}

.header-localization__option {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.5rem 0.75rem;
  border: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
  font: inherit;
}

.header-localization__option:hover,
.header-localization__option.is-active {
  background: rgb(var(--color-foreground, 26 26 26) / 0.06);
}
/* END_BLOCK:header-localization */

/* START_BLOCK:header-logo (INDEX:62) */
.header-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: inherit;
  max-width: 100%;
}

.header-logo__image {
  width: var(--header-logo-w-mobile, 100px);
  height: auto;
  object-fit: contain;
}

@media (min-width: 992px) {
  .header-logo__image {
    width: var(--header-logo-w-desktop, 140px);
  }
}

.header-logo__text {
  font-family: var(--font-heading-family, inherit);
  font-size: 1.5rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}
/* END_BLOCK:header-logo */

/* START_BLOCK:header-mega-menu (INDEX:63) */
.header-mega-menu {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 20;
  width: 100%;
  padding: 1.5rem 0;
  background: rgb(var(--color-background, 255 255 255));
  border-top: 1px solid rgb(var(--color-foreground, 26 26 26) / 0.08);
  box-shadow: 0 12px 32px rgb(0 0 0 / 0.08);
}

.header-mega-menu__grid {
  display: grid;
  gap: 2rem;
}

@media (min-width: 992px) {
  .header-mega-menu__grid {
    grid-template-columns: 1fr minmax(16rem, 22rem);
  }
}

.header-mega-menu__heading {
  margin: 0 0 1rem;
  font-size: 1rem;
  font-weight: 600;
}

.header-mega-menu__products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin: 0 0 1rem;
  padding: 0;
  list-style: none;
}

@media (min-width: 768px) {
  .header-mega-menu__products {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.header-mega-menu__product-link {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  text-decoration: none;
  color: inherit;
}

.header-mega-menu__product-image {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0.375rem;
}

.header-mega-menu__product-title {
  font-size: 0.875rem;
}

.header-mega-menu__featured-card {
  display: grid;
  gap: 1rem;
}

.header-mega-menu__featured-card--square .header-mega-menu__featured-image {
  aspect-ratio: 1;
}

.header-mega-menu__featured-card--portrait .header-mega-menu__featured-image {
  aspect-ratio: 3 / 4;
}

.header-mega-menu__featured-card--landscape .header-mega-menu__featured-image {
  aspect-ratio: 4 / 3;
}

.header-mega-menu__featured-image {
  width: 100%;
  object-fit: cover;
  border-radius: 0.375rem;
}

.header-mega-menu__vendor {
  margin: 0;
  font-size: 0.75rem;
  opacity: 0.7;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.header-mega-menu__featured-title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
}

.header-mega-menu__featured-title a {
  color: inherit;
  text-decoration: none;
}

.header-mega-menu__price {
  margin: 0 0 1rem;
}

.header-mega-menu__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
/* END_BLOCK:header-mega-menu */

/* START_BLOCK:header-menu (INDEX:64) */
.header-menu {
  width: 100%;
}

.header-menu--font-heading {
  --header-menu-font: var(--font-heading-family, inherit);
}

.header-menu--font-body {
  --header-menu-font: var(--font-body-family, inherit);
}

.header-menu--transform-uppercase .header-menu__link,
.header-menu--transform-uppercase .header-menu__link-text,
.header-menu--transform-uppercase .header-menu__drawer-link {
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.header-menu__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.header-menu__toggle svg {
  width: 1.25rem;
  height: 1.25rem;
}

.header-menu__nav {
  display: none;
}

@media (min-width: 992px) {
  .header-menu__nav {
    display: block;
  }

  .site-header--drawer .header-menu__nav--drawer-desktop {
    display: none;
  }
}

.header-menu__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-family: var(--header-menu-font, inherit);
}

.header-menu__link,
.header-menu__link-text {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  text-decoration: none;
  color: inherit;
}

.header-menu__link:hover,
.header-menu__link:focus-visible,
.header-menu__dropdown-link:hover,
.header-menu__dropdown-link:focus-visible {
  color: inherit;
  opacity: 0.75;
}

.header-menu__chevron svg {
  width: 0.75rem;
  height: 0.75rem;
}

.header-menu__details {
  position: relative;
}

.header-menu__details > summary {
  list-style: none;
  cursor: pointer;
}

.header-menu__details > summary::-webkit-details-marker {
  display: none;
}

.header-menu__link--summary {
  gap: 0.35rem;
}

.header-menu__dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  z-index: 5;
  min-width: 12rem;
  margin: 0;
  padding: 0.75rem 0;
  list-style: none;
  background: rgb(var(--color-background, 255 255 255));
  border: 1px solid rgb(var(--color-foreground, 26 26 26) / 0.12);
  border-radius: 0.375rem;
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.08);
}

.header-menu__details:not([open]) .header-menu__dropdown {
  display: none;
}

.header-menu__dropdown-item {
  padding: 0;
}

.header-menu__dropdown-link {
  display: block;
  padding: 0.45rem 1rem;
  text-decoration: none;
  color: inherit;
}

.header-menu__sublist {
  margin: 0;
  padding: 0 0 0.25rem 1rem;
  list-style: none;
}

.header-menu__drawer {
  width: min(22rem, 100vw);
  max-width: 100%;
  height: 100%;
  max-height: 100%;
  margin: 0 0 0 auto;
  padding: 0;
  border: 0;
  background: rgb(var(--color-background, 255 255 255));
  color: rgb(var(--color-foreground, 26 26 26));
}

.header-menu__drawer::backdrop {
  background: rgb(0 0 0 / 0.45);
}

.header-menu__drawer-inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.header-menu__drawer-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgb(var(--color-foreground, 26 26 26) / 0.12);
}

.header-menu__drawer-close {
  display: inline-flex;
  padding: 0.35rem;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.header-menu__drawer-list {
  margin: 0;
  padding: 1rem 1.25rem;
  list-style: none;
  overflow: auto;
}

.header-menu__drawer-link {
  display: block;
  padding: 0.65rem 0;
  text-decoration: none;
  color: inherit;
  font-weight: 500;
}

.header-menu__drawer-sublist {
  margin: 0;
  padding: 0 0 0.5rem 1rem;
  list-style: none;
}

.header-menu__drawer-sublink {
  display: block;
  padding: 0.35rem 0;
  text-decoration: none;
  color: inherit;
  opacity: 0.85;
}
/* END_BLOCK:header-menu */

/* START_BLOCK:header-search (INDEX:65) */
.header-search {
  display: flex;
  align-items: center;
}

.header-search__icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.35rem;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.header-search__icon svg,
.header-search-modal__icon svg {
  width: 1.25rem;
  height: 1.25rem;
}

.header-search__form {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: min(100%, 28rem);
  padding: 0.5rem 0.875rem;
  border-radius: 999px;
  background: rgb(var(--color-foreground, 26 26 26) / 0.06);
}

.header-search--search_bar {
  flex: 1 1 auto;
  min-width: 0;
}

.site-header--menu-bottom .header-search--search_bar {
  width: 100%;
  max-width: 36rem;
}

.header-search__input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  color: inherit;
  outline: none;
}

.header-search__results {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  z-index: 30;
  width: 100%;
  max-height: 24rem;
  overflow: auto;
  margin: 0;
  padding: 0.5rem 0;
  list-style: none;
  background: rgb(var(--color-background, 255 255 255));
  border: 1px solid rgb(var(--color-foreground, 26 26 26) / 0.12);
  border-radius: 0.5rem;
  box-shadow: 0 12px 32px rgb(0 0 0 / 0.1);
}

.header-search-modal {
  width: min(40rem, calc(100vw - 2rem));
  max-width: 100%;
  padding: 0;
  border: 0;
  border-radius: 0.75rem;
  background: rgb(var(--color-background, 255 255 255));
  color: rgb(var(--color-foreground, 26 26 26));
}

.header-search-modal::backdrop {
  background: rgb(0 0 0 / 0.45);
}

.header-search-modal__inner {
  padding: 1rem;
}

.header-search-modal__header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.header-search-modal__form {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1 1 auto;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  background: rgb(var(--color-foreground, 26 26 26) / 0.06);
}

.header-search-modal__input {
  flex: 1 1 auto;
  min-width: 0;
  border: 0;
  background: transparent;
  color: inherit;
  outline: none;
}

.header-search-modal__close {
  display: inline-flex;
  padding: 0.35rem;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.header-search-modal__close svg {
  width: 1rem;
  height: 1rem;
}

.header-search-modal__results,
.header-search__results-list {
  margin: 0;
  padding: 0.5rem 0 0;
  list-style: none;
}

.header-search__result-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.65rem 0.75rem;
  text-decoration: none;
  color: inherit;
}

.header-search__result-link:hover,
.header-search__result-link.is-active {
  background: rgb(var(--color-foreground, 26 26 26) / 0.06);
}

.header-search__result-image {
  width: 2.5rem;
  height: 2.5rem;
  object-fit: cover;
  border-radius: 0.25rem;
}

.header-search__result-meta {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.header-search__result-type {
  font-size: 0.75rem;
  opacity: 0.65;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}
/* END_BLOCK:header-search */

/* START_BLOCK:header-utilities (INDEX:66) */
.header-utilities {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 0.75rem;
  width: 100%;
}

.header-utilities:has(.header-search--search_bar) {
  gap: 1rem;
}

.header-utilities:has(.header-search--search_bar) .header-search--search_bar {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 36rem;
}
/* END_BLOCK:header-utilities */

/* START_BLOCK:image-with-text-image (INDEX:69) */
.image-with-text-image {
  min-height: var(--iwti-height-mobile, 280px);
}
@media (min-width: 768px) {
  .image-with-text-image {
    min-height: var(--iwti-height-desktop, 420px);
  }
}
.image-with-text-image__img {
  object-fit: cover;
}
.image-with-text-image__placeholder {
  background: rgb(var(--color-foreground, 26 26 26) / 0.04);
}
.image-with-text-image__placeholder-svg {
  object-fit: cover;
  opacity: 0.6;
}
/* END_BLOCK:image-with-text-image */

/* START_BLOCK:newsletter-email-signup (INDEX:70) */
.newsletter__signup {
  flex: 0 1 auto;
  min-width: 0;
  width: 100%;
  max-width: 32rem;
}
.newsletter__form-row {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 0.5rem;
}
.newsletter__form-row--combined {
  flex-wrap: nowrap;
  gap: 0;
  overflow: hidden;
  border-radius: var(--nl-input-radius, 999px);
  background-color: #fff;
}
.newsletter__field {
  flex: 1 1 12rem;
  min-width: 0;
}
.newsletter__form-row--combined .newsletter__field {
  flex: 1 1 auto;
}
.newsletter__input {
  width: 100%;
  min-height: 3rem;
  padding: 0.625rem 1.25rem;
  border-radius: var(--nl-input-radius, 999px);
  background-color: #fff;
  color: var(--color-foreground, #1a1a1a);
  box-shadow: none;
}
.newsletter__input--border-none {
  border: none;
}
.newsletter__input--border-solid {
  border: 1px solid rgb(var(--color-border));
}
.newsletter__input--border-underline {
  border: none;
  border-bottom: 1px solid rgb(var(--color-border)) !important;
  border-radius: 0;
  padding-inline: 0;
  background-color: transparent;
}
.newsletter__form-row--combined .newsletter__input {
  border-radius: 0;
  min-height: 3rem;
}
.newsletter__form-row--combined .newsletter__input--border-none,
.newsletter__form-row--combined .newsletter__input--border-solid {
  border-right: none;
}
.newsletter__input:focus {
  outline: 2px solid var(--color-button);
  outline-offset: 2px;
}
.newsletter__input::placeholder {
  color: color-mix(in srgb, var(--color-foreground) 55%, transparent);
}
.newsletter__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  min-height: 3rem;
  padding: 0.625rem 1.5rem;
  border-radius: var(--nl-button-radius, 999px);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
}
.newsletter__form-row--combined .newsletter__submit {
  border-radius: 0;
  min-height: 3rem;
}
.newsletter__submit.btn-link {
  padding-inline: 1rem;
}
.newsletter__submit-arrow {
  font-size: 1.125rem;
  line-height: 1;
}
.newsletter__message {
  margin: 0.75rem 0 0;
  font-size: 0.875rem;
}
.newsletter__message--error {
  color: #b00020;
}
.newsletter__message--success {
  color: inherit;
  opacity: 0.9;
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
/* END_BLOCK:newsletter-email-signup */

/* START_BLOCK:newsletter-header (INDEX:71) */
.newsletter__header {
  flex: 1 1 auto;
  min-width: 0;
  margin-bottom: var(--nl-hdr-mb, 0);
}
.newsletter__header-inner {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.newsletter__header--icon-top .newsletter__header-inner {
  flex-direction: column;
  align-items: inherit;
}
.newsletter__header--icon-left .newsletter-icon {
  margin-top: 0.125rem;
}
.newsletter__header--icon-left .newsletter__header-inner > :not(.newsletter-icon) {
  flex: 1 1 auto;
  min-width: 0;
}
.newsletter__header--icon-top .newsletter-icon {
  padding-right: 0;
}
.text-center .newsletter__header-inner {
  align-items: center;
}
.text-end .newsletter__header-inner {
  align-items: flex-end;
}
/* END_BLOCK:newsletter-header */

/* START_BLOCK:newsletter-icon (INDEX:72) */
.newsletter-icon__shell {
  overflow: hidden;
  flex-shrink: 0;
}
.newsletter-icon__graphic,
.newsletter-icon__graphic img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.newsletter-icon__graphic svg {
  width: 100%;
  height: 100%;
  display: block;
}
.newsletter-icon__graphic--custom svg {
  width: 100%;
  height: 100%;
}
/* END_BLOCK:newsletter-icon */

/* START_BLOCK:product-add-to-cart (INDEX:73) */
.product-add-to-cart__form {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }
  .btn-atc,
  .btn-buy-now {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: var(--button-padding-vertical, 14px) var(--button-padding-horizontal, 28px);
    font: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    border-radius: var(--button-border-radius, 0px);
    transition: background 0.2s, color 0.2s, border-color 0.2s;
    letter-spacing: 0.02em;
  }
  .btn-atc {
    background: var(--color-primary);
    color: var(--color-background);
    border: 1px solid var(--color-primary-border);
  }
  .btn-atc:hover:not(:disabled) { background: var(--color-primary-hover); border-color: var(--color-primary-hover); }
  .btn-atc:disabled { opacity: 0.45; cursor: not-allowed; }

  .btn-buy-now {
    background: transparent;
    color: var(--color-primary);
    border: 1px solid var(--color-primary-border);
  }
  .btn-buy-now:hover:not(:disabled) {
    background: var(--color-primary);
    color: var(--color-background);
  }
  .btn-buy-now:disabled { opacity: 0.45; cursor: not-allowed; }

  .product-add-to-cart__error {
    margin: 0;
    font-size: 0.85rem;
    color: var(--badge-sale-bg, #d9534f);
  }
  .product-add-to-cart__error[hidden] { display: none; }
/* END_BLOCK:product-add-to-cart */

/* START_BLOCK:product-complementary (INDEX:74) */
.product-complementary { min-height: 1px; }
  .product-complementary .complementary-products { display: flex; flex-direction: column; gap: 0.5rem; }
  .product-complementary .complementary-products__title {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    opacity: 0.6;
    margin: 0 0 0.4rem;
  }
  .product-complementary .complementary-product {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: currentColor;
  }
  .product-complementary .complementary-product img {
    width: 3rem; height: 3rem;
    object-fit: cover;
    border-radius: var(--input-border-radius, 0px);
    flex-shrink: 0;
  }
  .product-complementary .complementary-product__title { font-size: 0.85rem; font-weight: 500; }
  .product-complementary .complementary-product__price { font-size: 0.82rem; opacity: 0.65; }
/* END_BLOCK:product-complementary */

/* START_BLOCK:product-custom-liquid (INDEX:75) */
.product-custom-liquid {
    min-width: 0;
  }
/* END_BLOCK:product-custom-liquid */

/* START_BLOCK:product-deal-counter (INDEX:76) */
.product-deal-counter {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    background: rgba(0,0,0,0.04);
    padding: 0.5rem 0.85rem;
    border-radius: var(--input-border-radius, 0px);
  }
  .product-deal-counter__label { opacity: 0.65; }
  .product-deal-counter__timer {
    font-weight: 700;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.06em;
  }
/* END_BLOCK:product-deal-counter */

/* START_BLOCK:product-description (INDEX:77) */
.product-description.rte,
  .product-description__body.rte {
    font-size: 0.95rem;
    line-height: 1.75;
  }
  .product-description.rte table,
  .product-description__body.rte table {
    display: block;
    overflow-x: auto;
    max-width: 100%;
  }

  /* Collapsible */
  .product-description--collapsible {
    border-top: 1px solid rgba(0,0,0,0.1);
  }
  .product-description--collapsible + .product-description--collapsible {
    border-top: none;
  }
  .product-description--collapsible:last-child {
    border-bottom: 1px solid rgba(0,0,0,0.1);
  }
  .product-description__trigger {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.9rem 0;
    min-height: 44px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    list-style: none;
    user-select: none;
  }
  .product-description__trigger::-webkit-details-marker { display: none; }
  .product-description__icon {
    position: relative;
    width: 1rem; height: 1rem;
    flex-shrink: 0;
  }
  .product-description__icon::before,
  .product-description__icon::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    background: currentColor;
    transform: translate(-50%, -50%);
  }
  .product-description__icon::before { width: 100%; height: 1.5px; }
  .product-description__icon::after  { width: 1.5px; height: 100%; transition: transform 0.25s ease; }
  details[open] > summary .product-description__icon::after {
    transform: translate(-50%, -50%) rotate(90deg);
  }
  .product-description__body {
    padding-bottom: 1rem;
  }
/* END_BLOCK:product-description */

/* START_BLOCK:product-icon-text-item (INDEX:78) */
.product-icon-text__item {
    display: flex;
    align-items: flex-start;
    gap: 0.65rem;
  }
  .product-icon-text__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }
  .product-icon-text__icon svg {
    width: 100%;
    height: 100%;
  }
  .product-icon-text__content {
    min-width: 0;
  }
  .product-icon-text__heading {
    margin: 0;
    font-size: 0.88rem;
    font-weight: 600;
  }
  .product-icon-text__text {
    margin: 0;
    font-size: 0.85rem;
    opacity: 0.7;
    overflow-wrap: anywhere;
  }
/* END_BLOCK:product-icon-text-item */

/* START_BLOCK:product-icon-text (INDEX:79) */
.product-icon-text {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
/* END_BLOCK:product-icon-text */

/* START_BLOCK:product-info (INDEX:80) */
.product-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: var(--content-max-width, none);
    min-width: 0;
  }
/* END_BLOCK:product-info */

/* START_BLOCK:product-inventory (INDEX:81) */
.product-inventory {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    margin: 0;
  }
  .product-inventory[hidden] {
    display: none;
  }
  .product-inventory__dot {
    display: inline-block;
    width: 8px; height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
  }
  .product-inventory--in  .product-inventory__dot { background: #2a7a2a; }
  .product-inventory--low .product-inventory__dot { background: #c97a00; }
  .product-inventory--out .product-inventory__dot { background: rgba(0,0,0,0.3); }
  .product-inventory--in  { color: #2a7a2a; }
  .product-inventory--low { color: #c97a00; }
  .product-inventory--out { opacity: 0.55; }
/* END_BLOCK:product-inventory */

/* START_BLOCK:product-media (INDEX:82) */
product-media-gallery {
    display: block;
    min-width: 0;
  }

  /* ── Media item (shared by all layouts) ── */
  .product-media-item {
    position: relative;
    width: 100%;
    overflow: hidden;
    border: var(--media-border, none);
    border-radius: var(--media-radius, 0px);
    aspect-ratio: var(--media-ratio, var(--item-ratio, 1));
  }
  .product-media-gallery--shadow .product-media-item {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }
  .product-media-item__media {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: var(--media-fit, cover);
    border-radius: inherit;
    border: 0;
  }
  .product-media-item[hidden] {
    display: none;
  }

  /* ── Deferred 3D model (poster + badge → click to activate) ── */
  .product-media-item__deferred {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
  }
  .product-media-item__poster {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
    padding: 0;
    border: 0;
    background: none;
    cursor: pointer;
  }
  .product-media-item__badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #111;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
    pointer-events: none;
    transition: transform 0.15s;
  }
  .product-media-item__poster:hover .product-media-item__badge,
  .product-media-item__poster:focus-visible .product-media-item__badge {
    transform: translate(-50%, -50%) scale(1.08);
  }
  .product-media-item__deferred[loaded] .product-media-item__poster {
    display: none;
  }
  /* The viewer lives in the DOM from page load (Shopify's runtime scans
     for it to inject the model-viewer library) but stays hidden behind
     the poster until activated. */
  .product-media-item__deferred model-viewer {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
  }
  .product-media-item__deferred[loaded] model-viewer {
    visibility: visible;
  }
  /* Deferred videos: the swapped-in player fills the ratio box. */
  .product-media-item__deferred video.product-media-item__media,
  .product-media-item__deferred iframe.product-media-item__media {
    position: absolute;
    inset: 0;
  }
  /* Shopify.ModelViewerUI wraps the viewer in .shopify-model-viewer-ui
     (inline-block, no size in Shopify's stock CSS) — without this
     override the wrapper collapses and the viewer disappears. */
  .product-media-item__deferred .shopify-model-viewer-ui {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
  }

  /* ── Slider ── */
  .product-gallery__main {
    position: relative;
    overflow: hidden;
  }

  .product-gallery__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.88);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 50%;
    cursor: pointer;
    color: #111;
    transition: background 0.15s;
  }
  .product-gallery__arrow:hover {
    background: #fff;
  }
  .product-gallery__arrow--prev {
    left: 0.75rem;
  }
  .product-gallery__arrow--next {
    right: 0.75rem;
  }
  .product-gallery__arrow.swiper-button-disabled {
    opacity: 0.35;
    pointer-events: none;
  }

  .product-gallery__dots {
    position: absolute;
    bottom: 0.6rem;
    left: 0;
    right: 0;
    z-index: 2;
    text-align: center;
  }
  .product-gallery__dots .swiper-pagination-bullet {
    background: var(--color-foreground, #111);
    opacity: 0.4;
  }
  .product-gallery__dots .swiper-pagination-bullet-active {
    background: var(--color-primary, #111);
    opacity: 1;
  }

  .product-gallery__counter {
    position: absolute;
    bottom: 0.6rem;
    right: 0.6rem;
    z-index: 2;
    padding: 0.15rem 0.6rem;
    font-size: 0.75rem;
    background: rgba(255, 255, 255, 0.85);
    color: #111;
    border-radius: 999px;
  }

  /* ── Thumbnails ── */
  .product-gallery__thumbs {
    margin-top: var(--media-gap, 8px);
    overflow: hidden;
  }
  /* Slide width (horizontal) / height (vertical) comes from Swiper's
     thumbnails-per-view setting; the square shape comes from aspect-ratio. */
  .product-gallery__thumb {
    height: auto;
    aspect-ratio: 1 / 1;
    border: 2px solid transparent;
    border-radius: var(--media-radius, 0px);
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: border-color 0.15s, opacity 0.15s;
  }
  .product-gallery__thumb.swiper-slide-thumb-active {
    border-color: var(--color-primary, #111);
    opacity: 1;
  }
  .product-gallery__thumb[hidden] {
    display: none;
  }
  .product-gallery__thumb-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Thumbnails left (desktop only — falls back to bottom on mobile) */
  @media (min-width: 990px) {
    .product-media-gallery--thumbs-left {
      display: grid;
      grid-template-columns: 88px minmax(0, 1fr);
      column-gap: var(--media-gap, 8px);
    }
    .product-media-gallery--thumbs-left .product-gallery__thumbs {
      order: -1;
      margin-top: 0;
      height: 100%;
      max-height: 640px;
    }
  }

  @media (max-width: 989.98px) {
    .product-media-gallery--hide-mobile-thumbs .product-gallery__thumbs {
      display: none;
    }
  }

  /* ── Grid ── */
  .product-gallery__grid {
    display: grid;
    grid-template-columns: repeat(var(--media-cols-mobile, 1), minmax(0, 1fr));
    gap: var(--media-gap, 8px);
  }
  .product-media-item--span-all {
    grid-column: 1 / -1;
  }
  @media (min-width: 990px) {
    .product-gallery__grid {
      grid-template-columns: repeat(var(--media-cols, 2), minmax(0, 1fr));
    }
    .product-media-item--span-2 {
      grid-column: span 2;
    }
  }
  @media (max-width: 989.98px) {
    .product-media-item--span-2 {
      grid-column: 1 / -1;
    }
  }

  /* ── Stack ── */
  .product-gallery__stack {
    display: flex;
    flex-direction: column;
    gap: var(--media-gap, 8px);
  }
/* END_BLOCK:product-media */

/* START_BLOCK:product-pickup (INDEX:83) */
pickup-availability {
    display: block;
  }
  .product-pickup {
    font-size: 0.88rem;
  }
  .product-pickup__status {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin: 0;
  }
  .product-pickup__dot {
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    flex-shrink: 0;
    background: rgba(0, 0, 0, 0.3);
  }
  .product-pickup__status--available .product-pickup__dot,
  .pickup-drawer__availability--available .product-pickup__dot {
    background: #2a7a2a;
  }
  .product-pickup__time {
    display: block;
    opacity: 0.65;
  }
  .product-pickup__more {
    margin-top: 0.35rem;
    padding: 0.35rem 0;
    min-height: 44px;
    background: none;
    border: none;
    font: inherit;
    font-size: 0.82rem;
    text-decoration: underline;
    color: currentColor;
    opacity: 0.75;
    cursor: pointer;
  }
  .product-pickup__more:hover {
    opacity: 1;
  }

  /* ── Store information drawer ── */
  .pickup-drawer {
    position: fixed;
    inset-block: 0;
    inset-inline-end: 0;
    inset-inline-start: auto;
    width: min(420px, 100vw);
    height: 100dvh;
    max-height: 100dvh;
    margin: 0;
    padding: 0;
    border: none;
    background: var(--color-background, #fff);
    color: var(--color-foreground, #111);
    box-shadow: -8px 0 30px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
  }
  .pickup-drawer::backdrop {
    background: rgba(0, 0, 0, 0.4);
  }
  .pickup-drawer__header {
    position: sticky;
    top: 0;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 1.1rem 1.25rem 0.9rem;
    background: inherit;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .pickup-drawer__title {
    margin: 0;
    font-size: 1.05rem;
  }
  .pickup-drawer__subtitle {
    margin: 0.15rem 0 0;
    font-size: 0.8rem;
    opacity: 0.6;
  }
  .pickup-drawer__close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    background: none;
    border: none;
    color: currentColor;
    cursor: pointer;
  }
  .pickup-drawer__list {
    list-style: none;
    margin: 0;
    padding: 0 1.25rem 1.25rem;
  }
  .pickup-drawer__location {
    padding: 1rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  }
  .pickup-drawer__location:last-child {
    border-bottom: none;
  }
  .pickup-drawer__location-name {
    margin: 0 0 0.3rem;
    font-size: 0.95rem;
  }
  .pickup-drawer__availability {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin: 0 0 0.4rem;
    font-size: 0.85rem;
  }
  .pickup-drawer__availability--unavailable {
    opacity: 0.6;
  }
  .pickup-drawer__address {
    font-style: normal;
    font-size: 0.85rem;
    opacity: 0.7;
  }
  .pickup-drawer__address p {
    margin: 0;
  }
/* END_BLOCK:product-pickup */

/* START_BLOCK:product-price (INDEX:84) */
.product-price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
  }
  .product-price__current {
    font-size: 1.35rem;
    font-weight: 700;
  }
  .product-price__current--sale {
    color: var(--badge-sale-bg, #d9534f);
  }
  .product-price__compare {
    font-size: 1rem;
    opacity: 0.45;
    text-decoration: line-through;
    font-weight: 400;
  }
  .product-price__compare[hidden],
  .product-price__badge[hidden] {
    display: none;
  }
  .product-price__badge {
    display: inline-flex;
    align-items: center;
    padding: 0.2em 0.55em;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--badge-border-radius, 4px);
    background: var(--badge-sale-bg, #d9534f);
    color: var(--badge-sale-color, #fff);
  }
  .product-price__tax {
    flex-basis: 100%;
    font-size: 0.75rem;
    opacity: 0.6;
  }
/* END_BLOCK:product-price */

/* START_BLOCK:product-quantity (INDEX:85) */
quantity-input {
    display: block;
  }
  .product-quantity__label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.45rem;
  }
  .qty-stepper {
    display: inline-flex;
    align-items: center;
    height: 2.75rem;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: var(--input-border-radius, 0px);
    overflow: hidden;
  }
  .qty-stepper__btn {
    width: 2.75rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    color: currentColor;
    transition: background 0.15s;
    padding: 0;
  }
  .qty-stepper__btn:hover { background: rgba(0,0,0,0.05); }
  .qty-stepper__btn svg   { width: 0.9rem; height: 0.9rem; }
  .qty-stepper__input {
    width: 3.25rem;
    height: 100%;
    text-align: center;
    border: none;
    border-inline: 1px solid rgba(0,0,0,0.15);
    background: none;
    color: currentColor;
    font: inherit;
    font-size: 0.95rem;
    -moz-appearance: textfield;
    appearance: textfield;
  }
  .qty-stepper__input::-webkit-outer-spin-button,
  .qty-stepper__input::-webkit-inner-spin-button { -webkit-appearance: none; }
/* END_BLOCK:product-quantity */

/* START_BLOCK:product-rating (INDEX:86) */
.product-rating {
    display: flex;
    align-items: center;
    gap: 0.35rem;
  }
  .product-rating__stars {
    --star-size: 1rem;
    --star-color-empty: rgba(0, 0, 0, 0.2);
    --star-color-fill: #f5a623;
    position: relative;
    display: inline-block;
    font-size: var(--star-size);
    line-height: 1;
    color: var(--star-color-empty);
  }
  .product-rating__stars::before {
    content: '★★★★★';
    letter-spacing: 0.08rem;
  }
  .product-rating__stars-fill {
    position: absolute;
    inset: 0;
    overflow: hidden;
    width: calc(var(--rating) / 5 * 100%);
    color: var(--star-color-fill);
  }
  .product-rating__stars-fill::before {
    content: '★★★★★';
    letter-spacing: 0.08rem;
    white-space: nowrap;
  }
  .product-rating__count {
    font-size: 0.8rem;
    opacity: 0.6;
  }
/* END_BLOCK:product-rating */

/* START_BLOCK:product-separator (INDEX:87) */
.product-separator {
    border: none;
    border-top: 1px solid rgba(0,0,0,0.1);
    margin: 0;
  }
/* END_BLOCK:product-separator */

/* START_BLOCK:product-share (INDEX:88) */
.product-share {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    font-size: 0.85rem;
  }
  .product-share__label { opacity: 0.6; }
  .product-share__buttons { display: flex; gap: 0.4rem; flex-wrap: wrap; }
  .product-share__btn {
    padding: 0.22rem 0.7rem;
    border: 1px solid rgba(0,0,0,0.18);
    border-radius: 2rem;
    text-decoration: none;
    color: currentColor;
    font-size: 0.8rem;
    transition: background 0.15s;
  }
  .product-share__btn:hover { background: rgba(0,0,0,0.06); }
/* END_BLOCK:product-share */

/* START_BLOCK:product-size-guide (INDEX:89) */
.product-size-guide__btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    background: none;
    border: none;
    font: inherit;
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
    text-underline-offset: 2px;
    color: currentColor;
    padding: 0;
  }
  .product-size-guide__icon { font-size: 1rem; line-height: 1; }
/* END_BLOCK:product-size-guide */

/* START_BLOCK:product-sku (INDEX:90) */
.product-sku {
    display: flex;
    gap: 0.3rem;
    font-size: 0.82rem;
    opacity: 0.65;
    margin: 0;
  }
  .product-sku[hidden] {
    display: none;
  }
  .product-sku__label {
    font-weight: 600;
  }
/* END_BLOCK:product-sku */

/* START_BLOCK:product-subtitle (INDEX:91) */
.product-subtitle {
    margin: 0;
    opacity: 0.7;
    overflow-wrap: anywhere;
  }
  .product-subtitle--small  { font-size: 0.85rem; }
  .product-subtitle--medium { font-size: 1rem; }
  .product-subtitle--large  { font-size: 1.15rem; }
/* END_BLOCK:product-subtitle */

/* START_BLOCK:product-subtotal (INDEX:92) */
.product-subtotal {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-top: 1px solid rgba(0,0,0,0.1);
    font-size: 1rem;
  }
  .product-subtotal__label { opacity: 0.7; }
  .product-subtotal__price { font-weight: 700; }
/* END_BLOCK:product-subtotal */

/* START_BLOCK:product-tab (INDEX:93) */
.product-tabs__panel-heading {
    font-size: 1rem;
    margin: 0 0 0.5rem;
  }
  .product-tabs__panel-heading[hidden] {
    display: none;
  }
  .product-tabs__panel-content {
    font-size: 0.92rem;
  }
  .product-tabs__panel-content table {
    display: block;
    overflow-x: auto;
    max-width: 100%;
  }
/* END_BLOCK:product-tab */

/* START_BLOCK:product-tabs (INDEX:94) */
product-tabs {
    display: block;
  }
  .product-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem;
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
    margin-bottom: 0.85rem;
  }
  .product-tabs__tab {
    padding: 0.55rem 0.9rem;
    min-height: 44px;
    background: none;
    border: none;
    border-bottom: 2px solid transparent;
    font: inherit;
    font-size: 0.9rem;
    font-weight: 600;
    color: currentColor;
    opacity: 0.6;
    cursor: pointer;
    transition: opacity 0.15s, border-color 0.15s;
  }
  .product-tabs__tab[aria-selected='true'] {
    opacity: 1;
    border-bottom-color: var(--color-primary, currentColor);
  }
  .product-tabs__panel[hidden] {
    display: none;
  }
/* END_BLOCK:product-tabs */

/* START_BLOCK:product-title (INDEX:95) */
.product-title {
    font-family: var(--font-heading--family, inherit);
    font-weight: var(--font-heading--weight, 700);
    line-height: 1.15;
    margin: 0;
    overflow-wrap: anywhere;
  }
  .product-title--h1 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
  .product-title--h2 { font-size: clamp(1.4rem, 3vw, 2rem); }
  .product-title--h3 { font-size: clamp(1.25rem, 2.5vw, 1.6rem); }
  .product-title--h4 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
  .product-title--h5 { font-size: clamp(1rem, 1.8vw, 1.15rem); }
  .product-title--h6 { font-size: clamp(0.9rem, 1.6vw, 1rem); }
/* END_BLOCK:product-title */

/* START_BLOCK:product-variant-picker (INDEX:96) */
variant-picker { display: block; }
  .product-variant-picker { display: flex; flex-direction: column; gap: 0.85rem; }

  .variant-picker__option-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.45rem;
  }
  .variant-picker__option-name {
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin: 0;
  }
  .variant-picker__option-value {
    font-size: 0.8rem;
    opacity: 0.6;
    margin: 0;
  }

  /* Dropdown */
  .variant-picker__select {
    width: 100%;
    padding: 0.55rem 0.8rem;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: var(--input-border-radius, 0px);
    background: var(--color-background);
    color: var(--color-foreground);
    cursor: pointer;
  }

  /* Pills */
  .variant-picker__pills { display: flex; flex-wrap: wrap; gap: 0.4rem; }
  .variant-picker__pill  { cursor: pointer; }
  .variant-picker__pill-label {
    display: inline-block;
    padding: 0.3rem 0.85rem;
    border: 1px solid rgba(0,0,0,0.18);
    border-radius: var(--button-border-radius, 0px);
    font-size: 0.85rem;
    transition: border-color 0.15s, background 0.15s, color 0.15s;
  }
  .variant-picker__pill.is-selected .variant-picker__pill-label {
    border-color: var(--color-primary);
    background: var(--color-primary);
    color: var(--color-background);
  }

  /* Swatches */
  .variant-picker__swatches { display: flex; flex-wrap: wrap; gap: 0.5rem; }
  .variant-picker__swatch-label { cursor: pointer; }
  .swatch {
    display: block;
    width: 2rem; height: 2rem;
    border-radius: 50%;
    border: 2px solid transparent;
    outline: 2px solid transparent;
    outline-offset: 2px;
    transition: outline-color 0.15s, border-color 0.15s;
  }
  .variant-picker__swatch-label.is-selected .swatch {
    border-color: #fff;
    outline-color: var(--color-primary);
  }
  .swatch--image {
    background-size: cover;
    background-position: center;
  }

  /* Visually hidden radio */
  .visually-hidden {
    position: absolute;
    width: 1px; height: 1px;
    padding: 0; margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
  }
/* END_BLOCK:product-variant-picker */

/* START_BLOCK:product-vendor (INDEX:97) */
.product-vendor {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.55;
    margin: 0;
  }
/* END_BLOCK:product-vendor */

/* START_BLOCK:rich-text-button (INDEX:98) */
.rich-text__btn-wrap {
  display: flex;
  flex-shrink: 0;
}
.rich-text__btn.btn-link {
  padding-left: 0;
  padding-right: 0;
}
/* END_BLOCK:rich-text-button */

/* START_BLOCK:rich-text-discount-code (INDEX:99) */
.rich-text__code-copy:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}
.rich-text__code-copy-state, .rich-text__code-box--copied .rich-text__code-copy-state--success {
  display: inline-flex;
}
.rich-text__code-copy-state--success, .rich-text__code-box--copied .rich-text__code-copy-state--default  {
  display: none;
}
.rich-text__code-copy-icon,
.rich-text__code-copy-icon svg {
  display: block;
  width: 1rem;
  height: 1rem;
}
/* END_BLOCK:rich-text-discount-code */

/* START_BLOCK:rich-text-heading (INDEX:100) */
.rich-text__heading {
  margin: 0;
  font-family: var(--font-heading--family, inherit);
  font-weight: var(--font-heading--weight, 600);
  font-size: var(--rt-heading-size, 1.125rem);
  line-height: 1.3;
  color: inherit;
}
/* END_BLOCK:rich-text-heading */

/* START_BLOCK:rich-text-text (INDEX:101) */
.rich-text__text {
  margin: 0;
  font-size: var(--rt-text-size, 0.875rem);
  line-height: 1.5;
  opacity: var(--rt-text-opacity, 1);
  color: inherit;
}
/* END_BLOCK:rich-text-text */

/* START_BLOCK:shoppable-video-content (INDEX:102) */
.shoppable-video__content { position: relative; }
.shoppable-video__carousel {
  position: relative;
  overflow: hidden;
  --swiper-navigation-color:  var(--color-foreground);
  --swiper-navigation-size:   20px;
  --swiper-pagination-color:  var(--color-foreground);
  --swiper-pagination-bullet-inactive-color: var(--color-foreground);
}
.shoppable-video__carousel--dots { padding-bottom: 2.25rem; }
.shoppable-video__carousel--dots .swiper-button-prev,
.shoppable-video__carousel--dots .swiper-button-next {
  margin-top: calc(-1.125rem - var(--swiper-navigation-size, 20px) / 2);
}
.shoppable-video__carousel .shopify-block.swiper-slide,
.shoppable-video__carousel .swiper-slide { height: auto; }
.shoppable-video__carousel .swiper-wrapper > .shopify-block > .shoppable-video__card { height: 100%; }
.shoppable-video__carousel .swiper-button-prev,
.shoppable-video__carousel .swiper-button-next {
  width: 44px;
  height: 44px;
  border-radius: var(--shoppable-video-nav-radius, 50%);
  border: var(--shoppable-video-nav-border, 1px solid rgba(0,0,0,0.12));
  background: var(--color-background, #fff);
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
  transition: transform 0.2s ease;
}
.shoppable-video__carousel .swiper-button-prev { left: 0; }
.shoppable-video__carousel .swiper-button-next { right: 0; }
.shoppable-video__carousel .swiper-button-prev:hover,
.shoppable-video__carousel .swiper-button-next:hover { transform: scale(1.08); }
.shoppable-video__carousel .swiper-button-prev::after,
.shoppable-video__carousel .swiper-button-next::after {
  font-size: var(--swiper-navigation-size);
  font-weight: 700;
}
.shoppable-video__carousel .swiper-pagination { bottom: 0; }
.shoppable-video__carousel .swiper-pagination-bullet {
  opacity: 0.3;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.shoppable-video__carousel .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.25);
}
.shoppable-video__banner-inner {
  border-radius: var(--shoppable-video-card-radius, 0);
  border: var(--shoppable-video-card-border, none);
  overflow: hidden;
  aspect-ratio: var(--shoppable-video-aspect-ratio, 9 / 16);
}
.shoppable-video__banner-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* END_BLOCK:shoppable-video-content */

/* START_BLOCK:shoppable-video-header (INDEX:103) */
.shoppable-video__header {
  margin-bottom: var(--shoppable-video-header-mb, 40px);
}
/* END_BLOCK:shoppable-video-header */

/* START_BLOCK:shoppable-video (INDEX:104) */
.shoppable-video__card {
  display: flex;
  flex-direction: column;
  height: 100%;
  padding: var(--shoppable-video-card-pt, 20px) var(--shoppable-video-card-pr, 20px) var(--shoppable-video-card-pb, 20px) var(--shoppable-video-card-pl, 20px);
  border: var(--shoppable-video-card-border, none);
  border-radius: var(--shoppable-video-card-radius, 0);
  background: var(--color-background, #fff);
  overflow: hidden;
}
.shoppable-video__card--grid { gap: 0; }
.shoppable-video__media {
  position: relative;
  border-radius: var(--shoppable-video-card-radius, 0);
  overflow: hidden;
  background: var(--color-background, #f5f5f5);
}
.shoppable-video__media--transparent { background: transparent; }
.shoppable-video__video-wrap {
  position: relative;
  aspect-ratio: var(--shoppable-video-aspect-ratio, 9 / 16);
  width: 100%;
}
.shoppable-video__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shoppable-video__placeholder {
  aspect-ratio: var(--shoppable-video-aspect-ratio, 9 / 16);
  display: flex;
  align-items: center;
  justify-content: center;
  background: #eee;
}
.shoppable-video__placeholder-svg { width: 60%; height: auto; opacity: 0.4; }
.shoppable-video__scrim {
  position: absolute;
  inset: 0;
  background: var(--shoppable-video-card-scrim, transparent);
  pointer-events: none;
  z-index: 1;
}
.shoppable-video__play-toggle {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 3;
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  color: #1a1a1a;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.2s ease;
}
.shoppable-video__media:hover .shoppable-video__play-toggle,
.shoppable-video__play-toggle:focus-visible { opacity: 1; }
.shoppable-video__pause-icon { display: none; }
.shoppable-video__card.is-playing .shoppable-video__play-icon { display: none; }
.shoppable-video__card.is-playing .shoppable-video__pause-icon { display: block; }

.shoppable-video__product--grid {
  background: var(--color-background, #fff);
  border-top: 1px solid color-mix(in srgb, var(--color-foreground) 12%, transparent);
}
.shoppable-video__product-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  text-decoration: none;
  color: inherit;
}
.shoppable-video__product-thumb {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 4px;
  overflow: hidden;
  background: #f0f0f0;
}
.shoppable-video__product-thumb-img,
.shoppable-video__product-thumb-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.shoppable-video__product-info {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.shoppable-video__product-title {
  font-size: 0.875rem;
  font-weight: 500;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.shoppable-video__product-price {
  font-size: 0.8125rem;
  font-weight: 600;
}
.shoppable-video__product-compare {
  opacity: 0.55;
  margin-right: 4px;
  font-weight: 400;
}
.shoppable-video__product-cta {
  flex-shrink: 0;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.shoppable-video__card--overlay .shoppable-video__media { flex: 1; }
.shoppable-video__product--overlay {
  position: absolute;
  left: 12px;
  right: 12px;
  z-index: 2;
}
.shoppable-video__product--overlay-top { top: 12px; }
.shoppable-video__product--overlay-center {
  top: 50%;
  transform: translateY(-50%);
}
.shoppable-video__product--overlay-bottom { bottom: 12px; }
.shoppable-video__product--transparent .shoppable-video__product-overlay-link {
  background: rgba(255,255,255,0.15);
  backdrop-filter: blur(4px);
}
.shoppable-video__product-overlay-link {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  background: rgba(255,255,255,0.95);
  border-radius: 8px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.shoppable-video__product-bag {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  opacity: 0.7;
}
.shoppable-video__product-dock {
  display: flex;
  gap: 6px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.shoppable-video__product-dock-btn {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255,255,255,0.9);
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.shoppable-video__product-dock-btn.is-active {
  border-color: var(--color-foreground, #1a1a1a);
  transform: scale(1.05);
}
.shoppable-video__product-dock-img,
.shoppable-video__product-dock-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* END_BLOCK:shoppable-video */

/* START_BLOCK:support-content (INDEX:105) */
/* Grid layout */
.support-content__grid {
  display: grid;
  grid-template-columns: repeat(var(--sc-cols-mobile, 1), 1fr);
  gap: var(--sc-row-gap, 24px) var(--sc-col-gap, 24px);
}
@media (min-width: 768px) {
  .support-content__grid {
    grid-template-columns: repeat(var(--sc-cols-desktop, 4), 1fr);
  }
}

/* Carousel layout */
.support-content__swiper {
  position: relative;
  overflow: hidden;
}
.support-content__track {
  display: flex;
}
.support-content__track > * {
  flex-shrink: 0;
  width: calc(100% / var(--sc-cols-mobile, 1));
}
@media (min-width: 750px) {
  .support-content__track > * {
    width: calc(100% / var(--sc-cols-desktop, 4));
  }
}
.support-content__nav {
  color: inherit;
}
.support-content__nav::after {
  font-size: 0.85rem;
}
.support-content__pagination {
  position: static;
  margin-top: 1rem;
}
/* END_BLOCK:support-content */

/* START_BLOCK:support-icon-card (INDEX:108) */
.support-icon-card {
  gap: var(--sic-gap, 12px);
}
.support-icon-card--icon-top {
  align-items: flex-start;
}
.support-icon-card--icon-top.text-center {
  align-items: center;
}
.support-icon-card--icon-top.text-end {
  align-items: flex-end;
}
.support-icon-card--icon-left .support-icon-card__body {
  padding-top: 0;
}
/* END_BLOCK:support-icon-card */

/* START_BLOCK:support-icon (INDEX:109) */
.support-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: var(--si-size, 40px);
  height: var(--si-size, 40px);
}
.support-icon__img,
.support-icon__svg svg,
.support-icon__preset svg {
  width: var(--si-size, 40px);
  height: var(--si-size, 40px);
  display: block;
}
.support-icon--style-circle,
.support-icon--style-square,
.support-icon--style-rounded {
  background-color: color-mix(in srgb, var(--color-foreground, #1a1a1a) 8%, transparent);
  padding: calc(var(--si-size, 40px) * 0.25);
  width: calc(var(--si-size, 40px) * 1.5);
  height: calc(var(--si-size, 40px) * 1.5);
}
.support-icon--style-circle { border-radius: 50%; }
.support-icon--style-square { border-radius: 4px; }
.support-icon--style-rounded { border-radius: 12px; }
/* END_BLOCK:support-icon */

/* START_BLOCK:testimonial-button (INDEX:110) */
.wdt-hdr__btn-wrap {
  display: flex;
  justify-content: inherit;
}
.wdt-hdr__btn.btn-link {
  padding-left: 0;
  padding-right: 0;
}
/* END_BLOCK:testimonial-button */

/* START_BLOCK:testimonial-card (INDEX:111) */
.wdt-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  padding-top: var(--wdt-card-pt, 20px);
  padding-bottom: var(--wdt-card-pb, 20px);
  padding-left: var(--wdt-card-pl, 20px);
  padding-right: var(--wdt-card-pr, 20px);
  border: var(--wdt-card-border, none);
  border-radius: var(--wdt-card-radius, 0px);
  overflow: hidden;
  background-color: var(--color-background, #fff);
  color: var(--color-foreground, #1a1a1a);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wdt-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,.08);
}
.wdt-card__overlay {
  position: absolute; inset: 0;
  background: var(--wdt-card-overlay, transparent);
  pointer-events: none; z-index: 0;
}
.wdt-card__inner {
  position: relative; z-index: 1;
  display: flex; flex-direction: column;
  flex: 1;
  gap: var(--wdt-card-gap, 10px);
}
.wdt-card--grid.wdt-card--img-top    { flex-direction: column; }
.wdt-card--grid.wdt-card--img-bottom { flex-direction: column-reverse; }
.wdt-card--grid.wdt-card--img-left  {
  flex-direction: row; align-items: flex-start;
}
.wdt-card--grid.wdt-card--img-right {
  flex-direction: row-reverse; align-items: flex-start;
}
.wdt-card--grid.wdt-card--img-left .wdt-card__inner,
.wdt-card--grid.wdt-card--img-right .wdt-card__inner { flex: 1; }
.wdt-card--overlay {
  position: relative;
  min-height: 280px;
}
.wdt-card--overlay .wdt-card__inner {
  position: relative;
  z-index: 2;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex: 1;
}
.wdt-card--overlay .wdt-card__image-wrap {
  position: absolute;
  inset: 0;
  padding: 0 !important;
  z-index: 0;
}
.wdt-card--overlay .wdt-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.wdt-card--overlay .wdt-card__rating,
.wdt-card--overlay .wdt-card__heading,
.wdt-card--overlay .wdt-card__desc,
.wdt-card--overlay .wdt-card__client {
  position: relative;
  z-index: 1;
}
@media (max-width: 575.98px) {
  .wdt-card--grid.wdt-card--img-left,
  .wdt-card--grid.wdt-card--img-right {
    flex-direction: column;
  }
}
/* END_BLOCK:testimonial-card */

/* START_BLOCK:testimonial-client (INDEX:112) */
.wdt-card__client {
  display: flex;
  align-items: center;
  gap: var(--wdt-client-gap, 10px);
  margin-top: auto;
}
.wdt-card__client--top  { flex-direction: column; align-items: inherit; }
.wdt-card__client--left { flex-direction: row; align-items: center; }
.wdt-card.text-center .wdt-card__client--top { align-items: center; }
.wdt-card.text-end    .wdt-card__client--top { align-items: flex-end; }
.wdt-card__avatar {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  overflow: hidden;
  background: rgba(0,0,0,.06);
  display: flex;
  align-items: center;
  justify-content: center;
}
.wdt-card__avatar--square   { border-radius: 0; aspect-ratio: 1/1; }
.wdt-card__avatar--portrait { border-radius: 0; width: 48px; height: 64px; }
.wdt-card__avatar--adapt    { border-radius: 0; width: auto; height: auto; max-width: 80px; }
.wdt-card__avatar--circle   { border-radius: 50%; }
.wdt-card__avatar-img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.wdt-card__avatar--placeholder svg {
  width: 60%; height: 60%; opacity: 0.4;
}
.wdt-card__client-meta { display: flex; flex-direction: column; gap: 2px; }
.wdt-card__client-name {
  font-size: 0.875rem;
  font-weight: 700;
  margin: 0;
  color: var(--color-foreground, #1a1a1a);
  line-height: 1.3;
}
.wdt-card__client-prof {
  font-size: 0.75rem;
  margin: 0;
  opacity: 0.55;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  line-height: 1.3;
}
@media (max-width: 575.98px) {
  .wdt-card__client--left { flex-direction: column; }
}
/* END_BLOCK:testimonial-client */

/* START_BLOCK:testimonial-content (INDEX:113) */
.wdt-testimonial__content { position: relative; }
.wdt-content__carousel {
  position: relative;
  overflow: hidden;
  --swiper-navigation-color:  var(--color-foreground);
  --swiper-navigation-size:   20px;
  --swiper-pagination-color:  var(--color-foreground);
  --swiper-pagination-bullet-inactive-color: var(--color-foreground);
}
.wdt-content__carousel--dots { padding-bottom: 2.25rem; }
.wdt-content__carousel--dots .swiper-button-prev,
.wdt-content__carousel--dots .swiper-button-next {
  margin-top: calc(-1.125rem - var(--swiper-navigation-size, 20px) / 2);
}
.wdt-content__carousel .shopify-block.swiper-slide,
.wdt-content__carousel .swiper-slide { height: auto; }
.wdt-content__carousel .swiper-wrapper > .shopify-block > .wdt-card { height: 100%; }
.wdt-content__carousel .swiper-button-prev,
.wdt-content__carousel .swiper-button-next {
  width: 44px;
  height: 44px;
  border-radius: var(--wdt-nav-radius, 50%);
  border: var(--wdt-nav-border, 1px solid rgba(0,0,0,0.12));
  background: var(--color-background, #fff);
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
  transition: transform 0.2s ease;
}
.wdt-content__carousel .swiper-button-prev { left: 0; }
.wdt-content__carousel .swiper-button-next { right: 0; }
.wdt-content__carousel .swiper-button-prev:hover,
.wdt-content__carousel .swiper-button-next:hover { transform: scale(1.08); }
.wdt-content__carousel .swiper-button-prev::after,
.wdt-content__carousel .swiper-button-next::after {
  font-size: var(--swiper-navigation-size);
  font-weight: 700;
}
.wdt-content__carousel .swiper-pagination { bottom: 0; }
.wdt-content__carousel .swiper-pagination-bullet {
  opacity: 0.3;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.wdt-content__carousel .swiper-pagination-bullet-active {
  opacity: 1;
  transform: scale(1.25);
}
.wdt-content__grid > .wdt-card { height: 100%; }
/* END_BLOCK:testimonial-content */

/* START_BLOCK:testimonial-header (INDEX:114) */
.wdt-testimonial__header {
  margin-bottom: var(--wdt-hdr-mb, 40px);
}
/* END_BLOCK:testimonial-header */

/* START_BLOCK:testimonial-heading (INDEX:115) */
.wdt-hdr__heading {
  font-family: var(--font-heading--family, inherit);
  font-weight: var(--font-heading--weight, 700);
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  line-height: 1.15;
  margin: 0;
  color: var(--color-foreground, #1a1a1a);
}
.wdt-card__heading {
  font-family: var(--font-heading--family, inherit);
  font-size: clamp(0.95rem, 1.5vw, 1.1rem);
  font-weight: 500;
  font-style: italic;
  line-height: 1.6;
  margin: 0;
  border: none;
  padding: 0;
  color: var(--color-foreground, #1a1a1a);
}
/* END_BLOCK:testimonial-heading */

/* START_BLOCK:testimonial-image (INDEX:116) */
.wdt-card__image-wrap { display: block; }
.wdt-card__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
/* END_BLOCK:testimonial-image */

/* START_BLOCK:testimonial-rating (INDEX:117) */
.wdt-card__rating {
  display: flex;
  justify-content: inherit;
}
.wdt-card.text-center .wdt-card__rating { justify-content: center; }
.wdt-card.text-end    .wdt-card__rating { justify-content: flex-end; }
.wdt-card__stars {
  position: relative;
  display: inline-block;
  font-size: 1.1rem;
  letter-spacing: var(--wdt-star-gap, 4px);
  line-height: 1;
}
.wdt-card__stars-empty {
  color: rgba(0,0,0,.15);
  display: block;
}
.wdt-card__stars-fill {
  position: absolute;
  inset: 0;
  overflow: hidden;
  width: var(--wdt-rating-pct, 100%);
  color: var(--wdt-star-color, #f59e0b);
  white-space: nowrap;
  display: block;
}
/* END_BLOCK:testimonial-rating */

/* START_BLOCK:testimonial-text (INDEX:118) */
.wdt-hdr__desc {
  font-size: 1rem;
  line-height: 1.7;
  opacity: 0.75;
  max-width: 620px;
  margin-inline: auto;
  margin-top: 0;
  margin-bottom: 0;
}
.wdt-card__desc {
  font-size: 0.875rem;
  line-height: 1.75;
  opacity: 0.75;
}
.wdt-card__desc p { margin-bottom: 0; }
/* END_BLOCK:testimonial-text */

/* START_BLOCK:text (INDEX:119) */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
/* END_BLOCK:text */

/* START_BLOCK:video-banner-content (INDEX:120) */
.video-banner__content {
  display: flex;
  flex-direction: column;
  gap: var(--vb-content-gap, 12px);
  max-width: var(--vb-content-width, 480px);
  width: 100%;
}
/* END_BLOCK:video-banner-content */

/* START_BLOCK:video-banner-product (INDEX:121) */
.video-banner__product {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: var(--vb-product-width, 260px);
  width: 100%;
  background: var(--color-background, #fff);
}
.video-banner__product--image-right {
  flex-direction: row-reverse;
}
.video-banner__product--image-left {
  flex-direction: row;
}
.video-banner__product-media {
  aspect-ratio: var(--vb-product-aspect, 1 / 1);
  width: 100%;
}
.video-banner__product-img {
  object-fit: cover;
}
.video-banner__product-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.video-banner__product-badge {
  background: var(--color-foreground, #1a1a1a);
  color: var(--color-background, #fff);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 4px;
  width: fit-content;
}
.video-banner__product-compare {
  opacity: 0.55;
  margin-right: 4px;
  font-weight: 400;
}
/* END_BLOCK:video-banner-product */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:cl-placeholders (INDEX:130) */
.cl-card--placeholder {
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0,0,0,0.04);
  border-radius: var(--cl-card-radius, 0);
  overflow: hidden;
}
.cl-placeholder__svg {
  width: 56%;
  height: 56%;
  display: block;
  opacity: 0.2;
}
.cl-card--placeholder.cl-shape-circle { border-radius: 50%; aspect-ratio: 1/1; }
.cl-card--placeholder.cl-shape-oval   { border-radius: 50%/42%; aspect-ratio: 4/5; }
.cl-card--placeholder.cl-shape-pill   { border-radius: 999px; aspect-ratio: 3/4; }
.cl-card--placeholder.cl-shape-rounded-rectangle { border-radius: 16px; }
.cl-card--placeholder.cl-shape-custom-radius { border-radius: var(--cl-custom-radius, 16px); }
.cl-card--placeholder.cl-shape-arch {
  height: var(--cl-arch-h, 300px);
  aspect-ratio: auto;
  border-radius: 50% 50% 0 0 / 65% 65% 0 0;
}
.cl-card--placeholder.cl-shape-rounded-arch {
  height: var(--cl-arch-h, 300px);
  aspect-ratio: auto;
  border-radius: calc(var(--cl-arch-w, 250px) / 2) calc(var(--cl-arch-w, 250px) / 2) 0 0;
}
/* END_SNIPPET:cl-placeholders */

/* START_SNIPPET:featured-product-placeholder (INDEX:133) */
.featured-product-placeholder {
    display: grid;
    grid-template-columns: 55% 1fr;
    gap: clamp(1.5rem, 4vw, 4rem);
    align-items: start;
  }
  @media (max-width: 768px) {
    .featured-product-placeholder { grid-template-columns: 1fr; }
  }
  .featured-product-placeholder__media {
    aspect-ratio: 3 / 4;
    background: rgba(0, 0, 0, 0.04);
    border-radius: var(--input-border-radius, 0);
    overflow: hidden;
  }
  .featured-product-placeholder__svg {
    width: 100%;
    height: 100%;
    display: block;
    opacity: 0.18;
  }
  .featured-product-placeholder__info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    padding-top: 0.5rem;
  }
  .featured-product-placeholder__line {
    height: 0.85rem;
    border-radius: 4px;
    background: rgba(0, 0, 0, 0.08);
    width: 80%;
  }
  .featured-product-placeholder__line--short { width: 35%; }
  .featured-product-placeholder__line--title { height: 1.5rem; width: 65%; }
  .featured-product-placeholder__line--btn {
    height: 2.75rem;
    width: 100%;
    margin-top: 0.5rem;
    background: rgba(0, 0, 0, 0.12);
  }
  .featured-product-placeholder__hint {
    margin: 0.5rem 0 0;
    font-size: 0.85rem;
    opacity: 0.55;
    text-align: center;
  }
/* END_SNIPPET:featured-product-placeholder */

/* START_SNIPPET:image (INDEX:142) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
/* END_SNIPPET:image */

/* START_SNIPPET:product-card (INDEX:152) */
/* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
     Product card — base
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
  .product-card {
    position: relative;
    display: flex;
    flex-direction: column;
  }

  /* ─── Layout: side by side ─── */
  .product-card--side {
    flex-direction: row;
    gap: 1rem;
    align-items: flex-start;
  }
  .product-card--side .pc-media { flex: 0 0 45%; }
  .product-card--side .pc-info  { flex: 1; padding-top: 0; }


  /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
     Media
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
  .pc-media {
    position: relative;
    overflow: hidden;
    width: 100%;
    background: rgba(0,0,0,0.04);
  }

  /* Aspect ratios */
  .pc-media__ratio--square    { aspect-ratio: 1 / 1; }
  .pc-media__ratio--portrait  { aspect-ratio: 3 / 4; }
  .pc-media__ratio--landscape { aspect-ratio: 4 / 3; }
  .pc-media__ratio--natural   { aspect-ratio: auto; }

  .pc-media__link {
    display: block;
    width: 100%;
    height: 100%;
  }

  /* Images */
  .pc-media__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.35s ease, transform 0.45s ease;
  }

  /* Primary / secondary swap */
  .pc-media__img--primary  { position: relative; z-index: 1; }
  .pc-media__img--secondary {
    position: absolute;
    inset: 0;
    z-index: 2;
    opacity: 0;
  }
  .pc-media:hover .pc-media__img--secondary { opacity: 1; }
  .pc-media:hover .pc-media__img--primary   { opacity: 0; }

  /* Subtle zoom on hover when no secondary image */
  .pc-media:not(:has(.pc-media__img--secondary)):hover .pc-media__img--primary {
    transform: scale(1.04);
  }

  /* Placeholder */
  .pc-media__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.06);
  }
  .pc-media__svg { width: 100%; height: 100%; opacity: 0.4; }


  /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
     Badges
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
  .pc-badges {
    position: absolute;
    top: 0.6rem;
    left: 0.6rem;
    z-index: 3;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    pointer-events: none;
  }

  .pc-badge {
    display: inline-block;
    padding: 0.2em 0.55em;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: var(--badge-border-radius, 4px);
    line-height: 1.4;
  }

  .pc-badge--sale {
    background: var(--badge-sale-bg, #d9534f);
    color: var(--badge-sale-color, #fff);
  }
  .pc-badge--new {
    background: var(--badge-new-bg, #1a1a1a);
    color: var(--badge-new-color, #fff);
  }
  .pc-badge--sold-out {
    background: var(--badge-sold-out-bg, #aaa);
    color: var(--badge-sold-out-color, #fff);
  }


  /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
     Wishlist
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
  .pc-wishlist {
    position: absolute;
    top: 0.55rem;
    right: 0.55rem;
    z-index: 3;
    width: 2.2rem;
    height: 2.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    color: var(--color-foreground);
    transition: color 0.2s, background 0.2s;
    padding: 0;
  }

  .pc-wishlist svg {
    width: 1rem;
    height: 1rem;
    pointer-events: none;
  }

  .pc-wishlist:hover,
  .pc-wishlist[aria-pressed="true"] {
    color: var(--badge-sale-bg, #d9534f);
    background: #fff;
  }

  .pc-wishlist[aria-pressed="true"] svg {
    fill: currentColor;
  }


  /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
     Quick add — hover overlay
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
  .pc-quick-add {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 4;
    padding: 0 0.75rem 0.75rem;
    transform: translateY(100%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .pc-media:hover .pc-quick-add,
  .product-card:focus-within .pc-quick-add {
    transform: translateY(0);
    opacity: 1;
  }

  .pc-quick-add__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 0.65rem 1rem;
    font: inherit;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    cursor: pointer;
    background: var(--color-background, #fff);
    color: var(--color-foreground, #1a1a1a);
    border: 1px solid rgba(0,0,0,0.12);
    border-radius: var(--button-border-radius, 0px);
    text-decoration: none;
    transition: background 0.2s, color 0.2s;
  }

  .pc-quick-add__btn:hover:not(:disabled) {
    background: var(--color-primary, #1a1a1a);
    color: var(--color-background, #fff);
    border-color: var(--color-primary, #1a1a1a);
  }

  .pc-quick-add__btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
  }


  /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
     Info — below (default)
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */
  .pc-info {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    padding: 0.75rem 0 0;
  }

  /* Info — overlay (positioned inside .pc-media) */
  .product-card--overlay .pc-info {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    padding: 1rem 0.85rem 0.85rem;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, transparent 100%);
    color: #fff;
  }
  .product-card--overlay .pc-info__title-link,
  .product-card--overlay .pc-info__vendor-link,
  .product-card--overlay .pc-info__price-compare {
    color: rgba(255,255,255,0.75);
  }
  .product-card--overlay .pc-info__price-save {
    background: rgba(255,255,255,0.2);
  }


  /* ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
     Info elements
  ━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━ */

  /* Vendor */
  .pc-info__vendor {
    margin: 0;
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.55;
  }
  .pc-info__vendor-link {
    text-decoration: none;
    color: inherit;
  }
  .pc-info__vendor-link:hover { text-decoration: underline; }

  /* Title */
  .pc-info__title {
    margin: 0;
    font-size: 0.92rem;
    font-weight: 500;
    line-height: 1.3;
  }
  .pc-info__title-link {
    text-decoration: none;
    color: var(--color-foreground, #1a1a1a);
  }
  .pc-info__title-link:hover { text-decoration: underline; }

  /* Rating */
  .pc-info__rating {
    display: flex;
    align-items: center;
    gap: 0.35rem;
  }
  .pc-info__stars {
    --star-size: 0.85rem;
    --star-color-empty: rgba(0,0,0,0.15);
    --star-color-fill: #f5a623;
    display: inline-block;
    position: relative;
    font-size: var(--star-size);
    line-height: 1;
    width: calc(var(--star-size) * 5 + 0.4rem);
    color: var(--star-color-empty);
  }
  .pc-info__stars::before {
    content: '★★★★★';
    letter-spacing: 0.08rem;
  }
  .pc-info__stars-fill {
    position: absolute;
    inset: 0;
    overflow: hidden;
    width: calc(var(--rating) / 5 * 100%);
    color: var(--star-color-fill);
  }
  .pc-info__stars-fill::before {
    content: '★★★★★';
    letter-spacing: 0.08rem;
    white-space: nowrap;
  }
  .pc-info__rating-count {
    font-size: 0.75rem;
    opacity: 0.6;
  }

  /* Price */
  .pc-info__price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.1rem;
  }
  .pc-info__price-current {
    font-size: 0.95rem;
    font-weight: 600;
  }
  .pc-info__price-current--sale {
    color: var(--badge-sale-bg, #d9534f);
  }
  .pc-info__price-compare {
    font-size: 0.85rem;
    font-weight: 400;
    opacity: 0.45;
    text-decoration: line-through;
  }
  .pc-info__price-save {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    padding: 0.15em 0.45em;
    border-radius: var(--badge-border-radius, 4px);
    background: var(--badge-sale-bg, #d9534f);
    color: var(--badge-sale-color, #fff);
  }

  /* Swatches */
  .pc-info__swatches {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.3rem;
    margin-top: 0.25rem;
  }
  .pc-swatch {
    display: block;
    width: 1.25rem;
    height: 1.25rem;
    border-radius: 50%;
    border: 1.5px solid rgba(0,0,0,0.12);
    background-size: cover;
    background-position: center;
    cursor: pointer;
    transition: border-color 0.15s, outline-color 0.15s;
    outline: 2px solid transparent;
    outline-offset: 2px;
  }
  .pc-swatch.is-selected,
  .pc-swatch:hover {
    border-color: var(--color-primary, #1a1a1a);
    outline-color: var(--color-primary, #1a1a1a);
  }
  .pc-swatch__more {
    font-size: 0.72rem;
    opacity: 0.55;
  }
/* END_SNIPPET:product-card */