/** Shopify CDN: Minification failed

Line 20:18 Expected identifier but found whitespace
Line 20:20 Unexpected "{"
Line 20:29 Expected ":"
Line 20:55 Expected ":"
Line 21:21 Expected identifier but found whitespace
Line 21:23 Unexpected "{"
Line 21:32 Expected ":"
Line 21:61 Expected ":"

**/
/* 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 calc((100% - 3rem) / 3.5);
  }

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

    .collection-links__scroller > a {
      flex: 0 0 calc((100% - 4rem) / 5.15);
    }
  }

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

    .collection-links__scroller > a {
      flex: 0 0 calc((100% - 5rem) / 7.15);
      max-width: 120px;
    }
  }
/* END_SECTION:collection-links */

/* START_SECTION:collection (INDEX:7) */
/* Fix searchandise modal overlay and content stacking */
  .snize-overlay {
    position: fixed !important;
    z-index: 999 !important; /* Behind modal */
  }

  .snize-modal {
    position: fixed !important;
    z-index: 1000 !important; /* Above overlay */
  }

  /* Ensure modal content is visible */
  .snize-modal .snize-modal-content {
    position: relative !important;
    z-index: 1 !important;
    background: white !important;
    max-height: 90vh !important;
  }

  /* Ensure filter headers and containers are visible */
  .snize-product-filters-header,
  .snize-product-filter-container {
    position: relative !important;
    z-index: auto !important;
    background: white !important;
  }

  /* Fix Searchandise mobile filter positioning - override absolute positioning */
  #snize-modal-mobile-filters-dialog div.snize-product-filter-container {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    /* left: auto !important;
    right: auto !important; */
    overflow-y: visible !important;
  }

  /* Ensure filter containers stack normally instead of overlapping */
  #snize-modal-mobile-filters-dialog div.snize-product-filters-list-container,
  #snize-modal-mobile-filters-dialog div.snize-product-filter-container {
    position: relative !important;
    top: auto !important;
  }

  /* Adjust filter header positioning */
  #snize-modal-mobile-filters-dialog div.snize-product-filters-header,
  #snize-modal-mobile-sortby-dialog div.snize-sortby-header {
    left: 7px !important;
  }

  /* Adjust filter checkbox width */
  div.snize ul.snize-product-filters-list li .snize-filter-checkbox {
    width: 22px !important;
  }

  /* Prevent searchandise from creating layout shifts */
  .snize-ac-results {
    position: absolute !important;
  }

  /* Fix searchandise header that's pushing layout elements - aggressively override JS-applied styles */
  .snize-header,
  .snize-search-results-header {
    position: static !important;
    position: relative !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    z-index: auto !important;
    transform: none !important;
  }

  /* Ensure all snize headers stay in flow */
  div.snize-header[style],
  div.snize-search-results-header[style] {
    position: relative !important;
    top: auto !important;
  }

  /* Prevent horizontal scroll on mobile - contain searchandise within viewport */
  .snize,
  .snize-search-results,
  .snize-collection-mode {
    max-width: 100vw !important;
    overflow-x: hidden !important;
    box-sizing: border-box !important;
  }

  /* Ensure searchandise doesn't break viewport width */
  .snize * {
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Prevent fixed elements from causing horizontal scroll */
  .snize [style*="position: fixed"],
  .snize [style*="position: absolute"] {
    max-width: 100vw !important;
    left: 0 !important;
    right: 0 !important;
  }

  /* Ensure searchandise sticky elements respect header */
  .snize [style*="position: fixed"]:not(.snize-modal):not(.snize-overlay),
  .snize [style*="position: sticky"] {
    top: var(--header-height) !important;
    z-index: 40 !important;
  }

  /* Bottom nav should always be above searchandise (but below modals) */
  .bottom-nav {
    z-index: 50 !important;
  }

  /* Contain searchandise widget */
  .snize-container {
    contain: layout style;
  }
/* END_SECTION:collection */

/* 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);
  }

  .chrome-pill:focus,
  .chrome-pill:focus-visible {
    outline: none;
    border-color: rgb(255 255 255 / 0.78);
    box-shadow:
      inset 0 1px 0 rgb(255 255 255 / 0.92),
      0 2px 12px rgb(15 23 42 / 0.06),
      0 0 0 2px rgb(59 130 246 / 0.2);
  }

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

  @media (max-width: 767px) {
    .main-content--product {
      padding-top: 1.5rem;
    }
  }

  .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:21) */
.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;
  }

  .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:22) */
.product-gallery {
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

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

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

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

  .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(5 150 105);
  }

  .auth-strip__icon svg {
    stroke: rgb(5 150 105);
  }

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

/* START_SECTION:search (INDEX:23) */
.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .search-results .prev,
  .search-results .page,
  .search-results .next {
    grid-column: 1 / -1;
  }
/* END_SECTION:search */

/* START_SECTION:site-footer (INDEX:26) */
.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 (INDEX:27) */
header[style*="--text-align"] {
    text-align: var(--text-align);
  }
/* END_BLOCK:collection-header */

/* START_BLOCK:faq-item (INDEX:29) */
.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:31) */
.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:32) */
.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__chrome {
    height: var(--bottom-nav-height);
    min-height: var(--bottom-nav-height);
    max-height: var(--bottom-nav-height);
    overflow: hidden;
  }

  .bottom-nav__list {
    height: 100%;
  }

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

  @media (max-width: 1023px) {
    body:has(.bottom-nav:not(.hidden)) {
      padding-bottom: calc(var(--bottom-nav-height) + 0.5rem);
    }
  }
/* END_SNIPPET:bottom-nav */

/* START_SNIPPET:btn-custom-secondary (INDEX:35) */
.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:36) */
.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 {
    scrollbar-width: auto;
    scrollbar-color: rgb(100 116 139) rgb(226 232 240);
    scrollbar-gutter: stable;
    -webkit-overflow-scrolling: touch;
  }

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

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

  .cart-drawer__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 {
    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;
  }

  .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 (INDEX:42) */
.collection-filter-bar {
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    top: var(--header-height);
  }

  @media (min-width: 768px) {
    .collection-filter-bar {
      position: sticky;
      top: var(--header-height);
    }
  }

  [data-filter-count] {
    transition: opacity 0.2s ease;
  }

  [data-filter-count][style*="display: none"] {
    opacity: 0;
  }
/* END_SNIPPET:collection-filter-bar */

/* START_SNIPPET:collection-filters-drawer (INDEX:43) */
[data-filters-drawer] {
    background: linear-gradient(
      180deg,
      rgb(255 255 255 / 0.72) 0%,
      rgb(255 255 255 / 0.88) 100%
    );
    border-right: 1px solid rgb(255 255 255 / 0.55);
  }

  /* Active pills section - show/hide with animation */
  .filters-drawer__active {
    max-height: 0;
    padding: 0;
    opacity: 0;
  }

  .filters-drawer__active.is-visible {
    max-height: 3.75rem;
    padding: 0.625rem 0 0;
    opacity: 1;
    border-top-color: rgb(226 232 240 / 0.5);
  }

  /* Hide scrollbar for pills track */
  .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);
  }

  /* Accordion animations */
  .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.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);
  }
/* END_SNIPPET:collection-filters-drawer */

/* START_SNIPPET:header-desktop (INDEX:50) */
.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:52) */
.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:55) */
.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:57) */
.info-modal__box {
    display: flex;
    flex-direction: column;
    max-height: 80vh;
    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;
  }

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

  .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 {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 0.5rem;
    row-gap: 0.875rem;
    padding: 0.5rem 1.25rem 0.875rem;
    background: rgb(255 255 255 / 0.94);
    border-bottom: 1px solid rgb(241 245 249);
    -webkit-backdrop-filter: blur(16px) saturate(1.1);
    backdrop-filter: blur(16px) saturate(1.1);
  }

  .bnpl-tabs::before {
    content: '';
    position: absolute;
    top: 0.5rem;
    left: 1.25rem;
    right: 1.25rem;
    height: calc(0.25rem + 2.5rem + 0.25rem);
    border-radius: 1rem;
    background: rgb(229 231 235 / 0.6);
    pointer-events: none;
  }

  .bnpl-tabs .tab {
    position: relative;
    z-index: 1;
    grid-row: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2.5rem;
    min-height: 2.5rem;
    margin: 0.25rem;
    border-radius: 0.875rem;
    border: 1px solid transparent;
    background: transparent;
    cursor: pointer;
    font-family: inherit;
    font-size: 0.875rem;
    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;
  }

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

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

  .bnpl-tabs .tab:checked {
    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-content {
    grid-column: 1 / -1;
    grid-row: 2;
    width: 100%;
    border: none;
    background: transparent;
    padding: 0.25rem 0 0;
  }
/* END_SNIPPET:info-modal */

/* START_SNIPPET:numbered-steps (INDEX:63) */
.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:64) */
.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:65) */
.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 {
    transform-box: fill-box;
    transform-origin: center;
    color: rgba(0, 0, 0, 0.32);
    transition: color 0.2s ease;
    -webkit-font-smoothing: antialiased;
    shape-rendering: geometricPrecision;
  }

  .product-favourite-btn.is-favourited .product-favourite-btn__icon {
    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:66) */
.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;
  }

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

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

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

  .modal-backdrop {
    background: rgb(0 0 0 / 0.7);
  }

  .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:67) */
.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:68) */
/* 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:69) */
.page-sell--with-sticky-footer {
    padding-bottom: 7rem;
  }

  @supports (-webkit-touch-callout: none) {
    .page-sell--with-sticky-footer {
      padding-bottom: calc(7rem + 10px);
    }
  }

  @media (min-width: 1024px) {
    .page-sell--with-sticky-footer {
      padding-bottom: 0;
    }
  }

  .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:70) */
.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:sticky-bottom-shared (INDEX:72) */
.sticky-bottom-wrapper {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding-bottom: 0.2rem;
    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 / 0.92) 100%
    );
    -webkit-backdrop-filter: blur(24px);
    backdrop-filter: blur(24px);
  }

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