/** Shopify CDN: Minification failed

Line 23:18 Expected identifier but found whitespace
Line 23:20 Unexpected "{"
Line 23:29 Expected ":"
Line 23:55 Expected ":"
Line 24:21 Expected identifier but found whitespace
Line 24:23 Unexpected "{"
Line 24:32 Expected ":"
Line 24:61 Expected ":"
Line 206:2 Unexpected "{"
Line 206:3 Expected identifier but found "%"
... and 2 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:collection-links (INDEX:6) */
.collection-links {
    --circle-size: 72px;
    --padding-top: {{ section.settings.padding_top }}px;
    --padding-bottom: {{ section.settings.padding_bottom }}px;
    padding-top: var(--padding-top);
    padding-bottom: var(--padding-bottom);
  }

  .scroll-bleed-viewport {
    overflow: hidden;
  }

  .scroll-bleed-x {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-padding-left: 1rem;
    scroll-padding-right: 1rem;
    padding-left: 1rem;
    padding-right: 1rem;
    width: 100%;
    max-width: 100%;
  }

  .scroll-bleed-x::-webkit-scrollbar {
    display: none;
  }

  .collection-links__scroller > a {
    flex: 0 0 var(--circle-size);
    width: var(--circle-size);
  }

  @media (min-width: 768px) {
    .collection-links {
      --circle-size: 80px;
    }
  }

  @media (min-width: 1024px) {
    .collection-links {
      --circle-size: 90px;
    }
  }
/* END_SECTION:collection-links */

/* START_SECTION:collections (INDEX:8) */
.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:custom-section (INDEX:11) */
.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-group (INDEX:12) */
.faq-group__items {
    max-width: 800px;
  }
/* END_SECTION:faq-group */

/* START_SECTION:header (INDEX:14) */
.header-glass {
    background: rgba(255, 255, 255, 0.62);
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
    box-shadow: 0 4px 36px rgba(15, 23, 42, 0.1);
    backdrop-filter: blur(28px) saturate(190%);
    -webkit-backdrop-filter: blur(28px) saturate(190%);
  }

  /* Fix header z-index hierarchy - above searchandise filter bar, below modals */
  .site-header {
    z-index: 100 !important;
  }

  .chrome-pill {
    background-color: rgb(255 255 255 / 0.68);
    border: 1px solid rgb(255 255 255 / 0.78);
    -webkit-backdrop-filter: blur(14px) saturate(1.12);
    backdrop-filter: blur(14px) saturate(1.12);
    box-shadow:
      inset 0 1px 0 rgb(255 255 255 / 0.92),
      0 2px 12px rgb(15 23 42 / 0.06);
    transition: background-color 0.15s ease, box-shadow 0.15s ease;
  }

  .chrome-pill:hover {
    background-color: rgb(255 255 255 / 0.78);
  }

  .site-header__main,
  .site-header__search {
    position: relative;
    z-index: 1;
  }

  .site-header__search-icon {
    z-index: 10;
  }

  .site-header__search-icon,
  .site-header__search-icon circle,
  .site-header__search-icon path {
    stroke: #555555;
  }

  .icon-counter__anchor {
    position: relative;
    display: inline-flex;
  }

  .icon-counter {
    position: absolute;
    top: -4px;
    right: -4px;
  }

  .header-desktop .border-t {
    border-color: rgba(15, 23, 42, 0.1);
  }

  .header-desktop .menu-horizontal > li {
    display: flex;
    align-items: center;
  }

  .header-desktop [data-header-nav] .dropdown > [role='button'],
  .header-desktop [data-header-nav] > a {
    align-items: center;
  }

  :root {
    --header-height: 112px; /* More accurate initial mobile height */
  }

  @media (min-width: 768px) {
    :root {
      --header-height: 116px; /* More accurate initial desktop height */
    }
  }

  .main-content {
    padding-top: var(--header-height);
  }

  {%- if collection_chrome_docking -%}
  @media (max-width: 767px) {
    /* Docked collection chrome: header shares the same translateY as the filter bar */
    html.is-collection-chrome-docked .header-mobile [data-site-header] {
      transform: translate3d(0, var(--collection-chrome-y, 0px), 0);
      transition: transform var(--collection-chrome-duration, 280ms)
        var(--collection-chrome-easing, cubic-bezier(0.22, 1, 0.36, 1));
      will-change: transform;
      /* Kill the hairline seam so header + filter read as one chrome */
      border-bottom-color: transparent !important;
      box-shadow: none !important;
    }

    html.is-collection-chrome-no-motion .header-mobile [data-site-header] {
      transition: none !important;
    }

    @media (prefers-reduced-motion: reduce) {
      html.is-collection-chrome-docked .header-mobile [data-site-header] {
        transition: none;
      }
    }
  }
  {%- endif -%}

  .navbar svg:not(.site-logo__mark) {
    width: 1.5rem;
    height: 1.5rem;
  }

  .header-desktop .site-logo__mark {
    width: auto;
    height: 1.25rem;
  }

  .cart-indicator svg {
    width: 1.2rem;
    height: 1.2rem;
  }

  @keyframes cart-wiggle {
    0%, 92%, 100% {
      transform: rotate(0deg);
    }

    93% {
      transform: rotate(-12deg);
    }

    94% {
      transform: rotate(12deg);
    }

    95% {
      transform: rotate(-8deg);
    }

    96% {
      transform: rotate(8deg);
    }

    97%, 98% {
      transform: rotate(0deg);
    }
  }

  @media (prefers-reduced-motion: no-preference) {
    .cart-wiggle {
      animation: cart-wiggle 10s ease-in-out infinite;
      transform-origin: center;
    }

    .cart-wiggle-once {
      animation: cart-wiggle 0.6s ease-in-out 1;
      transform-origin: center;
    }
  }
/* END_SECTION:header */

/* START_SECTION:hero-banner-with-image (INDEX:15) */
.hero-banner-with-image__hero {
    position: relative;
  }

  .hero-banner-with-image__img {
    height: 16rem;
  }

  .hero-banner-with-image__placeholder {
    display: block;
    width: 100%;
  }

  @media (min-width: 768px) {
    .hero-banner-with-image__img {
      height: 24rem;
    }
  }

  @media (min-width: 1024px) {
    .hero-banner-with-image__img {
      height: 28rem;
    }
  }

  .hero-banner-with-image__whatsapp-icon {
    display: block;
    color: inherit;
  }

  .hero-banner-with-image__whatsapp-icon svg {
    display: block;
    width: 100%;
    height: 100%;
  }
/* END_SECTION:hero-banner-with-image */

/* START_SECTION:product-carousel (INDEX:22) */
.product-carousel__item {
    flex: 0 0 calc((100% - 1.5rem) / 2.15);
    overflow: visible;
  }

  @media (min-width: 768px) {
    .product-carousel__item {
      flex: 0 0 calc((100% - 2rem) / 3.15);
    }
  }

  @media (min-width: 1024px) {
    .product-carousel__item {
      flex: 0 0 calc((100% - 3rem) / 4.15);
      max-width: 320px;
    }
  }

  .product-carousel__track.scroll-bleed-x {
    scroll-padding-left: 1rem;
    scroll-padding-right: 1rem;
  }

  .shadow-shell--product {
    height: 100%;
    filter: drop-shadow(0 1px 2px rgba(15, 23, 42, 0.02)) drop-shadow(0 8px 28px rgba(15, 23, 42, 0.035));
    transition: filter 0.2s ease;
  }

  .product-carousel__item a:hover .shadow-shell--product,
  .product-carousel__item a:focus-visible .shadow-shell--product {
    filter: drop-shadow(0 2px 4px rgba(15, 23, 42, 0.04)) drop-shadow(0 12px 32px rgba(15, 23, 42, 0.055));
  }

  .product-carousel__item a:active .shadow-shell--product {
    filter: drop-shadow(0 1px 2px rgba(15, 23, 42, 0.02)) drop-shadow(0 6px 20px rgba(15, 23, 42, 0.03));
  }

  .product-carousel__view-all {
    height: 100%;
    background: linear-gradient(160deg, rgb(15 23 42) 0%, rgb(30 41 59) 55%, rgb(51 65 85) 100%);
    border-color: rgb(71 85 105 / 0.45);
    transition: transform 0.2s ease;
  }

  .product-carousel__item a:hover .product-carousel__view-all,
  .product-carousel__item a:focus-visible .product-carousel__view-all {
    transform: translateY(-2px);
  }

  .product-carousel__item a:active .product-carousel__view-all {
    transform: scale(0.98);
  }

  .product-carousel__view-all-icon {
    background: rgb(255 255 255 / 0.12);
    border: 1px solid rgb(255 255 255 / 0.16);
    transition: transform 0.2s ease, background-color 0.2s ease;
  }

  .product-carousel__item a:hover .product-carousel__view-all-icon,
  .product-carousel__item a:focus-visible .product-carousel__view-all-icon {
    transform: translateX(3px);
    background: rgb(255 255 255 / 0.18);
  }

  .product-carousel__view-all-subtitle {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
  }

  .product-carousel .scroll-bleed-viewport {
    overflow-x: clip;
    overflow-y: visible;
  }

  .product-carousel .scroll-bleed-x {
    padding-bottom: 3rem;
    margin: -1.25rem 0 -3rem;
  }

  .scroll-bleed-viewport {
    overflow: hidden;
  }

  .scroll-bleed-x {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-padding-left: 1rem;
    scroll-padding-right: 1rem;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    padding-left: 1rem;
    padding-right: 1rem;
    margin: -1.25rem 0;
    width: 100%;
    max-width: 100%;
  }

  .scroll-bleed-x::after {
    content: '';
    flex-shrink: 0;
    width: 1rem;
  }

  .scroll-bleed-x::-webkit-scrollbar {
    display: none;
  }
/* END_SECTION:product-carousel */

/* START_SECTION:product (INDEX:23) */
.product-gallery {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .product-gallery::-webkit-scrollbar {
    display: none;
  }

  .product-gallery-counter-pill.chrome-pill {
    box-shadow:
      inset 0 1px 0 rgb(255 255 255 / 0.95),
      0 2px 12px rgba(15, 23, 42, 0.07),
      0 4px 16px rgba(15, 23, 42, 0.04);
  }

  .product-gallery-counter-pill.chrome-pill:hover {
    box-shadow:
      inset 0 1px 0 rgb(255 255 255),
      0 3px 14px rgba(15, 23, 42, 0.08),
      0 6px 20px rgba(15, 23, 42, 0.05);
  }

  .shadow-card {
    box-shadow: 0 4px 28px rgba(15, 23, 42, 0.06);
  }

  .product-detail-rows > :not(:last-child) {
    border-bottom: 1px solid oklch(96.7% 0.003 264.542);
  }

  .product-purchase-footer .flex,
  .product-form .flex {
    display: flex;
    gap: 0.75rem;
  }

  .product-purchase-footer .flex > *,
  .product-form .flex > * {
    width: calc(50% - 0.375rem);
    flex: 0 0 calc(50% - 0.375rem);
  }

  .product-purchase-footer .flex > .btn,
  .product-form .flex > .btn {
    min-width: 0;
  }

  .product-purchase-footer .flex > :only-child,
  .product-form .flex > :only-child {
    width: 100%;
    flex: 1 1 100%;
  }

  .shopify-payment-button {
    width: calc(50% - 0.375rem) !important;
    flex: 0 0 calc(50% - 0.375rem) !important;
    min-width: 0 !important;
    max-width: none !important;
  }

  .shopify-payment-button__button,
  .product-form shopify-accelerated-checkout .wallet-button,
  .product-form shopify-paypal-button,
  .product-form shopify-google-pay-button,
  .product-form shopify-apple-pay-button {
    width: 100% !important;
    height: 100%;
    min-width: 0 !important;
    font-weight: 600 !important;
    box-sizing: border-box !important;
  }

  .shopify-payment-button__button--unbranded {
    background-color: #000 !important;
    color: #fff !important;
    border: 1px solid #000 !important;
    height: 44px !important;
    min-height: 44px !important;
  }

  .shopify-payment-button__button--unbranded:hover {
    background-color: #171717 !important;
    border-color: #171717 !important;
  }

  .shopify-payment-button__more-options {
    display: none !important;
  }
  
  /* Ensure Apple Pay and other web component buttons inherit styling */
  .product-form iframe {
    border-radius: inherit !important;
  }
  
  .product-form .accelerated-checkout-button {
    border-radius: inherit !important;
  }

  .product-price-drop-badge {
    border-radius: 9999px;
    padding: 0.25rem 0.5rem;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
    background-color: rgb(185 28 28);
    color: #fff;
  }

  .product-price-drop-badge svg {
    width: 12px;
    height: 12px;
    flex-shrink: 0;
  }

  .bnpl-badge {
    display: inline-flex;
    align-items: center;
    height: 1.25rem;
    padding: 0 0.4375rem;
    border-radius: 9999px;
    font-size: 0.6875rem;
    font-weight: 600;
    line-height: 1;
    letter-spacing: -0.01em;
    color: var(--ink-secondary);
  }

  .bnpl-badge--clearpay {
    background: rgb(178 252 228 / 0.55);
  }

  .bnpl-badge--klarna {
    background: rgb(255 179 199 / 0.55);
  }

  .auth-strip {
    background: linear-gradient(
      135deg,
      rgb(240 247 242) 0%,
      rgb(228 243 235) 100%
    );
  }

  .auth-strip__icon {
    background: rgb(255 255 255 / 0.7);
    border: 1px solid rgb(255 255 255 / 0.7);
    color: rgb(4 120 87 / 0.72);
  }

  .auth-strip__icon-svg {
    stroke: currentColor;
    stroke-width: 0.35;
    paint-order: stroke fill;
  }

  .shadow-float {
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
  }

  .collapse.collapse-plus > .collapse-title::after {
    width: 0.5rem;
    height: 0.5rem;
    display: block;
    position: absolute;
    top: 1.15rem;
    content: "+";
    pointer-events: none;
    inset-inline-end: 1.4rem;
  }

  .collapse.collapse-plus[open] > .collapse-title::after {
    content: "−";
  }
/* END_SECTION:product */

/* START_SECTION:site-footer (INDEX:27) */
.site-footer .collapse-title::after { content: none; }
  .site-footer .collapse-title {
    min-height: 3.5rem;
    padding: 0;
  }
  @media (min-width: 1024px) {
    .site-footer .collapse-title {
      min-height: auto;
      padding-bottom: 0.75rem;
    }
  }
/* END_SECTION:site-footer */

/* CSS from block stylesheet tags */
/* START_BLOCK:collection-header-v2 (INDEX:28) */
header[style*="--text-align"] {
    text-align: var(--text-align);
  }
/* END_BLOCK:collection-header-v2 */

/* START_BLOCK:collection-products-v2 (INDEX:29) */
.collection-pagination-v2 {
    margin-bottom: calc(var(--layout-bottom-inset, 0px) + 3rem);
  }

  #collection-product-grid.is-filter-loading {
    opacity: 0.55;
    pointer-events: none;
  }
/* END_BLOCK:collection-products-v2 */

/* START_BLOCK:faq-item (INDEX:30) */
.faq-item {
    margin-bottom: 0.5rem;
  }

  .faq-item summary {
    list-style: none;
  }

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

  .faq-item[open] summary svg {
    transform: rotate(45deg);
  }

  .shadow-float {
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
  }
/* END_BLOCK:faq-item */

/* START_BLOCK:group (INDEX:32) */
.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:text (INDEX:33) */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
/* END_BLOCK:text */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:bottom-nav (INDEX:34) */
.bottom-nav {
    --bottom-nav-height: 4rem;
  }

  .bottom-nav.sticky-bottom-wrapper {
    border-top: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 -6px 24px rgba(15, 23, 42, 0.09);
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.42) 0%,
      rgba(255, 255, 255, 0.76) 45%,
      rgba(255, 255, 255, 0.88) 72%,
      rgba(255, 255, 255, 0.92) 100%
    );
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
  }

  .bottom-nav.dock {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    min-height: var(--bottom-nav-height);
    height: auto;
    max-height: none;
    overflow: visible;
    padding-top: 0.5rem;
    padding-inline: 0.5rem;
  }

  .bottom-nav.dock > * {
    justify-self: center;
    width: 100%;
    display: flex;
    justify-content: center;
    min-width: 0;
    max-width: none;
    height: auto;
    margin-bottom: 0;
  }

  .bottom-nav__pill {
    box-sizing: border-box;
    overflow: visible;
  }

  .bottom-nav.dock > *::after {
    content: none;
  }

  @media (hover: hover) {
    .bottom-nav.dock > *:hover {
      opacity: 1;
    }
  }

  .bottom-nav .dock-label {
    font-size: 0.625rem;
  }

  .bottom-nav svg {
    stroke-width: 2;
  }
/* END_SNIPPET:bottom-nav */

/* START_SNIPPET:btn-custom-secondary (INDEX:36) */
.btn-custom-secondary {
    position: relative;
    isolation: isolate;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    margin: 0;
    padding: 7px 14px 7px 13px;
    border: 1px solid rgba(15, 23, 42, 0.07);
    border-radius: var(--radius-pill, 999px);
    font: inherit;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: -0.012em;
    line-height: 1.2;
    text-decoration: none;
    color: rgba(22, 26, 34, 0.8);
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(255, 255, 255, 0.62) 50%,
      rgba(255, 255, 255, 0.52) 100%
    );
    backdrop-filter: blur(18px) saturate(165%);
    -webkit-backdrop-filter: blur(18px) saturate(165%);
    box-shadow:
      inset 0 1px 1px rgba(255, 255, 255, 0.92),
      inset 0 -1px 1px rgba(255, 255, 255, 0.35),
      0 0.5px 1px rgba(15, 23, 42, 0.03);
    cursor: pointer;
    -webkit-tap-highlight-color: transparent;
    transition:
      background 0.15s ease,
      border-color 0.15s ease,
      box-shadow 0.15s ease,
      color 0.15s ease,
      transform 0.12s ease;
  }

  .btn-custom-secondary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
/* END_SNIPPET:btn-custom-secondary */

/* START_SNIPPET:btn-primary (INDEX:37) */
.btn-primary {
    /* Only custom styles that Tailwind can't handle */
    background: linear-gradient(180deg, var(--accept-cta-top, #3b82f6) 0%, var(--accept-cta-bot, #2563eb) 100%);
    background-color: var(--accept-cta-bot, #2563eb);
    box-shadow: 0 2px 6px rgba(37, 99, 235, 0.22);
    -webkit-tap-highlight-color: transparent;
  }

  .btn-primary:hover {
    background-color: #1d4ed8;
  }

  .btn-primary:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }
/* END_SNIPPET:btn-primary */

/* START_SNIPPET:cart-drawer (INDEX:40) */
[data-cart-drawer] {
    box-shadow: -4px 0 28px rgba(15, 23, 42, 0.06);
  }

  .shadow-float {
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
  }

  .cart-drawer__items,
  .cart-page__items {
    scrollbar-width: auto;
    scrollbar-color: rgb(100 116 139) rgb(226 232 240);
    scrollbar-gutter: stable;
    -webkit-overflow-scrolling: touch;
  }

  @media (max-width: 767px) {
    [data-cart-page] .cart-page__inner {
      padding-top: 2rem;
    }
  }

  .cart-drawer__items::-webkit-scrollbar,
  .cart-page__items::-webkit-scrollbar {
    width: 8px;
  }

  .cart-drawer__items::-webkit-scrollbar-track,
  .cart-page__items::-webkit-scrollbar-track {
    background: rgb(226 232 240 / 0.85);
    border-radius: 9999px;
  }

  .cart-drawer__items::-webkit-scrollbar-thumb,
  .cart-page__items::-webkit-scrollbar-thumb {
    background: rgb(100 116 139);
    border-radius: 9999px;
    border: 2px solid rgb(226 232 240 / 0.85);
  }

  .cart-drawer__items::-webkit-scrollbar-thumb:hover,
  .cart-page__items::-webkit-scrollbar-thumb:hover {
    background: rgb(71 85 105);
  }

  .basket-drawer__item.removing {
    opacity: 0;
    max-height: 0;
    overflow: hidden;
    transform: translateX(100%);
  }

  .cart-drawer__summary {
    background-color: #f3f4f6;
  }

  .cart-drawer__sticky-checkout {
    background-color: transparent;
  }

  [data-cart-drawer] .cart-drawer__footer .cart-drawer__reassurance {
    margin-bottom: 0.75rem;
  }

  [data-cart-drawer] .cart-drawer__sticky-checkout form {
    gap: 0.375rem;
  }

  [data-cart-drawer] [data-cart-checkout] {
    min-height: 3.25rem;
    height: 3.25rem;
    font-size: 1rem;
    line-height: 1.25rem;
  }

  @media (min-width: 768px) {
    [data-cart-drawer] [data-cart-checkout] {
      min-height: 2.75rem;
      height: 2.75rem;
      font-size: 0.875rem;
      line-height: 1.25rem;
    }
  }

  .cart-drawer__express {
    width: 100%;
    min-width: 0;
    max-height: min(40vh, 12rem);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .cart-drawer__express shopify-accelerated-checkout-cart {
    display: block;
    width: 100%;
    min-width: 0;
    --shopify-accelerated-checkout-button-block-size: 2.75rem;
    --shopify-accelerated-checkout-button-border-radius: 1rem;
    --shopify-accelerated-checkout-row-gap: 0.5rem;
  }

  .cart-drawer__express .shopify-payment-button__more-options {
    display: none !important;
  }
/* END_SNIPPET:cart-drawer */

/* START_SNIPPET:collection-filter-bar-v2 (INDEX:45) */
.collection-filter-bar__glass {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    background: rgba(255, 255, 255, 0.62);
    backdrop-filter: blur(28px) saturate(190%);
    -webkit-backdrop-filter: blur(28px) saturate(190%);
  }

  .collection-filter-bar {
    position: sticky;
    top: calc(var(--header-height) - 1px);
    z-index: 40;
    max-width: 100%;
    overflow: hidden;
    isolation: isolate;
  }

  .collection-filter-bar__scroll {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    overscroll-behavior-y: none;
    touch-action: pan-x;
    -webkit-overflow-scrolling: touch;
    scroll-padding-inline: 1rem;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .collection-filter-bar__track {
    width: max-content;
    min-width: 100%;
    max-height: 100%;
  }

  .collection-filter-bar__scroll::-webkit-scrollbar {
    display: none;
  }

  .collection-filter-bar__scroll.is-scrollable:not(.is-at-end) {
    -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 2.5rem), transparent);
    mask-image: linear-gradient(to right, #000 calc(100% - 2.5rem), transparent);
  }

  .collection-filter-bar__scroll.is-scrollable.is-at-start:not(.is-at-end) {
    -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 2.5rem), transparent);
    mask-image: linear-gradient(to right, #000 calc(100% - 2.5rem), transparent);
  }

  .collection-filter-bar__scroll.is-scrollable:not(.is-at-start):not(.is-at-end) {
    -webkit-mask-image: linear-gradient(to right, transparent, #000 2.5rem, #000 calc(100% - 2.5rem), transparent);
    mask-image: linear-gradient(to right, transparent, #000 2.5rem, #000 calc(100% - 2.5rem), transparent);
  }

  .collection-filter-bar__scroll.is-scrollable.is-at-end:not(.is-at-start) {
    -webkit-mask-image: linear-gradient(to right, transparent, #000 2.5rem);
    mask-image: linear-gradient(to right, transparent, #000 2.5rem);
  }

  .collection-filter-bar__pill {
    min-height: 2.75rem;
    background-color: #fff;
  }

  .collection-filter-bar__pill.is-active {
    background-color: rgb(37 99 235 / 0.1);
    border-color: rgb(37 99 235);
  }

  .collection-filter-bar__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 0.9375rem;
    height: 0.9375rem;
    padding: 0 0.125rem;
    border-radius: 9999px;
    background-color: rgb(37 99 235);
    color: #fff;
    font-size: 0.5625rem;
    font-weight: 700;
    line-height: 1;
    flex-shrink: 0;
  }

  .collection-filter-bar__badge--icon {
    width: 0.9375rem;
    max-width: 0.9375rem;
    min-width: 0.9375rem;
    padding: 0;
    overflow: hidden;
  }

  .collection-filter-bar__badge-icon {
    display: block;
    width: 0.859375rem;
    height: 0.859375rem;
    flex-shrink: 0;
    color: #fff;
  }
/* END_SNIPPET:collection-filter-bar-v2 */

/* START_SNIPPET:collection-filter-sheet-v2 (INDEX:46) */
.filter-sheet__box.modal-box {
    background: transparent;
    box-shadow: 0 -4px 28px rgba(15, 23, 42, 0.06);
  }

  .filter-sheet__empty {
    min-height: 8rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .filter-sheet__search input:focus,
  .filter-sheet__search input:focus-visible {
    outline: none !important;
    box-shadow: none !important;
    border: none !important;
  }

  .filter-sheet__box .checkbox {
    color: rgb(37 99 235);
  }
/* END_SNIPPET:collection-filter-sheet-v2 */

/* START_SNIPPET:collection-filters-drawer-v2 (INDEX:47) */
/*
    Above .site-header (z-index: 100) and .sticky-bottom-wrapper (z-index: 50).
    Below sort sheet (z-index: 1100).
  */
  .filters-drawer-v2 .drawer-side {
    z-index: 110;
  }

  .filters-drawer-v2 [data-filters-drawer] {
    position: relative;
    z-index: 1;
    box-shadow: 4px 0 28px rgba(15, 23, 42, 0.06);
  }

  .filters-drawer__active {
    display: none;
    overflow: hidden;
    border-top-color: transparent;
  }

  .filters-drawer__active.is-visible {
    display: block;
    padding: 0.625rem 0 0;
    border-top-color: rgb(226 232 240 / 0.5);
  }

  .scrollbar-none {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .scrollbar-none::-webkit-scrollbar {
    display: none;
  }

  .filters-drawer__pills-scroll.is-scrollable:not(.is-at-end) {
    -webkit-mask-image: linear-gradient(to right, #000 calc(100% - 2.5rem), transparent);
    mask-image: linear-gradient(to right, #000 calc(100% - 2.5rem), transparent);
  }

  .filters-drawer__accordion-panel {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.28s cubic-bezier(0.32, 0.72, 0, 1);
  }

  .filters-drawer__accordion-inner {
    min-height: 0;
    overflow: hidden;
  }

  .filters-drawer__accordion.is-open .filters-drawer__accordion-panel {
    grid-template-rows: 1fr;
  }

  .filters-drawer__accordion.is-open svg {
    transform: rotate(180deg);
  }

  .filters-drawer__accordion.is-open {
    background: rgb(255 255 255 / 0.7);
    border-color: rgb(226 232 240 / 0.8);
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
  }

  [data-filters-drawer] .checkbox {
    color: rgb(37 99 235);
  }

  [data-filters-scroll],
  .filters-drawer__options-scroll {
    overflow-anchor: none;
  }

  .filters-drawer__options-scroll {
    max-height: min(60vh, 18rem);
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
  }

  .filters-drawer__options-scroll.is-scrollable:not(.is-at-end) {
    -webkit-mask-image: linear-gradient(to bottom, #000 calc(100% - 2rem), transparent);
    mask-image: linear-gradient(to bottom, #000 calc(100% - 2rem), transparent);
  }
/* END_SNIPPET:collection-filters-drawer-v2 */

/* START_SNIPPET:collection-price-filter-sheet-v2 (INDEX:48) */
.price-filter-sheet__box.modal-box {
    background: transparent;
    box-shadow: 0 -4px 28px rgba(15, 23, 42, 0.06);
  }
/* END_SNIPPET:collection-price-filter-sheet-v2 */

/* START_SNIPPET:collection-sort-options-v2 (INDEX:50) */
.sort-sheet__option--active {
    background: rgb(255 255 255 / 0.8);
  }

  .sort-sheet__radio {
    display: block;
    width: 1.125rem;
    height: 1.125rem;
    border: 2px solid rgb(37 99 235);
    border-radius: 9999px;
    box-sizing: border-box;
  }

  .sort-sheet__option--active .sort-sheet__radio {
    background: radial-gradient(circle, rgb(37 99 235) 0 40%, transparent 42%);
  }
/* END_SNIPPET:collection-sort-options-v2 */

/* START_SNIPPET:collection-sort-sheet-v2 (INDEX:51) */
.sort-sheet__box.modal-box {
    background: transparent;
    box-shadow: 0 -4px 28px rgba(15, 23, 42, 0.06);
  }

  .sort-sheet__box .shadow-float {
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
  }
/* END_SNIPPET:collection-sort-sheet-v2 */

/* START_SNIPPET:header-desktop (INDEX:55) */
.site-logo:active {
    animation: logo-pulse 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  @keyframes logo-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
  }
/* END_SNIPPET:header-desktop */

/* START_SNIPPET:header-product-mobile (INDEX:57) */
.site-header--product {
    background: transparent;
  }

  .site-header--product .product-header-meta {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.28s ease, visibility 0.28s ease;
  }

  .site-header--product.is-scrolled {
    background:
      linear-gradient(rgb(255 255 255), rgb(255 255 255)) top / 100% env(safe-area-inset-top, 0px) no-repeat,
      linear-gradient(
        180deg,
        rgb(255 255 255) 0%,
        rgb(255 255 255) 28%,
        rgb(255 255 255 / 0.88) 55%,
        rgb(255 255 255 / 0.55) 100%
      );
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom-color: rgba(255, 255, 255, 0.55);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
  }

  .site-header--product.is-scrolled .product-header-meta {
    opacity: 1;
    visibility: visible;
  }
/* END_SNIPPET:header-product-mobile */

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

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

/* START_SNIPPET:info-modal (INDEX:63) */
.info-modal__box {
    display: flex;
    flex-direction: column;
    max-height: 80dvh;
    overflow: hidden;
  }

  .info-modal__body-wrap {
    position: relative;
    display: flex;
    flex-direction: column;
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
    border-radius: 0 0 1.5rem 1.5rem;
  }

  .info-modal__body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: max(2.5rem, env(safe-area-inset-bottom, 0px));
    scrollbar-width: thin;
    scrollbar-color: rgb(203 213 225) transparent;
  }

  .info-modal__fade {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    height: 8%;
    min-height: 2rem;
    z-index: 1;
    pointer-events: none;
    border-radius: 0 0 1.5rem 1.5rem;
    background: linear-gradient(
      to top,
      rgb(255 255 255 / 0.98) 0%,
      rgb(255 255 255 / 0) 100%
    );
  }

  .info-modal__body::-webkit-scrollbar {
    width: 6px;
  }

  .info-modal__body::-webkit-scrollbar-track {
    background: transparent;
  }

  .info-modal__body::-webkit-scrollbar-thumb {
    background: rgb(203 213 225);
    border-radius: 9999px;
  }

  .popup-icon {
    flex-shrink: 0;
  }

  .info-modal__body span.rounded-xl.border-base-200 {
    border-color: rgb(209 213 219);
  }

  .popup-icon--green {
    background-color: rgb(209 250 229 / 0.75);
    color: rgb(5 150 105);
  }

  .popup-icon--green svg {
    stroke: rgb(5 150 105);
  }

  .popup-icon--amber {
    background-color: rgb(254 243 199 / 0.75);
    color: rgb(180 83 9);
  }

  .popup-icon--amber svg {
    stroke: rgb(180 83 9);
  }

  .popup-icon--blue {
    background-color: rgb(219 234 254 / 0.75);
    color: rgb(37 99 235);
  }

  .popup-icon--blue svg {
    stroke: rgb(37 99 235);
  }

  .popup-icon--slate {
    background-color: rgb(241 245 249 / 0.9);
    color: rgb(71 85 105);
  }

  .popup-icon--slate svg {
    stroke: rgb(71 85 105);
  }

  .bnpl-logo {
    display: inline-flex;
    align-items: center;
    height: 1.5rem;
    padding: 0 0.625rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.01em;
    color: var(--ink);
  }

  .bnpl-logo--clearpay {
    background: rgb(178 252 228);
  }

  .bnpl-logo--klarna {
    background: rgb(255 179 199);
  }

  .bnpl-tabs,
  .size-guide-gender-tabs,
  .size-guide-category-tabs {
    position: relative;
    display: grid;
    column-gap: 0.5rem;
    row-gap: 0.875rem;
    padding: 0.5rem 1.25rem 0.875rem;
    background: rgb(255 255 255 / 0.94);
    -webkit-backdrop-filter: blur(16px) saturate(1.1);
    backdrop-filter: blur(16px) saturate(1.1);
  }

  .bnpl-tabs {
    grid-template-columns: 1fr 1fr;
    border-bottom: 1px solid rgb(241 245 249);
  }

  .size-guide-gender-tabs {
    grid-template-columns: 1fr 1fr;
  }

  .size-guide-category-tabs {
    grid-template-columns: repeat(3, 1fr);
    padding-top: 0;
    border-bottom: 1px solid rgb(241 245 249);
  }

  .bnpl-tabs::before,
  .size-guide-gender-tabs::before,
  .size-guide-category-tabs::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    left: 1.25rem;
    right: 1.25rem;
    border-radius: 1rem;
    background: rgb(229 231 235 / 0.6);
    pointer-events: none;
  }

  .bnpl-tabs::before {
    height: calc(0.25rem + 2.5rem + 0.25rem);
  }

  .size-guide-gender-tabs::before {
    height: calc(0.25rem + 2.75rem + 0.25rem);
  }

  .size-guide-category-tabs::before {
    top: 0;
    height: calc(0.25rem + 2.375rem + 0.25rem);
  }

  .bnpl-tabs .tab-btn,
  .size-guide-gender-tabs .tab-btn,
  .size-guide-category-tabs .tab-btn {
    position: relative;
    z-index: 1;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0.25rem;
    border-radius: 0.875rem;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    font-weight: 600;
    color: rgb(0 0 0 / 0.45);
    transition: background 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, color 0.2s ease;
    -webkit-tap-highlight-color: transparent;
  }

  .bnpl-tabs .tab-btn {
    height: 2.5rem;
    min-height: 2.5rem;
    font-size: 0.875rem;
  }

  .size-guide-gender-tabs .tab-btn {
    height: 2.75rem;
    min-height: 2.75rem;
    font-size: 0.8125rem;
  }

  .size-guide-category-tabs .tab-btn {
    gap: 0.3125rem;
    height: 2.375rem;
    min-height: 2.375rem;
    padding: 0.4375rem 0.25rem;
    border-radius: 0.625rem;
    font-size: 0.6875rem;
  }

  .size-guide-category-tabs .tab-btn span {
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .bnpl-tabs .tab-btn:first-of-type {
    grid-column: 1;
    margin-right: 0.125rem;
  }

  .bnpl-tabs .tab-btn:nth-of-type(2) {
    grid-column: 2;
    margin-left: 0.125rem;
  }

  .size-guide-gender-tabs .tab-btn:first-of-type {
    grid-column: 1;
    margin-right: 0.125rem;
  }

  .size-guide-gender-tabs .tab-btn:nth-of-type(2) {
    grid-column: 2;
    margin-left: 0.125rem;
  }

  .size-guide-category-tabs .tab-btn:nth-of-type(1) {
    grid-column: 1;
  }

  .size-guide-category-tabs .tab-btn:nth-of-type(2) {
    grid-column: 2;
  }

  .size-guide-category-tabs .tab-btn:nth-of-type(3) {
    grid-column: 3;
  }

  .bnpl-tabs .tab-btn.is-active,
  .size-guide-gender-tabs .tab-btn.is-active,
  .size-guide-category-tabs .tab-btn.is-active {
    background: rgb(255 255 255);
    border-color: rgb(226 232 240);
    color: rgb(0 0 0);
    font-weight: 700;
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.08);
  }

  .bnpl-tabs .tab-btn.is-active,
  .size-guide-gender-tabs .tab-btn.is-active {
    border-color: rgb(191 219 254);
    background: rgb(239 246 255);
    color: rgb(29 78 216);
  }
/* END_SNIPPET:info-modal */

/* START_SNIPPET:mobile-nav-drawer (INDEX:65) */
[data-mobile-nav] {
    box-shadow: 4px 0 28px rgba(15, 23, 42, 0.06);
  }

  .shadow-float {
    box-shadow: 0 2px 12px rgba(15, 23, 42, 0.06);
  }
/* END_SNIPPET:mobile-nav-drawer */

/* START_SNIPPET:numbered-steps (INDEX:69) */
.numbered-steps__index {
    background: linear-gradient(180deg, var(--accept-cta-top, #3b82f6) 0%, var(--accept-cta-bot, #2563eb) 100%);
    background-color: var(--accept-cta-bot, #2563eb);
    color: #fff;
  }
/* END_SNIPPET:numbered-steps */

/* START_SNIPPET:product-card (INDEX:70) */
.product-card-wrapper {
    height: 100%;
  }

  .shadow-shell--product {
    height: 100%;
    filter: drop-shadow(0 1px 2px rgba(15, 23, 42, 0.02)) drop-shadow(0 8px 28px rgba(15, 23, 42, 0.035));
  }

  .product-card {
    height: 100%;
  }

  .product-card__figure--placeholder {
    background: linear-gradient(160deg, #6b4228 0%, #5a351f 55%, #4a2b18 100%);
  }

  .product-card__info {
    flex: 1 1 auto;
    min-height: 0;
  }

  .product-card__title {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
  }

  .product-card__label-badge {
    display: inline-flex;
    align-items: center;
    border-radius: 9999px;
    padding: 0.125rem 0.5rem;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #fff;
  }

  .product-card__label-badge--new {
    background-color: #14532d;
  }

  .product-card__label-badge--price-drop {
    gap: 0.1875rem;
    padding: 0.1875rem 0.5625rem;
    font-size: 10px;
    background-color: rgb(185 28 28);
    letter-spacing: 0.04em;
    text-transform: none;
  }

  .product-card__label-badge--price-drop svg {
    width: 11px;
    height: 11px;
    flex-shrink: 0;
  }

  @media (prefers-reduced-motion: no-preference) {
    @keyframes heartPopIn {
      0% { transform: scale(1); }
      35% { transform: scale(1.18); }
      55% { transform: scale(0.96); }
      75% { transform: scale(1.04); }
      100% { transform: scale(1); }
    }

    @keyframes heartPopOut {
      0% { transform: scale(1); }
      40% { transform: scale(0.88); }
      100% { transform: scale(1); }
    }

    @keyframes favouriteRing {
      0% {
        box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 0 0 0 rgb(185 28 28 / 0.4);
      }

      50% {
        box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 0 0 8px rgb(185 28 28 / 0);
      }

      100% {
        box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 0 0 0 rgb(185 28 28 / 0);
      }
    }

    .product-favourite-btn.is-animating-in .product-favourite-btn__icon {
      animation: heartPopIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
      will-change: transform;
      backface-visibility: hidden;
    }

    .product-favourite-btn.is-animating-in {
      animation: favouriteRing 0.45s ease-out forwards;
    }

    .product-favourite-btn.is-animating-out .product-favourite-btn__icon {
      animation: heartPopOut 0.25s ease-in-out forwards;
      will-change: transform;
      backface-visibility: hidden;
    }
  }
/* END_SNIPPET:product-card */

/* START_SNIPPET:product-favourite-button (INDEX:71) */
.product-favourite-btn {
    border-color: rgb(203 213 225);
    box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
  }

  .product-favourite-btn.is-favourited {
    border-color: rgb(185 28 28 / 0.28);
    color: rgb(185 28 28);
  }

  .product-favourite-btn__icon {
    display: inline-flex;
    transform-box: fill-box;
    transform-origin: center;
    -webkit-font-smoothing: antialiased;
    shape-rendering: geometricPrecision;
  }

  .product-favourite-btn__icon-svg {
    width: 100%;
    height: 100%;
    color: rgba(0, 0, 0, 0.32);
    transition: color 0.2s ease;
  }

  .product-favourite-btn__icon-svg--fill {
    display: none;
  }

  .product-favourite-btn.is-favourited .product-favourite-btn__icon-svg--outline {
    display: none;
  }

  .product-favourite-btn.is-favourited .product-favourite-btn__icon-svg--fill {
    display: block;
    color: rgb(185 28 28);
  }

  @media (prefers-reduced-motion: no-preference) {
    @keyframes heartPopIn {
      0% { transform: scale(1); }
      35% { transform: scale(1.18); }
      55% { transform: scale(0.96); }
      75% { transform: scale(1.04); }
      100% { transform: scale(1); }
    }

    @keyframes heartPopOut {
      0% { transform: scale(1); }
      40% { transform: scale(0.88); }
      100% { transform: scale(1); }
    }

    @keyframes favouriteRing {
      0% {
        box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 0 0 0 rgb(185 28 28 / 0.4);
      }

      50% {
        box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 0 0 8px rgb(185 28 28 / 0);
      }

      100% {
        box-shadow: 0 1px 3px rgba(15, 23, 42, 0.06), 0 0 0 0 rgb(185 28 28 / 0);
      }
    }

    .product-favourite-btn.is-animating-in .product-favourite-btn__icon {
      animation: heartPopIn 0.45s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
      will-change: transform;
      backface-visibility: hidden;
    }

    .product-favourite-btn.is-animating-in {
      animation: favouriteRing 0.45s ease-out forwards;
    }

    .product-favourite-btn.is-animating-out .product-favourite-btn__icon {
      animation: heartPopOut 0.25s ease-in-out forwards;
      will-change: transform;
      backface-visibility: hidden;
    }
  }
/* END_SNIPPET:product-favourite-button */

/* START_SNIPPET:product-gallery-lightbox (INDEX:72) */
.lightbox-thumb {
    border-color: transparent;
    opacity: 0.6;
  }

  .lightbox-thumb:hover {
    opacity: 0.9;
  }

  .lightbox-thumb-active {
    border-color: rgb(255 255 255);
    opacity: 1;
  }

  .lightbox-zoom-wrap {
    transform-origin: center center;
    will-change: transform;
    touch-action: pan-x;
  }

  .lightbox-carousel {
    touch-action: pan-x;
  }

  .product-gallery-lightbox:not([open]) {
    pointer-events: none;
    opacity: 0;
  }

  .product-gallery-lightbox[open] {
    animation: modal-fade-in 0.2s ease;
  }

  .product-gallery-lightbox[open].lightbox-is-zoomed {
    touch-action: none;
  }

  .product-gallery-lightbox[open].lightbox-is-zoomed .lightbox-zoom-wrap {
    touch-action: none;
  }

  .product-gallery-lightbox[open].lightbox-is-zoomed [data-lightbox-track] {
    overflow: visible;
  }

  @keyframes modal-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  .scrollbar-hide {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .scrollbar-hide::-webkit-scrollbar {
    display: none;
  }
/* END_SNIPPET:product-gallery-lightbox */

/* START_SNIPPET:promo-link-card (INDEX:75) */
.promo-link-card {
    background: linear-gradient(135deg, rgb(240 247 242) 0%, rgb(228 243 235) 100%);
  }

  .promo-link-card__whatsapp-icon {
    display: block;
    color: rgb(37 211 102);
  }

  .promo-link-card__whatsapp-icon svg {
    display: block;
    width: 100%;
    height: 100%;
  }
/* END_SNIPPET:promo-link-card */

/* START_SNIPPET:rte (INDEX:77) */
/* scoped typography for CMS HTML — Tailwind preflight strips these defaults */
  .rte > *:first-child { margin-top: 0; }
  .rte > *:last-child { margin-bottom: 0; }
  .rte p { margin-bottom: 1em; }
  .rte h2 { font-size: 1.5rem; font-weight: 700; margin: 1.5em 0 0.5em; }
  .rte h3 { font-size: 1.25rem; font-weight: 600; margin: 1.25em 0 0.5em; }
  .rte ul, .rte ol { padding-left: 1.5em; margin-bottom: 1em; }
  .rte ul { list-style: disc; }
  .rte ol { list-style: decimal; }
  .rte li { margin-bottom: 0.25em; }
  .rte a { text-decoration: underline; }
  .rte img { max-width: 100%; height: auto; }
  .rte blockquote { border-left: 3px solid currentColor; padding-left: 1em; opacity: 0.8; }
  .rte table { width: 100%; border-collapse: collapse; margin-bottom: 1em; }
  .rte th, .rte td { border: 1px solid currentColor; padding: 0.5em; }
/* END_SNIPPET:rte */

/* START_SNIPPET:sell-sticky-footer (INDEX:78) */
.sell-quote-footer {
    transform: translateY(120%);
    transition: transform 0.32s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }

  .sell-quote-footer.is-visible {
    transform: translateY(0);
    pointer-events: auto;
  }

  .sell-quote-footer__whatsapp-icon {
    display: block;
    color: inherit;
  }

  .sell-quote-footer__whatsapp-icon svg {
    display: block;
    width: 100%;
    height: 100%;
  }
/* END_SNIPPET:sell-sticky-footer */

/* START_SNIPPET:site-logo (INDEX:79) */
.site-logo:active {
    animation: logo-pulse 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  }

  @keyframes logo-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.03); }
  }
/* END_SNIPPET:site-logo */

/* START_SNIPPET:size-guide-modal-content (INDEX:80) */
.size-guide-modal__table-scroll.has-more-left .size-guide-modal__fade--left {
    opacity: 1;
  }

  .size-guide-modal__table-scroll.has-more-right .size-guide-modal__fade--right {
    opacity: 1;
  }
/* END_SNIPPET:size-guide-modal-content */

/* START_SNIPPET:sticky-bottom-shared (INDEX:82) */
.sticky-bottom-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    border-radius: 1.5rem 1.5rem 0 0;
    border-top: 1px solid rgb(255 255 255 / 0.55);
    box-shadow: 0 -6px 24px rgba(15, 23, 42, 0.09);
    background: linear-gradient(
      180deg,
      rgb(255 255 255 / 0.42) 0%,
      rgb(255 255 255 / 0.76) 45%,
      rgb(255 255 255 / 0.88) 72%,
      rgb(255 255 255) 100%
    );
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
    padding-bottom: env(safe-area-inset-bottom, 0px);
  }

  .sticky-bottom-chrome {
    border-radius: 1.5rem 1.5rem 0 0;
  }
/* END_SNIPPET:sticky-bottom-shared */