/** Shopify CDN: Minification failed

Line 1409:23 Expected ")" to end URL token
Line 1991:14 Expected identifier but found whitespace
Line 1991:16 Unexpected "{"
Line 1991:25 Expected ":"
Line 1991:49 Expected ":"
Line 3108:4 "align-item" is not a known CSS property
Line 7634:0 All "@import" rules must come first

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:announcement-bar (INDEX:1) */
/**
   * Component: Announcement Bar Standalone
   * Description: Styles for sitewide announcement bar above header
   * Mobile-first responsive design
   * 
   * BEM Structure:
   * - .announcement-bar-standalone (Block)
   * - .announcement-bar-standalone__content (Element)
   * - .announcement-bar-standalone__text (Element)
   * - .announcement-bar-standalone__link (Element)
   */

  /* Main container - positioned above sticky header */
  .announcement-bar-standalone {
    position: relative;
    z-index: calc(var(--layer-sticky) + 1);
    border-top: var(--border-top-width, 0) solid var(--border-color, var(--color-border));
    border-bottom: var(--border-bottom-width, 0) solid var(--border-color, var(--color-border));
  }

  .announcement-bar-standalone__banner-item p,
  .announcement-bar-standalone__line p {
    display: inline;
    margin: 0;
  }

  .announcement-bar-standalone__separator {
    display: inline-flex;
    align-items: center;
    flex: 0 0 auto;
    opacity: 0.8;
  }

  .announcement-bar-standalone__banner-item,
  .announcement-bar-standalone__line {
    flex: 0 0 auto;
    white-space: nowrap;
  }

  /**
   * Optional admin-configured title (announcement_heading) + ticker/messages row
   */
  .announcement-bar-standalone__layout {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0 0.875rem;
    width: 100%;
    flex-wrap: nowrap;
    box-sizing: border-box;
    min-height: inherit;
  }

  .announcement-bar-standalone .announcement-bar-standalone__layout-link {
    display: contents !important;
    width: auto !important;
    text-decoration: none;
    color: inherit;
  }

  .announcement-bar-standalone__layout .announcement-bar-standalone__marquee {
    flex: 1 1 0%;
    min-width: 0;
  }

  .announcement-bar-standalone__heading {
    flex-shrink: 0;
    margin: 0;
    max-width: min(42%, 280px);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: var(--font-weight-bold);
    letter-spacing: 0.03em;
    color: var(--color-foreground);
    line-height: 1.4;
  }

  .announcement-bar-standalone__layout--static .announcement-bar-standalone__text--with-heading {
    flex: 1 1 auto;
    text-align: inherit;
    min-width: 0;
  }

  /* Marquee: right-to-left infinite scroll, no gaps, consistent speed */
  .announcement-bar-standalone__marquee {
    overflow: hidden;
    width: 100%;
    min-height: 22px;
    display: flex;
    align-items: center;
    padding-block: 4px;
    user-select: none;
  }

  /**
   * Flex + banner layout: assets/announcement-bar.css (.marquee-track, .marquee-group, .banner-item, .separator)
   * Here: horizontal loop motion only (two identical .marquee-group copies → translateX(-50%))
   */
  .announcement-bar-standalone__marquee-track {
    display: flex;
    flex-shrink: 0;
    width: max-content;
    animation: announcement-bar-marquee var(--marquee-duration, 30s) linear infinite;
    animation-play-state: running;
    will-change: transform;
    padding-inline: 0;
  }


  .announcement-bar-standalone__marquee-group {
     display: flex;
    align-items: center;
    flex: 0 0 auto;
    width: max-content;
    white-space: nowrap;
    column-gap: 0.75rem;
  }

  /* Pause scroll on hover; resume when cursor leaves */
  .announcement-bar-standalone__marquee:hover .announcement-bar-standalone__marquee-track,
  .announcement-bar-standalone__marquee-link:hover .announcement-bar-standalone__marquee-track {
    animation-play-state: paused;
  }

  @keyframes announcement-bar-marquee {
    0% {
      transform: translateX(0);
    }
    100% {
      transform: translateX(calc(-100% / var(--marquee-repeat-count, 12)));
    }
  }

  /* Slower when reduced motion preferred (stretch duration, never rush the loop) */
  @media (prefers-reduced-motion: reduce) {
    .announcement-bar-standalone__marquee-track {
      animation-duration: max(42s, var(--marquee-duration, 30s));
    }
  }

  /* Content wrapper - flexbox for vertical centering and horizontal alignment (static mode) */
  .announcement-bar-standalone__content {
    display: flex;
    align-items: center;
    justify-content: center;
    /* Minimum height ensures bar is visible even with minimal content */
    min-height: 22px;
  }

  /* Text content - uses theme foreground color variable */
  .announcement-bar-standalone__text {
    color: var(--color-foreground);
    line-height: 1.5;
    word-wrap: break-word;
  }

  /* Marquee (.banner-item) + static (__line): emphasis must exceed parent 500 / medium weights */
  .announcement-bar-standalone .banner-item strong,
  .announcement-bar-standalone .announcement-bar-standalone__banner-item strong,
  .announcement-bar-standalone .announcement-bar-standalone__text strong,
  .announcement-bar-standalone .announcement-bar-standalone__line strong,
  .announcement-bar-standalone strong.announcement-bar-standalone__em {
    font-weight: var(--font-weight-bold, 700);
    font-synthesis: weight;
  }

  /* Link wrapper - makes entire bar clickable when URL is provided */
  .announcement-bar-standalone__link {
    display: block;
    width: 100%;
    text-decoration: none;
    color: inherit;
  }

  /* Marquee link: full-width clickable bar, cursor pointer */
  .announcement-bar-standalone__marquee-link {
    cursor: pointer;
    min-height: 22px;
  }

  /* Hover state for clickable announcement bar (subtle so pause is the main feedback) */
  .announcement-bar-standalone__link:hover,
  .announcement-bar-standalone__layout--has-link:hover {
    opacity: 0.95;
    transition: opacity 0.2s ease;
  }

  /* Responsive: marquee and content min-height on smaller screens */
  @media screen and (max-width: 749px) {
    .announcement-bar-standalone__content {
      min-height: 20px;
    }
    .announcement-bar-standalone__marquee,
    .announcement-bar-standalone__marquee-link {
      min-height: 20px;
    }

    .announcement-bar-standalone__layout--has-heading:not(.announcement-bar-standalone__layout--static) {
      flex-direction: column;
      gap: 0.25rem 0;
      align-items: center;
    }

    .announcement-bar-standalone__layout--has-heading:not(.announcement-bar-standalone__layout--static) .announcement-bar-standalone__heading {
      max-width: 100%;
      text-align: center;
    }

    .announcement-bar-standalone__layout--has-heading:not(.announcement-bar-standalone__layout--static)
      .announcement-bar-standalone__marquee {
      width: 100%;
    }

    .announcement-bar-standalone__layout--has-heading.announcement-bar-standalone__layout--static {
      flex-direction: column;
      gap: 0.25rem 0;
      align-items: center;
    }

    .announcement-bar-standalone__heading {
      max-width: 92vw;
      text-align: center;
      white-space: normal;
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
    }
  }

  /* Full bar feels clickable when a URL is set (link uses display:contents) */
  .announcement-bar-standalone__layout--has-link {
    cursor: pointer;
  }
/* END_SECTION:announcement-bar */

/* START_SECTION:banner-7-carousel (INDEX:2) */
.banner-7-carousel {
    position: relative;
    margin-block-start: var(--padding-xl);
    --category-panels-atc-bg: var(--b7-atc-bg-mobile, #ffd334);
    --category-panels-atc-fg: var(--b7-atc-fg-mobile, #111111);
  }

  @media screen and (min-width: 750px) {
    .banner-7-carousel {
      --category-panels-atc-bg: var(--b7-atc-bg-desktop, #ffd334);
      --category-panels-atc-fg: var(--b7-atc-fg-desktop, #111111);
    }
  }

  .banner-7-carousel__background {
    position: absolute;
    inset: 0;
    background: var(--b7-bg-mobile, rgb(var(--color-foreground-rgb) / var(--opacity-5)));
    pointer-events: none;
  }

  @media screen and (min-width: 990px) {
    .banner-7-carousel__background {
      background: var(--b7-bg-desktop, var(--b7-bg-mobile, rgb(var(--color-foreground-rgb) / var(--opacity-5))));
    }
  }

  .banner-7-carousel__inner {
    position: relative;
  }

  /* Full-width rail: inner spans the section; horizontal inset from theme editor only (default 0). */
  .banner-7-carousel .banner-7-carousel__inner.spacing-style {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-inline-start: var(--b7-padding-inline-start, 0px);
    padding-inline-end: var(--b7-padding-inline-end, 0px);
  }

  .banner-7-carousel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap-md);
    position: relative;
    z-index: 5;
  }

  .banner-7-carousel__heading {
    margin: 0;
    font-size: var(--banner-7-heading-font-size, 24px);
    color: var(--banner-7-heading-color, #FFFFFF);
  }

  /* Prev/next chrome + chevron: assets/component-carousel-nav-arrow.css — desktop & mobile */
  .banner-7-carousel__nav {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
    pointer-events: auto;
  }

  .banner-7-carousel__layout {
    display: grid;
    grid-template-columns: minmax(0, 0.38fr) minmax(0, 0.62fr);
    gap: var(--gap-lg);
    padding-block: var(--padding-xl);
    align-items: center;
  }

  .banner-7-carousel__banner {
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: stretch;
    justify-content: center;
    opacity: 1;
  }

  .banner-7-carousel__banner-placeholder,
  .banner-7-carousel__banner-image {
    width: 100%;
    height: 100%;
    min-height: 360px;
    border-radius: var(--border-radius-lg);
    background: rgb(var(--color-foreground-rgb) / var(--opacity-10));
    color: rgb(var(--color-foreground-rgb) / var(--opacity-70));
    font-weight: 600;
  }

  .banner-7-carousel__banner-placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-sizing: border-box;
  }

  .banner-7-carousel__banner-image {
    object-fit: cover;
    display: block;
    border-radius: var(--border-radius-lg);
  }

  /* Mobile banner image: hidden by default, shown on mobile when present */
  .banner-7-carousel__banner-image--mobile {
    display: none;
  }

  @media screen and (max-width: 749px) {
    .has-mobile-banner .banner-7-carousel__banner-image--desktop {
      display: none;
    }

    .banner-7-carousel__banner-image--mobile {
      display: block;
      width: 100%;
      min-height: 260px;
      border-radius: var(--border-radius-lg);
    }
  }

  .banner-7-carousel__banner-link {
    display: block;
    width: 100%;
    height: auto;
    text-decoration: none;
    line-height: 0;
  }

  .banner-7-carousel__rail {
    overflow-x: hidden;
    overflow-y: hidden;
    padding: 0;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
    min-height: 0;
    touch-action: pan-y pinch-zoom;
  }

  .banner-7-carousel__rail::-webkit-scrollbar {
    display: none;
  }

  .banner-7-carousel:not(.banner-7-carousel--marquee) .banner-7-carousel__rail {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
  }

  .banner-7-carousel__rail-track {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: var(--gap-lg);
    width: max-content;
    align-items: center;
  }

  @keyframes banner-7-marquee-rtl {
    from {
      transform: translate3d(0, 0, 0);
    }

    to {
      transform: translate3d(-50%, 0, 0);
    }
  }

  @keyframes banner-7-marquee-ltr {
    from {
      transform: translate3d(-50%, 0, 0);
    }

    to {
      transform: translate3d(0, 0, 0);
    }
  }

  .banner-7-carousel__rail-track--marquee {
    animation: banner-7-marquee-rtl var(--banner-7-marquee-duration, 45s) linear infinite;
    will-change: transform;
    backface-visibility: hidden;
  }

  .banner-7-carousel--dir-ltr .banner-7-carousel__rail-track--marquee {
    animation-name: banner-7-marquee-ltr;
  }

  @media (prefers-reduced-motion: reduce) {
    .banner-7-carousel__rail-track--marquee {
      animation: none !important;
      transform: none !important;
    }
  }

  .banner-7-carousel--pause-hover .banner-7-carousel__rail:hover .banner-7-carousel__rail-track--marquee,
  .banner-7-carousel--focus-pause .banner-7-carousel__rail:focus-within .banner-7-carousel__rail-track--marquee,
  .banner-7-carousel--pointer-pause .banner-7-carousel__rail-track--marquee,
  .banner-7-carousel--offscreen .banner-7-carousel__rail-track--marquee {
    animation-play-state: paused;
  }

  .banner-7-carousel:not(.banner-7-carousel--marquee) .banner-7-carousel__rail-item {
    scroll-snap-align: start;
  }

  @media screen and (max-width: 749px) {
    .banner-7-carousel__rail-item {
      flex: 0 0 173px;
      width: 173px;
      max-width: 100%;
      min-width: 0;
      box-sizing: border-box;
      padding-bottom: 10px;
      opacity: 1;
      transform: none;
    }

    .banner-7-carousel .category-panels-card {
      width: 173px;
      max-width: 100%;
      height: 295px;
      min-height: 295px;
      box-sizing: border-box;
      border-radius: 5px;
      border-width: 1px;
      border-style: solid;
      border-color: rgb(var(--color-foreground-rgb) / var(--opacity-10));
      opacity: 1;
      transform: none;
      position: relative;
      z-index: 2;
    }

    /* Fixed 2-line title slot: same height on every card so content below lines up */
    .banner-7-carousel .category-panels-card__title {
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      overflow: hidden;
      line-height: 1.35;
      word-break: break-word;
      overflow-wrap: anywhere;
      min-height: calc(var(--b7-panel-title-font-size-mobile, 12px) * 1.35 * 2);
      max-height: calc(var(--b7-panel-title-font-size-mobile, 12px) * 1.35 * 2);
      flex-shrink: 0;
    }

    .banner-7-carousel .category-panels-card__title-link {
      display: inline;
    }

    /* Price row: hug content (Figma), min 21px */
    .banner-7-carousel .category-panels-card__price {
      flex: 0 0 auto;
      flex-shrink: 0;
      align-items: flex-start;
      align-content: flex-start;
      row-gap: 4px;
      column-gap: 6px;
      min-height: 21px;
      height: auto;
      max-height: none;
      overflow: visible;
      box-sizing: border-box;
    }

    .banner-7-carousel .category-panels-card__atc {
      flex-shrink: 0;
      margin-top: auto;
    }
  }

  @media screen and (min-width: 750px) {
    .banner-7-carousel__rail-item {
      flex: 0 0 244px;
      width: 244px;
      max-width: 100%;
      min-width: 0;
      box-sizing: border-box;
      padding-bottom: 10px;
      opacity: 1;
    }

    .banner-7-carousel .category-panels-card {
      width: 244px;
      max-width: 100%;
      height: 391px;
      box-sizing: border-box;
      border-radius: 5px;
      border-width: 1px;
      border-style: solid;
      border-color: rgb(var(--color-foreground-rgb) / var(--opacity-10));
    }

    /* Desktop CTA: match with-timer (224×40, padding, radius, bottom edge). Colors from section settings → --b7-atc-*. */
    .banner-7-carousel .category-panels-card__atc {
      margin-inline: auto;
      margin-top: auto;
      margin-bottom: 0;
      width: 224px;
      max-width: 100%;
      height: 40px;
      min-height: 0;
      padding: 10px 20px;
      border-radius: 5px;
      border-bottom: 2px solid #c9a420;
      box-sizing: border-box;
      opacity: 1;
      flex-shrink: 0;
    }

    .banner-7-carousel .category-panels-card__atc:hover {
      background: color-mix(in srgb, var(--category-panels-atc-bg) 90%, #000000);
      color: var(--category-panels-atc-fg);
    }
  }

  .banner-7-carousel .category-panels-card__media {
    flex-shrink: 0;
  }

  .banner-7-carousel .category-panels-card__body {
    gap: 8px;
    flex: 1;
    min-height: 0;
  }

  .banner-7-carousel .category-panels-card__title,
  .banner-7-carousel .category-panels-card__title-link {
    font-size: var(--b7-panel-title-font-size-mobile, 12px);
  }

  .banner-7-carousel .category-panels-card__price {
    font-size: var(--b7-panel-price-font-size-mobile, 16px);
    line-height: 1.35;
  }

  .banner-7-carousel .category-panels-card__price-current {
    font-size: 1em;
  }

  .banner-7-carousel .category-panels-card__price-compare,
  .banner-7-carousel .category-panels-card__price-discount {
    font-size: 0.8125em;
  }

  @media screen and (min-width: 750px) {
    .banner-7-carousel__layout {
      grid-template-columns: minmax(0, 392px) minmax(0, 1fr);
      align-items: center;
    }

    .banner-7-carousel__banner {
      width: 392px;
      max-width: 100%;
      height: 489px;
      flex-shrink: 0;
    }

    .banner-7-carousel__banner-placeholder,
    .banner-7-carousel__banner-image {
      min-height: 0;
    }

    .banner-7-carousel__banner-placeholder {
      flex: 1 1 auto;
      min-height: 0;
      padding: 229px 144px;
    }

    .banner-7-carousel .category-panels-card__title,
    .banner-7-carousel .category-panels-card__title-link {
      font-size: var(--b7-panel-title-font-size, 12px);
    }

    .banner-7-carousel .category-panels-card__price {
      min-height: unset;
      max-height: unset;
      overflow: visible;
      flex-shrink: 1;
      line-height: normal;
      font-size: var(--b7-panel-price-font-size, 14px);
    }

    .banner-7-carousel .category-panels-card__price-current,
    .banner-7-carousel .category-panels-card__price-compare,
    .banner-7-carousel .category-panels-card__price-discount {
      font-size: var(--b7-panel-price-font-size, 14px);
    }

    .banner-7-carousel .category-panels-card__body {
      gap: 12px;
    }
  }

  .banner-7-carousel__mobile-grid {
    display: none;
  }

  @media screen and (max-width: 749px) {
    .banner-7-carousel {
      margin-block-start: var(--padding-lg);
      position: relative;
      overflow: visible;
    }

    .banner-7-carousel__inner {
      position: relative;
      overflow: visible;
    }

    .banner-7-carousel__layout {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      padding-block: var(--padding-lg);
      position: relative;
      overflow: visible;
      gap: 0;
    }

    .banner-7-carousel__nav {
      display: none;
    }

    .banner-7-carousel__banner {
      position: relative;
      display: block;
      flex-shrink: 0;
      height: auto;
      margin-block-end: var(--gap-md);
      min-width: 0;
    }

    .banner-7-carousel__banner-link {
      width: 100%;
      height: auto;
    }

    .banner-7-carousel__banner-image {
      min-height: 260px;
      border-radius: var(--border-radius-lg);
      margin-bottom: 0;
      display: block;
      width: 100%;
    }

    .banner-7-carousel__banner-placeholder {
      min-height: 260px;
      border-radius: var(--border-radius-lg);
      margin-bottom: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 10px;
      width: 100%;
    }

    .banner-7-carousel__rail {
      display: none !important;
    }

    .banner-7-carousel--mobile-marquee.banner-7-carousel--marquee .banner-7-carousel__rail {
      display: block !important;
      width: 100%;
      margin-block-start: var(--gap-md);
      min-height: 260px;
    }

    .banner-7-carousel--mobile-marquee .banner-7-carousel__rail-item {
      flex: 0 0 173px;
      width: 173px;
    }

    .banner-7-carousel--mobile-marquee .banner-7-carousel__mobile-grid {
      display: none !important;
    }

    .banner-7-carousel__mobile-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: var(--b7-mobile-grid-gap, var(--gap-md));
      position: relative;
      margin-block-start: 0;
      margin-block-end: 0;
      padding-block-start: 0;
      flex-shrink: 0;
      min-width: 0;
    }

    .banner-7-carousel__mobile-grid-item {
      min-width: 0;
      position: relative;
    }

    .banner-7-carousel__mobile-cta-wrap {
      grid-column: 1 / -1;
      margin-top: var(--gap-md);
      position: relative;
    }

    .banner-7-carousel__mobile-cta {
      display: flex;
      width: 100%;
      justify-content: center;
      align-items: center;
      height: 44px;
      border-radius: 8px;
      background: #B1020C;
      color: #fff;
      text-decoration: none;
      font-weight: 600;
    }
  }

  @media screen and (max-width: 576px) {
    .banner-7-carousel__heading {
      font-size: var(--banner-7-heading-font-size-mobile);
      color: var(--banner-7-heading-color, #FFFFFF);
    }
  }
/* END_SECTION:banner-7-carousel */

/* START_SECTION:banner-frame-1410103214 (INDEX:3) */
.banner-frame-1410103214__inner {
    position: relative;
    height: var(--banner-height);
    width: 100%;
    background: var(--banner-bg-color);
    overflow: hidden;
    border-radius: 0;
  }

  .banner-frame-1410103214__link {
    position: absolute;
    inset: 0;
    z-index: var(--layer-raised);
  }

  

  .banner-frame-1410103214__background-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
  }

  /* Desktop only media */
  .banner-frame-1410103214__background-media--mobile {
    display: none;
  }

  @media (max-width: 749px) {
    .banner-frame-1410103214__background-media--desktop {
      display: none;
    }
    .banner-frame-1410103214__background-media--mobile {
      display: block;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      object-position: center center;
    }
  }

  .banner-frame-1410103214__content {
    position: relative;
    z-index: var(--layer-raised);
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-inline: var(--page-margin);
    pointer-events: none;
  }

  .banner-frame-1410103214__content :is(a, button, input, textarea, select) {
    pointer-events: auto;
  }

  .banner-frame-1410103214__heading {
    color: var(--color-foreground);
    font-family: var(--font-body--family);
    font-style: var(--font-body--style);
    font-weight: 400;
    font-size: 24px;
    line-height: 1.5;
  }

  .banner-frame-1410103214__heading > * {
    margin: 0;
  }
/* END_SECTION:banner-frame-1410103214 */

/* START_SECTION:banner-inline-carousel (INDEX:4) */
/* ========== MOBILE (base) — PRD section 0.3 ========== */
  .banner-inline-carousel {
    position: relative;
    margin-block-start: var(--padding-xl, 1.5rem);
    --category-panels-atc-bg: var(--bic-atc-bg-mobile, #ffd334);
    --category-panels-atc-fg: var(--bic-atc-fg-mobile, #111111);
  }

  @media screen and (min-width: 750px) {
    .banner-inline-carousel {
      --category-panels-atc-bg: var(--bic-atc-bg-desktop, #ffd334);
      --category-panels-atc-fg: var(--bic-atc-fg-desktop, #111111);
    }
  }

  .banner-inline-carousel__background {
    position: absolute;
    inset: 0;
    background: var(--bic-bg-mobile, rgb(var(--color-foreground-rgb) / var(--opacity-5)));
    pointer-events: none;
  }

  @media screen and (min-width: 990px) {
    .banner-inline-carousel__background {
      background: var(--bic-bg-desktop, var(--bic-bg-mobile, rgb(var(--color-foreground-rgb) / var(--opacity-5))));
    }
  }

  .banner-inline-carousel__inner {
    position: relative;
    box-sizing: border-box;
  }

  /* Full-width row; horizontal inset is per banner and per track (not shared on inner). */
  .banner-inline-carousel .banner-inline-carousel__inner.spacing-style {
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    box-sizing: border-box;
    padding-inline: 0;
  }

  /* Full-width row; height follows image intrinsic ratio (no fixed min-height on the wrapper). */
  .banner-inline-carousel__banner {
    position: relative;
    width: 100%;
    height: auto;
    max-width: none;
    margin-inline: 0;
    padding-inline-start: var(--bic-banner-padding-inline-start, 0px);
    padding-inline-end: var(--bic-banner-padding-inline-end, 0px);
    box-sizing: border-box;
    opacity: 1;
    border-bottom-width: 1px;
    border-bottom-style: solid;
    border-bottom-color: rgb(var(--color-foreground-rgb) / var(--opacity-10));
  }

  .banner-inline-carousel__banner-placeholder {
    width: 100%;
    min-height: 15.625rem; /* Figma: 250px mobile — placeholder only */
    border-radius: var(--border-radius-lg, 0.5rem);
    display: grid;
    place-items: center;
    background: var(--banner-inline-carousel-placeholder-bg, #BABABA);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-70));
    font-size: 1.5rem;
    font-weight: var(--font-weight-normal, 400);
    line-height: 1.5;
  }

  .banner-inline-carousel__banner-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: var(--border-radius-lg, 0.5rem);
    background: var(--banner-inline-carousel-placeholder-bg, #BABABA);
  }

  /* Dual assets: show mobile in flow below 750px (no absolute + cover on a fixed box). */
  .banner-inline-carousel__banner-image--desktop {
    display: none;
  }

  .banner-inline-carousel__banner-image--mobile {
    display: block;
  }

  .banner-inline-carousel__banner-link {
    display: block;
    height: auto;
    text-decoration: none;
    line-height: 0;
  }

  .banner-inline-carousel__track {
    display: none; /* hidden on mobile */
  }

  .banner-inline-carousel__mobile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--bic-mobile-grid-gap, var(--spacing-sm, 0.625rem));
    margin-top: var(--spacing-md, 0.9375rem);
    list-style: none;
    padding: 0;
    margin-inline: 0;
  }

  .banner-inline-carousel__mobile-grid-item {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-width: 0;
    min-height: 0;
  }

  .banner-inline-carousel__mobile-cta-wrap {
    grid-column: 1 / -1;
    margin-top: var(--spacing-sm, 0.625rem);
  }

  .banner-inline-carousel__mobile-cta {
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    min-height: 2.5rem; /* 40px */
    padding-inline: 2.5rem; /* 40px */
    border-radius: 0.3125rem; /* 5px */
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.36;
    background: var(--banner-inline-carousel-cta-bg, #B1020C);
    color: var(--banner-inline-carousel-cta-color, #FFFFFF);
    text-decoration: none;
  }

  .banner-inline-carousel__mobile-cta[aria-disabled="true"] {
    opacity: 0.6;
    pointer-events: none;
  }

  /* Product cards: typography + layout (same pattern as Banner 7 carousel) */
  .banner-inline-carousel .category-panels-card__media {
    flex-shrink: 0;
  }

  .banner-inline-carousel .category-panels-card__body {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: 8px;
    flex: 1 1 auto;
    min-height: 0;
  }

  .banner-inline-carousel .category-panels-card__title,
  .banner-inline-carousel .category-panels-card__title-link {
    font-size: var(--bic-panel-title-font-size-mobile, 12px);
  }

  .banner-inline-carousel .category-panels-card__price {
    font-size: var(--bic-panel-price-font-size-mobile, 16px);
    line-height: 1.35;
  }

  .banner-inline-carousel .category-panels-card__price-current {
    font-size: 1em;
  }

  .banner-inline-carousel .category-panels-card__price-compare,
  .banner-inline-carousel .category-panels-card__price-discount {
    font-size: 0.8125em;
  }

  /* Mobile product tiles: match shared card frame (snippet also sets base; reinforce stacking) */
  @media screen and (max-width: 749px) {
    .banner-inline-carousel .category-panels-card {
      flex: 1 1 auto;
      width: 173px;
      max-width: 100%;
      min-height: 295px;
      height: 100%;
      align-self: center;
      border-radius: 5px;
      border-width: 1px;
      opacity: 1;
      transform: none;
      position: relative;
      z-index: 2;
      box-sizing: border-box;
    }

    /* Match Banner 7: fixed title + price bands so ATC aligns across cards */
    .banner-inline-carousel .category-panels-card__title {
      display: -webkit-box;
      -webkit-box-orient: vertical;
      -webkit-line-clamp: 2;
      overflow: hidden;
      line-height: 1.35;
      word-break: break-word;
      overflow-wrap: anywhere;
      min-height: calc(var(--bic-panel-title-font-size-mobile, 12px) * 1.35 * 2);
      max-height: calc(var(--bic-panel-title-font-size-mobile, 12px) * 1.35 * 2);
      flex-shrink: 0;
    }

    .banner-inline-carousel .category-panels-card__title-link {
      display: inline;
    }

    .banner-inline-carousel .category-panels-card__price {
      flex: 0 0 auto;
      flex-shrink: 0;
      align-items: flex-start;
      align-content: flex-start;
      row-gap: 4px;
      column-gap: 6px;
      min-height: 21px;
      height: auto;
      max-height: none;
      overflow: visible;
      box-sizing: border-box;
    }

    .banner-inline-carousel .category-panels-card__body {
      gap: 8px;
    }

    .banner-inline-carousel .category-panels-card__atc {
      flex-shrink: 0;
      margin-top: auto;
    }
  }

  /* ========== DESKTOP (750px+) — PRD section 0.3 ========== */
  @media (min-width: 750px) {
    .banner-inline-carousel__banner-placeholder {
      min-height: 395px; /* empty-state slot only; real banners stay height:auto */
    }

    .banner-inline-carousel__banner-image--desktop {
      display: block;
    }

    .banner-inline-carousel__banner-image--mobile {
      display: none;
    }

    .banner-inline-carousel__track {
      display: grid;
      grid-template-columns: 35px minmax(0, 1fr) 35px;
      gap: var(--spacing-md, 0.9375rem);
      box-sizing: border-box;
      padding-block-start: var(--bic-track-padding-block-start, 25px);
      padding-block-end: var(--bic-track-padding-block-end, 25px);
      padding-inline-start: var(--bic-track-padding-inline-start, 0px);
      padding-inline-end: var(--bic-track-padding-inline-end, 0px);
      margin-top: var(--spacing-lg, 1.5rem);
      border-radius: var(--border-radius-lg, 0.5rem);
      background: var(--banner-inline-carousel-track-bg, rgb(var(--color-foreground-rgb) / var(--opacity-8)));
      position: relative;
      align-items: center;
    }

    .banner-inline-carousel__track-col {
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 0;
    }

    /* Match circular-items-row__nav column behavior (hit target + stacking) */
    .banner-inline-carousel__track-col--left,
    .banner-inline-carousel__track-col--right {
      flex-shrink: 0;
      position: relative;
      z-index: 2;
      pointer-events: auto;
    }

    .banner-inline-carousel__track-col--middle {
      min-width: 0;
    }

    .banner-inline-carousel__viewport {
      width: 100%;
      min-width: 0;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

    .banner-inline-carousel__viewport::-webkit-scrollbar {
      display: none;
    }

    .banner-inline-carousel__rail {
      display: flex;
      gap: 12px;
      width: max-content;
    }

    .banner-inline-carousel__rail-item {
      flex: 0 0 244px;
      padding-bottom: 10px;
      border-radius: 5px;
      opacity: 1;
      transform: none;
      box-sizing: border-box;
      overflow: hidden;
      scroll-snap-align: start;
    }

    .banner-inline-carousel .category-panels-card {
      width: 244px;
      max-width: 100%;
      height: 391px;
      min-height: 0;
      border-radius: 5px;
      border-width: 1px;
      border-style: solid;
      border-color: rgb(var(--color-foreground-rgb) / var(--opacity-10));
      box-sizing: border-box;
    }

    .banner-inline-carousel .category-panels-card__title,
    .banner-inline-carousel .category-panels-card__title-link {
      font-size: var(--bic-panel-title-font-size, 12px);
    }

    .banner-inline-carousel .category-panels-card__price {
      min-height: unset;
      max-height: unset;
      overflow: visible;
      flex-shrink: 1;
      line-height: normal;
      font-size: var(--bic-panel-price-font-size, 14px);
    }

    .banner-inline-carousel .category-panels-card__price-current,
    .banner-inline-carousel .category-panels-card__price-compare,
    .banner-inline-carousel .category-panels-card__price-discount {
      font-size: var(--bic-panel-price-font-size, 14px);
    }

    .banner-inline-carousel .category-panels-card__body {
      gap: 12px;
    }

    /* Desktop CTA: match with-timer (224×40, padding, radius, bottom edge). Colors from section settings → --bic-atc-*. */
    .banner-inline-carousel .category-panels-card__atc {
      margin-inline: auto;
      margin-top: auto;
      margin-bottom: 0;
      width: 224px;
      max-width: 100%;
      height: 40px;
      min-height: 0;
      padding: 10px 20px;
      border-radius: 5px;
      border-bottom: 2px solid #c9a420;
      box-sizing: border-box;
      opacity: 1;
      flex-shrink: 0;
    }

    .banner-inline-carousel .category-panels-card__atc:hover {
      background: color-mix(in srgb, var(--category-panels-atc-bg) 90%, #000000);
      color: var(--category-panels-atc-fg);
    }

    /* Track arrows — chrome + chevron: assets/component-carousel-nav-arrow.css */

    .banner-inline-carousel__mobile-grid,
    .banner-inline-carousel__mobile-cta-wrap {
      display: none;
    }
  }
/* END_SECTION:banner-inline-carousel */

/* START_SECTION:best-deals-live-tv (INDEX:5) */
.best-deals-live-tv__heart-icon {
  position: absolute;
  top: 10px;
  right: 10px;

  width: 36px;
  height: 36px;

  border: none;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
}

.best-deals-live-tv__heart-icon-svg {
  width: 25px;
  height: 25px;
  display: block;
}

.best-deals-live-tv__badge-layer {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 3;
  pointer-events: none;
}

  .best-deals-live-tv {
    width: 100%;
    background: var(--color-background);
  }

  .best-deals-live-tv__inner {
    max-width: 1440px;
    margin: 0 auto;
    padding: 40px 50px 60px;
    display: flex;
    flex-direction: column;
  }

  .best-deals-live-tv__heading-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 30px;
  }

  .best-deals-live-tv__heading {
    font-family: 'Nunito Sans', var(--font-heading--family);
    font-weight: 700;
    font-size: 28px;
    line-height: 150%;
    letter-spacing: 0;
    text-align: center;
    color: var(--best-deals-heading-color, #333333);
    margin: 0;
  }

  .best-deals-live-tv__intro {
    margin: 0 auto 32px;
    max-width: 900px;
    text-align: center;
    color: var(--color-foreground);
  }

  .best-deals-live-tv__heading-controls {
    display: none;
  }

  .best-deals-live-tv__carousel-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }

  .best-deals-live-tv__carousel {
    width: 100%;
    max-width: 1328px;
    display: flex;
    gap: 24px;
    padding: 4px 0;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .best-deals-live-tv__carousel::-webkit-scrollbar {
    display: none;
  }

 .best-deals-live-tv__card {
  width: 244px;
  height: 391px;

  display: flex;
  flex-direction: column;
  gap: 12px;

  padding: 12px 12px 10px; /* bottom padding = 10px */

  background: #ffffff;
  border: 1px solid #eeeeee;
  border-radius: 5px;

  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.1);

  flex: 0 0 auto;
  scroll-snap-align: start;
}


  .best-deals-live-tv__image-wrapper {
  width: 100%;        /* equals 244px via card */
  height: 244px;      /* exact Figma value */

  position: relative;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 5px; /* if Figma image radius = 5 */
  overflow: hidden;
}


  .best-deals-live-tv__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .best-deals-live-tv__favorite {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .best-deals-live-tv__heart {
    width: 20px;
    height: 20px;
    display: block;
    background: url({{ 'icon-heart.svg' | asset_url }}) center/contain no-repeat;
  }

  .best-deals-live-tv__card-body {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }

  .best-deals-live-tv__rating {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(33, 33, 33, 0.8);
    font-size: 12px;
  }

  .best-deals-live-tv__star-icon svg {
    width: 16px;
    height: 16px;
    fill: #f6b22e;
  }

  .best-deals-live-tv__rating-value {
    font-weight: 700;
    font-size: 13px;
  }

 .best-deals-live-tv__product-title {
  font-family: 'Nunito Sans', var(--font-heading--family);
  font-weight: 400;
  font-size: 14px;
  line-height: 150%;

  color: rgba(98, 97, 97, 1);

  margin: 0;

  padding-left: 10px;
  padding-right: 10px;

  min-height: 42px; /* matches Figma height */
}


  .best-deals-live-tv__product-title a {
    color: inherit;
    text-decoration: none;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .best-deals-live-tv__pricing {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
  }

  .best-deals-live-tv__current-price {
    font-weight: 700;
  }

  .best-deals-live-tv__original-price {
    text-decoration: line-through;
    color: rgba(33, 33, 33, 0.6);
  }

  .best-deals-live-tv__discount {
    color: #d30808;
  }

  .best-deals-live-tv__add-to-cart-form {
    margin-top: auto;
  }

 .best-deals-live-tv__add-to-cart {
    width: 224px;
    height: 40px;

    padding: 10px 20px;
    gap: 10px;

    display: flex;              /* Flow: HORIZONTAL */
    align-items: center;
    justify-content: center;

    border-radius: 5px;
    border: none;

    background: rgba(255, 211, 52, 1);
    color: #1a1a1a;

    font-family: 'Nunito Sans', var(--font-heading--family);
    font-size: 14px;
    font-weight: 700;

    cursor: pointer;
}


  .best-deals-live-tv__add-to-cart:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

  .best-deals-live-tv__arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #E0E0E0;
    background: #ffffff;
    color: #333333;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.2s ease;
    padding: 0;
    flex-shrink: 0;
  }

  .best-deals-live-tv__arrow:hover {
    background-color: #F5F5F5;
  }

  .best-deals-live-tv__arrow-svg {
    width: 8px;
    height: 14px;
    display: block;
  }

  /* Rotate the right arrow */
  .best-deals-live-tv__arrow[data-direction='right'] .best-deals-live-tv__arrow-svg {
    transform: rotate(180deg);
  }

  .best-deals-live-tv__empty {
    padding: 24px;
    text-align: center;
    color: rgba(33, 33, 33, 0.7);
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
    border: 1px dashed rgba(33, 33, 33, 0.2);
  }

  @media (max-width: 749px) {
    .best-deals-live-tv__inner {
      padding: 32px 16px 48px;
    }

    .best-deals-live-tv__heading-row {
      justify-content: space-between;
      margin-bottom: 11px;
    }

    .best-deals-live-tv__heading {
      text-align: left;
      max-width: 358px;
    }

    .best-deals-live-tv__heading-controls {
      display: flex;
      gap: 8px;
    }

    .best-deals-live-tv__carousel-shell {
      grid-template-columns: 1fr;
    }

    .best-deals-live-tv__carousel-arrow {
      display: none;
    }

    .best-deals-live-tv__carousel {
      gap: 10px;
      padding: 0;
      max-width: 100%;
    }

    .best-deals-live-tv__card {
    width: 165px;
    height: 295px;

    display: flex;
    flex-direction: column; /* Flow: VERTICAL */
    gap: 12px;

    padding: 12px 12px 10px;

    background: #ffffff;
    border: 1px solid rgba(221, 221, 221, 1);
    border-radius: 5px;

    flex: 0 0 auto;
   }
   
   .best-deals-live-tv__add-to-cart {
    width: 100%;
    height: 40px;

    padding: 10px 20px;
    gap: 10px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 5px;
    background: rgba(255, 211, 52, 1);

    box-sizing: border-box;
  }

   .best-deals-live-tv__heading {
    width: 155px;
    height: 24px;

    font-family: 'Nunito Sans', var(--font-heading--family);
    font-weight: 600;          /* SemiBold */
    font-size: 16px;
    line-height: 150%;

    text-align: center;
    color: #333333;

    white-space: nowrap;      /* prevents second line */
    }
  }
/* END_SECTION:best-deals-live-tv */

/* START_SECTION:category-panels (INDEX:8) */
/**
   * Component: Category Panels
   * Description: Styles for the panel rail + per-panel 2×2 product grid.
   *
   * BEM:
   * - .category-panels
   * - .category-panels__header / __heading / __controls
   * - .category-panels__panel / __panel-header / __grid
   *
   * Notes:
   * - Colors are driven via CSS custom properties set on the section element,
   *   so the Theme Editor can control background/ATC colors.
   */

  .category-panels {
    position: relative;
  }

  .category-panels__background {
    position: absolute;
    inset: 0;
    background: var(--category-panels-bg, rgb(var(--color-foreground-rgb) / var(--opacity-5)));
    pointer-events: none;
  }

  .category-panels__inner {
    position: relative;
  }

  .category-panels__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap-md);
    padding-inline: 0;
  }

  .category-panels__heading {
    margin: 0;
  }

  .category-panels__nav {
    display: flex;
    gap: var(--gap-xs);
    align-items: center;
  }

  .category-panels__nav-btn {
    width: 44px;
    height: 44px;
    border-radius: 999px;
    border: 1px solid rgb(var(--color-foreground-rgb) / var(--opacity-10));
    background: var(--color-background);
    box-shadow: var(--shadow-sm);
    display: grid;
    place-items: center;
    cursor: pointer;
  }

  .category-panels__nav-btn .svg-wrapper {
    width: var(--icon-size-sm);
  }

  .category-panels__nav-btn:disabled {
    opacity: 0.45;
    cursor: not-allowed;
  }

  /* Panel rail (always horizontal; desktop fits 3 panels, smaller screens scroll) */
  .category-panels__rail {
    display: flex;
    flex-wrap: nowrap;
    gap: var(--gap-lg);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding: 0;
    padding-block: var(--padding-xl);
    align-items: stretch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

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

  .category-panels__panel {
    background: var(--color-background);
    border-radius: var(--border-radius-lg);
    padding: var(--padding-lg);
    box-shadow: var(--shadow-sm);
    min-width: 0;
    height: 100%;
    scroll-snap-align: start;
    flex: 0 0 calc((100% - (2 * var(--gap-lg))) / 3);
  }

  .category-panels__panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap-sm);
    margin-bottom: var(--padding-md);
  }

  .category-panels__panel-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    min-width: 0;
  }

  .category-panels__panel-icon {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .category-panels__panel-icon svg,
  .category-panels__panel-icon img {
    width: 100%;
    height: 100%;
  }

  .category-panels__panel-title-text {
    font-weight: 600;
  }

  .category-panels__panel-cta {
    display: inline-flex;
    align-items: center;
    gap: var(--gap-3xs);
    color: #1E35B1;
    text-decoration: none;
    white-space: nowrap;
  }

  .category-panels__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--gap-md);
  }

  .category-panels__grid-item {
    min-width: 0;
  }

  @media screen and (max-width: 989px) {
    .category-panels__header {
      padding-inline: var(--padding-lg);
    }

    .category-panels__panel {
      padding: var(--padding-md);
      flex: 0 0 85vw;
    }
  }

  /* Mobile card frame (173×295, 5px radius, 1px border): snippet; keep tiles above panel shadows */
  @media screen and (max-width: 749px) {
    .category-panels .category-panels-card {
      position: relative;
      z-index: 2;
      opacity: 1;
      transform: none;
    }
  }
/* END_SECTION:category-panels */

/* START_SECTION:collection-links (INDEX:11) */
collection-links-component {
    --alignment: flex-start;

    display: grid;
    align-items: center;
    grid-gap: var(--gap-3xl);

    &:has([ratio='portrait']) {
      --template-column-ratio: 0.8fr;
    }

    &:has([ratio='square']) {
      --template-column-ratio: 1fr;
    }

    &:has([ratio='landscape']) {
      --template-column-ratio: 1.4fr;
    }

    &[alignment='center'] {
      --alignment: center;

      .text-block {
        text-align: center;
      }
    }

    &[alignment='right'] {
      --alignment: flex-end;

      .text-block {
        text-align: right;
      }
    }

    &[layout='spotlight'] {
      position: relative;
      grid-template-columns: 1fr var(--template-column-ratio);
      grid-template-areas: 'text image';

      @media (min-width: 749px) {
        &[reverse] {
          grid-template-areas: 'image text';
          grid-template-columns: var(--template-column-ratio) 1fr;
        }
      }

      .collection-links__container {
        align-items: var(--alignment);
      }

      @media (max-width: 749px) {
        grid-template-columns: 1fr;
        grid-template-areas: 'text' 'image';
        grid-gap: var(--gap-2xl);

        .collection-links__container {
          gap: clamp(var(--gap-xs), 1vw, var(--gap-xl)) var(--gap-2xl);
          justify-content: var(--alignment);
        }
      }
    }

    &[layout='text'] {
      grid-gap: 0;
      grid-template-areas: 'text';

      .collection-links__container {
        gap: clamp(var(--gap-xs), 1vw, var(--gap-xl)) var(--gap-2xl);
        flex-wrap: wrap;
        flex-direction: row;
        justify-content: var(--alignment);
      }
    }
  }

  .collection-links__container {
    display: flex;
    gap: var(--gap-md);
    flex-direction: column;
  }

  .collection-links__images {
    overflow: hidden;
    grid-area: image;

    @media (max-width: 749px) {
      image-block {
        max-width: 100%;
      }
    }
  }
/* END_SECTION:collection-links */

/* START_SECTION:collection-promotional-banner (INDEX:13) */
.promotional-banner {
    width: 100%;
    /* PRD: Container background #F5F5F5 (light gray) per Figma specification */
    background-color: #F5F5F5;
    /* PRD: Container border radius 10px per Figma specification */
    border-radius: 10px;
  }
  
  .promotional-banner__container {
    width: 100%;
    max-width: none;
    margin: 0;
    /* Remove left/right padding to prevent clipped first letters */
    padding-inline: 48px;
    overflow: visible;
  }
  
  .promotional-banner__content {
    /* Align content naturally from the left (no clipping) */
    text-align: center;
    overflow: visible;
  }

  /* Breadcrumb is in a separate section (custom-liquid) below this block on mobile; duplicate here for order above heading */
  .promotional-banner__breadcrumb-wrap {
    display: none;
  }

  @media screen and (max-width: 749px) {
    main[data-template='collection']:has(.promotional-banner) .shopify-section:not(:has(.promotional-banner)) nav.collection-breadcrumb {
      display: none !important;
    }

    .promotional-banner__breadcrumb-wrap {
      display: block;
      width: 100%;
    }

    .promotional-banner__breadcrumb-wrap .collection-breadcrumb {
      margin: 0 auto 10px;
    }
  }
  
  .promotional-banner__heading {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 150%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: var(--color-foreground, #000000);
    margin: 0 0 24px 0;
    padding-left: 0;
    padding-right: 0;
  }
  
  .promotional-banner__description {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 16px;
    leading-trim: none;
    line-height: 150%;
    letter-spacing: 0;
    text-align: center;
    vertical-align: middle;
    color: var(--color-foreground, #000000);
    margin: 0 0 24px 0;
    max-width: 836px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
  }
  
  .promotional-banner__link {
    font-family: var(--font-body--family);
    font-size: {{ section.settings.link_size }}px;
    font-weight: 400;
    color: #0066FF; /* TODO: Extract exact blue color from Figma */
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.2s ease, text-decoration 0.2s ease;
  }
  
  .promotional-banner__link:hover {
    text-decoration: underline;
    opacity: 0.8;
  }
  
  /* Collection Row Styles (Figma) */
  .promotional-banner__collection-row {
    width: 100%;
    max-width: 1515px;
    height: 149px;
    margin: 30px auto 0;
    opacity: 1;
    padding-left: 0;
    padding-right: 0;
    overflow: visible;
    display: flex;
    justify-content: center;
  }
  
  .promotional-banner__collection-scroll {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    height: 149px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    -webkit-overflow-scrolling: touch; /* iOS smooth scrolling */
    gap: var(--collection-row-gap, 35px);
    padding: 0;
    margin: 0;
    /* Prevent any clipping at the left edge */
    scroll-padding-left: 0;
  }
  
  @media (prefers-reduced-motion: reduce) {
    .promotional-banner__product-scroll {
      scroll-behavior: auto;
    }
  }
  
  .promotional-banner__collection-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
    width: 0;
    height: 0;
  }
  
  .promotional-banner__collection-scroll::-webkit-scrollbar-track {
    background: transparent;
  }
  
  .promotional-banner__collection-scroll::-webkit-scrollbar-thumb {
    background: transparent;
  }
  
  .promotional-banner__collection-card {
    flex: 0 0 auto;
    scroll-snap-align: start;
    width: 120px;
    height: 149px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    opacity: 1;
    text-decoration: none;
    color: inherit;
  }

  .promotional-banner__collection-image {
    width: 120px;
    height: 120px;
    border-radius: 10px;
    overflow: hidden;
    background: #f7f7f7;
    flex: 0 0 auto;
  }

  .promotional-banner__collection-image img,
  .promotional-banner__collection-image svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .promotional-banner__collection-title {
    width: 87px;
    height: auto;
    min-height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito Sans', var(--font-body--family);
    font-size: 12px;
    line-height: 1.4;
    font-weight: 400;
    text-align: center;
    color: var(--color-foreground, #000000);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .promotional-banner__collection-size {
    font-family: 'Nunito Sans', var(--font-body--family);
    font-size: 11px;
    line-height: 1.3;
    font-weight: 400;
    color: var(--color-foreground-dim, #666);
    text-align: center;
  }
  
  @media screen and (max-width: 749px) {
    .promotional-banner__heading {
      font-family: 'Nunito Sans', sans-serif;
      font-weight: 500;
      font-size: 22px;
      line-height: 150%;
      letter-spacing: 0;
      text-align: center;
      vertical-align: middle;
    }

    .promotional-banner__description {
      font-family: 'Nunito Sans', sans-serif;
      font-weight: 400;
      font-style: normal;
      font-size: 12px;
      leading-trim: none;
      line-height: 150%;
      letter-spacing: 0;
      text-align: center;
      vertical-align: middle;
    }
    
    .promotional-banner__container {
      padding-inline: 12px;
    }
    
    .promotional-banner__collection-row {
      max-width: 100%;
      height: auto;
      margin-top: 20px;
    }

    .promotional-banner__collection-scroll {
      height: auto;
      gap: 20px;
    }

    .promotional-banner__collection-card {
      width: 120px;
      height: 149px;
    }
  }
  
  @media screen and (min-width: 750px) {
    .promotional-banner__collection-card {
      width: 120px;
      height: 149px;
    }
  }
/* END_SECTION:collection-promotional-banner */

/* START_SECTION:community-updates (INDEX:14) */
.community-updates__heading {
    margin: 0;
    font-weight: 700;
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.1;
  }

  .community-updates__body {
    margin-top: var(--gap-sm);
    max-width: 70ch;
    color: rgb(var(--color-foreground-rgb) / 0.85);
    font-size: 14px;
    line-height: 1.5;
  }

  .community-updates__grid {
    margin-top: var(--padding-lg);
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--gap-xl);
  }

  .community-updates__card {
    position: relative;
    display: block;
    height: 100%;
    text-decoration: none;
    color: inherit;
    border-radius: 12px;
    overflow: hidden;
  }

  .community-updates__card-media {
    position: relative;
    aspect-ratio: 4 / 5;
    background: rgb(var(--color-foreground-rgb) / var(--opacity-10));
  }

  .community-updates__img,
  .community-updates__img-placeholder {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .community-updates__img-placeholder {
    display: grid;
    place-items: center;
  }

  .community-updates__overlay {
    position: absolute;
    left: var(--gap-md);
    right: var(--gap-md);
    bottom: var(--gap-md);
    background: rgb(var(--color-background-rgb));
    border-radius: 12px;
    padding: var(--padding-md);
    box-shadow: var(--shadow-sm);
    display: grid;
    gap: 8px;
  }

  .community-updates__title {
    font-weight: 700;
    font-size: 16px;
    line-height: 1.2;
  }

  .community-updates__excerpt {
    font-size: 13px;
    line-height: 1.45;
    color: rgb(var(--color-foreground-rgb) / 0.8);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .community-updates__readmore {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    width: fit-content;
  }

  .community-updates__readmore-text {
    text-decoration: underline;
    text-underline-offset: 2px;
  }

  /* Mobile: show carousel + dots, hide grid */
  .community-updates__carousel {
    display: none;
    margin-top: var(--padding-lg);
  }

  @media screen and (max-width: 749px) {
    .community-updates__grid {
      display: none;
    }

    .community-updates__carousel {
      display: block;
    }

    .community-updates__body {
      max-width: none;
    }
  }
/* END_SECTION:community-updates */

/* START_SECTION:custom-liquid (INDEX:15) */
/* Collection Breadcrumb */
  .collection-breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    width: 100%;
    max-width: 1728px;
    margin: 0 auto 12px;
    padding: 0;
    color: var(--Blues-Primary-Blue, #191919);
    font-size: 14px;
    line-height: 1.5;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .collection-breadcrumb__link {
    color: var(--Blues-Primary-Blue, #191919);
    text-decoration: none;
  }

  .collection-breadcrumb__link:hover {
    text-decoration: underline;
  }

  .collection-breadcrumb__sep {
    color: var(--Blues-Primary-Blue, #191919);
    opacity: 0.8;
    flex: 0 0 auto;
  }

  .collection-breadcrumb__count {
    color: var(--Blues-Primary-Blue, #1E35B1);
    flex: 0 0 auto;
  }

  @media screen and (max-width: 749px) {
    .collection-breadcrumb {
      margin-bottom: 10px;
      padding: 0;
      gap: 6px;
      font-size: 13px;
    }
  }

  .collection-toolbar {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 1728px;
    height: 50px;
    background-color: #FFFFFF;
    margin: 0 auto;
    transition: transform 0.3s ease, background-color 0.25s ease;
  }

  .collection-toolbar.is-hidden {
    transform: translateY(-100%);
  }

  .collection-toolbar.is-scrolling {
    background-color: #F0F0F0;
  }

  .collection-toolbar.hide-by-seo {
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
  }

  .collection-toolbar-sentinel {
    display: block;
    height: 0;
    overflow: hidden;
    pointer-events: none;
  }

  @media screen and (min-width: 750px) {
    .collection-toolbar.is-fixed {
      position: fixed;
      top: var(--toolbar-top, 140px);
      left: 0;
      width: 100%;
      max-width: 100%;
      margin: 0;
      z-index: 200;
    }
  }

  .collection-toolbar.is-scrolling {
    background-color: #F0F0F0;
  }

  .collection-toolbar.is-scrolling :is(.collection-toolbar__filter, .collection-toolbar__count, .collection-toolbar__sort) {
    background-color: transparent;
    border-color: rgba(0,0,0,0.06);
  }

  /* Section 1: Filter (Left) */
  .collection-toolbar__filter {
    width: 210px;
    height: 50px;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid #F0F0F0;
    background: #FFFFFF;
  }

  .collection-toolbar__filter-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    font-family: inherit;
    font-size: inherit;
    color: inherit;
    width: 100%;
    height: 100%;
  }

  .collection-toolbar__filter-text {
    font-size: 16px;
    line-height: 1.5;
    flex: 1;
    text-align: left;
    font-weight: 500;  
    color: #191919
  }

  .collection-toolbar__filter-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-left: auto;
  }

  .collection-toolbar__filter-icon svg {
    width: 16px;
    height: 16px;
  }

  /* Section 2: Product Count (Center) */
  .collection-toolbar__count {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    height: 50px;
    padding: 15px 20px;
    border: 1px solid #F0F0F0;
    background: #FFFFFF;
  }

  .collection-toolbar__count-text {
    background-color: transparent;
    color: #1E35B1;;
    padding: 0;
    border-radius: 0;
    font-size: 14px;
    line-height: 1.5;
    white-space: nowrap;
    text-align: left;
    font-weight: 600;
  }

  /* Section 3: Sort (Right) */
  .collection-toolbar__sort {
   
    height: 50px;
    padding: 5px 20px;
    display: flex;
    align-items: center;
    border: 1px solid #F0F0F0;
    position: relative;
    z-index: 1;
  }

  .collection-toolbar__sort .facets__form-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .collection-toolbar__sort .facets__form {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
  }

  .collection-toolbar__sort .sorting-filter {
    width: 100%;
    position: relative;
    z-index: 1000;
  }

  .collection-toolbar__sort .sorting-filter__container {
    padding: 0;
    margin: 0;
    width: 100%;
  }

  .collection-toolbar__sort .facets__panel {
    animation-duration: 0ms;
    position: relative;
    z-index: 1001;
  }

  .collection-toolbar__sort .sorting-filter__options {
    z-index: 1002 !important;
    position: absolute !important;
  }

  .collection-toolbar__sort .facets__summary  {
    padding: 0;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
  }

  /* Label "Sortieren" – static, black */
  .collection-toolbar__sort .facets__label {
    margin: 0;
    font-size: 14px;
    color: #191919;
    font-weight: 400;
  }

  /* Only the selected value (e.g. Empfohlen) – blue */
  .collection-toolbar__sort .sorting-filter__selected-value {
    color: var(--Blues-Primary-Blue, #1E35B1);
    font-weight: 700;
  }

  /* Ensure dropdown appears above product grid */
  .collection-toolbar {
     position: sticky;
    top: var(--sticky-header-offset, 0);
    z-index: 200;
  }

  .collection-toolbar__sort {
    overflow: visible;
  }

  .collection-toolbar__sort .facets__form-wrapper {
    overflow: visible;
  }

  .collection-toolbar__sort .facets__form {
    overflow: visible;
  }

  /* Ensure parent sections don't clip dropdown */
  .section:has(.collection-toolbar) {
    overflow: visible;
  }

  /* High z-index for dropdown to appear above product grid */
  .collection-toolbar__sort .sorting-filter__options {
    z-index: 9999 !important;
  }

  .collection-toolbar__sort details[open] .sorting-filter__options {
    z-index: 9999 !important;
  }

  /* Hide toolbar on mobile; filters/sort remain available in the main collection UI */
  @media screen and (max-width: 749px) {
    .collection-toolbar {
      display: none !important;
    }
  }
/* END_SECTION:custom-liquid */

/* START_SECTION:ebc-content (INDEX:17) */
.ebc-content {
    display: block;
    margin-block: 40px;
  }

  .ebc-content__inner > *:first-child {
    margin-top: 0;
  }

  .ebc-content__inner > *:last-child {
    margin-bottom: 0;
  }
/* END_SECTION:ebc-content */

/* START_SECTION:enhance-brand-content (INDEX:18) */
.enhance-brand-content {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .enhance-brand-content__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
  }

  .enhance-brand-content__story {
    width: 100%;
  }

  .enhance-brand-content__story .rte {
    font-family: var(--font-body);
    color: var(--color-foreground);
  }

  .enhance-brand-content__blocks {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: var(--spacing-md);
  }

  .enhance-brand-content__block {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: var(--spacing-sm);
  }

  .enhance-brand-content__block-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius);
  }

  .enhance-brand-content__block-text {
    font-family: var(--font-body);
    color: var(--color-foreground);
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
  }

  .enhance-brand-content__banner {
    width: 100%;
  }

  .enhance-brand-content__banner-link {
    display: block;
    width: 100%;
    text-decoration: none;
  }

  .enhance-brand-content__banner-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius);
  }

  .enhance-brand-content__banner picture {
    display: block;
    width: 100%;
  }

  .enhance-brand-content__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 200px;
  }

  .enhance-brand-content__placeholder-text {
    font-family: var(--font-body);
    color: var(--color-foreground);
    font-size: var(--font-size-body);
    opacity: 0.6;
    text-align: center;
  }

  @media screen and (min-width: 750px) {
    .enhance-brand-content__blocks {
      gap: var(--spacing-lg);
    }

    .enhance-brand-content__block {
      gap: var(--spacing-md);
    }
  }
/* END_SECTION:enhance-brand-content */

/* START_SECTION:featured-blog-posts (INDEX:19) */
.featured-blog-posts h3 {
    text-transform: uppercase;
  }
/* END_SECTION:featured-blog-posts */

/* START_SECTION:featured-product (INDEX:21) */
.featured-product-section .section-content-wrapper {
    grid-template-columns: 1fr;
    display: grid;
    overflow: hidden;

    @media (min-width: 750px) {
      grid-template-columns: 1fr 1fr;
    }
  }

  /* Here I should maybe set the width to auto when the ratio is set to adapt */
  .featured-product-section .product-media-container.constrain-height {
    /* arbitrary offset value based on average theme spacing and header height */
    --viewport-offset: 400px;
    --constrained-min-height: var(--visual-preview--height, 80dvh);

    @media screen and (min-width: 750px) {
      --viewport-offset: 300px;
    }
  }

  .featured-product-section .product-grid__card {
    --padding-block: 20px;
    --padding-inline: 20px;

    @media screen and (min-width: 750px) {
      --padding-block: 40px;
      --padding-inline: 40px;
    }
  }

  @media screen and (max-width: 749px) {
    .featured-product-section .media-block {
      order: -1;
    }
  }
/* END_SECTION:featured-product */

/* START_SECTION:footer-utilities (INDEX:24) */
.utilities {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap);
    text-wrap: nowrap;
    border-top: var(--border-width) solid var(--color-border);
    color: var(--color-foreground-muted);

    @media screen and (min-width: 750px) {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      justify-content: center;
      gap: var(--gap);
      align-items: center;
      text-align: left;
    }
  }

  .utilities a {
    color: var(--color-foreground-muted);
  }

  .utilities > * {
    text-align: center;

    @media screen and (min-width: 750px) {
      text-align: left;
    }
  }

  /* Dynamic positioning based on block order */
  @media screen and (min-width: 750px) {
    .utilities {
      position: relative;
    }

    /* Reset default positioning */
    .utilities > * {
      order: 0;
      margin-left: 0;
      margin-right: 0;
      position: static;
    }

    /* Exactly 3 items cases: */
    /* A : A : B => A left, A left, B right */
    /* Example: Copyright and policy left, social right */
    .utilities:has(
        .footer-utilities__text:nth-child(1)
          + .footer-utilities__text:nth-child(2)
          + .footer-utilities__icons:nth-child(3)
      ) {
      grid-template-columns: auto auto 1fr;

      .footer-utilities__icons:nth-child(3) {
        justify-content: end;
      }
    }

    /* A : B : A => A left, B center, A right */
    /* Example: Policy left, Socials center, Copyright right */
    .utilities:has(
        .footer-utilities__text:nth-child(1)
          + .footer-utilities__icons:nth-child(2)
          + .footer-utilities__text:nth-child(3)
      ) {
      grid-template-columns: 1fr auto 1fr;

      .footer-utilities__icons:nth-child(2) {
        justify-self: center;
      }

      .footer-utilities__text:nth-child(3) {
        justify-self: end;
      }
    }

    /* B : A : A => B left, A right, A right */
    /* Example: Socials left, Policy right, Copyright right */
    .utilities:has(
        .footer-utilities__icons:nth-child(1)
          + .footer-utilities__text:nth-child(2)
          + .footer-utilities__text:nth-child(3)
      ) {
      grid-template-columns: 1fr auto auto;

      .footer-utilities__text:nth-child(3) {
        justify-content: end;
      }
    }

    /* Exactly 2 items cases: */
    /* A : A => A left, A left */
    /* Example: Copyright left, Policy left */
    .utilities:has(.footer-utilities__text:first-child:nth-last-child(2) + .footer-utilities__text:last-child) {
      grid-template-columns: auto auto;
      justify-content: space-between;

      .footer-utilities__text:nth-child(2) {
        justify-self: end;
      }
    }

    /* B : A => B left, A right */
    /* Example: Socials left, Policy right */
    .utilities:has(.footer-utilities__icons:first-child:nth-last-child(2) + .footer-utilities__text:last-child) {
      grid-template-columns: 1fr 1fr;

      .footer-utilities__text:nth-child(2) {
        justify-self: end;
      }
    }

    /* A : B => A left, B right */
    /* Example: Socials left, Policy right */
    .utilities:has(.footer-utilities__text:first-child:nth-last-child(2) + .footer-utilities__icons:last-child) {
      grid-template-columns: 1fr 1fr;

      .footer-utilities__icons:nth-child(2) {
        justify-self: end;
      }
    }

    /* Exactly 1 items cases: */
    /* A => A left */
    /* Example: Policy left */
    .utilities:has(.footer-utilities__text:first-child:nth-last-child(1)) {
      grid-template-columns: 1fr;
      justify-content: start;

      .footer-utilities__text:nth-child(1) {
        justify-self: start;
      }
    }

    /* B => B left */
    /* Example: Socials left */
    .utilities:has(.footer-utilities__icons:first-child:nth-last-child(1)) {
      grid-template-columns: 1fr;
      justify-content: start;

      .footer-utilities__icons:nth-child(1) {
        justify-self: start;
      }
    }
  }
/* END_SECTION:footer-utilities */

/* START_SECTION:footer (INDEX:25) */
.footer-desktop {
    background: var(--footer-gradient, linear-gradient(0deg, #FFFFFF 0%, #EDF3FF 100%));
    border-radius: var(--footer-main-radius, 0.625rem 0.625rem 0 0); /* 10px 10px 0px 0px */
    padding: 15px;
    width: 100%;
  }

  .footer-desktop__container {
    max-width: var(--footer-content-width, 90rem); /* 1440px */
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: var(--footer-section-gap, 2.5rem); /* 40px */
  }

  /* Newsletter: <990px = header/form as today; desktop see min-width:990px block */
  .footer-desktop .footer-newsletter {
    width: 100%;
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    align-self: stretch;
  }

  .footer-desktop .footer-newsletter__header {
    text-align: left;
    padding: 0;
  }

  .footer-desktop .footer-newsletter__title {
    text-align: center;
  }

  .footer-desktop .footer-newsletter__form {
    width: 100%;
    margin: 0;
    padding: 0;
    text-align: left;
  }

  /* Trust Badges */
  .footer-desktop__trust-badges {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: var(--footer-trust-gap, 3.75rem); /* 60px */
    padding: 30px 40px 30px 50px;
    background-color: var(--color-background);
    border-radius: var(--footer-trust-radius, 5px); /* 5px */
    width: 100%;
    max-width: var(--footer-content-width, 90rem);
    margin: 0 auto;
  }

  /* Desktop: symmetric space between column content and vertical dividers. Mobile: dividers hidden in max-width 749 rules. */
  @media screen and (min-width: 750px) {
    .footer-desktop__trust-badges > .footer-trust-badge {
      box-sizing: border-box;
      padding-inline: clamp(0.75rem, 2vw, 1.25rem);
    }

    .footer-desktop__trust-badges > .footer-trust-badge__divider {
      flex-shrink: 0;
      margin-inline: clamp(1rem, 2.5vw, 1.75rem);
    }
  }

  /* Review Badges */
  .footer-desktop__review-badges {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--footer-form-gap, 1.875rem); /* 30px */
    width: 100%;
  }

  .footer-desktop__review-badges-container {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: var(--footer-review-gap, 0.982rem); /* 15.71px */
    width: 100%;
    max-width: var(--footer-review-container-width, 65.25rem); /* 1044px */
  }

  /* Divider */
  .footer-desktop__divider {
    width: 100%;
    max-width: var(--footer-content-width, 90rem);
    height: var(--footer-divider-height, 0.128rem); /* 2.05px */
    background-color: var(--footer-divider, var(--color-border));
    margin: 0 auto;
  }

  /* Footer Links */
  .footer-desktop__links {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: var(--footer-links-gap, 40px);
  }

  
  .footer-desktop__links-left {
    display: grid;
    font-size: 12px;
    grid-template-columns: 1fr; /* Mobile first */

    min-width: 0; /* Prevents grid overflow in narrow layouts */
  }

  @media screen and (max-width: 750px) {
    .footer-desktop__links-left {
      gap: 0;
    }
  }

  .footer-desktop__link-section {
    display: flex;
    flex-direction: column;
    gap: var(--footer-title-gap, 1rem); /* 16px */
    min-width: 0; /* Allow title/links to wrap instead of forcing overflow */
  }

  /* Accordion header (summary) – desktop: looks like static heading */
  .footer-desktop__link-accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    list-style: none;
    cursor: default;
  }

  .footer-desktop__link-accordion-header::-webkit-details-marker,
  .footer-desktop__link-accordion-header::marker {
    display: none;
  }

  .footer-desktop__link-accordion-icon {
    display: none; /* Shown only on mobile */
    flex-shrink: 0;
    font-size: 18px;
    font-weight: 400;
    color: var(--color-foreground-heading);
    line-height: 1;
  }

  .footer-desktop__link-title {
    font-family: var(--font-body-family);
    font-size: var(--font-size-xl); /* 20px */
    font-weight: 600;
    line-height: 1.5;
    color: var(--color-foreground-heading);
    margin: 0;
    text-transform: uppercase; /* Figma uses uppercase section headings */
  }

  .footer-desktop__link-content {
    display: block;
  }

  .footer-desktop__link-nav {
    width: 100%;
  }

  .footer-desktop__link-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: var(--footer-link-gap, 0.5rem); /* 8px */
  }

  .footer-desktop__link-item {
    height: var(--footer-link-height, 1.5rem); /* 24px */
  }

  .footer-desktop__link {
    font-family: var(--font-body-family);
    font-size: var(--font-size-sm); /* 14px */
    font-weight: 400;
    line-height: 1.5;
    color: var(--footer-secondary-text, var(--color-foreground));
    text-decoration: none;
    border-radius: var(--footer-link-radius, 0.25rem); /* 4px */
    transition: opacity 0.2s ease;
    display: inline-block;
  }

  .footer-desktop__link:hover {
    opacity: 0.7;
    text-decoration: underline;
  }

  @media screen and (max-width: 749px) {
    .footer-desktop__link-title {
      font-family: 'Nunito Sans', sans-serif;
      font-weight: 500;
      font-style: normal;
      font-size: 14px;
      line-height: 150%;
      letter-spacing: 0;
    }

    .footer-desktop__link-item .footer-desktop__link,
    .footer-desktop__link-item .footer-desktop__link--text {
      font-family: 'Nunito Sans', sans-serif;
      font-weight: 400;
      font-style: normal;
      font-size: 12px;
      line-height: 150%;
      letter-spacing: 0;
    }
  }

  .footer-desktop__app-card-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start; /* Mobile/tablet: card sits under menus */
    width: 100%;
    align-item: center;
    }

  /* Responsive */
  @media screen and (min-width: 750px) {
    /* Tablet: 2 menu columns */
    .footer-desktop__links-left {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }
  }

  @media screen and (min-width: 990px) {
    /**
     * Desktop >= 990px (Figma intent):
     * - 4 menu columns aligned left
     * - app card aligned to the right of the menu grid
     */
    .footer-desktop__links {
      display: grid;
      grid-template-columns: minmax(0, 1fr) auto;
      align-items: start;
      column-gap: var(--footer-links-gap, 40px);
    }

    .footer-desktop__links-left {
      grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .footer-desktop__app-card-wrapper {
      justify-content: flex-end;
      width: auto;
      justify-self: end;
    }

    /* Newsletter: center heading + two-column form as a block (mobile/tablet unchanged) */
    .footer-desktop .footer-newsletter {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .footer-desktop .footer-newsletter__header {
      text-align: center;
    }

    .footer-desktop .footer-newsletter__description {
      text-align: center;
    }

    .footer-desktop .footer-newsletter__form {
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
    }

    .footer-desktop .footer-newsletter__form-row {
      justify-content: center;
    }

    .footer-desktop .footer-newsletter__group {
      align-items: center;
    }

    .footer-desktop .footer-newsletter__error,
    .footer-desktop .footer-newsletter__success {
      text-align: center;
    }

    .footer-desktop .footer-newsletter__checkbox-wrapper {
      justify-content: center;
    }
  }

  @media screen and (min-width: 1200px) {
    .footer-desktop__link-title {
      font-size: 20px;
    }

    .footer-desktop__link {
      font-size: 14px;
    }
  }

  @media screen and (max-width: 989px) {
    .footer-desktop__trust-badges {
      flex-direction: column;
      gap: var(--padding-lg);
    }

    .footer-desktop__review-badges-container {
      flex-wrap: wrap;
      justify-content: center;
    }

    /* Keep the links area stacked on < 990px */
    .footer-desktop__links {
      display: flex;
      flex-direction: column;
    }
  }

  /* Review badges: 2 cols × 2 rows, equal-width cells (mobile only; desktop row unchanged ≥769px) */
  @media screen and (max-width: 768px) {
    .footer-desktop__review-badges {
      width: 100%;
      max-width: 100%;
      min-width: 0;
      align-items: stretch;
      overflow: visible;
    }

    .footer-desktop__review-badges-container {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      grid-auto-rows: auto;
      gap: clamp(8px, 2.2vw, 14px);
      width: 100%;
      max-width: 100%;
      min-width: 0;
      box-sizing: border-box;
      align-items: stretch;
    }

    /* Row 2 on mobile: Google (3rd visually) then EHI (4th); desktop DOM order unchanged above 768px */
    .footer-desktop__review-badges-container .footer-review-badge--google {
      order: 2;
    }

    .footer-desktop__review-badges-container .footer-review-badge--ehi {
      order: 3;
    }

    .footer-desktop__review-badges-container > * {
      width: 100%;
      max-width: 100%;
      min-width: 0;
      box-sizing: border-box;
      display: flex;
    }
  }

  @media screen and (max-width: 749px) {
    /* Keep footer content inside viewport – horizontal padding; reduce vertical spacing */
    .footer-desktop__container {
      box-sizing: border-box;
      width: 100%;
      min-width: 0;
      overflow-x: hidden;
      gap: 1.5rem;
    }

    .footer-desktop__divider {
      margin: 0;
    }

    /* Trust section: first item full width, second and third side by side; no dividers; compact spacing */
    .footer-desktop__trust-badges {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--padding-md);
      /* Mobile only: outer padding around the whole trust strip — change the two values (vertical, horizontal) */
      padding: 12px 10px;
    }

    .footer-desktop__trust-badges > .footer-trust-badge:first-child {
      grid-column: 1 / -1;
    }

    .footer-desktop__trust-badges > .footer-trust-badge__divider {
      display: none;
    }

    /* Newsletter (mobile): center header copy; sizing lives in snippets/footer-newsletter-form.liquid */
    .footer-desktop .footer-newsletter__header {
      text-align: center;
    }

    .footer-desktop .footer-newsletter__description {
      text-align: center;
    }

    /* Newsletter: allow flex children to shrink inside padded footer (fixes ~360px overflow) */
    .footer-desktop .footer-newsletter,
    .footer-desktop .footer-newsletter__form,
    .footer-desktop .footer-newsletter__form-row {
      min-width: 0;
      max-width: 100%;
      box-sizing: border-box;
    }

    /* Review badges: layout handled in max-width: 768px block above */

    .footer-desktop__links {
      flex-direction: column;
      gap: 0;
    }

    .footer-desktop__link-section {
      width: 100%;
      gap: 0;
      border-bottom: 2px solid #DDD;
    }

    /* Accordion header: clickable, title left + icon right */
    .footer-desktop__link-accordion-header {
      display: flex;
      align-items: center;
      justify-content: space-between;
      width: 100%;
      padding: 12px 0;
      cursor: pointer;
      list-style: none;
      gap: 12px;
      min-height: 44px;
      box-sizing: border-box;
    }

    .footer-desktop__link-accordion-header::-webkit-details-marker,
    .footer-desktop__link-accordion-header::marker {
      display: none;
    }

    /* + / − icon: right-aligned, shown on mobile only */
    .footer-desktop__link-accordion-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      width: 24px;
      height: 24px;
      font-size: 20px;
      font-weight: 300;
      color: var(--color-foreground-heading);
      line-height: 1;
    }

    .footer-desktop__link-accordion-icon::before {
      content: '+';
    }

    .footer-desktop__link-section[open] .footer-desktop__link-accordion-icon::before {
      content: '−';
    }

    /* Content: collapsed by default, smooth expand */
    .footer-desktop__link-content {
      overflow: hidden;
      max-height: 0;
      transition: max-height 0.3s ease;
    }

    .footer-desktop__link-section[open] .footer-desktop__link-content {
      max-height: 800px;
    }

    .footer-desktop__link-content .footer-desktop__link-list {
      padding-bottom: 12px;
    }
  }

  /* Legal footer row (Figma) */
  .footer-legal-row {
 display: flex;
  align-items: center;
  width: 100%;
  }

  .footer-legal-row__left {
    display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--footer-secondary-text, #626161);

  flex: 0 0 auto;      /* stays tight */
  white-space: nowrap;
}


  .footer-legal-row__company-text {
  font-size: 16px;
  color: #9b9b9b; /* grey text like screenshot */
  font-weight: 400;
}

.footer-legal-row__company-text strong {
  font-weight: 700; /* FORCE bold */
  color: #000000;   /* black like screenshot */
}

  .footer-legal-row__company-logo {
    display: block;
    width: 42px;
    height: auto;
  }

  .footer-legal-row__center {
  display: flex;
  align-items: center;
  justify-content: center;

  flex: 1 1 auto;      /* ⬅️ takes remaining space */
  gap: 0.75rem;
}

  .footer-legal-row__link {
    font-family: var(--font-body-family);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: #1E35B1;
    text-decoration: none;
    white-space: nowrap;
  }

  .footer-legal-row__link:hover {
    text-decoration: underline;
    opacity: 0.85;
  }

  .footer-legal-row__dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #DDDDDD;
    opacity: 0.8;
  }

  .footer-legal-row__right {
  display: flex;
  align-items: center;
  justify-content: flex-end;

  flex: 0 0 auto;
  text-align: right;
}


  .footer-legal-row__copyright {
     font-family: var(--font-body-family);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--footer-light-text, #919191);
  opacity: 0.8;

  text-align: left;

  max-width: 34rem;      /* controls wrapping width */
  white-space: normal;  /* allow wrapping */
  word-break: break-word;
  }

  @media screen and (max-width: 749px) {
    /* Order: left (VGL) first, then center (legal links), then right (copyright) */
    .footer-legal-row {
      flex-direction: column;
      align-items: center;
      text-align: center;
      gap: 0.75rem;
    }

    .footer-legal-row__left {
      order: 1;
    }

    .footer-legal-row__center {
      order: 2;
      justify-content: center;
      flex-wrap: wrap;
      gap: 0.5rem;
    }

    .footer-legal-row__right {
      order: 3;
      justify-content: center;
    }

    .footer-legal-row__link {
      font-size: 11px;
      white-space: nowrap;
    }

    .footer-legal-row__copyright {
      text-align: center;
      max-width: 100%;
      font-size: 11px;
    }

    .footer-desktop__store-badges {
      order: 1 !important;
      justify-content: center;
      margin: 20px;
    }

    .footer-app-card {
      order: 2;
    }
  }

  .footer-desktop__store-badges {
    order: 2;
    display: flex;
    gap: 12px;
    margin-top: 12px;
    align-items: center;
  }

  .footer-desktop__store-badges img {
    height: 40px;
    width: auto;
    display: block;
  }
/* END_SECTION:footer */

/* START_SECTION:frame-1410102009 (INDEX:26) */
.you-may-also-like-slider {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
  }

  .you-may-also-like-slider__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    height: 100%;
    min-height: 0;
    box-sizing: border-box;
  }

  .you-may-also-like-slider__media {
    width: 100%;
    max-width: 100%;
    flex-shrink: 0;
  }

  .you-may-also-like-slider__media-link {
    display: block;
    width: 100%;
    text-decoration: none;
  }

  .you-may-also-like-slider__media-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .you-may-also-like-slider__title {
    font-family: var(--font-heading);
    color: var(--color-foreground);
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin: 0;
    line-height: var(--font-h2--line-height);
  }

  .you-may-also-like-slider__content {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .you-may-also-like-slider__content .rte {
    font-family: var(--font-body);
    color: var(--color-foreground);
    font-size: var(--font-size-body);
    line-height: var(--font-body--line-height);
  }

  .you-may-also-like-slider__custom-html {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .you-may-also-like-slider__custom-html * {
    font-family: var(--font-body);
    color: var(--color-foreground);
  }

  @media screen and (max-width: 749px) {
    .you-may-also-like-slider__title {
      font-size: var(--font-size-h3);
    }

    .you-may-also-like-slider__content .rte {
      font-size: var(--font-size-body);
    }
  }
/* END_SECTION:frame-1410102009 */

/* START_SECTION:frame-1410102896 (INDEX:27) */
.frame-1410102896 {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  .frame-1410102896__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .frame-1410102896__media {
    width: 100%;
    max-width: 100%;
    flex-shrink: 0;
  }

  .frame-1410102896__media-link {
    display: block;
    width: 100%;
    text-decoration: none;
  }

  .frame-1410102896__media-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .frame-1410102896__title {
    font-family: var(--font-heading);
    color: var(--color-foreground);
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-md);
    text-align: center;
  }

  .frame-1410102896__content {
    width: 100%;
    max-width: 1200px;
  }

  .frame-1410102896__content .rte {
    font-family: var(--font-body);
    color: var(--color-foreground);
  }

  .frame-1410102896__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 200px;
  }

  .frame-1410102896__placeholder-text {
    font-family: var(--font-body);
    color: var(--color-foreground);
    font-size: var(--font-size-body);
    opacity: 0.6;
    text-align: center;
  }

  @media screen and (min-width: 750px) {
    .frame-1410102896__inner {
      padding: var(--spacing-lg);
    }
  }
/* END_SECTION:frame-1410102896 */

/* START_SECTION:header-announcements (INDEX:28) */
.announcement-bar {
    border-block-end: var(--border-bottom-width) solid var(--color-border);
  }

  .announcement-bar__slider {
    display: flex;
    flex-direction: row;
    align-items: center;
    position: relative;

    @media screen and (max-width: 749px) {
      grid-column: 1 / -1;
    }
  }

  .announcement-bar__slides {
    display: grid;
    grid: [stack] auto / [stack] auto;
    width: calc(100% - var(--button-size) * 2);
    max-width: 680px;
    margin-inline: auto;
  }

  .announcement-bar__slides > * {
    grid-area: stack;
  }

  .announcement-bar__slide {
    transition: opacity 0.5s ease-in-out, visibility 0.5s ease-in-out;

    &[aria-hidden='true'] {
      opacity: 0;
      visibility: hidden;
    }
  }

  .announcement-bar__slider slideshow-arrows {
    padding: 0;
    mix-blend-mode: normal;
  }

  .announcement-bar__slider slideshow-arrows .slideshow-control {
    color: var(--color-foreground);
  }

  .announcement-bar__slider .slideshow-control {
    display: flex;
    padding: 0;
    width: var(--button-size);
    height: var(--button-size);
    align-items: center;
    justify-content: center;
    opacity: 1;
    animation: none;

    @media screen and (min-width: 750px) {
      --slideshow-control-offset: calc((var(--button-size) - var(--icon-size-xs)) / 2);

      .section--page-width &.slideshow-control--previous {
        transform: translateX(var(--slideshow-control-offset));
      }
    }
  }

  .announcement-bar__slider .slideshow-control .svg-wrapper {
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
  }

  .announcement-bar__slide {
    place-content: center;
  }

  .announcement-bar__text:first-child {
    margin: 0;
  }

  .announcement-bar__link {
    position: absolute;
    inset: 0;
  }
/* END_SECTION:header-announcements */

/* START_SECTION:header (INDEX:29) */
/* Header is full-bleed (section--full-width): background spans viewport, inner content constrained to 1440px */
.header-new {
  --header-height: 70px;
  --header-padding-vertical: 10px;
  --header-padding-horizontal: 0px;
  --header-inner-max-width: 1440px;
  --header-gap-main: 234px;
  --header-gap-left: 35px;
  --header-gap-right: 35px;

  background-color: var(--color-background);
  border-bottom: none;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  overflow-x: hidden;
  border-top: none;
}

.header-new__container {
  padding: var(--header-padding-vertical) 0;
  width: 100%;
  margin: 0;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  overflow-x: hidden;
  position: relative;
}

header-component[sticky="always"] {
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-new__sticky-row {
  display: flex;
  flex-direction: column;
  width: 100%;
  background-color: var(--color-background);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.header-new__inner {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(12px, 1.4vw, 32px);
  height: var(--header-height);
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  min-width: 0; /* Allow flex shrinking */
}

.header-new__hamburger {
  display: none; /* Desktop: no hamburger */
}

.header-new__mobile-search-wrapper {
  display: none; /* Desktop: search lives in the header row */
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Inner content width: 1440px (not constrained by .page-width-*); full-bleed header uses this */
.header-align {
  width: 100%;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
  box-sizing: border-box;
}

/* Navigation wrapper: full-bleed background; inner constrained to 1440px via .header-align */
.header-new__navigation-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 0;
  min-height: 55px;
  box-sizing: border-box;
  position: relative;
  gap: 0;
  overflow: hidden;
  background-color: var(--color-background);
  border-top: 1px solid #F0F0F0;
}

.header-new__navigation-inner {
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
}

.header-new__navigation-scroll {
  width: 100%;
  max-width: 100%;
  overflow: hidden; /* No horizontal scroll; nav fits via wrap/shrink */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Desktop-only: subtle bottom shadow to separate nav row from content (per screenshot) */
@media (min-width: 990px) {
  .header-new__navigation-wrapper {
    /* Ensure shadow is visible and not hidden behind following content */
    z-index: 1;
    background-color: var(--color-background);
    /* Bottom-only, subtle, continuous full-width separator */
    box-shadow: 0 8px 16px -14px rgba(0, 0, 0, 0.45);
  }
}


.header-new__left {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  gap: clamp(12px, 1.4vw, 32px);
}

.header-new__center {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  min-width: 0;
  width: 100%;
  max-width: clamp(280px, 55vw, 720px);
  overflow: hidden; /* Prevent overflow */
}

.header-new__right {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  margin-left: auto; /* Push to the right side */
}



.header-new__logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  width: 94px;
  height: 31px;
  text-decoration: none;
  opacity: 1;
  transform: rotate(0deg);
}

.header-new__logo img {
  width: 94px;
  height: 30px;
  object-fit: contain;
  display: block;
  opacity: 1;
  transform: rotate(0deg);
}


.header-new__menu {
  display: flex;
}

.header-new__menu-list {
  display: flex;
      align-items: center;
  gap: 24px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.header-new__menu-item {
  display: flex;
}

.header-new__menu-link {
  text-decoration: none;
  font-size: 14px;
  color: var(--color-foreground);
    transition: opacity var(--animation-speed) var(--animation-easing);
  }

.header-new__menu-link:hover {
  opacity: 0.8;
}

.header-new__menu-link--active {
  font-weight: 600;
}

.header-new__icon {
  font-size: 18px;
  cursor: pointer;
}

/**
 * Navigation Menu Styles
 * 
 * Component: Horizontal navigation menu bar below header
 * BEM Structure:
 * - .header-navigation-menu (Block)
 * - .header-navigation-menu__container (Element)
 * - .header-navigation-menu__list (Element)
 * - .header-navigation-menu__item (Element)
 * - .header-navigation-menu__link (Element)
 * - .header-navigation-menu__link--sale (Modifier)
 * - .header-navigation-menu__icon (Element)
 * 
 * Layout: Flexbox with items flowing left-to-right
 * Spacing: 60px gap between items, 10px 240px container padding (desktop)
 * Height: 55px total (including padding)
 * Max Width: 1920px (responsive)
 */

/* Navigation menu wrapper - positioned between logo and cart */
.header-navigation-menu {
  background-color: transparent;
  border-top: none; /* Border moved to wrapper for full width */
  border-bottom: none;
  border-left: none;
  border-right: none;
  width: 100%;
  max-width: 100%;
  position: relative;
  z-index: 999;
  min-height: 55px;
  box-sizing: border-box;
  overflow: visible;
  display: flex;
  align-items: center;
}

/* Container: Constrained to viewport; no overflow */
.header-navigation-menu__container {
  height: 100%;
  min-height: 55px;
  box-sizing: border-box;
  overflow: hidden;
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  margin: 0;
  max-width: 100%;
  width: 100%;
}

/**
 * Menu List: Flexbox layout
 * - Constrained to viewport width; wraps to next row when needed (no horizontal scroll)
 * - Items flow left-to-right, wrap to multiple rows on narrow desktop
 */
.header-navigation-menu__list {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap !important;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 100%;
  min-height: 55px;
  box-sizing: border-box;
  gap: 16px;
}

/* Menu item: Prevents shrinking to keep full text visible */
.header-navigation-menu__item {
  flex-shrink: 0; /* Prevents items from shrinking - keeps full text visible */
  flex-grow: 0; /* Prevents items from growing */
  display: flex;
  align-items: center;
  white-space: nowrap; /* Keep text on one line */
  min-width: fit-content; /* Ensure full text is visible */
}

/**
 * Menu Link: Default styling for all menu items
 * Typography: Nunito Sans, 500 weight, 16px
 * Color: #191919 (dark grey)
 * Layout: Flex with 5px gap (for icon spacing)
 */
.header-navigation-menu__link {
  display: flex;
  align-items: center;
  gap: 5px; /* Gap between icon and text (for ShopLC TV) */
  text-decoration: none;
  font-family: 'Nunito Sans', var(--font-body);
  font-weight: 500;
  /* Figma: desktop nav typography */
  font-size: 16px;
  line-height: 35px;
  letter-spacing: 0.025em;
  text-transform: none; /* Text case as entered */
  text-align: left;
  color: #191919;
  white-space: nowrap; /* Prevents text wrapping */
  transition: opacity var(--animation-speed, 0.2s) var(--animation-easing, ease);
  padding: 0;
  overflow: visible; /* NO clipping - show full text */
  text-overflow: clip; /* NO ellipsis - show full text */
  max-width: none; /* Remove max-width constraint */
  min-width: fit-content; /* Ensure full text is visible */
}

/* Hover state: Slight opacity reduction */
/* Hover state (approved): color change only, no underline. */
.header-navigation-menu__link:hover {
  opacity: 1;
  text-decoration: none;
}

/* Apply hover blue to normal items only (keep Super Sale red). */
.header-navigation-menu__link:not(.header-navigation-menu__link--sale):hover {
  color: #1E35B1;
}

/* Active state: Current page indicator */
.header-navigation-menu__link--active {
  font-weight: 600; /* Bolder text for active page */
  text-decoration: none;
}

/**
 * Super Sale Special Styling
 * Applied to menu items containing "Super Sale" in title/handle
 * Typography: Lato font (different from regular items)
 * Color: #DE0012 (red)
 * Padding: 0 7px (horizontal padding)
 * Height: 34px (fixed height)
 */
.header-navigation-menu__link--sale {
  /* Figma highlight item: keep highlight styling but align typography to nav items */
  font-family: 'Nunito Sans', var(--font-body);
  font-weight: 600;
  color: #DE0012 !important; /* Ensure red color is applied */
  padding: 0 7px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap; /* Keep text on one line */
  overflow: visible; /* Ensure full text is visible */
  text-overflow: clip; /* No ellipsis */
  min-width: fit-content; /* Ensure full text is visible */
}

/**
 * ShopLC TV Icon Container
 * Dimensions: 22px width × 35px height (matches Figma)
 * Only displayed for "ShopLC TV" menu items
 */
.header-navigation-menu__icon {
  display: flex;
  align-items: center;
      justify-content: center;
  width: 22px;
  height: 35px;
  flex-shrink: 0;
}

/* Live TV icon: inline SVG or img, fixed dimensions (Figma 22×35) */
.header-navigation-menu__icon img,
.header-navigation-menu__icon svg {
  width: 22px;
  height: 35px;
  object-fit: contain;
  display: block;
  flex-shrink: 0;
}

/* Menu text wrapper */
.header-navigation-menu__text {
  display: inline-block;
  font-family: 'Nunito Sans', var(--font-body);
  font-weight: 500;
  font-style: normal;
  font-size: 15px;
  line-height: 150%;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  leading-trim: none;
}

/**
 * Geschenke mega menu — full-width overlay with blurred backdrop (desktop only)
 * Open state: body.mega-open via JS (theme.liquid).
 * CSS :hover cannot be used because position:fixed removes the panel from the trigger’s hover area.
 */
.has-mega {
  position: static;
}

/* Mega panels: 100vw centered so white background is full-width */
.mega-panels {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  pointer-events: none;
}

.mega-panels > * {
  pointer-events: none;
}

.mega-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  z-index: 9980;
}

.mega-menu {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  background: #fff;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease;
  z-index: 9999;
  box-sizing: border-box;
}

/* Visibility: JS only — body.mega-open + data-mega-active (no :hover CSS) */
body.mega-open[data-mega-active="livetv"] .mega-backdrop--livetv,
body.mega-open[data-mega-active="livetv"] .mega-menu--livetv,
body.mega-open[data-mega-active="geschenke"] .mega-backdrop--geschenke,
body.mega-open[data-mega-active="geschenke"] .mega-menu--geschenke,
body.mega-open[data-mega-active="diamantschmuck"] .mega-backdrop--diamantschmuck,
body.mega-open[data-mega-active="diamantschmuck"] .mega-menu--diamantschmuck,
body.mega-open[data-mega-active="schmuck"] .mega-backdrop--schmuck,
body.mega-open[data-mega-active="schmuck"] .mega-menu--schmuck,
body.mega-open[data-mega-active="lifestyle"] .mega-backdrop--lifestyle,
body.mega-open[data-mega-active="lifestyle"] .mega-menu--lifestyle,
body.mega-open[data-mega-active="im-trend"] .mega-backdrop--im-trend,
body.mega-open[data-mega-active="im-trend"] .mega-menu--im-trend {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Only element that controls width: 1440px, no horizontal padding (spacing moved to columns) */
.mega-menu__inner {
  position: relative;
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr) 2fr;
  gap: 32px;
  box-sizing: border-box;
  width: 100%;
}

/* Horizontal spacing (24px) on first/last column to match header, not on inner */
.mega-menu__inner > *:first-child {
  padding-left: 24px;
}
.mega-menu__inner > *:last-child {
  padding-right: 24px;
}

.mega-col {
  position: relative;
  padding-right: 32px;
}

/* Vertical divider ONLY between link columns (not on last column = no overflow) */
.mega-col:has(+ .mega-col) {
  border-right: 1px solid #e6e6e6;
}

.mega-col:not(:has(+ .mega-col)) {
  padding-right: 0;
  border-right: none;
}

/* Horizontal line AFTER each section group (Geschenke only; Schmuck has no horizontal dividers) */
.mega-menu__inner:not(.mega-menu__inner--schmuck) .mega-col a:has(+ h4)::after {
  content: "";
  display: block;
  height: 1px;
  background-color: #e6e6e6;
  margin: 20px 0;
}

.mega-col h4 {
  color: #1a4cff;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 12px;
}

.mega-col h4:not(:first-child) {
  margin-top: 24px;
}

.mega-col a {
  display: block;
  margin-bottom: 8px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.mega-col a:hover {
  color: #1a4cff;
}

.mega-images {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

/* Promo image card */
.mega-image {
  position: relative;
  height: 180px;
  background: #9c9c9c;
  display: flex;
  align-items: flex-end;
  padding: 14px;
  color: #fff;
  font-weight: 600;
  font-size: 14px;
  box-sizing: border-box;
}

.mega-image__text {
  z-index: 1;
}

/* White circular button with chevron (>) for mega menu cards */
.mega-arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
  width: 40px;
  height: 40px;
  background: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: transform 0.2s ease;
}

.mega-arrow svg {
  width: 14px;
  height: 14px;
}

.mega-arrow path {
  fill: none;
  stroke: #111;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke 0.2s ease;
}

.mega-arrow:hover {
  transform: scale(1.05);
}

.mega-arrow:hover path {
  stroke: #1e35b1;
}

/* ========== Schmuck mega menu (5 columns, PRD) ========== */
.mega-menu__inner--schmuck {
  grid-template-columns: 1.2fr 1fr 1fr 1.5fr 2fr;
  gap: 32px;
}

/* Vertical dividers: after Kategorie, after Edelsteine, after Metall; Kollektion+Marke has internal divider only after Kollektion (see below) */
.mega-menu__inner--schmuck .mega-col--kategorie,
.mega-menu__inner--schmuck .mega-col--edelsteine,
.mega-menu__inner--schmuck .mega-col--metall {
  border-right: 1px solid #e6e6e6;
  padding-right: 32px;
}

.mega-menu__inner--schmuck .mega-col--kollektion-marke {
  padding-right: 0;
  border-right: none;
}

.mega-menu__inner--schmuck .mega-schmuck-promo {
  padding-right: 0;
  border-right: none;
}

.mega-menu__inner--schmuck .mega-col h4 {
  color: #1a4cff;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 12px;
}

.mega-menu__inner--schmuck .mega-col a,
.mega-menu__inner--schmuck .mega-schmuck-list__link,
.mega-menu__inner--schmuck .mega-schmuck-two-col__block a {
  display: block;
  margin-bottom: 8px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

/* List links (Edelsteinen & Metall): flex so icon–label gap is identical in both columns */
.mega-menu__inner--schmuck .mega-schmuck-list__link {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mega-menu__inner--schmuck .mega-col a:hover,
.mega-menu__inner--schmuck .mega-schmuck-list__link:hover,
.mega-menu__inner--schmuck .mega-schmuck-two-col__block a:hover {
  color: #1a4cff;
}

/* Column 1: Nach Kategorie — image grid, 2 per row, circular images (PRD) */
.mega-schmuck-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  margin-bottom: 16px;
}

.mega-schmuck-grid__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
}

.mega-schmuck-grid__item:hover .mega-schmuck-grid__label {
  color: #1a4cff;
}

.mega-schmuck-grid__item:hover .mega-schmuck-grid__img {
  transform: scale(1.08);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

/* Circular image container: circle, border, overflow hidden */
.mega-schmuck-grid__img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mega-schmuck-grid__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mega-schmuck-grid__label {
  font-size: 12px;
  line-height: 1.3;
  text-align: center;
  margin-top: 6px;
  color: #333;
  white-space: nowrap; /* Keep "Alle anzeigen" and other labels on one line */
}

.mega-schmuck-footer-link {
  font-size: 13px;
  color: #666;
  text-decoration: none;
  margin-top: 4px;
  display: inline-block;
}

.mega-schmuck-footer-link:hover {
  color: #1a4cff;
}

/* Column 2: Nach Edelsteinen — list with gemstone icon circles */
.mega-schmuck-list__link {
  display: flex;
  align-items: center;
  gap: 8px; /* Tight, uniform spacing between icon and label (both columns) */
  margin-bottom: 6px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
}

.mega-schmuck-list__icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.mega-schmuck-list__icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.mega-schmuck-list__icon--tansanit { background: #2d5a9e; }
.mega-schmuck-list__icon--moissanit { background: #e8e8e8; }
.mega-schmuck-list__icon--opal { background: linear-gradient(135deg, #e8d5c4, #b8a090); }
.mega-schmuck-list__icon--rubin { background: #a82430; }
.mega-schmuck-list__icon--smaragd { background: #2d6a4f; }
.mega-schmuck-list__icon--saphir { background: #1e3a5f; }
.mega-schmuck-list__icon--aquamarin { background: #7dd3c0; }
.mega-schmuck-list__icon--tuerkis { background: #4db6ac; }
.mega-schmuck-list__icon--granat { background: #6b2d3c; }
.mega-schmuck-list__icon--peridot { background: #8bc34a; }
.mega-schmuck-list__icon--perle { background: #f5f5dc; border: 1px solid #e0e0e0; }
.mega-schmuck-list__icon--amethyst { background: #9c6b8a; }
.mega-schmuck-list__icon--gem { background: #9c9c9c; }

/* Column 3: Nach Metall — metal swatches */
.mega-schmuck-swatch {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  background: #c9b896;
  border: 1px solid rgba(0, 0, 0, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  font-weight: 600;
  color: #333;
}

/* Same spacing in both columns: no extra margin; gap controls icon–label distance */
.mega-menu__inner--schmuck .mega-schmuck-list__link .mega-schmuck-list__icon,
.mega-menu__inner--schmuck .mega-schmuck-list__link .mega-schmuck-swatch {
  margin: 0;
  flex-shrink: 0;
}

.mega-schmuck-list__link {
  gap: 8px; /* Tight, uniform icon-to-label spacing across both columns */
}

/* "Alle anzeigen" only: text-only, no icon; full left alignment with column heading, no reserved space */
.mega-schmuck-list__link--no-icon {
  padding-left: 0;
}

.mega-schmuck-swatch--weissgold { background: #e8e0d0; }
.mega-schmuck-swatch--rosegold { background: #b76e79; }
.mega-schmuck-swatch--9k,
.mega-schmuck-swatch--14k,
.mega-schmuck-swatch--18k { background: #d4af37; }
.mega-schmuck-swatch--silber { background: #c0c0c0; }
.mega-schmuck-swatch--platin { background: #e5e4e2; }
.mega-schmuck-swatch--barren { background: #8b7355; }

/* Column 4: Nach Kollektion / Nach Marke — two sub-columns; divider only between Kollektion and Marke */
.mega-schmuck-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.mega-menu__inner--schmuck .mega-schmuck-two-col__block:first-child {
  border-right: 1px solid #e6e6e6;
  padding-right: 16px;
}

.mega-menu__inner--schmuck .mega-schmuck-two-col__block:last-child {
  padding-left: 16px;
}

.mega-schmuck-two-col__block h4 {
  color: #1a4cff;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 12px;
}

.mega-schmuck-two-col__block h4:not(:first-child) {
  margin-top: 20px;
}

/* Column 5: Promo image block — content-sized, not full column height */
.mega-schmuck-promo {
  display: flex;
  align-items: flex-start;
  min-height: 0;
}

.mega-schmuck-promo__card {
  display: block;
  position: relative;
  width: 318px;
  max-width: 318px;
  height: 260px;
  max-height: 260px;
  min-height: 260px;
  background: #9c9c9c;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s ease;
}

.mega-schmuck-promo__card:hover {
  transform: scale(1.02);
}

.mega-schmuck-promo__img {
  position: absolute;
  inset: 0;
  background: #9c9c9c;
}

.mega-schmuck-promo__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
}

.mega-schmuck-promo__text {
  position: absolute;
  left: 16px;
  bottom: 16px;
  font-weight: 600;
  font-size: 14px;
  z-index: 1;
}

.mega-schmuck-promo__arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 1;
}

.mega-schmuck-promo__arrow:hover {
  transform: scale(1.05) translateX(2px);
}

/* ========== Diamantschmuck mega menu (5 columns: Labor | Diamant | Left group | Right group | Promo) ========== */
.mega-menu__inner--diamantschmuck {
  grid-template-columns: 1.2fr 1fr 1.2fr 1.2fr 2fr;
  gap: 32px;
  align-items: start;
}

.mega-menu__inner--diamantschmuck .mega-col--labor,
.mega-menu__inner--diamantschmuck .mega-col--diamant {
  border-right: 1px solid #e6e6e6;
  padding-right: 32px;
}

/* Single vertical divider between left and right groups; no dividers inside groups */
.mega-menu__inner--diamantschmuck .mega-diamant-group--left {
  border-right: 1px solid #e6e6e6;
  padding-right: 32px;
}

.mega-menu__inner--diamantschmuck .mega-diamant-group--right {
  padding-right: 0;
}

.mega-menu__inner--diamantschmuck .mega-diamant-promo {
  padding-right: 0;
  border-right: none;
}

.mega-menu__inner--diamantschmuck .mega-col h4,
.mega-menu__inner--diamantschmuck .mega-diamant-group__block h4 {
  color: #1a4cff;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 12px;
}

/* Spacing after horizontal divider: second block heading (By Collection, By Occasion) */
.mega-menu__inner--diamantschmuck .mega-diamant-group__block:not(:first-child) h4 {
  margin-top: 24px;
}

.mega-menu__inner--diamantschmuck .mega-col a,
.mega-menu__inner--diamantschmuck .mega-schmuck-list__link,
.mega-menu__inner--diamantschmuck .mega-diamant-group__block a {
  display: block;
  margin-bottom: 8px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.mega-menu__inner--diamantschmuck .mega-col a:hover,
.mega-menu__inner--diamantschmuck .mega-schmuck-list__link:hover,
.mega-menu__inner--diamantschmuck .mega-diamant-group__block a:hover {
  color: #1a4cff;
}

/* Horizontal divider below Nach Metall and below By Color (inside each group) */
.mega-menu__inner--diamantschmuck .mega-diamant-group__block--with-divider {
  padding-bottom: 20px;
  margin-bottom: 0;
  border-bottom: 1px solid #e6e6e6;
}

/* Nach Metall: single-line labels only; icon + label horizontal */
.mega-menu__inner--diamantschmuck .mega-diamant-metal-link span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* Column 1 & 2: reuse .mega-schmuck-grid (same circular grid); labels wrap to 2 lines */
.mega-menu__inner--diamantschmuck .mega-diamant-grid {
  margin-bottom: 0;
}

.mega-menu__inner--diamantschmuck .mega-diamant-grid .mega-schmuck-grid__label {
  white-space: normal;
  word-break: break-word;
  overflow-wrap: break-word;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.3;
  text-align: center;
}

/* Column 3: metal icons (silber = light grey, gold = golden, platin = darker grey) */
.mega-diamant-metal-icon {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  border-radius: 50%;
  flex-shrink: 0;
  display: inline-block;
}

.mega-diamant-metal-icon--silber { background: #c0c0c0; border: 1px solid rgba(0,0,0,0.08); }
.mega-diamant-metal-icon--gold { background: #d4af37; border: 1px solid rgba(0,0,0,0.1); }
.mega-diamant-metal-icon--platin { background: #e5e4e2; border: 1px solid rgba(0,0,0,0.1); }

.mega-menu__inner--diamantschmuck .mega-diamant-metal-link {
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  min-width: 0;
}

/* Column 7: promo with heading + subtext */
.mega-menu__inner--diamantschmuck .mega-diamant-promo {
  display: flex;
  align-items: flex-start;
  min-height: 0;
}

.mega-diamant-promo__card .mega-schmuck-promo__text {
  bottom: 36px;
}

.mega-diamant-promo__subtext {
  position: absolute;
  left: 16px;
  bottom: 16px;
  font-size: 12px;
  font-weight: 400;
  opacity: 0.95;
  z-index: 1;
}

/* ========== Live TV mega menu (2 columns: promo card | ShopLC TV grid) ========== */
.mega-menu__inner--livetv {
  grid-template-columns: 600px 224px;
  gap: 0;
  padding: 32px 0;
}

.mega-livetv-promo-col {
  width: 600px;
  max-width: 600px;
  flex: 0 0 600px;
  min-width: 600px;
  padding-right: 32px;
  border-right: 1px solid #e6e6e6;
  box-sizing: border-box;
}

.mega-livetv-promo__card {
  display: block;
  width: 589px;
  max-width: 100%;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s ease;
}

.mega-livetv-promo__card:hover {
  transform: scale(1.01);
}

/* "ShopLC TV" label inside promo card, above the image */
.mega-livetv-promo__label {
  display: block;
  color: #1a4cff;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 12px;
}

/* Fixed-size image container: 589px × 381px — always visible, never collapse */
.mega-livetv-promo__img-wrap {
  display: block;
  position: relative;
  width: 589px;
  max-width: 100%;
  height: 381px;
  min-height: 381px;
  border-radius: 4px;
  overflow: hidden;
  background: #808080; /* Gray placeholder when image missing */
  box-sizing: border-box;
}

.mega-livetv-promo__img {
  position: absolute;
  inset: 0;
  background-color: #808080;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.mega-livetv-promo__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
}

.mega-livetv-promo__title {
  position: absolute;
  left: 16px;
  bottom: 16px;
  font-weight: 600;
  font-size: 16px;
  z-index: 1;
}

.mega-livetv-promo__arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 1;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.mega-livetv-promo__arrow svg {
  width: 14px;
  height: 14px;
}

.mega-livetv-promo__arrow path {
  fill: none;
  stroke: #111;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mega-livetv-promo__arrow:hover {
  transform: scale(1.05);
}

.mega-livetv-grid-col {
  width: 224px;
  max-width: 224px;
  height: 473px;
  max-height: 473px;
  flex: 0 0 224px;
  min-width: 224px;
  margin-top: 24px;
  padding-left: 32px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* Horizontal grid: 2 items row 1, 1 item centered row 2 */
.mega-livetv-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px 16px;
  width: 100%;
  min-width: 0;
  justify-items: center;
  align-content: start;
}

/* Third item (Live-Stream): centered in second row */
.mega-livetv-grid__item:nth-child(3) {
  grid-column: 1 / -1;
  justify-self: center;
}

.mega-livetv-grid__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
}

.mega-livetv-grid__item:hover .mega-livetv-grid__label {
  color: #1a4cff;
}

.mega-livetv-grid__item:hover .mega-livetv-grid__img {
  transform: scale(1.08);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.mega-livetv-grid__img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mega-livetv-grid__img--placeholder {
  background: #e8e8e8;
}

.mega-livetv-grid__img--livestream {
  background: #c00;
}

.mega-livetv-grid__label {
  font-size: 12px;
  line-height: 1.3;
  text-align: center;
  margin-top: 8px;
  color: #333;
}

/* ========== Im Trend mega menu (single row, 4 equal promo cards) ========== */
.mega-menu__inner--im-trend {
  grid-template-columns: 1fr;
  gap: 0;
  padding: 32px 24px;
}

.mega-im-trend-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
}

.mega-im-trend-card {
  display: block;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s ease;
}

.mega-im-trend-card:hover {
  transform: scale(1.02);
}

.mega-im-trend-card__label {
  display: block;
  color: #1a4cff;
  font-size: 14px;
  font-weight: 600;
  margin: 0 0 12px;
}

.mega-im-trend-card__img-wrap {
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1.2;
  max-height: 280px;
  border-radius: 4px;
  overflow: hidden;
  background: #9c9c9c;
}

.mega-im-trend-card__img {
  position: absolute;
  inset: 0;
  background: #9c9c9c;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.mega-im-trend-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.6) 0%, transparent 50%);
}

.mega-im-trend-card__text {
  position: absolute;
  left: 14px;
  bottom: 14px;
  font-weight: 600;
  font-size: 14px;
  z-index: 1;
}

.mega-im-trend-card__arrow {
  position: absolute;
  right: 14px;
  bottom: 14px;
  z-index: 1;
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
}

.mega-im-trend-card__arrow svg {
  width: 14px;
  height: 14px;
}

.mega-im-trend-card__arrow path {
  fill: none;
  stroke: #111;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.mega-im-trend-card__arrow:hover {
  transform: scale(1.05);
}

/* ========== Lifestyle mega menu (5 columns: Nach Lifestyle, Zubehör, Nach Marke, Nach Trends, Promo) ========== */
.mega-menu__inner--lifestyle {
  grid-template-columns: 1.2fr 1.2fr 1fr 1fr 2fr;
  gap: 32px;
}

.mega-menu__inner--lifestyle .mega-col h4 {
  color: #1a4cff;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 12px;
}

.mega-menu__inner--lifestyle .mega-col a {
  display: block;
  margin-bottom: 8px;
  color: #333;
  text-decoration: none;
  font-size: 14px;
}

.mega-menu__inner--lifestyle .mega-col a:hover {
  color: #1a4cff;
}

/* Lifestyle: circular image grids (Nach Lifestyle, Zubehör) — same structure as Schmuck grid */
.mega-lifestyle-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px 24px;
  margin-bottom: 0;
}

.mega-lifestyle-grid__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
}

.mega-lifestyle-grid__item:hover .mega-lifestyle-grid__label {
  color: #1a4cff;
}

.mega-lifestyle-grid__item:hover .mega-lifestyle-grid__img {
  transform: scale(1.08);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.15);
}

.mega-lifestyle-grid__img {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #e6e6e6;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.mega-lifestyle-grid__img--placeholder {
  background: #e8e8e8;
}

.mega-lifestyle-grid__label {
  font-size: 12px;
  line-height: 1.3;
  text-align: center;
  margin-top: 6px;
  color: #333;
  white-space: nowrap;
}

/* Lifestyle promo: image + overlay + title + subtitle + chevron */
.mega-lifestyle-promo {
  display: flex;
  align-items: flex-start;
  min-height: 0;
}

.mega-lifestyle-promo__card {
  display: block;
  position: relative;
  width: 100%;
  height: 260px;
  max-height: 260px;
  min-height: 260px;
  background: #9c9c9c;
  border-radius: 4px;
  overflow: hidden;
  text-decoration: none;
  color: #fff;
  transition: transform 0.2s ease;
}

.mega-lifestyle-promo__card:hover {
  transform: scale(1.02);
}

.mega-lifestyle-promo__img {
  position: absolute;
  inset: 0;
  background: #9c9c9c;
}

.mega-lifestyle-promo__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.5) 0%, transparent 50%);
}

.mega-lifestyle-promo__text {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mega-lifestyle-promo__title {
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
}

.mega-lifestyle-promo__subtitle {
  font-size: 14px;
  opacity: 0.95;
}

.mega-lifestyle-promo__arrow {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 1;
}

.mega-lifestyle-promo__arrow:hover {
  transform: scale(1.05) translateX(2px);
}

.wishlist-replace {
  padding: 0 15px 0 15px;
  overflow: scroll;
}

.wishlist-replace .wishlist-section__header,
.wishlist-replace .wishlist-item__shipping {
  display: none;
}

.wishlist-replace .wishlist-item__quantity {
  display: none;
}

.wishlist-replace .wishlist-item {
  display: grid !important;
  grid-template-columns: 150px 1fr;
  grid-template-areas:
    "image details"
    "center actions";
  gap: 14px 20px !important;
  align-items: start;
}

.wishlist-replace .wishlist-item__image-container {
  grid-area: image;
  width: 150px;
}

.wishlist-replace .wishlist-item__image {
  width: 150px;
  height: 150px;
  object-fit: cover;
}

.wishlist-replace .wishlist-item__details {
  grid-area: details;
  min-width: 0;
}

.wishlist-replace .wishlist-item__center {
  grid-area: center;
}

.wishlist-replace .wishlist-item__actions {
  grid-area: actions;
  display: flex !important;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.wishlist-replace .wishlist-item__move-to-cart {
  width: 100%;
  justify-content: center;
}

.wishlist-replace .wishlist-item__title a {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.wishlist-replace .wishlist-item__center {
  grid-area: center;
  width: auto !important;
  min-width: 0;
  max-width: none;
  display: block;
}

.wishlist-replace .wishlist-item__price,
.wishlist-replace .wishlist-item__size,
.wishlist-replace .wishlist-item__shipping {
  width: auto;
  max-width: none;
  white-space: normal;
}

.wishlist-item__notify-btn {
  display: none !important;
}

@media (min-width: 990px) {
  .header-navigation-menu__container {
    overflow: visible;
  }

  .header-new:has(.mega-menu),
  .header-new__container:has(.mega-menu) {
    overflow: visible;
  }

  .header-new__navigation-wrapper:has(.has-mega),
  .header-new__navigation-scroll:has(.mega-menu) {
    overflow: visible;
  }

  .header-new.header-new--has-geschenke-mega,
  .header-new--has-geschenke-mega .header-new__container,
  .header-new--has-geschenke-mega .header-new__navigation-wrapper,
  .header-new--has-geschenke-mega .header-new__navigation-scroll {
    overflow: visible;
  }
}

wishlist-header .wishlist-header__badge {
  min-width: 15px !important;
  height: 15px !important;
  background-color: #bc0514 !important;
}

/* Responsive: narrow viewports reduce columns/gap so layout doesn't break */
@media (min-width: 990px) and (max-width: 1200px) {
  .mega-menu__inner {
    grid-template-columns: repeat(3, 1fr) 1.5fr;
    gap: 24px;
    padding: 28px 0;
  }
  .mega-menu__inner--schmuck {
    grid-template-columns: 1fr 1fr 1fr 1.2fr 1.5fr;
    gap: 24px;
    padding: 28px 0;
  }
  .mega-menu__inner--diamantschmuck {
    grid-template-columns: 1fr 1fr 1.2fr 1.2fr 1.5fr;
    gap: 24px;
    padding: 28px 0;
  }
  .mega-menu__inner--lifestyle {
    grid-template-columns: 1fr 1fr 1fr 1fr 1.5fr;
    gap: 24px;
    padding: 28px 0;
  }
}

@media (min-width: 990px) and (max-width: 1500px) {
  .mega-menu__inner {
    max-width: min(1440px, 100%);
  }
}

/* Desktop only: hide mega and backdrop on tablet/mobile */
@media (max-width: 989px) {
  .mega-menu,
  .mega-backdrop {
    display: none !important;
  }
}

/* Tablet */
@media (max-width: 989px) {
  .header-navigation-menu__list {
    gap: clamp(10px, 2vw, 28px); /* Smaller responsive gap on tablet */
  }
  
  .header-navigation-menu__link {
    font-size: clamp(10px, 0.95vw, 13px); /* Smaller responsive font on tablet */
  }

  /*
    Mobile header row: hamburger | logo | actions.
    Do not use a fixed inner width with .header-align’s horizontal padding — that shrinks the
    content box (~48px) and clips the last action icon. Use full width + modest side padding.
  */
  .header-new__inner.header-align {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: nowrap;
    gap: clamp(6px, 2vw, 10px);
    padding-left: max(12px, env(safe-area-inset-left, 0px));
    padding-right: max(12px, env(safe-area-inset-right, 0px));
    box-sizing: border-box;
    height: auto;
    min-width: 0;
  }

  /* Column 1 — Menu: 27px × 46px, icon + "Menu" label */
  .header-new__hamburger {
    width: 27px;
    min-width: 27px;
    height: 46px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .header-new__hamburger .header-drawer__trigger-content,
  .header-new__hamburger .header-drawer__trigger-content--placeholder {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    width: 100%;
  }

  .header-new__hamburger .header-drawer__menu-label {
    font-size: 12px;
    line-height: 1.2;
    margin: 0;
    font-weight: 400;
    color: var(--color-foreground, #191919);
  }

  .header-new__hamburger .svg-wrapper.header-drawer-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-new__hamburger .svg-wrapper.header-drawer-icon svg {
    width: 24px;
    height: 24px;
    object-fit: contain;
  }

  /* Column 2 — Logo: 120px × 31px (desktop), visually centered */
  .header-new__logo {
    width: 89px;
    min-width: 89px;
    height: 31px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
  }

  .header-new__logo img {
    max-width: 89px;
    max-height: 31px;
    width: auto;
    height: auto;
    object-fit: contain;
  }

  /* Column 3 — actions: grows/shrinks with viewport; icons align end (no fixed 222px clip) */
  .header-new__right {
    flex: 1 1 auto;
    min-width: 0;
    width: auto;
    max-width: none;
    height: 50px;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    padding: 0;
    margin-left: auto;
    overflow: visible;
  }

  /* Hide "Prämien sichern" (Rewards) on mobile only — no space, no placeholder */
  .header-new__right .header-actions-new__item--rewards {
    display: none !important;
  }

  .header-new__right .header-actions-new {
    width: auto;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
    gap: clamp(4px, 1.5vw, 10px);
    flex-shrink: 1;
    min-width: 0;
    overflow: visible;
  }

  .header-new__right .header-actions-new__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    gap: 2px;
    flex-shrink: 0;
    height: 38px;
    box-sizing: border-box;
  }

  .header-new__right .header-actions-new__icon {
    width: 22px;
    height: 22px;
    min-width: 22px;
    min-height: 22px;
    max-height: 22px;
    flex-shrink: 0;
    overflow: hidden;
  }

  .header-new__right .header-actions-new__icon svg {
    width: 22px;
    height: 22px;
    object-fit: contain;
  }

  .header-new__right .header-actions-new__icon--wishlist {
    margin-top: -2px;
  }

  .header-new__right .header-actions-new__item.account-link svg {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
  }

  .header-new__right .header-actions-new__label {
    font-size: 12px;
    line-height: 1.2;
    white-space: nowrap;
  }

  /* Hide desktop search-in-row */
  .header-new__center {
    display: none;
  }

  /* Search bar: new row, full width 358px, height 44px, 16px side padding, rounded */
  .header-new__mobile-search-wrapper {
    display: block;
    width: 358px;
    max-width: 100%;
    margin: 0 auto;
    padding: 12px 16px 0;
    box-sizing: border-box;
  }

  .header-new__mobile-search-wrapper .header-search-inline {
    width: 100%;
    max-width: 100%;
  }

  .header-new__mobile-search-wrapper .header-search-inline__wrapper {
    width: 100%;
    height: 44px;
    border-radius: 9999px;
    overflow: hidden;
  }

  /* Navigation row should not render as horizontal row on tablet/mobile (use hamburger). */
  .header-new__navigation-wrapper {
    display: none;
  }

  /* ShopLC TV icon should not be visible on tablet/mobile */
  .header-navigation-menu__icon {
    display: none;
  }
}

/* Desktop: list constrained to width; gap scales with viewport */
@media (min-width: 990px) {
  .header-new {
    --header-padding-horizontal: clamp(24px, 14vw, 240px);
  }

  .header-navigation-menu__list {
    width: 100%;
    max-width: 100%;
    gap: clamp(20px, 2vw, 60px);
  }

  .header-navigation-menu__link,
  .header-navigation-menu__link--sale {
    font-size: clamp(14px, 0.85vw, 16px);
    line-height: 1.5;
    letter-spacing: 0.02em;
  }
}

/* Mobile */
@media (max-width: 749px) {
  .header-new__logo {
    width: 70px;
    height: auto;
  }

  .header-new__logo img {
    width: 70px;
    height: auto;
  }
  
  .header-navigation-menu {
    height: 55px; /* Maintain height */
  }
  
  
  
  .header-navigation-menu__list {
    gap: clamp(8px, 1.5vw, 14px); /* Smaller responsive gap on mobile */
    justify-content: flex-start; /* Keep items aligned left */
  }
  
  .header-navigation-menu__link {
    font-size: clamp(9px, 0.9vw, 11px); /* Smaller responsive font on mobile */
    white-space: nowrap; /* Keep text on one line */
    overflow: visible; /* NO clipping - show full text */
    text-overflow: clip; /* NO ellipsis - show full text */
  }
  
  /* Keep items from shrinking on mobile - show full text */
  .header-navigation-menu__item {
    flex-shrink: 0; /* Keep full text visible */
  }
  
  /* Very small screens: further adjustments */
  @media (max-width: 480px) {
    .header-navigation-menu__list {
      gap: clamp(6px, 1.2vw, 10px); /* Even smaller responsive gap */
    }
    
    .header-navigation-menu__link {
      font-size: clamp(8px, 0.8vw, 10px); /* Even smaller responsive font */
    }
    
    /* Hide icon on very small screens to save space */
    .header-navigation-menu__icon {
      display: none;
    }
  }
}
/* END_SECTION:header */

/* START_SECTION:hero-banner (INDEX:30) */
.hero-banner {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  .hero-banner--no-image {
    min-height: 15.625rem;
    background-color: var(--hero-banner-bg);
  }

  .hero-banner--has-image {
    min-height: 0;
    background-color: transparent;
  }

  .hero-banner--contained {
    margin-inline: auto;
    max-width: var(--page-width);
  }

  .hero-banner__inner {
    position: relative;
    width: 100%;
    min-height: inherit;
    display: grid;
    place-items: center;
    padding-inline: 0;
  }

  .hero-banner--no-image .hero-banner__inner {
    padding-inline: var(--grid-mobile-horizontal-spacing);
  }

  .hero-banner__media {
    grid-area: 1 / 1;
    width: 100%;
    z-index: 0;
  }

  .hero-banner__img {
    width: 100%;
    height: auto;
    display: block;
  }

  .hero-banner__content {
    grid-area: 1 / 1;
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
    text-align: center;
    max-width: 100%;
    padding-inline: var(--grid-mobile-horizontal-spacing);
  }

  .hero-banner__content--left {
    align-items: flex-start;
    text-align: left;
  }

  .hero-banner__content--right {
    align-items: flex-end;
    text-align: right;
  }

  .hero-banner__heading {
    margin: 0;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-normal);
    line-height: 1.5;
    color: var(--hero-banner-heading-color);
  }

  .hero-banner__subheading {
    margin: 0;
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: 1.5;
    color: var(--hero-banner-heading-color);
    opacity: 0.9;
  }

  .hero-banner__cta {
    margin-block-start: var(--spacing-xs);
  }

  .hero-banner__cta:focus-visible {
    outline: 2px solid rgb(var(--color-foreground));
    outline-offset: 2px;
  }

  .hero-banner__placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 0;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-normal);
    line-height: 1.5;
    color: var(--hero-banner-heading-color);
    opacity: 0.8;
  }

  @media (min-width: 990px) {
    .hero-banner {
      min-height: 23.125rem;
    }

    .hero-banner--contained .hero-banner__inner {
      padding-inline: var(--spacing-section-horizontal);
    }

    .hero-banner__content {
      padding-inline: var(--spacing-section-horizontal);
    }
  }
/* END_SECTION:hero-banner */

/* START_SECTION:hero (INDEX:31) */
.hero-wrapper {
    --hero-height-offset: 0px;
  }

  /* Being extra specific in the selector for performance reasons */
  body:has(> #header-group > .header-section > #header-component) .hero-wrapper:first-child {
    --hero-height-offset: var(--header-group-height, 0);
  }

  .hero {
    position: relative;
    min-height: calc(var(--hero-min-height) - var(--hero-height-offset));
  }

  .hero[data-shopify-visual-preview] {
    --hero-min-height: 600px;

    min-height: 600px;
  }

  .hero__container {
    position: relative;
    overflow: hidden;
    border: var(--hero-border-width) var(--hero-border-style) rgb(var(--color-border-rgb) / var(--hero-border-opacity));
    min-height: inherit;
    align-items: var(--vertical-alignment-mobile);
    justify-content: var(--horizontal-alignment);
    z-index: var(--layer-base);

    @media screen and (min-width: 750px) {
      align-items: var(--vertical-alignment);
    }
  }

  .hero__content-wrapper.page-width {
    grid-column: 2 / 3;
  }

  .hero__content-wrapper {
    position: relative;
    inset: 0;
    z-index: var(--layer-flat);
  }

  .hero__content-wrapper .group-block-content {
    position: relative;
  }

  .hero__media-wrapper {
    position: absolute;
    inset: 0;
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(var(--hero-media-count, 1), 1fr);
  }

  .hero--auto .hero__image,
  .hero--auto .hero__video {
    aspect-ratio: var(--hero-media-aspect-ratio);
  }

  .hero--no-blocks-auto-height {
    :is(.hero__image, .hero__video) {
      width: 100%;
      aspect-ratio: auto;
    }

    .hero__media-wrapper {
      /* When there are no blocks and the height is auto, allow the image to appear. */
      position: relative;
    }
  }

  .hero__image,
  .hero__video,
  .hero__video-poster {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
    overflow: hidden;
    position: relative;
    z-index: var(--layer-base);
  }

  /* Mobile/Desktop media visibility */

  .hero__image--mobile,
  .hero__video--mobile,
  .hero__video-wrapper--mobile {
    display: none;
  }

  .hero__image--desktop,
  .hero__video--desktop,
  .hero__video-wrapper--desktop {
    display: block;
  }

  @media screen and (max-width: 749px) {
    .hero__image--desktop,
    .hero__video--desktop,
    .hero__video-wrapper--desktop {
      display: none;
    }

    .hero__image--mobile,
    .hero__video--mobile,
    .hero__video-wrapper--mobile {
      display: block;
    }

    .hero__media-wrapper {
      grid-template-columns: repeat(var(--hero-media-count-mobile, 1), 1fr);
    }

    /* Mobile stacking */
    .hero--stack-mobile .hero__media-wrapper {
      grid-template-columns: 1fr;
      grid-template-rows: repeat(var(--hero-media-count-mobile, 1), calc(100% / var(--hero-media-count-mobile, 1)));
    }
  }

  .hero__video-wrapper--desktop {
    position: relative;
  }

  .hero__video-poster--desktop {
    position: absolute;
  }

  .hero__link {
    position: absolute;
    inset: 0;
    grid-column: 1 / -1;
  }

  .hero__media-wrapper,
  .hero__content-wrapper {
    pointer-events: none;

    :is(a, button, input, textarea, select) {
      pointer-events: auto;
    }
  }

  .hero__content-wrapper--design-mode * {
    pointer-events: auto;
  }

  .hero[data-blur-shadow='true'] {
    --blurred-reflection-filter-saturate: saturate(1.5);
    --blurred-reflection-mask-image: linear-gradient(to bottom, #000 0%, #000 60%, transparent 100%);
    --blurred-reflection-box-shadow: rgb(0 0 0 / 5%) 0 0 1rem;
    --blurred-reflection-filter-blur: blur(20px);
    --blurred-reflection-scale: scale(2, 1.25);
    --blurred-reflection-padding-block-end: 60px;
  }

  .hero[data-blur-shadow='true'] .hero__container::before {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: var(--blurred-reflection-box-shadow);
    mix-blend-mode: overlay;
    pointer-events: none;
    z-index: -1;
  }

  .hero__blurred-image {
    position: absolute;
    inset: 0;
    z-index: -1;
    mask-image: var(--blurred-reflection-mask-image);
    filter: var(--blurred-reflection-filter-saturate);
    pointer-events: none;
    transform: translateY(50%);
    overflow: hidden;
  }

  .hero__blurred-image--desktop {
    display: none;

    @media screen and (min-width: 750px) {
      display: block;
    }
  }

  .hero__blurred-image--mobile {
    display: block;

    @media screen and (min-width: 750px) {
      display: none;
    }
  }

  .hero__blurred-image img,
  .hero__blurred-image svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    filter: var(--blurred-reflection-filter-blur);
    opacity: var(--blur-opacity);
    transform: var(--blurred-reflection-scale);
    padding-block-end: var(--blurred-reflection-padding-block-end);

    &:not(:only-child) {
      width: 50%;

      &:last-child {
        right: 0;
        left: auto;
      }
    }
  }
/* END_SECTION:hero */

/* START_SECTION:home-banner-grid (INDEX:32) */
.home-banner-grid-section {
    width: 100%;
  }

  .home-banner-grid__row1,
  .home-banner-grid__row2 {
    align-items: stretch;
  }

  .home-banner-grid__row2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-sm, 12px);
    grid-auto-rows: 1fr;
  }

  /* Mobile: span full width so banners are edge-to-edge (no left/right page margin).
     Root cause of padding: .section uses a 3-column grid with --page-margin; content in column 2 gets side gutters. */
  .home-banner-grid-section.section--page-width {
    grid-column: 1 / -1;
  }

  @media (min-width: 750px) {
    .home-banner-grid-section.section--page-width {
      grid-column: 2;
    }
  }

  /* Mobile: column, gap 12px (Figma Frame 2147224338) */
  .home-banner-grid {
    width: 100%;
    max-width: var(--page-width);
    margin-inline: auto;
    display: flex;
    flex-direction: column;
    gap: var(--spacing-sm, 12px);
  }

  /* Mobile: when 4 banners, single grid = Hero then 2×2 (B1,B2,B3,B4) per PRD */
  .home-banner-grid[data-supporting-count="4"] {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    gap: var(--spacing-sm, 12px);
  }

  .home-banner-grid[data-supporting-count="4"] .home-banner-grid__row1,
  .home-banner-grid[data-supporting-count="4"] .home-banner-grid__row2 {
    display: contents;
  }

  .home-banner-grid[data-supporting-count="4"] .home-banner-grid__banner--hero {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .home-banner-grid[data-supporting-count="4"] .home-banner-grid__banner--supporting-0 {
    grid-column: 1;
    grid-row: 2;
  }

  .home-banner-grid[data-supporting-count="4"] .home-banner-grid__banner--supporting-1 {
    grid-column: 2;
    grid-row: 2;
  }

  .home-banner-grid[data-supporting-count="4"] .home-banner-grid__banner--supporting-2 {
    grid-column: 1;
    grid-row: 3;
  }

  .home-banner-grid[data-supporting-count="4"] .home-banner-grid__banner--supporting-3 {
    grid-column: 2;
    grid-row: 3;
  }

  .home-banner-grid__row1 {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-sm, 12px);
    min-height: 0;
  }

  .home-banner-grid[data-supporting-count="0"] .home-banner-grid__row1 {
    grid-template-columns: 1fr;
  }

  .home-banner-grid__row2 {
    display: grid;
    gap: var(--spacing-sm, 12px);
    grid-template-columns: repeat(2, 1fr);
  }

  .home-banner-grid__row2[data-row2-count="2"] {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-banner-grid__row2[data-row2-count="3"] {
    grid-template-columns: repeat(2, 1fr);
  }

  .home-banner-grid__banner {
    position: relative;
    border-radius: 5px;
    overflow: hidden;
    display: flex;
    text-decoration: none;
    color: inherit;
    min-height: 0;
  }

  .home-banner-grid__banner--hero {
    min-height: 12rem;
    padding: var(--spacing-section-vertical) var(--grid-mobile-horizontal-spacing);
  }

  /* Figma mobile: 173×212px cards, padding 85px 36px */
  .home-banner-grid__banner--supporting {
    aspect-ratio: 173 / 212;
    padding: var(--spacing-xl, 1.25rem) var(--spacing-lg, 1rem);
  }

  .home-banner-grid__banner-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
  }

  /* No crop: show full image (contain), centered */
  .home-banner-grid__banner-background {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 1;
  }

  /* Desktop image: hidden on mobile */
  .home-banner-grid__banner-background--desktop {
    display: none;
  }

  /* Mobile image: visible on mobile only */
  .home-banner-grid__banner-background--mobile {
    display: block;
  }

  .home-banner-grid__banner-content {
    position: relative;
    z-index: 3;
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    min-width: 0;
    height: 100%;
    padding: var(--spacing-lg);
    gap: var(--spacing-md);
    box-sizing: border-box;
  }

  .home-banner-grid__banner-content--center {
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .home-banner-grid__banner-heading {
    font-family: var(--font-heading--family);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-normal);
    line-height: 1.5;
    margin: 0;
  }

  .home-banner-grid__banner-subheading {
    font-family: var(--font-body--family);
    font-size: var(--font-body-size);
    font-weight: var(--font-body-weight);
    line-height: 1.5;
    margin: 0;
  }

  .home-banner-grid__banner-cta {
    display: inline-block;
    padding: var(--spacing-sm) var(--spacing-lg);
    border: 2px solid currentColor;
    border-radius: var(--border-radius-md);
    text-decoration: none;
    font-family: var(--font-body--family);
    font-size: var(--font-body-size);
    font-weight: var(--font-body-weight);
    transition: opacity 0.2s ease;
  }

  .home-banner-grid__banner-cta:hover {
    opacity: 0.9;
  }

  .home-banner-grid__banner:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
  }

  @media (min-width: 750px) {
    .home-banner-grid__row2[data-row2-count="3"] {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (min-width: 990px) {
    /* Desktop image visible, mobile image hidden */
    .home-banner-grid__banner-background--desktop {
      display: block;
    }

    .home-banner-grid__banner-background--mobile {
      display: none;
    }

    /* Desktop: revert to column layout (Hero+ B1 row, B2 B3 B4 row) */
    .home-banner-grid[data-supporting-count="4"] {
      display: flex;
      flex-direction: column;
    }

    .home-banner-grid[data-supporting-count="4"] .home-banner-grid__row1,
    .home-banner-grid[data-supporting-count="4"] .home-banner-grid__row2 {
      display: grid;
    }

    .home-banner-grid[data-supporting-count="4"] .home-banner-grid__banner--hero,
    .home-banner-grid[data-supporting-count="4"] .home-banner-grid__banner--supporting-0,
    .home-banner-grid[data-supporting-count="4"] .home-banner-grid__banner--supporting-1,
    .home-banner-grid[data-supporting-count="4"] .home-banner-grid__banner--supporting-2,
    .home-banner-grid[data-supporting-count="4"] .home-banner-grid__banner--supporting-3 {
      grid-column: auto;
      grid-row: auto;
    }

    /* Figma: Root/Frame gap 20px */
    .home-banner-grid {
      gap: var(--spacing-md, 20px);
    }

    .home-banner-grid__row1 {
      grid-template-columns: 75fr 25fr;
      gap: var(--spacing-md, 20px);
      min-height: 27.5rem;
    }

    .home-banner-grid[data-supporting-count="0"] .home-banner-grid__row1 {
      grid-template-columns: 1fr;
    }

    .home-banner-grid__row2 {
      gap: var(--spacing-md, 20px);
      grid-template-columns: 25fr 51fr 25fr;
      min-height: 21rem;
    }

    .home-banner-grid__row2[data-row2-count="2"] {
      grid-template-columns: 1fr 1fr;
    }

    .home-banner-grid__row2[data-row2-count="3"] {
      grid-template-columns: 25fr 49fr 25fr;
    }

    .home-banner-grid__banner--hero {
      min-height: 27.5rem;
      padding: var(--spacing-section-vertical) var(--spacing-section-horizontal);
    }

    .home-banner-grid__banner--supporting {
      aspect-ratio: auto;
      min-height: 0;
    }

    .home-banner-grid__row1 .home-banner-grid__banner--supporting-0 {
      min-height: 27.5rem;
    }

    .home-banner-grid__row2 .home-banner-grid__banner--supporting {
      min-height: 21rem;
    }

    .home-banner-grid__banner-content--center {
      text-align: left;
      align-items: flex-start;
    }
  }
/* END_SECTION:home-banner-grid */

/* START_SECTION:html-slot-2 (INDEX:34) */
.html-slot-2 {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 304px;
    overflow: hidden;
  }

  .html-slot-2__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    height: 100%;
  }

  .html-slot-2__title {
    font-family: var(--font-heading);
    color: var(--color-foreground);
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin: 0;
    line-height: var(--font-h2--line-height);
  }

  .html-slot-2__content {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .html-slot-2__content .rte {
    font-family: var(--font-body);
    color: var(--color-foreground);
    font-size: var(--font-size-body);
    line-height: var(--font-body--line-height);
  }

  .html-slot-2__custom-html {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .html-slot-2__custom-html * {
    font-family: var(--font-body);
    color: var(--color-foreground);
  }

  @media screen and (max-width: 749px) {
    .html-slot-2 {
      height: 304px;
    }

    .html-slot-2__title {
      font-size: var(--font-size-h3);
    }

    .html-slot-2__content .rte {
      font-size: var(--font-size-body);
    }
  }
/* END_SECTION:html-slot-2 */

/* START_SECTION:html-slot (INDEX:35) */
.html-slot {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 304px;
    overflow: hidden;
  }

  .html-slot__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    height: 100%;
  }

  .html-slot__title {
    font-family: var(--font-heading);
    color: var(--color-foreground);
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin: 0;
    line-height: var(--font-h2--line-height);
  }

  .html-slot__content {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .html-slot__content .rte {
    font-family: var(--font-body);
    color: var(--color-foreground);
    font-size: var(--font-size-body);
    line-height: var(--font-body--line-height);
  }

  .html-slot__custom-html {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .html-slot__custom-html * {
    font-family: var(--font-body);
    color: var(--color-foreground);
  }

  @media screen and (max-width: 749px) {
    .html-slot {
      height: 304px;
    }

    .html-slot__title {
      font-size: var(--font-size-h3);
    }

    .html-slot__content .rte {
      font-size: var(--font-size-body);
    }
  }
/* END_SECTION:html-slot */

/* START_SECTION:layered-slideshow (INDEX:36) */
.layered-slideshow-section {
    position: relative;
  }

  layered-slideshow-component {
    display: block;
    width: 100%;
  }

  .layered-slideshow__container {
    --radius: calc(var(--corner-radius, 1) * 1rem);
    --button-width: 56px;
    --border-color: var(--color-background);
    --inactive-tabs-width: calc((var(--total-tabs) - 1) * var(--button-width));
    --active-panel-width: calc(100cqi - var(--inactive-tabs-width));
    width: 100%;
    position: relative;
    container-type: inline-size;
    border-radius: var(--radius);
    overflow: hidden;
  }

  .layered-slideshow__container:not([size='auto']) {
    height: 100%;
  }

  .layered-slideshow__container[size='auto'] {
    height: auto;
  }

  @media screen and (min-width: 750px) {
    layered-slideshow-component {
      min-height: var(--layered-min-height-desktop, 0px);
    }
  }

  .layered-slideshow__tablist {
    display: grid;
    grid-template-columns: var(--active-tab);
    position: absolute;
    inset: 0;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }

  .layered-slideshow__tablist button {
    width: var(--button-width);
    height: 100%;
    pointer-events: all;
    opacity: 0;
    cursor: grab;
    border: none;
    background: transparent;
    padding: 0;
    position: relative;
    outline: none;
    transition: opacity 0.2s ease;
  }

  .layered-slideshow__tablist button:active {
    cursor: grabbing;
  }

  .layered-slideshow__tablist button[aria-selected='true'] {
    cursor: default;
  }

  .layered-slideshow__tablist button:focus-visible {
    opacity: 1;
  }

  .layered-slideshow__container[data-dragging] {
    cursor: grabbing;
  }

  .layered-slideshow__container[data-instant-transitions],
  .layered-slideshow__container:is([data-dragging], [data-instant-transitions])
    :is(
      .layered-slideshow__tablist,
      .layered-slideshow__panels,
      .layered-slideshow__panel-content,
      .layered-slideshow__content
    ) {
    transition: none;
  }

  .layered-slideshow__panels {
    display: grid;
    grid-template-columns: var(--active-tab);
    height: 100%;
    overflow: hidden;
  }

  [role='tabpanel'] {
    position: relative;
    height: 100%;
    min-width: var(--button-width);
    border-radius: var(--radius);
    z-index: calc(var(--total-tabs) - var(--index));
  }

  [role='tabpanel']:first-child .layered-slideshow__panel-content {
    width: var(--active-panel-width);
    border-left: var(--border-width) solid var(--border-color);
  }

  [role='tabpanel']:not(:first-child) .layered-slideshow__content {
    padding-inline-start: calc((var(--radius) * 2) + var(--padding-inline-start, 0px));
  }

  .layered-slideshow__panel-content {
    border: var(--border-width) solid var(--border-color);
    border-left: none;
    border-radius: var(--radius);
    position: absolute;
    right: 0;
    top: 0;
    bottom: 0;
    overflow: hidden;
    width: calc(var(--active-panel-width) + (var(--radius) * 2));
  }

  .layered-slideshow__panel-content :is(img, video, svg) {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Video poster visibility - poster shows initially and hides when panel becomes active */
  .layered-slideshow__video-poster {
    z-index: 1;
  }

  .layered-slideshow__video {
    z-index: 0;
  }

  /* When panel is active, hide poster so video is visible */
  [role='tabpanel']:not([inert]) .layered-slideshow__video-poster {
    opacity: 0;
  }

  @media (prefers-reduced-motion: no-preference) {
    .layered-slideshow__video-poster {
      transition: opacity 0.3s ease;
    }
  }

  .layered-slideshow__content {
    height: 100%;
    position: relative;
    z-index: 1;
  }

  .layered-slideshow__content > * {
    margin: auto;
  }

  .layered-slideshow__content.background-transparent {
    background-color: transparent;
  }

  /* Shared transitions (desktop and mobile) */
  @media (prefers-reduced-motion: no-preference) {
    .layered-slideshow__panels,
    .layered-slideshow__tablist {
      transition-property: grid-template-columns, grid-template-rows;
      transition-duration: 0.6s;
      transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    }

    .layered-slideshow__content {
      opacity: 0;
      transform: translateY(0.5lh);
      transition: opacity 0.48s, transform 0.48s;
    }

    [role='tabpanel']:not([inert]) .layered-slideshow__content {
      opacity: 1;
      transform: translateY(0);
      transition-delay: 0.24s;
    }
  }

  @media screen and (max-width: 749px) {
    .layered-slideshow__container {
      --button-height: 44px;
      --inactive-tabs-height: calc((var(--total-tabs) - 1) * var(--button-height));
    }

    .layered-slideshow__container:not([size='auto']) {
      --layered-total-height: calc(var(--layered-panel-height-mobile, 260px) + var(--inactive-tabs-height));
      --active-panel-height: var(--layered-panel-height-mobile, 260px);
      min-height: var(--layered-total-height);
      height: var(--layered-total-height);
    }

    .layered-slideshow__container[size='auto'] {
      height: auto;
    }

    .layered-slideshow__tablist {
      grid-template-rows: var(--active-tab);
      grid-template-columns: 1fr;
      grid-auto-flow: row;
    }

    .layered-slideshow__tablist button {
      width: 100%;
      height: var(--button-height);
    }

    .layered-slideshow__panels {
      grid-template-rows: var(--active-tab);
      grid-template-columns: 1fr;
      grid-auto-flow: row;
    }

    [role='tabpanel'] {
      min-height: var(--button-height);
      width: 100%;
      height: 100%;
      position: relative;
      z-index: calc(var(--total-tabs) - var(--index) + 10);
    }

    [role='tabpanel']:first-child .layered-slideshow__panel-content {
      width: 100%;
      height: var(--active-panel-height);
      border-top: var(--border-width) solid var(--border-color);
      left: 0;
      right: 0;
      border-left: var(--border-width) solid var(--border-color);
    }

    .layered-slideshow__panel-content {
      position: absolute;
      border: var(--border-width) solid var(--border-color);
      border-radius: var(--radius);
      box-sizing: border-box;
      width: 100%;
      /* Clamp overlap to (button-height - border-width) to prevent visual issues with large radius + border */
      height: calc(var(--active-panel-height) + min(var(--radius) * 2, var(--button-height) - var(--border-width)));
      top: unset;
      left: 0;
      right: 0;
      bottom: 0;
      overflow: hidden;
    }

    [role='tabpanel']:not(:first-child) .layered-slideshow__panel-content {
      border-top: none;
    }

    [role='tabpanel']:not(:first-child) {
      margin-top: calc(var(--border-width) * -1);
    }

    .layered-slideshow__content {
      padding-inline-start: var(--padding-inline-start, 0px);
      padding-inline-end: var(--padding-inline-end, 0px);
    }

    /* Adjust padding for non-first slides to account for radius overlap at the top (not sides on mobile) */
    [role='tabpanel']:not(:first-child) .layered-slideshow__content {
      padding-block-start: calc((var(--radius) * 2) + var(--padding-block-start, 0px));
      padding-inline-start: var(--padding-inline-start, 0px);
    }
  }
/* END_SECTION:layered-slideshow */

/* START_SECTION:live-tv-missed-products (INDEX:37) */
.live-tv-static-hosts {
  display: flex;              /* HORIZONTAL flow */
  align-items: center;        /* vertical center */
  justify-content: center;    /* center content */

  width: 100%;
  max-width: 1348px;          /* Figma width */
  height: 146.58px;           /* Figma height */
  margin: 0 auto;

  gap: 18px;                  /* Figma gap */
  opacity: 1;
  box-sizing: border-box;
  position: relative;
  z-index: 20;
}

.live-tv-static-hosts__arrow {
  width: 35px;
  height: 35px;
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
  padding: 0;
  transition: background-color 0.2s ease, transform 0.1s ease;
  z-index: 10;
}

.live-tv-static-hosts__arrow:hover {
  background-color: #f5f5f5;
}

.live-tv-static-hosts__arrow:active {
  transform: scale(0.95);
}

.live-tv-static-hosts__arrow-icon {
  width: 10px;
  height: 10px;
  display: block;
  border-right: 2px solid #737373;
  border-bottom: 2px solid #737373;
  transform: rotate(135deg); /* LEFT arrow */
}

.live-tv-static-hosts__arrow--right .live-tv-static-hosts__arrow-icon {
  transform: rotate(-45deg); /* RIGHT arrow */
}

.live-tv-static-hosts__viewport {
  flex: 1;
  height: 146.58px;
  background: rgba(255, 255, 255, 1);
  opacity: 1;
  box-shadow: -5px 1px 19.72px rgba(0, 0, 0, 0.08);
  overflow-x: auto;          /* horizontal scroll */
  overflow-y: visible;
  box-sizing: border-box;
  scrollbar-width: none;     /* Firefox */
  -ms-overflow-style: none;  /* IE/Edge */
  padding-bottom: 14px;
}

.live-tv-static-hosts__viewport::-webkit-scrollbar {
  display: none;             /* Chrome/Safari */
}

.live-tv-static-hosts__list {
  display: flex;              /* HORIZONTAL flow */
  align-items: center;
  height: 100%;
  opacity: 1;
  box-sizing: border-box;
  scroll-behavior: smooth;
  gap: 18px;                     /* Items handle their own spacing if needed */
}

/* ALL host card */
.live-tv-static-hosts__item--all {
  width: 177px;
  height: 136px;
  position: relative;        /* For triangle positioning */

  background: rgba(241, 246, 255, 1);
  border-radius: 5px;
  border-bottom: 3px solid rgba(30, 53, 177, 1);

  display: flex;
  align-items: center;
  justify-content: center;

  box-sizing: border-box;
  overflow: visible;
}

.live-tv-static-hosts__item--active .live-tv-static-hosts__active-triangle {
  position: absolute;
  bottom: -10px;             /* Position below the border */
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid rgba(30, 53, 177, 1); /* Match primary blue */
  z-index: 50;               /* Higher z-index to overlap products below */
}

.live-tv-static-hosts__all-inner {
  display: flex;
  flex-direction: column;   /* 🔑 vertical */
  align-items: center;
  justify-content: center;
  gap: 10px;                /* Figma gap */

  width: 100%;
  height: 100%;
}


.live-tv-static-hosts__all-pill {
  width: 99px;
  height: 56px;

  background: #ffffff;
  border-radius: 28px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: rgba(30, 53, 177, 1);

  text-align: center;
  box-sizing: border-box;
}

.live-tv-static-hosts__all-label {
  width: 60px;
  height: 42px;

  font-family: 'Nunito Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.3;
  color: rgba(30, 53, 177, 1);

  text-align: center;
}



.live-tv-static-hosts__item {
  width: 177px;
  height: 136px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 5px;
  box-sizing: border-box;
  cursor: pointer;
  flex-shrink: 0;
  overflow: visible;
  position: relative;        /* Ensure relative for absolute triangle */
  border-bottom: 3px solid transparent; /* Placeholder for active state */
  transition: border-color 0.2s ease;
}

.live-tv-static-hosts__item--active {
  border-bottom-color: rgba(30, 53, 177, 1);
}

.live-tv-static-hosts__host-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
}

.live-tv-static-hosts__host-avatar-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.live-tv-static-hosts__host-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  overflow: hidden;
  background: #f0f0f0;
}

.live-tv-static-hosts__host-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.live-tv-static-hosts__host-indicator {
  width: 40px;
  height: 3px;
  background: rgba(30, 53, 177, 1);
  border-radius: 2px;
}

.live-tv-static-hosts__host-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 2px;
}

.live-tv-static-hosts__host-date {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 11px;
  font-weight: 400;
  color: #737373;
  line-height: 1.2;
}

.live-tv-static-hosts__host-details {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #191919;
  line-height: 1.2;
}

.live-tv-static-hosts__host-with {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  color: rgba(30, 53, 177, 1);
  line-height: 1.2;
}

.live-tv-static-hosts__host-text span {
  color: rgba(30, 53, 177, 1); /* blue "With Julia" */
  font-weight: 500;
}


.live-tv-missed-products { padding: var(--spacing-lg); box-sizing: border-box; width:100%; }
.live-tv-missed-products__inner { margin: 0 auto; max-width: 1440px; }

.live-tv-missed-products__top {
  display: flex;
  flex-direction: column; /* VERTICAL flow */
  gap: 25px;              /* Figma gap */
  max-width: 1440px;      /* Figma width */
  margin: 0 auto;
}

.live-tv-missed-products__header {
  display: flex;
  flex-direction: column;
  gap: 3px;
  text-align: center;
  align-items: center; /* centers title block */
}

.live-tv-missed-products__title {
  font-family: 'Nunito Sans', var(--font-heading);
  font-weight: 700;
  font-size: 24px;
  line-height: 150%;
  letter-spacing: 0;
  white-space: nowrap;   /* single line */
  margin: 0;
}

.live-tv-missed-products__description {
  font-family: 'Nunito Sans', var(--font-body);
  font-weight: 400;
  font-size: 16px;
  line-height: 150%;
  letter-spacing: 0;
  text-align: center;
  color: var(--color-foreground);

  max-width: none;        /* remove width constraint */
  width: auto;
  margin: 0 auto;

  white-space: nowrap;   /* force single line */
}

/* Product card body (Figma-aligned) */
.live-tv-product-card__body {
  display: flex;
  flex-direction: column;        /* VERTICAL flow */

  gap: 8px;                      /* ≈ 7.51px */

  width: 100%;
  box-sizing: border-box;
}

/* Product card meta (brand + title) */
.live-tv-product-card__meta {
  display: flex;
  flex-direction: column;    /* VERTICAL flow */

  gap: 3px;                  /* ≈ 2.82px */

  width: 100%;
  box-sizing: border-box;
}

/* Product card title */
.live-tv-product-card__title {
  font-family: 'Nunito Sans', var(--font-body);
  font-size: 15.1px;          /* Figma */
  font-weight: 400;           /* Regular */
  line-height: 1.5;           /* 150% */
  letter-spacing: 0;
  color: rgba(25, 25, 25, 1);

  margin: 0;                  /* spacing handled by parent */

  display: -webkit-box;
  -webkit-line-clamp: 2;      /* Figma visually allows ~2 lines */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Product card brand */
.live-tv-product-card__brand {
  font-family: 'Nunito Sans', var(--font-body);
  font-size: 12.95px;          /* Figma */
  font-weight: 500;            /* Medium */
  line-height: 1.5;            /* 150% */
  letter-spacing: 0;
  color: rgba(30, 53, 177, 1); /* Primary blue */

  margin: 0;                   /* spacing controlled by parent */
  white-space: nowrap;         /* keep brand on one line */
  overflow: hidden;
  text-overflow: ellipsis;     /* safety for long brands */
}

/* Purchase section: pricing + variants + CTA */
.live-tv-product-card__purchase {
  display: flex;
  flex-direction: column;     /* VERTICAL flow */
  gap: 9.5px;                 /* ≈ 9.39px from Figma */

  width: 100%;                /* fills card body */
  box-sizing: border-box;
}

/* Pricing block (price + compare price) */
.live-tv-product-card__pricing {
  display: flex;
  flex-direction: column;   /* VERTICAL: price on top, compare below */
  gap: 4px;                 /* small spacing between prices */

  width: 150px;             /* Figma width */
  height: 42px;             /* Figma height */

  box-sizing: border-box;
}

.live-tv-product-card__price {
  font-family: 'Nunito Sans', var(--font-body);
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  color: #e60023; /* Super Spar Preis red */
}

.live-tv-product-card__compare {
  font-family: 'Nunito Sans', var(--font-body);
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  color: #9b9b9b;
  text-decoration: line-through;
}


.live-tv-missed-products__content {
  display: flex;
  flex-direction: column; /* VERTICAL flow */
  gap: 25px;              /* Figma gap */

  width: 100%;
  max-width: 1440px;
  margin: 0 auto;

  background: #ffffff;

  border-top: 1px solid rgba(193, 193, 193, 1);
  

  padding: 27px 0;
  box-sizing: border-box;
}



/* Countdown / Price expiry banner */
.live-tv-product-card__countdown {
  position: relative;            /* Changed from absolute to sit above image */
  z-index: 3;

  display: flex;                 /* HORIZONTAL flow */
  align-items: center;
  justify-content: center;       /* Center content for desktop */
  gap: 8px;                      /* Figma gap */

  width: 100%;                   /* Fill card width */
  height: 33px;
  margin-bottom: 10px;           /* Spacing between timer and image */

  padding: 0 12px;               /* Adjusted padding */

  background: linear-gradient(
    90deg,
    #FFEDED 0%,
    #FFFCFC 100%
  );

  border-radius: 4px;

  font-family: 'Nunito Sans', var(--font-body);
  font-size: 13px;
  font-weight: 400;
  line-height: 1;

  color: #191919;

  box-sizing: border-box;
  box-shadow: 0 2px 4px rgba(0,0,0,0.05);
  pointer-events: none;          /* Allow clicks to pass through if needed */
}


.live-tv-missed-products__tabs {
  display: flex;
  align-items: stretch;
  gap: 0; /* tabs touch each other */

  background: var(--color-background);

  /* Figma borders */
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);

  /* Safety for fixed-width tabs */
  overflow-x: auto;
  scrollbar-width: none; /* Firefox */
}

.live-tv-missed-products__tabs::-webkit-scrollbar {
  display: none; /* Chrome / Safari */
}


.live-tv-missed-products__tab {
  display: flex;
  align-items: center;
  justify-content: center; 
  gap: 10px;

  flex: 1;
  height: 54px;
  padding: 15px 62px 15px 42px;

  background: #ffffff;

  border-top: 1px solid rgba(193, 193, 193, 1);
  border-bottom: 1px solid rgba(193, 193, 193, 1);
  border-left: 1px solid rgba(193, 193, 193, 1);
  border-right: 0;

  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;

  font-family: var(--font-body);
  font-size: var(--font-size-body);
  font-weight: 400;
  color: var(--color-foreground);

  cursor: pointer;
  box-sizing: border-box;
  white-space: nowrap;
}

.live-tv-missed-products__tab:last-child {
  border-right: 1px solid rgba(193, 193, 193, 1);
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
}

.live-tv-missed-products__tab--active {
  background: rgba(30, 53, 177, 1);
  color: #ffffff;
  font-weight: var(--font-weight-bold);

  height: 54px;

  border: 1px solid rgba(255, 255, 255, 1);
  border-radius: 5px;
}

.live-tv-missed-products__panel { display:none !important; }
.live-tv-missed-products__panel--active { display:block !important; }
.live-tv-hosts__shell { display:flex; gap: 12px; overflow-x:auto; padding: 8px 4px; align-items:center; }

.live-tv-missed-products__products {
  display: grid;
  grid-template-columns: repeat(4, 1fr); /* 4 products per row */
  gap: 18px;                              /* Figma gap */
  margin-top: 14 px;
}

/* Single product card (Figma-matched) */
.live-tv-product-card {
  display: flex;
  flex-direction: column;       /* vertical flow */
  width: 345px;                 /* Figma width */
  height: 624.76px;             /* Figma height */
  gap: 10.79px;                 /* Figma gap */
  padding: 12.95px;             /* Figma padding */
  background: rgba(246, 246, 246, 1); /* Figma BG White */
  border: 1.01px solid rgba(241, 241, 241, 1); /* Figma border */
  border-radius: 10.08px;       /* Figma radius */
  opacity: 1;                   /* fully visible */
  transform: rotate(0deg);      /* no rotation */
  box-sizing: border-box;       /* keep padding inside width */
}


.live-tv-product-card__top-section {
  display: flex;
  flex-direction: column; /* Desktop: Vertical */
  gap: 12px;
}

.live-tv-product-card__image-wrapper {
  position: relative;             /* positioning context */
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 5.04px;          /* rounded corners */
  overflow: hidden;               /* ensures child elements respect border radius */
}

.live-tv-product-card__image-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.live-tv-product-card__wishlist-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  width: 33px;
  height: 33px;
  background: #ffffff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 0;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  z-index: 2;
  transition: transform 0.2s ease;
}

.live-tv-product-card__wishlist-btn:hover {
  transform: scale(1.1);
}

.live-tv-product-card__wishlist-icon {
  width: 20px;
  height: 20px;
  display: block;
}

.live-tv-product-card__info {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.live-tv-product-card__rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 12px;
}

.live-tv-product-card__rating-stars {
  color: #ffb800;
}

.live-tv-product-card__host-info {
  color: #1e35b1;
  font-size: 12px;
  font-weight: 500;
}

.live-tv-product-card__title {
  font-size: 14px;
  font-weight: 400;
  margin: 0;
  line-height: 1.4;
}

.live-tv-product-card__pricing {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.live-tv-product-card__price-row,
.live-tv-product-card__compare-row {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 13px;
  white-space: nowrap;
}

.live-tv-product-card__price-label,
.live-tv-product-card__compare-label {
  flex-shrink: 0;
}

.live-tv-product-card__price {
  color: #e60023;
  font-weight: 700;
}

.live-tv-product-card__compare {
  color: #9b9b9b;
  text-decoration: line-through;
}

.live-tv-product-card__options {
  display: flex;
  gap: 10px;
  margin-bottom: 12px;
}

.live-tv-product-card__select {
  flex: 1;
  height: 40px;
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 0 10px;
}

.live-tv-product-card__purchase-row {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
}

.live-tv-product-card__quantity {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 4px;
  height: 42px;
  background: #ffffff;
  flex-shrink: 0;
}

.live-tv-product-card__quantity-btn {
  width: 32px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 16px;
}

.live-tv-product-card__quantity-input {
  width: 40px;
  height: 100%;
  border: none;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  text-align: center;
  font-size: 14px;
  background: transparent;
  padding: 0;
  margin: 0;
}

.live-tv-product-card__actions {
  flex: 1;
  height: 42px;
}

.live-tv-product-card__add-to-cart {
  width: 100%;
  height: 100%;
  background: #ffd334;
  border: none;
  border-radius: 4px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  cursor: pointer;
  padding: 0 15px;
  white-space: nowrap;
}



.live-tv-missed-products__products--deals .live-tv-product-card { box-shadow: 0 6px 12px rgba(0,0,0,0.06); }

@media (max-width: 989px) {
  .live-tv-missed-products__products { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 749px) {

  .live-tv-product-card {
    display: flex;
    flex-direction: column;   /* vertical flow */
    width: 360px;             /* Figma width */
    height: 319px;            /* Figma height */
    gap: 10px;                /* Figma gap */
    opacity: 1;               /* fully visible */
    transform: rotate(0deg);  /* no rotation */
  }

  .live-tv-product-card__top-section {
    flex-direction: row; /* Mobile: Horizontal Split */
    gap: 12px;
    align-items: flex-start;
  }

.live-tv-product-card__countdown {
    max-width: 340px;        /* match Figma mobile card width */
    justify-content: flex-start; /* align left for readability */
    font-size: 13px;         /* slightly smaller text */
    padding: 3px 10px;       /* tighter padding */
    gap: 6px;                /* reduce spacing */
  }

  .live-tv-product-card__countdown span:first-child {
    font-size: 15px;         /* scale down the clock icon */
  }

  .live-tv-product-card__image-wrapper {
    width: 40%; /* Image takes 40% */
    aspect-ratio: 1/1;
  }

  .live-tv-product-card__info {
    width: 60%; /* Info takes 60% */
    gap: 4px;
    padding-top: 0;
  }

  .live-tv-product-card__rating {
    background: #f5f5f5;
    padding: 2px 6px;
    border-radius: 12px;
    width: fit-content;
    font-size: 10px;
  }

  .live-tv-product-card__title {
    font-size: 13px;
    -webkit-line-clamp: 2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .live-tv-product-card__pricing {
    margin-top: 4px;
  }

  .live-tv-product-card__price-row,
  .live-tv-product-card__compare-row {
    font-size: 11px;
    flex-wrap: wrap;
    white-space: normal;
  }

  .live-tv-product-card__options {
    gap: 8px;
    margin-bottom: 10px;
  }

  .live-tv-product-card__select {
    height: 36px;
    font-size: 12px;
  }

  .live-tv-product-card__purchase-row {
    display: flex;
    flex-direction: row; /* Ensure horizontal on mobile as per Figma */
    align-items: center;
    gap: 8px;
    width: 100%;
  }

  .live-tv-product-card__quantity {
    height: 38px;
    width: 100px; /* Slightly wider for better touch targets */
    flex-shrink: 0;
  }

  .live-tv-product-card__add-to-cart {
    height: 38px;
    font-size: 12px;
    flex: 1;
  }

  .live-tv-product-card__countdown {
    width: 100%;              /* Stretch to full width of the mobile card */
    justify-content: flex-start; /* Align left for mobile */
    padding: 0 10px;
    height: 28px;             /* Slightly shorter for mobile */
    font-size: 11px;          /* Scale down text */
    gap: 6px;                 /* Tighten spacing */
    margin-bottom: 12px;      /* Clear separation from the split-view below */
  }

  .live-tv-product-card__countdown span:first-child {
    font-size: 14px;          /* Scale down the emoji slightly */
  }

  .live-tv-missed-products__top {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .live-tv-missed-products__header {
    text-align: center;
  }

  .live-tv-missed-products__description {
    display: none;
  }

  .live-tv-missed-products__tabs {
    height: 72px;
    overflow-x: auto;
  }

  .live-tv-missed-products__tab {
    padding: 10px 12px;
    white-space: normal;
    line-height: 1.3;
  }

  .live-tv-missed-products__products {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .live-tv-missed-products__content {
    padding: 15px 0;
  }
}
/* END_SECTION:live-tv-missed-products */

/* START_SECTION:live-tv-section-home-d (INDEX:38) */
@import url('https://fonts.googleapis.com/css2?family=Nunito+Sans:wght@500;600;700&display=swap');

  .live-tv-section-home-d {
    width: 100%;
    background: linear-gradient(180deg, #E8EFFF 0%, #FFFFFF 65.87%, #E8EFFF 100%);
    padding: 0;
    margin: 0;
  }

  .live-tv-section-home-d__container {
    width: 100%;
    max-width: 1438px;
    margin: 0 auto;
    padding: 12px 35px 20px 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    background: transparent;
  }

  .live-tv-section-home-d__upper-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: flex-start;
    min-height: 0;
  }

  .live-tv-section-home-d__upper-row > * {
    flex-shrink: 0;
  }

  .live-tv-section-home-d__lower-row {
    width: 100%;
    display: flex;
    flex-direction: row;
    height: fit-content;
  }

  @media screen and (max-width: 989px) {
    .live-tv-section-home-d__container {
      padding: 12px 20px 16px 20px;
      gap: 16px;
    }

    .live-tv-section-home-d__upper-row {
      flex-direction: column;
      align-items: stretch;
    }
  }
/* END_SECTION:live-tv-section-home-d */

/* START_SECTION:logo (INDEX:39) */
.logo-section {
    width: calc(var(--logo-width) + var(--padding-inline-start) + var(--padding-inline-end));
    max-width: 100%;
    max-height: calc(var(--logo-height, 100%) + var(--padding-block-start) + var(--padding-block-end));
    font-size: var(--logo-height);
    display: flex;

    @media screen and (max-width: 750px) {
      max-height: calc(
        var(--logo-height-mobile, var(--logo-height, 100%)) + var(--padding-block-start) + var(--padding-block-end)
      );
      font-size: var(--logo-height-mobile, var(--logo-height));
      width: calc(
        var(--logo-width-mobile, var(--logo-width)) + var(--padding-inline-start) + var(--padding-inline-end)
      );
    }
  }

  .logo-section--center {
    margin-inline: auto;
  }

  .logo-section--flex-end {
    margin-inline-start: auto;
  }

  .logo-section--flex-start {
    margin-inline-end: auto;
  }

  .logo-section__image-wrapper {
    display: flex;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
  }

  .logo-section__image {
    object-fit: contain;
    width: 100%;
  }
/* END_SECTION:logo */

/* START_SECTION:main-blog-post (INDEX:41) */
.blog-post-comments-container {
    width: 100%;
    max-width: var(--normal-content-width);
    margin: 0 auto;
  }

  .blog-post-comments {
    display: flex;
    flex-direction: column;
    gap: var(--gap-3xl);
  }

  .blog-post-comment__author {
    display: flex;
    align-items: center;
    gap: var(--gap-2xs);
    margin-top: var(--margin-md);
    font-size: var(--font-size--body-sm);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .blog-post-comments-pagination {
    display: flex;
    justify-content: center;
    gap: var(--gap-2xs);
  }

  .blog-post-comments-pagination,
  .blog-post-comments-pagination a {
    color: var(--color-foreground);
  }

  .blog-post-comments-pagination .current {
    color: var(--color-foreground);
  }

  .blog-post-comments-pagination .current,
  .blog-post-comments-pagination a {
    display: block;
    padding: var(--padding-2xs) var(--padding-xs);
  }

  .blog-post-comments-pagination .current,
  .blog-post-comments-pagination a:hover {
    border-bottom: 1px solid var(--color-foreground);
  }
/* END_SECTION:main-blog-post */

/* START_SECTION:main-cart (INDEX:43) */
.cart-page {
    --cart-font-size--2xs: var(--font-size--2xs);
    --cart-font-size--xs: var(--font-size--xs);
    --cart-font-size--sm: var(--font-size--sm);
    --cart-font-size--md: var(--font-size--md);
    --cart-font-size--2xl: var(--font-size--2xl);

    display: grid;
    grid-template-columns: 1fr;
    gap: 0 var(--padding-5xl);
  }

  .cart-page--empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  .cart-page--empty .cart-page__title,
  .cart-page--empty .cart-page__more-blocks {
    margin-top: var(--margin-6xl);
  }

  .cart-page__more-blocks {
    width: 100%;
  }

  .cart-page--empty .cart-title {
    text-align: center;
  }

  .cart-page__main {
    grid-column: 1;
  }

  .cart-page__summary {
    padding-top: var(--padding-xl);
  }

  @media screen and (min-width: 750px) {
    .cart-page {
      grid-template-columns: 1fr min(50vw, var(--sidebar-width));
      grid-template-rows: min-content min-content 1fr;
    }

    .cart-page__summary {
      display: grid;
      height: 100%;
      grid-column: 2;
      grid-row: 1 / -1;
      align-self: stretch;
      grid-template-rows: subgrid;
      padding-top: 0;

      /* needed to support blurred effect from hero section */
      position: relative;
    }

    .section--page-width .cart-page:has(.cart__container--extend) {
      grid-column: 2 / 4;
      grid-template-columns: 1fr minmax(
          var(--sidebar-width),
          calc((100vw - var(--page-width)) / 2 + var(--sidebar-width))
        );
    }

    .cart__container--extend {
      height: 100%;
    }
  }

  @media screen and (min-width: 1400px) {
    .cart-page {
      grid-template-columns: 1fr var(--sidebar-width);
    }
  }
/* END_SECTION:main-cart */

/* START_SECTION:main-collection (INDEX:45) */
.plp-promo-banner {
    list-style: none;
    overflow: hidden;
    height: 100%;
  }

  .plp-promo-banner a,
  .plp-promo-banner img,
  .plp-promo-banner video {
    display: block;
    width: 100%;
    height: 100%;
  }

  .plp-promo-banner img,
  .plp-promo-banner video {
    object-fit: cover;
  }

  .plp-promo-banner--span-2 {
    grid-column: span 2;
  }

  .main-collection-grid {
    grid-column: var(--grid-column--mobile);

    @media screen and (min-width: 750px) {
      grid-column: var(--grid-column--desktop);
    }
  }

  .collection-wrapper {
    @media screen and (min-width: 750px) {
      grid-template-columns:
        1fr repeat(
          var(--centered-column-number),
          minmax(0, calc((var(--page-width) - var(--page-margin) * 2) / var(--centered-column-number)))
        )
        1fr;
    }
  }

  .collection-wrapper:has(.facets-block-wrapper--full-width),
  .collection-wrapper:has(.collection-wrapper--full-width) {
    @media screen and (min-width: 750px) {
      grid-column: 1 / -1;
      grid-template-columns:
        minmax(var(--page-margin), 1fr) repeat(
          var(--centered-column-number),
          minmax(0, calc((var(--page-width) - var(--page-margin) * 2) / var(--centered-column-number)))
        )
        minmax(var(--page-margin), 1fr);
    }
  }

  /* Decrease filter (left sidebar) width */
  @media screen and (min-width: 750px) {
    .collection-wrapper:has(.facets--vertical) {
      --facets-vertical-col-width: 4;
    }
  }

  /* Product area container - contains only product grid */
  .collection-products-area {
    display: flex;
    flex-direction: column;
    grid-column: var(--full-width);
    width: 100%;
  }

  /* Pagination wrapper - spans full width below both filters and products */
  .pagination-full-width-wrapper {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: var(--padding-xl, 32px);
  }

  /* Ensure pagination container spans full width */
  .pagination-full-width-wrapper .pagination-figma-container {
    width: 100%;
    margin-top: 0;
  }

  .collection-seo-bottom {
    grid-column: 1 / -1;
    width: 100%;
    margin: 32px 0 0 0;
    padding: 0;
  }

  .collection-wrapper:has(.facets-block-wrapper--vertical:not(#filters-drawer)):has(.collection-wrapper--full-width) {
    @media screen and (min-width: 750px) {
      grid-column: 1 / -1;
      grid-template-columns: 0fr repeat(var(--centered-column-number), minmax(0, 1fr)) 0fr;
    }
  }

  :is(.collection-wrapper--full-width, .collection-wrapper--full-width-on-mobile)
    [product-grid-view='default']
    .product-grid__card {
    @media screen and (max-width: 749px) {
      padding-inline-start: max(var(--padding-xs), var(--padding-inline-start));
      padding-inline-end: max(var(--padding-xs), var(--padding-inline-end));
    }
  }

  :is(.collection-wrapper--full-width, .collection-wrapper--full-width-on-mobile)
    [product-grid-view='mobile-single']
    .product-grid__card {
    @media screen and (max-width: 749px) {
      padding-inline-start: max(var(--padding-xs), var(--padding-inline-start));
      padding-inline-end: max(var(--padding-xs), var(--padding-inline-end));
    }
  }

  /* Make product media go edge-to-edge by using negative margins */
  :is(.collection-wrapper--full-width) .card-gallery,
  :is(.collection-wrapper--full-width-on-mobile) .card-gallery {
    @media screen and (max-width: 749px) {
      margin-inline-start: calc(-1 * max(var(--padding-xs), var(--padding-inline-start)));
      margin-inline-end: calc(-1 * max(var(--padding-xs), var(--padding-inline-end)));
    }
  }

  /* Product title 2-line clamp - Collection page (PLP) only */
  /* Target: .product-card/.product-grid__card > .contents > .text-block > p */
  .collection-products-area :is(.product-card, .product-grid__card) .contents .text-block {
    height: 42px;
    max-height: 42px;
    min-height: 42px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .collection-products-area :is(.product-card, .product-grid__card) .contents .text-block > * {
    margin: 0;
    padding: 0;
  }

  .collection-products-area :is(.product-card, .product-grid__card) .contents .text-block p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 42px;
    max-height: 42px;
    min-height: 42px;
    line-height: 21px; /* Exactly half of 42px for 2 lines */
    margin: 0;
    padding: 0 10px;
    white-space: normal;
    word-wrap: break-word;
    word-break: break-word;

    @media screen and (max-width: 749px) {
      padding: 0;
      font-size: 14px;
    }
  }
/* END_SECTION:main-collection */

/* START_SECTION:marquee (INDEX:47) */
marquee-component {
    display: block;
    width: 100%;
    overflow: hidden;
  }

  .marquee__wrapper {
    display: flex;
    gap: var(--marquee-gap);
    width: fit-content;
    white-space: nowrap;
  }

  .marquee__content {
    min-width: max-content;
    display: flex;
    gap: var(--marquee-gap);
  }

  .marquee__content :is(p, h1, h2, h3, h4, h5, h6) {
    white-space: nowrap;
  }

  .marquee__content .marquee__repeated-items * {
    max-width: none;
  }

  .marquee__repeated-items {
    min-width: max-content;
    display: flex;
    gap: var(--marquee-gap);
    align-items: center;
    justify-content: center;
  }

  .marquee__repeated-items > * {
    align-content: center;
  }

  @media (prefers-reduced-motion: no-preference) {
    marquee-component:not([data-disabled]) .marquee__wrapper {
      animation: marquee-motion var(--marquee-speed) linear infinite var(--marquee-direction);
    }
  }

  @keyframes marquee-motion {
    to {
      transform: translate3d(calc(-50% - (var(--marquee-gap) / 2)), 0, 0);
    }
  }
/* END_SECTION:marquee */

/* START_SECTION:media-with-content (INDEX:48) */
.section--page-width {
    &.media-with-content {
      grid-template-areas: 'margin-left media margin-right' 'margin-left content margin-right';

      @media screen and (min-width: 750px) {
        /* Wide proportion is media 3.5 parts, content 2.5 parts. Which equals 7|5. So divide the central column by 7+5 and multiply accordingly */
        --media-with-content-grid-columns: var(--full-page-grid-margin)
          calc((var(--full-page-grid-central-column-width) / 12) * 7)
          calc((var(--full-page-grid-central-column-width) / 12) * 5) var(--full-page-grid-margin);

        grid-template-areas: 'margin-left media content margin-right';
      }
    }

    &.media-with-content--media-right {
      @media screen and (min-width: 750px) {
        --media-with-content-grid-columns: var(--full-page-grid-margin)
          calc((var(--full-page-grid-central-column-width) / 12) * 5)
          calc((var(--full-page-grid-central-column-width) / 12) * 7) var(--full-page-grid-margin);

        grid-template-areas: 'margin-left content media margin-right';
      }
    }

    &.media-with-content--medium {
      @media screen and (min-width: 750px) {
        --media-with-content-grid-columns: var(--full-page-grid-margin)
          repeat(2, calc(var(--full-page-grid-central-column-width) / 2)) var(--full-page-grid-margin);
      }
    }

    &.media-with-content--narrow.media-with-content--media-right {
      @media screen and (min-width: 750px) {
        --media-with-content-grid-columns: var(--full-page-grid-margin)
          calc((var(--full-page-grid-central-column-width) / 3) * 2)
          calc(var(--full-page-grid-central-column-width) / 3) var(--full-page-grid-margin);
      }
    }

    &.media-with-content--narrow {
      @media screen and (min-width: 750px) {
        --media-with-content-grid-columns: var(--full-page-grid-margin)
          calc(var(--full-page-grid-central-column-width) / 3)
          calc((var(--full-page-grid-central-column-width) / 3) * 2) var(--full-page-grid-margin);
      }
    }
  }

  .section--full-width {
    &.media-with-content--media-right {
      @media screen and (min-width: 750px) {
        --media-with-content-grid-columns: 2.5fr 3.5fr;

        grid-template-areas: 'content media';
      }
    }

    &.media-with-content--medium {
      @media screen and (min-width: 750px) {
        --media-with-content-grid-columns: 1fr 1fr;
      }
    }

    &.media-with-content--narrow {
      @media screen and (min-width: 750px) {
        --media-with-content-grid-columns: 2fr 4fr;
      }
    }

    &.media-with-content--narrow.media-with-content--media-right {
      @media screen and (min-width: 750px) {
        --media-with-content-grid-columns: 4fr 2fr;
      }
    }
  }

  /* Keep the CSS specificity lower assuming that liquid won't assign this class with a full width section */
  .media-with-content.media-with-content--media-extend {
    grid-template-columns: var(--media-with-content-grid-columns);
    grid-template-areas: 'media media media' 'margin-left content margin-right';

    @media screen and (min-width: 750px) {
      grid-template-areas: 'media media content margin-right';
    }
  }

  .media-with-content--media-extend.media-with-content--media-right {
    @media screen and (min-width: 750px) {
      grid-template-areas: 'margin-left content media media';
    }
  }

  .media-with-content--media-right {
    @media screen and (min-width: 750px) {
      grid-template-areas: 'margin-left content media media';
    }
  }

  .media-with-content {
    --media-with-content-grid-columns: var(--full-page-grid-with-margins);

    grid-template-columns: var(--media-with-content-grid-columns);
    grid-template-areas: 'media media media' 'content content content';

    @media screen and (min-width: 750px) {
      --media-with-content-grid-columns: 3.5fr 2.5fr;

      /* Default desktop layout is wide media, on the left, in full page section */
      grid-template-areas: 'media content';
    }

    .media-block {
      grid-area: media;
    }

    .media-with-content__content {
      grid-area: content;
    }

    /* Inner blocks spacing */
    .media-with-content__content > .group-block-content {
      padding-inline: var(--page-margin);
      padding-block: calc(2 * var(--page-margin));

      @media screen and (min-width: 750px) {
        padding-block: var(--page-margin);
      }
    }

    &.section--page-width .media-with-content__content > .group-block-content {
      padding-inline: 0;

      @media screen and (min-width: 750px) {
        padding-inline-start: var(--page-margin);
      }
    }

    &.section--page-width.media-with-content--media-right .media-with-content__content > .group-block-content {
      padding-inline-end: var(--page-margin);
      padding-inline-start: 0;
    }
  }

  .media-with-content[data-shopify-visual-preview] {
    --hero-min-height: 500px;

    min-height: 500px;
  }
/* END_SECTION:media-with-content */

/* START_SECTION:members-row (INDEX:49) */
/* Horizontal padding on section wrapper (matches with-timer__inner gutters) */
  .members-row {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-inline: var(--grid-mobile-horizontal-spacing, 0);
  }

  /*
    Full-width setting spans the section grid edge-to-edge, so content was as wide as
    100% − 2×page-margin — wider than the theme content column on large viewports / zoom.
    Match with-timer: cap to --full-page-grid-central-column-width (defined on .section in base.css).
  */
  .members-row.section--full-width {
    max-width: var(--full-page-grid-central-column-width);
    margin-inline: auto;
  }

  /* ========== MOBILE (base) – Figma: 2 columns, 12px gap ========== */
  .members-row__grid {
    display: grid;
    grid-template-columns: repeat(var(--members-row-columns-mobile), minmax(0, 1fr));
    gap: var(--members-row-gap, var(--spacing-md, 0.75rem));
    width: 100%;
    box-sizing: border-box;
    overflow: visible;
  }

  .members-row__grid > * {
    min-width: 0;
    max-width: 100%;
  }


  /* ========== DESKTOP (990px+) – Figma: 4 columns, 20px gap ========== */
  @media screen and (min-width: 990px) {
    .members-row {
      padding-inline: var(--spacing-section-horizontal, var(--page-margin, 1rem));
    }

    .members-row.section--full-width {
      padding-inline: var(--page-margin);
    }

    /*
      Page-width: horizontal inset comes from the theme .section grid column only.
      Match with-timer / circular-items-row — grid fills the column edge-to-edge on desktop.
    */
    .members-row.section--page-width {
      padding-inline: 0;
    }

    .members-row.members-row--flush-inline,
    .members-row.section--full-width.members-row--flush-inline {
      padding-inline: 0;
    }

    .members-row__grid {
      grid-template-columns: repeat(var(--members-row-columns-desktop), minmax(0, 1fr));
      gap: var(--members-row-gap, var(--spacing-lg, 1.25rem));
    }
  }
/* END_SECTION:members-row */

/* START_SECTION:password (INDEX:51) */
.section-password {
    flex-grow: 1;
    display: flex;
  }

  .password-main-content {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .password-enter {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap-sm);
    padding-block: var(--padding-xl);
  }

  .password-enter__powered-by {
    margin: 0;
    display: flex;
    align-items: center;
    gap: var(--padding-xs);
    height: 1em;

    a {
      display: flex;
    }

    svg {
      display: inline;
      height: 1.3em;
      color: var(--color-foreground);
    }
  }

  .password-enter__links {
    display: flex;
    align-items: center;
    gap: var(--gap-2xl);

    @media screen and (max-width: 749px) {
      flex-direction: column;
      gap: var(--gap-sm);
    }
  }

  .password-enter__admin-link {
    margin: 0;
  }

  .password-enter__button {
    height: var(--minimum-touch-target);
    background-color: transparent;
    color: var(--color-primary);
    cursor: pointer;
    text-decoration: underline;

    &:hover {
      color: var(--color-primary-hover);
      text-decoration: none;
    }
  }

  .password-dialog {
    max-width: 100vw;
    max-height: 100svh;
    width: 100vw;
    height: 100svh;
    border: none;
    transition: opacity var(--animation-values), display var(--animation-speed) allow-discrete,
      overlay var(--animation-speed) allow-discrete;

    &::backdrop {
      display: none;
    }
  }

  .password-dialog[open] {
    opacity: 1;
    top: 0;
    left: 0;
  }

  @starting-style {
    .password-dialog[open] {
      opacity: 0;
    }
  }

  .password-dialog:not([open]) {
    opacity: 0;
  }

  @starting-style {
    .password-dialog:not([open]) {
      opacity: 1;
    }
  }

  .password-dialog__close-button {
    cursor: pointer;
  }

  .password-dialog__header {
    position: absolute;
    top: 0;
    right: 0;
    padding: var(--padding-lg);
    z-index: var(--layer-raised);
  }

  .password-dialog__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--padding-lg);
    height: 100%;
    transition: transform var(--animation-values);
  }

  .password-dialog__content .email-signup__message {
    padding-block-start: var(--padding-xl);
  }

  .password-dialog[open] .password-dialog__content {
    transform: translateY(0);
  }

  @starting-style {
    .password-dialog[open] .password-dialog__content {
      transform: translateY(1em);
    }
  }

  .password-dialog:not([open]) .password-dialog__content {
    transform: translateY(1em);
  }

  @starting-style {
    .password-dialog:not([open]) .password-dialog__content {
      transform: translateY(0);
    }
  }

  .storefront-password-form {
    max-width: 400px;
    width: 100%;
  }

  .email-signup__input-group,
  .password-dialog__submit-button {
    width: 100%;

    @media screen and (min-width: 750px) {
      width: auto;
    }
  }
/* END_SECTION:password */

/* START_SECTION:predictive-search (INDEX:54) */
input[type='search']::-webkit-search-decoration {
    -webkit-appearance: none; /* stylelint-disable-line */
  }

  .predictive-search-dropdown {
    display: flex;
    flex-direction: column;
    position: relative;
    top: 0;
    left: 0;
    right: 0;
    z-index: var(--layer-base);
  }

  .search-action .predictive-search {
    z-index: calc(var(--layer-header-menu) + 2);
  }

  .search-action .search-modal .predictive-search {
    z-index: var(--layer-window-overlay);
  }

  .header__column--right .predictive-search-form__content-wrapper {
    right: 0;
    left: unset;
  }

  .search-modal .predictive-search-form__content-wrapper {
    width: 100%;

    @media screen and (min-width: 750px) {
      height: fit-content;
    }
  }

  .dialog-modal .predictive-search-form__header-inner {
    @media screen and (min-width: 750px) {
      border: 0;
    }
  }

  .header[transparent] :is(.predictive-search):not(:focus-within) {
    background-color: transparent;
  }

  .header[transparent] .predictive-search-form__header-inner {
    border-color: var(--color-foreground);
  }

  .search-modal__content .predictive-search-form__content {
    max-height: var(--modal-max-height);
  }

  .predictive-search:has(.predictive-search-dropdown) .search-input {
    outline-color: transparent;
  }

  .predictive-search:has(.predictive-search-dropdown) .predictive-search-form__header-inner:focus-within {
    border-top-color: transparent;
    border-right-color: transparent;
    border-left-color: transparent;

    @media screen and (max-width: 749px) {
      border-bottom-color: transparent;
    }
  }

  .predictive-search:has(.predictive-search-dropdown[aria-expanded='true'])
    .predictive-search-form__header-inner:focus-within {
    border-top-color: transparent;
    border-right-color: transparent;
    border-left-color: transparent;
    border-radius: var(--search-border-radius);

    @media screen and (max-width: 749px) {
      border-radius: var(--style-border-radius-inputs);
    }
  }

  .dialog-modal .predictive-search-form__header {
    border: 0;
    border-radius: 0;
    background-color: var(--color-background);
    border-bottom: var(--style-border-width) solid var(--color-border);

    @media screen and (min-width: 750px) {
      padding: var(--padding-2xs) var(--padding-2xs) 0;
      border-bottom: var(--search-border-width) solid var(--color-border);
    }

    @media screen and (max-width: 749px) {
      transition: box-shadow 0.2s ease;
      box-shadow: none;
    }
  }

  .search-action .predictive-search:has(.predictive-search-dropdown) .predictive-search-form__header:focus-within {
    border-radius: var(--search-border-radius) var(--search-border-radius) 0 0;
    transition: box-shadow var(--animation-speed) var(--animation-easing);
    background-color: var(--color-background);

    @media screen and (max-width: 749px) {
      border-radius: var(--style-border-radius-inputs) var(--style-border-radius-inputs) 0 0;
    }
  }

  @media screen and (max-width: 749px) {
    .dialog-modal .predictive-search__close-modal-button {
      padding-inline-start: var(--margin-xs);
      margin-inline-start: 0;
    }
  }

  .dialog-modal[open] {
    @media screen and (max-width: 749px) {
      border-radius: 0;
    }
  }

  .dialog-modal .predictive-search-form__header:has(.predictive-search-form__header-inner:focus-within) {
    @media screen and (min-width: 750px) {
      border-bottom-color: transparent;
    }
  }

  @media screen and (max-width: 749px) {
    .dialog-modal {
      .predictive-search__reset-button-icon {
        display: none;
      }

      .predictive-search__reset-button-text {
        display: block;
      }

      .predictive-search-form__content {
        /* The parent has overflow auto, we want to prevent a double scrollbar during animation */
        max-height: 100%;
      }

      .predictive-search-form__content-wrapper {
        box-shadow: none;
      }

      .predictive-search-form__header {
        box-shadow: none;
      }

      .predictive-search-form__footer {
        padding-block: var(--padding-2xl);
      }
    }
  }

  .predictive-search-results__pill {
    font-weight: 500;
    white-space: nowrap;
    color: var(--color-foreground);
    transition: background-color var(--animation-speed-medium) var(--animation-timing-hover),
      box-shadow var(--animation-speed-medium) var(--animation-timing-bounce),
      transform var(--animation-speed-medium) var(--animation-timing-bounce);
    margin: 2px;

    &:hover {
      transform: scale(1.03);
      box-shadow: 0 2px 5px rgb(0 0 0 / var(--opacity-8));
    }
  }

  .predictive-search-results__pill mark {
    background-color: transparent;
    font-weight: 200;
    color: rgb(var(--color-foreground-rgb) / var(--opacity-80));
  }

  .predictive-search-results__pill:focus,
  .predictive-search-results__pill:hover,
  .predictive-search-results__card--query:is([aria-selected='true'], :focus-within) .predictive-search-results__pill {
    --pill-background-color: rgb(var(--color-foreground-rgb) / var(--opacity-8));

    background-color: var(--pill-background-color);
    outline: var(--border-width-sm) solid var(--color-border);
    border: var(--border-width-sm);
    text-decoration: none;
  }

  .predictive-search-results__title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-size--body-md);
    font-weight: 500;
    margin-block: var(--margin-sm) var(--margin-xs);
    width: 100%;
    text-transform: var(--title-case);

    &:first-of-type {
      margin-block-start: 0;
    }

    @media screen and (max-width: 749px) {
      margin-block: var(--margin-lg) var(--margin-sm);
    }
  }

  .predictive-search-results__wrapper.predictive-search-results__wrapper-queries {
    margin-bottom: var(--margin-lg);
    padding-inline: var(--padding-xl);
    gap: var(--gap-2xs);
  }

  .predictive-search-results__card {
    flex: 0 0 auto;
    scroll-snap-align: start;
    scroll-margin-block: calc(var(--title-font-size) + var(--title-margin-block) + var(--padding-sm))
      calc(var(--padding-xl) + var(--button-padding-block) * 2);
    transition: transform var(--animation-speed-medium) var(--animation-timing-default),
      background-color var(--animation-speed-medium) var(--animation-timing-hover),
      border-color var(--animation-speed-medium) var(--animation-timing-hover);

    &:nth-last-child(3) {
      scroll-snap-align: end;
    }

    &:active {
      transform: scale(0.97);
      transition: transform 100ms var(--animation-timing-active);
    }
  }

  .recently-viewed-wrapper .predictive-search-results__card {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .recently-viewed-wrapper.removing .predictive-search-results__card {
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
  }

  .predictive-search-results__card--product,
  .recently-viewed-wrapper .predictive-search-results__card--product {
    &:active {
      transform: scale(0.97);
      transition: transform 100ms var(--animation-timing-active);
    }

    &:hover {
      background-color: var(--card-bg-hover);
      border-radius: var(--product-corner-radius);
      padding: calc(var(--padding-2xs) + 2px);
      margin: calc((var(--padding-2xs) + 2px) * -1);
    }

    &:is([aria-selected='true'].keyboard-focus, &:focus-visible, &:has(.resource-card:focus-visible)) {
      background-color: var(--card-bg-hover);
      padding: calc(var(--padding-2xs) + 1px);
      margin: calc((var(--padding-2xs) + 1px) * -1);
      outline: var(--border-width-sm) solid var(--color-border);
      border-radius: calc(var(--product-corner-radius) + 1px);
      border-color: var(--card-border-focus);
    }
  }

  .predictive-search-results__card:not(.predictive-search-results__card--product) {
    padding: var(--padding-sm);
    border: var(--border-width-sm) solid var(--color-border);
    border-radius: var(--card-corner-radius);
    width: 60cqi;
    content-visibility: visible;

    @media screen and (min-width: 750px) {
      width: 27.5cqi;
    }

    &:hover {
      border-color: var(--card-border-hover);
      background-color: var(--card-bg-hover);
    }

    &[aria-selected='true'].keyboard-focus {
      border-color: var(--card-border-hover);
      background-color: var(--card-bg-hover);
    }

    &:active {
      transform: scale(0.97);
      transition: transform var(--animation-speed-medium) var(--animation-timing-active);
    }
  }

  @keyframes search-element-scale-in {
    0% {
      transform: scale(0.95);
      opacity: 0;
    }

    40% {
      opacity: 1;
    }

    100% {
      transform: scale(1);
      opacity: 1;
    }
  }

  @keyframes search-element-scale-out {
    0% {
      transform: scale(1);
      opacity: 1;
    }

    100% {
      transform: scale(0.95);
      opacity: 0;
    }
  }

  @keyframes search-element-slide-in-top {
    from {
      margin-top: calc(var(--modal-top-margin) + var(--padding-sm));
      opacity: 0;
    }

    to {
      margin-top: var(--modal-top-margin);
      opacity: 1;
    }
  }

  @keyframes search-element-slide-out-top {
    from {
      margin-top: var(--modal-top-margin);
      opacity: 1;
    }

    to {
      margin-top: calc(var(--modal-top-margin) + var(--padding-sm));
      opacity: 0;
    }
  }

  @keyframes content-slide {
    from {
      transform: translateY(var(--slide-from, 0));
      opacity: var(--slide-opacity-from, 1);
    }

    to {
      transform: translateY(var(--slide-to, 0));
      opacity: var(--slide-opacity-to, 1);
    }
  }

  .predictive-search-results__list {
    --slide-width: 27.5%;
    --slideshow-gap: var(--gap-md);

    /* Make space for the outline to be visible */
    padding-block-start: var(--border-width-sm);
  }

  .predictive-search-results__list slideshow-arrows {
    @media screen and (max-width: 749px) {
      display: none;
    }
  }

  .predictive-search-results__no-results {
    animation-delay: 100ms;
    transition: opacity var(--animation-speed-medium) var(--animation-timing-fade-in);
  }

  .predictive-search-results__no-results,
  .predictive-search-results__wrapper,
  .predictive-search-results__wrapper-products .predictive-search-results__card {
    animation: search-element-slide-up var(--animation-speed-medium) var(--animation-timing-bounce) backwards;
  }

  .predictive-search-results__no-results:last-child {
    margin-block: var(--margin-lg);
    text-align: center;
  }

  slideshow-slide .resource-card {
    /* stylelint-disable-next-line declaration-no-important */
    animation-delay: 0ms !important;
  }

  .predictive-search-results__list,
  .predictive-search-results__wrapper {
    animation-duration: var(--animation-speed-medium);
  }

  .predictive-search-results__wrapper-queries {
    animation-delay: 50ms;
  }

  .predictive-search-results__list:nth-of-type(2) {
    animation-delay: 150ms;
  }

  .predictive-search-results__list:nth-of-type(3) {
    animation-delay: 200ms;
  }

  .predictive-search-results__list:nth-of-type(4) {
    animation-delay: 250ms;
  }

  .predictive-search-results__list:last-child {
    margin-block-end: 0;
  }

  [data-resource-type] {
    /* stylelint-disable-next-line declaration-no-important */
    animation-delay: 0ms !important;
  }

  .predictive-search-results__no-results.removing,
  .predictive-search-results__wrapper.removing {
    animation: search-element-slide-down var(--animation-speed-medium) var(--animation-timing-fade-out) forwards;
  }

  .predictive-search-results__card.removing {
    animation: fadeOut var(--animation-speed-medium) var(--animation-timing-fade-out) forwards;
  }

  .predictive-search-results__wrapper {
    transition: opacity var(--animation-speed-medium) var(--animation-timing-fade-in);
  }

  @keyframes search-element-slide-up {
    from {
      opacity: 0;
      transform: translateY(8px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes search-element-slide-down {
    from {
      opacity: 1;
      transform: translateY(0);
    }

    to {
      opacity: 0;
      transform: translateY(8px);
    }
  }

  .predictive-search-results__card--query {
    transition: transform var(--animation-speed-medium) var(--animation-timing-bounce);
    transform-origin: center;

    &:active {
      transform: scale(0.97);
    }
  }
/* END_SECTION:predictive-search */

/* START_SECTION:product-category-faq (INDEX:55) */
.product-faq{
  width:100%;
}

.product-faq__inner{
  max-width:1200px;
  margin:0 auto;
}

.product-faq__grid{
  display:grid;
  grid-template-columns: 2fr 2fr;
  gap:46px;
  padding:20px;
}

.product-faq__image img{
  width:100%;
  border-radius:6px;
  min-width:0;
}

.product-faq__title{
  color:  #191919;
  font-family: "Nunito Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
}

.product-faq__item{
  border-bottom:1px solid #E5E5E5;
}

.product-faq__question{
  width:100%;
  text-align:left;
  background:none;
  border:none;
  padding:24px 0;
  font-size:18px;
  font-weight: 600;
  line-height: 150%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
  color: #191919;
  font-family: "Nunito Sans";
}

.product-faq__question-text{
  flex: 1 0 0;
}

.product-faq__icon{
  transition: transform 0.3s ease;
}

.product-faq__item.active .product-faq__icon{
  transform: rotate(180deg);
}

.product-faq__number{
  margin-right:8px;
  font-weight:600;
}

.product-faq__answer{
  display:none;
  padding-bottom:16px;
  font-size:14px;
  color:#626161;
  font-weight: 400;
  line-height: 150%;
}

.product-faq__item.active .product-faq__answer{
  display:block;
}

.product-faq__title--mobile{
  display:none;
  grid-column:1 / -1;
}

.product-faq__title--desktop{
  display:block;
}

@media screen and (max-width:749px){
  .product-faq__title{
    margin-bottom:20px;
    font-size: 18px;
  }

  .product-faq__grid{
    grid-template-columns:1fr;
    gap: 20px;
    padding: 24px 0px;
  }

  .product-faq__answer{
    padding-left: 10px;
  }

  .product-faq__question{
    font-size:16px;
  }

  .product-faq__question-text{
    padding-right: 5px;
  }

  .product-faq__title--mobile{
    display:block;
    margin-bottom:0;
  }

  .product-faq__title--desktop{
    display:none;
  }
}
/* END_SECTION:product-category-faq */

/* START_SECTION:product-hotspots (INDEX:56) */
/* Section layout */
  .section-product-hotspots {
    position: relative;
  }

  .section-product-hotspots__wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--gap);
    width: 100%;
    height: 100%;
  }

  /* Image container */
  .section-product-hotspots__content {
    position: relative;
    aspect-ratio: var(--ratio, 21 / 9);
    overflow: hidden;
  }

  /* Hide hotspots without products on touch devices (tablets included) */
  @media (hover: none) {
    product-hotspot-component.hotspot--hidden-touch {
      display: none;
    }
  }

  /* Responsive adjustments */
  @media screen and (max-width: 749px) {
    /* Hide dialog on mobile - hotspot opens quick-add modal instead */
    product-hotspot-component .hotspot-dialog {
      display: none;
    }
  }

  /* Hotspot button - positioned element with clickable area */
  product-hotspot-component {
    position: absolute;
    cursor: pointer;
    width: var(--button-size);
    height: var(--button-size);
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    padding: 0;
    font: inherit;
    color: inherit;
    outline: none;
    transition: border-color 0.2s ease-out, box-shadow 0.2s ease-out;
    z-index: var(--layer-flat);
  }

  product-hotspot-component:has(.hotspot-dialog[open]) {
    z-index: var(--layer-raised);
  }

  product-hotspot-component .hotspot-trigger {
    padding: 0;
    border: none;
  }

  .hotspot-dialog__product-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: var(--padding-xs);
    padding-inline-start: 0;
    overflow: hidden;
  }

  /* Visual target circle */
  .hotspot-trigger {
    width: var(--hotspot-size);
    height: var(--hotspot-size);
    background: var(--hotspot-bg, rgb(0 0 0 / 0.5));
    border-radius: 50%;
    cursor: pointer;
    position: relative;
    transition: width 0.1s ease-out, height 0.1s ease-out;
  }

  /* On mobile, ensure trigger is tappable */
  @media screen and (max-width: 749px) {
    .hotspot-trigger {
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
    }
  }

  /* Bullseye using ::after pseudo-element */
  .hotspot-trigger::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(var(--hotspot-size) * 0.4);
    height: calc(var(--hotspot-size) * 0.4);
    background: var(--hotspot-bullseye, #fff);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.1s ease-out, height 0.1s ease-out, background 0.1s ease-out;
  }

  /* Bullseye grows on hover or when dialog is open (desktop only) */
  @media screen and (min-width: 750px) {
    .hotspot:hover .hotspot-trigger::after,
    product-hotspot-component:has(.hotspot-dialog[open]) .hotspot-trigger::after {
      width: calc(var(--hotspot-size) * 0.55);
      height: calc(var(--hotspot-size) * 0.55);
      transition: width 0.2s ease-out, height 0.2s ease-out, background 0.2s ease-out;
      transition-delay: 0.2s;
    }
  }

  .hotspots-container {
    position: absolute;
    inset: 0;
    z-index: var(--layer-flat);
    overflow: clip;
  }

  .hotspots__background-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* Dialog positioning */
  product-hotspot-component .hotspot-dialog {
    position: absolute;
    padding: 0;
    border-radius: var(--style-border-radius-popover);
    border: var(--style-border-popover);
    width: max-content;
    min-width: var(--minimum-width-dialog);
    max-width: var(--maximum-width-dialog);
    box-shadow: var(--shadow-popover);

    &[data-placement*='bottom'] {
      --offset-y: 0px;
      --origin-y: calc(var(--hotspot-size) / 2);
      top: calc((var(--button-size) - var(--hotspot-size)) / 2 + var(--dialog-vertical-offset, 0px));
      bottom: unset;
    }
    &[data-placement*='top'] {
      --offset-y: 0px;
      --origin-y: calc(100% - (var(--hotspot-size) * 0.5));
      top: unset;
      bottom: calc((var(--button-size) - var(--hotspot-size)) * 0.5 - var(--dialog-vertical-offset, 0px));
    }
    &[data-placement*='left'] {
      --offset-x: calc((var(--button-size) - var(--hotspot-size)) * 0.5);
      --origin-x: calc(100% - (var(--hotspot-size) * 0.5));
      left: unset;
      right: 100%;
    }
    &[data-placement*='right'] {
      --offset-x: calc((var(--button-size) - var(--hotspot-size)) * -0.5);
      --origin-x: calc(var(--hotspot-size) * 0.5);
      left: 100%;
      right: unset;
    }
    &[data-placement*='center'] {
      left: 50%;
      translate: -50% 0;
      right: unset;
    }
    &[data-placement*='center'][data-placement*='bottom'] {
      --origin-y: calc(var(--hotspot-size) * 0.5);
      --origin-x: 50%;
      --offset-y: calc((var(--button-size) - var(--hotspot-size)) * -0.5);
      /* stylelint-disable-next-line declaration-property-value-disallowed-list */
      --offset-x: 0;
      top: 100%;
      bottom: unset;
      margin: 0;
    }
    &[data-placement*='center'][data-placement*='top'] {
      --origin-y: calc(100% - (var(--hotspot-size) * 0.5));
      --origin-x: 50%;
      --offset-y: calc((var(--button-size) - var(--hotspot-size)) * 0.5);
      /* stylelint-disable-next-line declaration-property-value-disallowed-list */
      --offset-x: 0;
      bottom: 100%;
    }
  }

  product-hotspot-component .hotspot-dialog:is(:focus, :focus-visible),
  product-hotspot-component .hotspot-dialog__link:is(:focus, :focus-visible) {
    outline: none;
  }

  .hotspot-dialog__product {
    display: grid;
    grid-template-columns: auto 1fr;
  }

  .hotspot-dialog__product-image,
  .hotspot-dialog svg.hotspot-dialog__placeholder-product-image {
    width: var(--width-product-image-dialog);
    height: var(--width-product-image-dialog);
    aspect-ratio: 1;
    padding: var(--padding-product-image-popover, var(--padding-xs));
    object-fit: cover;
    border-radius: var(--style-border-radius-popover);
  }

  .hotspot-dialog__link {
    position: absolute;
    inset: 0;
    z-index: var(--layer-flat);
  }

  .hotspot-dialog__product-title {
    margin-block-end: var(--product-title-gap);
    padding-inline-end: var(--padding-sm);
    min-width: 0;
  }

  product-hotspot-component .hotspot-dialog .hotspot-dialog__sold-out-badge {
    display: flex;
    width: fit-content;
    justify-self: flex-end;
    align-self: flex-end;
    justify-content: center;
    align-items: center;
    font-size: var(--font-body--size);
    padding: var(--padding-2xs) var(--padding-sm);
    background: rgb(var(--color-foreground-rgb) / var(--opacity-10));
    border-radius: var(--border-radius-sm);
    text-transform: uppercase;
    letter-spacing: var(--letter-spacing-sm);
    opacity: var(--opacity-80);
  }

  /* Dialog transitions */
  product-hotspot-component .hotspot-dialog {
    --hotspot-blur: 4px;
    --hotspot-scale: 0.8;
    --hotspot-entry-duration: 0.2s;
    --hotspot-exit-duration: 0.1s;

    /* Firefox doesn't have reverse transitions */
    /* in webkit/chromium we can set a closing attribute as we transition the exit and hook there */
    filter: blur(var(--hotspot-blur));
    opacity: 0;
    transform: scale(var(--hotspot-scale)) translate(0, 0);
    transition-property: display, opacity, filter, transform;
    transition-duration: var(--hotspot-entry-duration);
    transition-timing-function: ease;

    transform: scale(var(--hotspot-scale)) translate(var(--offset-x), var(--offset-y));
    transform-origin: var(--origin-x) var(--origin-y);
    transition-timing-function: cubic-bezier(0.65, -0.49, 0.35, 1.12);

    &[data-closing='true'] {
      transition-duration: var(--hotspot-exit-duration);
      transition-timing-function: ease-out;
      transform: scale(1) translate(0, calc(var(--hotspot-size) * 0.25));
    }

    /* We can only set transition-behavior once we've measured the dialog dimensions */
    &[data-showing='true'] {
      transition-behavior: allow-discrete;
    }
  }

  product-hotspot-component .hotspot-dialog[open][data-showing='true'] {
    opacity: 1;
    transform: scale(1) translate(0, 0);
    filter: blur(0px);
  }

  @starting-style {
    product-hotspot-component .hotspot-dialog[open][data-showing='true'] {
      opacity: 0;
      filter: blur(var(--hotspot-blur));
      transform: scale(var(--hotspot-scale)) translate(var(--offset-x), var(--offset-y));
      transform-origin: var(--origin-x) var(--origin-y);
    }
  }

  /* Safety triangles for dialogs */
  product-hotspot-component .hotspot-dialog::after {
    content: '';
    position: absolute;
    opacity: 0;
    inset: 0;
    width: 100%;
    height: 100%;
    pointer-events: all;
    transition: opacity 0.22s ease-out, translate 0.22s 0.1s ease-out;
    scale: var(--scale-x, 1) var(--scale-y, 1);
    z-index: var(--layer-flat);
  }

  .hotspot-dialog[open]:is([data-placement*='left'], [data-placement*='right'])::after {
    /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    width: calc(var(--button-size) / 2 + var(--hotspot-size) * 0.5);
  }

  .hotspot-dialog[open][data-placement*='right']::after {
    right: 100%;
    left: unset;
  }

  .hotspot-dialog[open][data-placement*='left']::after {
    left: 100%;
    right: unset;
    --scale-x: -1;
  }

  .hotspot-dialog[open][data-placement*='top']::after {
    --scale-y: -1;
  }

  .hotspot-dialog[open][data-placement*='center']::after {
    height: calc(var(--button-size) / 2 + var(--hotspot-size) * 0.5);
    width: 100%;
    /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
    clip-path: polygon(0 0, 100% 0, 50% calc(100% - var(--hotspot-size) * 0.25));
    --scale-x: 1;
    --scale-y: 1;
  }

  .hotspot-dialog[open][data-placement*='center'][data-placement*='bottom']::after {
    top: unset;
    bottom: 100%;
    --scale-y: -1;
  }

  .hotspot-dialog[open][data-placement*='center'][data-placement*='top']::after {
    top: 100%;
    bottom: unset;
  }

  /* Quick add button */
  .hotspot-dialog[open] {
    .quick-add {
      display: flex;
      flex-direction: column;
      justify-content: flex-end;
      width: auto;
      height: auto;
      position: relative;
      z-index: var(--layer-flat);
    }

    .quick-add__button {
      position: relative;
      padding-block: 0;
      box-shadow: none;
      align-items: center;
      justify-self: flex-end;
      height: fit-content;
      translate: var(--padding-2xs) 0;
      border: none;
      color: var(--color-foreground);
      background-color: var(--color-background);
      overflow: visible;
      pointer-events: all;
      opacity: 1;
      animation: elementSlideInTop var(--animation-speed) var(--animation-easing);
      transition-property: translate;
      transition-duration: var(--animation-speed);
      transition-timing-function: var(--ease-out-cubic);

      &::before {
        content: '';
        position: absolute;
        inset: -2px;
        border-radius: calc(50px + 2px);
        border: 2px solid transparent;
        pointer-events: none;
        transition-property: border-color;
        transition-duration: 0s;
        transition-timing-function: var(--ease-out-cubic);
      }

      &:is(:hover, :focus, :focus-visible, :active) {
        translate: 0 0;
        transition-delay: var(--animation-speed-slow);

        &::before {
          border-color: rgb(var(--color-foreground-rgb) / var(--opacity-15));
          transition-duration: var(--animation-speed);
          transition-delay: var(--animation-speed-slow);
        }
      }
    }
  }
/* END_SECTION:product-hotspots */

/* START_SECTION:product-recommendations (INDEX:59) */
product-recommendations .resource-list__carousel slideshow-slides {
    padding: 0;
  }

  .product-recommendations__skeleton-item {
    aspect-ratio: 3 / 4;
    background-color: var(--color-foreground);
    opacity: var(--skeleton-opacity);
    border-radius: 4px;
  }

  @media screen and (max-width: 749px) {
    .product-recommendations__skeleton-item:nth-child(2n + 1) {
      display: none;
    }
  }

  product-recommendations:has([data-has-recommendations='false']) {
    display: none;
  }
/* END_SECTION:product-recommendations */

/* START_SECTION:product-reviews (INDEX:60) */
.product-reviews {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 304px;
    overflow: hidden;
  }

  .product-reviews__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    height: 100%;
  }

  .product-reviews__title {
    font-family: var(--font-heading);
    color: var(--color-foreground);
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin: 0;
    line-height: var(--font-h2--line-height);
  }

  .product-reviews__content {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .product-reviews__content .rte {
    font-family: var(--font-body);
    color: var(--color-foreground);
    font-size: var(--font-size-body);
    line-height: var(--font-body--line-height);
  }

  .product-reviews__custom-html {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .product-reviews__custom-html * {
    font-family: var(--font-body);
    color: var(--color-foreground);
  }

  @media screen and (max-width: 749px) {
    .product-reviews {
      height: 304px;
    }

    .product-reviews__title {
      font-size: var(--font-size-h3);
    }

    .product-reviews__content .rte {
      font-size: var(--font-size-body);
    }
  }
/* END_SECTION:product-reviews */

/* START_SECTION:product-slider-2 (INDEX:61) */
.product-slider-2 {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 304px;
    overflow: hidden;
  }

  .product-slider-2__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    height: 100%;
  }

  .product-slider-2__title {
    font-family: var(--font-heading);
    color: var(--color-foreground);
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin: 0;
    line-height: var(--font-h2--line-height);
  }

  .product-slider-2__content {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .product-slider-2__content .rte {
    font-family: var(--font-body);
    color: var(--color-foreground);
    font-size: var(--font-size-body);
    line-height: var(--font-body--line-height);
  }

  .product-slider-2__custom-html {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .product-slider-2__custom-html * {
    font-family: var(--font-body);
    color: var(--color-foreground);
  }

  @media screen and (max-width: 749px) {
    .product-slider-2 {
      height: 304px;
    }

    .product-slider-2__title {
      font-size: var(--font-size-h3);
    }

    .product-slider-2__content .rte {
      font-size: var(--font-size-body);
    }
  }
/* END_SECTION:product-slider-2 */

/* START_SECTION:product-slider (INDEX:62) */
.product-slider {
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 304px;
    overflow: hidden;
  }

  .product-slider__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    height: 100%;
  }

  .product-slider__title {
    font-family: var(--font-heading);
    color: var(--color-foreground);
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin: 0;
    line-height: var(--font-h2--line-height);
  }

  .product-slider__content {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .product-slider__content .rte {
    font-family: var(--font-body);
    color: var(--color-foreground);
    font-size: var(--font-size-body);
    line-height: var(--font-body--line-height);
  }

  .product-slider__custom-html {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .product-slider__custom-html * {
    font-family: var(--font-body);
    color: var(--color-foreground);
  }

  @media screen and (max-width: 749px) {
    .product-slider {
      height: 304px;
    }

    .product-slider__title {
      font-size: var(--font-size-h3);
    }

    .product-slider__content .rte {
      font-size: var(--font-size-body);
    }
  }
/* END_SECTION:product-slider */

/* START_SECTION:quick-order-list (INDEX:64) */
.quick-order-list {
    --quantity-selector-width: 124px;
    --image-size: 43px;
    --quantity-header-padding: calc(var(--minimum-touch-target) + var(--gap-sm));
    --quick-order-quantity-column-width: calc(
      var(--quantity-selector-width) + 2 * var(--gap-sm) + 2 * var(--minimum-touch-target)
    );
    --transform-offset-negative: calc(-1 * var(--icon-stroke-width));
    --quick-order-first-column-width: 2fr; /* Takes 2 fractions of available space */
    --quick-order-price-column-width: 1fr; /* Takes 1 fraction */
    --quick-order-total-column-width: 1fr; /* Takes 1 fraction */

    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
  }

  .quick-order-list__container {
    width: 100%;
  }

  /* Grid container setup */
  .quick-order-list__grid {
    width: 100%;
    display: block; /* Container is block, children use grid */
    contain: layout; /* Isolate layout calculations for performance */
  }

  .quick-order-list__grid-body {
    contain: layout; /* Isolate layout calculations for performance */
  }

  .quick-order-list__grid-header,
  .quick-order-list__grid-row {
    display: grid;
    grid-template-columns:
      var(--quick-order-first-column-width) /* Variant column - takes 2 parts of available space */
      var(--quick-order-quantity-column-width) /* Fixed pixel width for quantity */
      var(--quick-order-price-column-width) /* Price column - takes 1 part */
      var(--quick-order-total-column-width); /* Total column - takes 1 part */
    gap: var(--gap-md);
    align-items: center;
  }

  .quick-order-list__grid-header {
    border-block-end: var(--style-border-width) solid var(--color-border);
    padding-block-end: var(--padding-xl);
    margin-block-end: var(--padding-sm);
    opacity: var(--opacity-85);
    font-weight: normal;
    font-size: var(--font-size--xs);
    letter-spacing: var(--letter-spacing--body-loose);
  }

  /* Add padding to quantity column header to align with content */
  .quick-order-list__grid-header .quick-order-list__grid-cell--quantity {
    padding-inline-start: var(--quantity-header-padding);
  }

  .quick-order-list__grid-row {
    padding-block-start: var(--padding-sm);
    padding-block-end: var(--padding-sm);
    content-visibility: auto;
    contain-intrinsic-size: auto
      calc(2 * var(--padding-sm) + var(--image-size) + var(--minimum-touch-target) + var(--padding-2xl));
  }

  @media screen and (min-width: 750px) {
    .quick-order-list__grid-row {
      contain-intrinsic-size: auto calc(2 * var(--padding-sm) + var(--image-size));
    }
  }

  .quick-order-list__grid-cell--variant {
    text-align: start;
    justify-self: stretch;
  }

  .quick-order-list__grid-cell--quantity {
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    justify-self: stretch;
  }

  .quick-order-list__grid-cell--quantity .variant-item__inner-container {
    width: 100%;
    justify-content: flex-start;
  }

  .quick-order-list__grid-cell--price {
    text-align: end;
    justify-self: stretch;
  }

  .quick-order-list__grid-cell--total {
    text-align: end;
    justify-self: stretch;
  }

  .variant-item__image-container,
  .quick-order-list__table-image {
    width: var(--image-size);
    height: auto;
  }

  .quick-order-list .pagination {
    margin-block-start: 0;
    padding-block-start: var(--padding-xl);
    padding-block-end: 0;
  }

  .variant-item__inner-container {
    display: flex;
    align-items: center;
    gap: var(--gap-sm);
  }

  .volume-pricing-info-placeholder {
    width: var(--minimum-touch-target);
    height: var(--minimum-touch-target);
  }

  .variant-item__quantity .quantity-selector {
    display: flex;
    flex: 0 0 var(--quantity-selector-width);
    min-width: var(--quantity-selector-width);
    font-size: var(--font-size--xs);
    height: auto;
  }

  .variant-item__remove {
    background-color: transparent;
    color: var(--color-foreground);
    width: var(--minimum-touch-target);
    height: var(--minimum-touch-target);
    justify-content: center;
    box-shadow: none;
    padding: 0;
  }

  .remove-icon-bottom,
  .remove-icon-top {
    transition: transform var(--animation-speed) var(--animation-easing);
  }

  .variant-item__remove:not(.variant-item__remove--hidden):hover .remove-icon-top {
    transform: translate(var(--transform-offset-negative), var(--icon-stroke-width)) rotate(-15deg);
  }

  .variant-item__remove:not(.variant-item__remove--hidden):is(:hover, :active) .remove-icon-bottom {
    transform: translateY(var(--icon-stroke-width));
  }

  /* Hide remove button with opacity to prevent layout shift */
  .variant-item__remove--hidden {
    opacity: 0;
    pointer-events: none;
    cursor: default;
  }

  .variant-item__name {
    font-weight: var(--font-weight-medium);
  }

  .variant-item__sku {
    font-size: var(--font-size--3xs);
    opacity: var(--opacity-85);
  }

  .variant-item__details {
    display: inline-flex;
    flex-direction: column;
  }

  .variant-item__totals {
    flex: 0 0 auto;
    padding-block-start: var(--padding-2xs);
  }

  /* Compare at price styles */
  .variant-item__discounted-prices {
    display: flex;
    gap: var(--gap-2xs);
    justify-content: flex-end;
  }

  .variant-item__discounted-prices dd {
    margin: 0;
  }

  /* Mobile layout */
  @media screen and (max-width: 749px) {
    .quick-order-list__grid-header,
    .quick-order-list__grid-row {
      grid-template-columns: 1fr auto; /* Variant column and total column on mobile */
      gap: var(--gap-sm);
      max-width: 100%;
      overflow: hidden;
      align-items: flex-start;
    }

    .quick-order-list__grid-header .quick-order-list__grid-cell--total {
      text-align: end;
    }

    .quick-order-list__grid-row {
      margin-block-end: var(--margin-2xl);
      padding-block-end: var(--padding-2xl);
      border-block-end: var(--style-border-width) solid var(--color-border);
    }

    .quick-order-list__grid-row:last-child {
      margin-block-end: 0;
      border-block-end: none;
    }

    .variant-item__inner {
      flex: 1 1 auto;
      padding-inline-end: var(--padding-lg);
    }

    .variant-item__inner-container {
      display: flex;
      gap: var(--gap-md);
      align-items: flex-start;
    }

    .variant-item__details {
      flex: 1;
      display: flex;
      flex-direction: column;
      min-width: 0; /* Allow text to shrink */
    }

    .variant-item__totals {
      flex: 0 0 auto;
      text-align: end;
      padding-block-start: var(--padding-2xs);
    }

    .variant-item__totals .variant-item__total-price {
      font-size: var(--font-size--sm);
      font-weight: var(--font-weight-medium);
    }

    .variant-item__title-container .variant-item__name {
      display: block;
      font-size: var(--font-size--sm);
      line-height: var(--line-height-tight);
      margin: 0;
    }

    .variant-item__mobile-price-container {
      margin-block-end: var(--margin-xs);
    }

    .variant-item__mobile-price {
      font-size: var(--font-size--sm);
      opacity: var(--opacity-85);
      white-space: nowrap;
    }

    /* Mobile compare at price styles */
    .variant-item__discounted-prices--mobile {
      display: flex;
      flex-direction: row;
      align-items: baseline;
      justify-content: flex-start;
      gap: var(--gap-xs);
      margin-block-start: var(--margin-2xs);
      margin-block-end: 0;
    }

    .variant-item__discounted-prices--mobile dd {
      display: inline;
    }

    .variant-item__mobile-quantity {
      display: flex;
      align-items: center;
      gap: 0;
    }

    /* Mobile-only content styles */
    .variant-item__mobile-info {
      display: flex;
      flex-direction: column;
      width: 100%;
    }

    .variant-item__image-container {
      flex: 0 0 var(--image-size);
      width: var(--image-size);
      height: var(--image-size);
    }

    .quick-order-list__table-image {
      width: 100%;
      height: 100%;
    }

    .variant-item__mobile-quantity .quantity-selector {
      display: flex;
      flex: 0 0 var(--quantity-selector-width);
      min-width: var(--quantity-selector-width);
      font-size: var(--font-size--xs);
      margin: 0;
      padding: 0;
    }

    /* Mobile remove button styling */
    .variant-item__remove--mobile {
      background-color: transparent;
      color: var(--color-foreground);
      width: var(--minimum-touch-target);
      height: var(--minimum-touch-target);
      min-width: var(--minimum-touch-target);
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow: none;
      padding: 0;
      margin: 0;
      flex-shrink: 0;
      border: none;
      cursor: pointer;
    }

    .variant-item__remove--mobile svg {
      width: var(--icon-size-sm);
      height: var(--icon-size-sm);
    }

    .variant-item__remove--mobile:not(.variant-item__remove--hidden):hover {
      opacity: var(--opacity-70);
    }

    .quick-order-list .pagination {
      padding-block-start: var(--padding-2xl);
    }
  }

  .quick-order-list-disabled {
    pointer-events: none;
  }

  .quick-order-list-total {
    background: var(--color-background);
    border-block-start: var(--style-border-width) solid var(--color-border);
  }

  /* Tablet and Desktop styles - sticky footer */
  @media screen and (min-width: 750px) {
    .quick-order-list-total {
      position: sticky;
      inset-block-end: 0;
      z-index: var(--layer-raised);
    }
  }

  .quick-order-list-total__info,
  .quick-order-list-total__confirmation {
    min-height: 8rem;
    padding-block-start: var(--padding-4xl);
  }

  .quick-order-list-total__info {
    align-items: flex-start;
    gap: var(--gap-md);
  }

  .quick-order-list-total__confirmation {
    display: flex;
    gap: var(--gap-2xl);
    align-items: center;
    justify-content: center;
    padding: var(--padding-2xl) var(--padding-xl);
  }

  .quick-order-list-total__column {
    display: flex;
    flex-direction: column;
  }

  .quick-order-list-total__actions {
    display: flex;
  }

  /* Desktop layout - Use CSS Grid to match main table alignment */
  @media screen and (min-width: 750px) {
    .quick-order-list-total__info {
      display: grid;
      grid-template-columns:
        var(--quick-order-first-column-width) /* Variant column - takes 2 parts of available space */
        var(--quick-order-quantity-column-width) /* Fixed pixel width for quantity */
        var(--quick-order-price-column-width) /* Price column - takes 1 part */
        var(--quick-order-total-column-width); /* Total column - takes 1 part */
    }

    .quick-order-list-total__column {
      grid-column: 1;
      display: flex;
      flex-direction: column;
      gap: var(--gap-md);
    }

    .quick-order-list-total__summary {
      grid-column: 2 / 5;
      display: grid;
      grid-template-columns: var(--quick-order-quantity-column-width, 234px) auto;
    }

    .quick-order-list-total__items {
      grid-column: 1;
      justify-self: center;
      text-align: center;
    }

    .quick-order-list-total__price {
      grid-column: 3;
      justify-self: end;
      text-align: end;
    }
  }

  /* Tablet-specific overrides - 750px to 989px */
  @media screen and (min-width: 750px) and (max-width: 989px) {
    .quick-order-list-total__actions {
      flex-direction: column;
    }

    .quick-order-list-total__messages {
      align-items: stretch;
    }

    .quick-order-list__remove-all-button {
      padding-inline: 0;
    }
  }

  .quick-order-list__button.button--full-width {
    width: 100%;
  }

  .quick-order-list__button.button {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .quick-order-list-total .button--unstyled {
    border: none;
    box-shadow: none;
    background-color: transparent;
    color: var(--color-foreground);
    cursor: pointer;
  }

  .quick-order-list__remove-all-button svg {
    width: var(--icon-size-sm);
    height: var(--icon-size-sm);
    flex-shrink: 0;
  }

  .quick-order-list-total__items span {
    display: block;
    margin-block-end: var(--margin-xs);
  }

  .quick-order-list-total__items .h5 {
    margin: 0;
    letter-spacing: var(--letter-spacing--body-loose);
    opacity: var(--opacity-85);
  }

  .quick-order-list-total__subtotal-value {
    display: block;
    margin-block-end: var(--margin-xs);
    line-height: var(--font-paragraph--line-height);
  }

  /* Ensure text-component displays properly */
  .quick-order-list-total__subtotal-value text-component {
    display: block;
  }

  .quick-order-list-total__subtotal {
    margin: 0;
    letter-spacing: var(--letter-spacing--body-loose);
    opacity: var(--opacity-85);
  }

  .quick-order-list-total__tax-note {
    opacity: var(--opacity-subdued-text);
  }

  .quick-order-list-total__messages {
    display: flex;
    flex-direction: column;
    gap: var(--gap-xs);
  }

  .quick-order-list-total__success,
  .quick-order-list-total__error {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
  }

  .quick-order-list-total__success .icon-success,
  .quick-order-list-total__error .quick-order-list-total__icon--error {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--icon-size-sm);
    height: var(--icon-size-sm);
    color: inherit;
  }

  .quick-order-list-total__success .icon-success svg,
  .quick-order-list-total__error .quick-order-list-total__icon--error svg {
    width: 100%;
    height: 100%;
  }

  .quick-order-list-total__error:empty,
  .quick-order-list-total__success:empty {
    display: none;
  }

  .quick-order-list-total__info.confirmation-visible {
    display: none;
  }

  .quick-order-list-total__confirmation-text {
    white-space: nowrap;
  }

  .quick-order-list-total__confirmation-buttons {
    display: flex;
    gap: var(--gap-md);
    align-items: center;
  }

  .quick-order-list-total__confirmation button {
    margin: 0;
    white-space: nowrap;
  }

  .quick-order-list__remove-all-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--gap-sm);
  }

  /* Mobile styles */
  @media screen and (max-width: 749px) {
    .quick-order-list-total__info {
      display: flex;
      flex-direction: column;
      align-items: center;
    }

    .quick-order-list-total__column {
      order: 3; /* Move column to the end on mobile */
      width: 100%;
      flex: 1 1 auto;
    }

    .quick-order-list-total__actions {
      flex-direction: column;
      width: 100%;
    }

    .quick-order-list-total__messages {
      width: 100%;
      align-items: center;
      margin-block-start: var(--margin-xs);
    }

    .quick-order-list-total__summary {
      order: 1; /* First on mobile */
      display: flex;
      flex-direction: column;
      align-items: center;
      width: 100%;
      gap: var(--gap-md);
    }

    .quick-order-list-total__items {
      text-align: center;
      width: auto;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--gap-xs);
    }

    .quick-order-list-total__items span {
      display: inline;
      margin-block-end: 0;
    }

    .quick-order-list-total__items .h5 {
      display: inline;
    }

    .quick-order-list-total__price {
      text-align: center;
      width: 100%;
    }

    .quick-order-list-total__product-total {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: var(--gap-xs);
    }

    .quick-order-list-total__product-total .quick-order-list-total__subtotal-value {
      display: inline-block;
      margin-block-end: 0;
    }

    .quick-order-list-total__product-total .quick-order-list-total__subtotal {
      display: inline;
    }

    .quick-order-list__button,
    .quick-order-list__remove-all-button {
      width: 100%;
      justify-content: center;
    }

    .quick-order-list-total__confirmation {
      flex-direction: column;
    }

    .quick-order-list-total__tax-note {
      margin-block-start: var(--margin-xs);
    }
  }
/* END_SECTION:quick-order-list */

/* START_SECTION:rating-and-review (INDEX:65) */
.rating-and-review {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 198px;
  }

  .rating-and-review__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    padding-block: var(--spacing-md);
  }

  .rating-and-review__title {
    font-family: 'Nunito Sans', sans-serif;
    color: var(--color-foreground);
    font-size: 30px;
    font-weight: 600;
    font-style: normal;
    text-align: center;
    vertical-align: middle;
    margin: 0 0 32px 0;
    line-height: 24px;
    letter-spacing: 0.4px;
  }

  .rating-and-review__cards {
    display: grid;
    grid-template-columns: repeat(4, 270px);
    gap: 32px;
    align-items: stretch;
    justify-content: center;
    margin-top: 0;
  }

  .rating-and-review__card {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    padding: 1.25rem;
    background: var(--color-background);
    border: 0.79px solid #EAEAEA;
    border-radius: 12px;
    box-shadow: 0px 2px 16.8px rgba(0, 0, 0, 0.12);
    height: 110px;
    width: 270px;
    gap: 1rem;
  }

  .rating-and-review__icon {
    width: 74px;
    height: 82px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
  }

  .rating-and-review__icon img,
  .rating-and-review__icon svg {
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .rating-and-review__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 0.375rem;
    flex: 1;
    min-width: 0;
  }

  .rating-and-review__label {
    font-family: var(--font-body);
    color: #626161;
    font-size: 14px;
    font-weight: 400;
    margin: 0;
    line-height: 1.4;
    margin-bottom: 0.125rem;
  }

  .rating-and-review__rating-row {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    height: 25.2px;
    margin-bottom: 0.125rem;
  }

  .rating-and-review__rating-value {
    font-family: var(--font-heading);
    color: #191919;
    font-size: 24px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.5px;
  }

  .rating-and-review__stars {
    display: inline-flex;
    align-items: center;
    width: 89.26px;
    height: 17.85px;
    font-size: 17.85px;
    line-height: 1;
    letter-spacing: 2px;
    color: #f2a33a;
    opacity: 0.9;
  }

  .rating-and-review__star {
    font-size: 17.85px;
    line-height: 1;
    color: #f2a33a;
  }

  .rating-and-review__star--empty {
    color: #E0E0E0;
  }

  .rating-and-review__star--half {
    background: linear-gradient(90deg, #f2a33a 50%, #E0E0E0 50%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .rating-and-review__count {
    font-family: var(--font-body);
    color: #6A6A6A;
    font-size: 16px;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
    opacity: 0.85;
  }

  .rating-and-review__certification {
    font-family: var(--font-body);
    color: #191919;
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    line-height: 1.4;
  }

  @media screen and (max-width: 989px) {
  .rating-and-review__cards {
    max-width: 100%;
    gap: 16px;
  }

  .rating-and-review__card {
    min-height: 124px;
    padding: 14px 16px;
    gap: 14px;
  }

  .rating-and-review__icon {
    width: 64px;
    min-width: 64px;
    height: 64px;
  }

  .rating-and-review__label {
    font-size: 14px;
  }

  .rating-and-review__rating-value {
    font-size: 20px;
  }

  .rating-and-review__stars,
  .rating-and-review__star {
    font-size: 17px;
  }

  .rating-and-review__count,
  .rating-and-review__certification {
    font-size: 15px;
  }
}

@media screen and (max-width: 749px) {
  .rating-and-review__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    max-width: 100%;
  }

  .rating-and-review__card {
    min-height: unset;
    width: 100%;
    height: 100%;
    padding: 8px 6px;
    gap: 8px;
    flex-direction: row;
    align-items: center;
    text-align: left;
  }

  .rating-and-review__icon {
    width: 40px;
    min-width: 40px;
    height: 44px;
  }

  .rating-and-review__content {
    align-items: flex-start;
    text-align: left;
  }

  .rating-and-review__label {
    font-size: 12px;
  }

  .rating-and-review__rating-value {
    font-size: 18px;
  }

  .rating-and-review__stars,
  .rating-and-review__star {
    font-size: 18px;
    width: fit-content;
  }

  .rating-and-review__count,
  .rating-and-review__certification {
    font-size: 12px;
  }
}

@media screen and (max-width: 390px) {
  .rating-and-review__icon {
    margin-right: 0;
  }

  .rating-and-review__icon {
    width: 34px;
    min-width: 34px;
    height: 40px;
  }

  .rating-and-review__label {
    font-size: 10px;
  }

  .rating-and-review__rating-value {
    font-size: 18px;
  }

  .rating-and-review__stars,
  .rating-and-review__star {
    font-size: 13px;
    width: fit-content;
  }

  .rating-and-review__count,
  .rating-and-review__certification {
    font-size: 10px;
  }
}

@media screen and (max-width: 32px) {
  .rating-and-review__card {
    padding: 6px 4px;
    gap: 0;
  }

  .rating-and-review__cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    max-width: 100%;
  }

  .rating-and-review__icon {
    width: 30px;
    min-width: 30px;
    height: 34px;
  }

  .rating-and-review__label {
    font-size: 10px;
  }

  .rating-and-review__rating-value {
    font-size: 16px;
  }

  .rating-and-review__stars,
  .rating-and-review__star {
    font-size: 16px;
  }

  .rating-and-review__count,
  .rating-and-review__certification {
    font-size: 10px;
  }
}
/* END_SECTION:rating-and-review */

/* START_SECTION:search-results (INDEX:67) */
.collection-wrapper {
    @media screen and (min-width: 750px) {
      grid-template-columns:
        1fr repeat(
          var(--centered-column-number),
          minmax(0, calc((var(--page-width) - var(--page-margin) * 2) / var(--centered-column-number)))
        )
        1fr;
    }
  }

  .collection-wrapper:has(.facets-block-wrapper--full-width),
  .collection-wrapper:has(.collection-wrapper--full-width) {
    @media screen and (min-width: 750px) {
      grid-column: 1 / -1;
      grid-template-columns:
        minmax(var(--page-margin), 1fr) repeat(
          var(--centered-column-number),
          minmax(0, calc((var(--page-width) - var(--page-margin) * 2) / var(--centered-column-number)))
        )
        minmax(var(--page-margin), 1fr);
    }
  }

  /* Decrease filter (left sidebar) width */
  @media screen and (min-width: 750px) {
    .collection-wrapper:has(.facets--vertical) {
      --facets-vertical-col-width: 4;
    }
  }

  /* Product area container */
  .collection-products-area {
    display: flex;
    flex-direction: column;
    grid-column: var(--full-width);
    width: 100%;
  }

  /* Pagination wrapper - spans full width */
  .pagination-full-width-wrapper {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: var(--padding-xl, 32px);
  }

  .pagination-full-width-wrapper .pagination-figma-container {
    width: 100%;
    margin-top: 0;
  }

  .collection-wrapper:has(.facets-block-wrapper--vertical:not(#filters-drawer)):has(.collection-wrapper--full-width) {
    @media screen and (min-width: 750px) {
      grid-column: 1 / -1;
      grid-template-columns: 0fr repeat(var(--centered-column-number), minmax(0, 1fr)) 0fr;
    }
  }

  :is(.collection-wrapper--full-width, .collection-wrapper--full-width-on-mobile)
    [product-grid-view='default']
    .product-grid__card {
    @media screen and (max-width: 749px) {
      padding-inline-start: max(var(--padding-xs), var(--padding-inline-start));
      padding-inline-end: max(var(--padding-xs), var(--padding-inline-end));
    }
  }

  :is(.collection-wrapper--full-width, .collection-wrapper--full-width-on-mobile)
    [product-grid-view='mobile-single']
    .product-grid__card {
    @media screen and (max-width: 749px) {
      padding-inline-start: max(var(--padding-xs), var(--padding-inline-start));
      padding-inline-end: max(var(--padding-xs), var(--padding-inline-end));
    }
  }

  /* Make product media go edge-to-edge by using negative margins */
  :is(.collection-wrapper--full-width) .card-gallery,
  :is(.collection-wrapper--full-width-on-mobile) .card-gallery {
    @media screen and (max-width: 749px) {
      margin-inline-start: calc(-1 * max(var(--padding-xs), var(--padding-inline-start)));
      margin-inline-end: calc(-1 * max(var(--padding-xs), var(--padding-inline-end)));
    }
  }

  /* Product title 2-line clamp */
  .collection-products-area :is(.product-card, .product-grid__card) .contents .text-block {
    height: 42px;
    max-height: 42px;
    min-height: 42px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .collection-products-area :is(.product-card, .product-grid__card) .contents .text-block > * {
    margin: 0;
    padding: 0;
  }

  .collection-products-area :is(.product-card, .product-grid__card) .contents .text-block p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 42px;
    max-height: 42px;
    min-height: 42px;
    line-height: 21px;
    margin: 0;
    padding: 0 10px;
    white-space: normal;
    word-wrap: break-word;
    word-break: break-word;

    @media screen and (max-width: 749px) {
      padding: 0;
      font-size: 14px;
    }
  }
/* END_SECTION:search-results */

/* START_SECTION:shoplc-metrics-ribbon (INDEX:72) */
.shoplc-metrics-ribbon {
    position: relative;
  }

  /* Gap between trust-metrics-ribbon (top) and this section (bottom) */
  .shopify-section:has(.trust-metrics-ribbon) + .shopify-section .shoplc-metrics-ribbon {
    margin-top: clamp(24px, 4vw, 48px);
  }

  /* color-scheme-1: top spacing + warm cream gradient background */
  .shoplc-metrics-ribbon.color-scheme-1 {
    margin-block-start: unset;
  }

  .shoplc-metrics-ribbon__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, #FFFBF3 0%, #FFFFFF 100%);
    border: 1px solid transparent;
    border-image: linear-gradient(180deg, rgba(206, 153, 60, 0.7) 0%, rgba(206, 153, 60, 0) 100%) 1;
    border-radius: 5px;
  }

  .shoplc-metrics-ribbon__inner {
    position: relative;
    background-color: transparent !important;
  }

  /* Match trust-metrics-ribbon: short white→accent bars flanking the heading */
  .shoplc-metrics-ribbon__heading-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs, 0.25rem);
    width: 100%;
    margin-bottom: var(--padding-lg);
  }

  .shoplc-metrics-ribbon__divider {
    flex: 0 0 auto;
    flex-shrink: 0;
    display: block;
    width: 2.3rem;
    height: 1px;
    min-height: 1px;
    background: linear-gradient(90deg, #FFFFFF 0%, #CE993C 100%);
  }

  .shoplc-metrics-ribbon__heading {
    margin: 0;
    text-align: center;
    font-size: var(--heading-font-size-desktop);
    font-weight: 600;
  }

  @media screen and (max-width: 576px) {
    .shoplc-metrics-ribbon__heading {
      font-size: var(--heading-font-size-mobile);
      font-weight: 700;
    }
  }

  .shoplc-metrics-ribbon__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: var(--gap-xl);
    align-items: start;
    margin-top: var(--padding-lg);
  }

  .shoplc-metrics-ribbon__item {
    text-align: center;
    color: #000000;
  }

  .shoplc-metrics-ribbon__content,
  .shoplc-metrics-ribbon__icon {
    color: #000000;
  }

  .shoplc-metrics-ribbon__badge {
    display: grid;
    grid-template-columns: 64px minmax(0, 1fr) 64px;
    align-items: center;
    justify-items: center;
    gap: var(--gap-lg);
    width: 100%;
    max-width: 260px;
    margin-inline: auto;
  }

  .shoplc-metrics-ribbon__laurel {
    display: grid;
    place-items: center;
    width: 64px;
    height: 96px;
    color: var(--shoplc-metrics-accent);
  }

  .shoplc-metrics-ribbon__laurel--right {
    transform: scaleX(-1);
  }

  .shoplc-metrics-ribbon__icon {
    display: flex;
    justify-content: center;
    margin-bottom: 16px;
  }

  .shoplc-metrics-ribbon__icon svg {
    width: 100%;
    height: auto;
    max-height: 100%;
    display: block;
  }

  .shoplc-metrics-ribbon__icon-img {
    width: 248px;
    height: 152px;
    object-fit: contain;
  }

  .shoplc-metrics-ribbon__secondary {
    opacity: 0.85;
  }

  @media screen and (max-width: 989px) {
    .shoplc-metrics-ribbon__grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 48px;
    }
  }

  @media screen and (min-width: 990px) {
    .shoplc-metrics-ribbon__heading-row {
      gap: var(--spacing-md, 0.9375rem);
    }

    .shoplc-metrics-ribbon__divider {
      width: 9.075rem;
      height: 0.125rem;
    }
  }

  @media screen and (max-width: 749px) {
    .shoplc-metrics-ribbon {
      margin-block-start: var(--padding-lg);
    }

    .shoplc-metrics-ribbon__inner {
      padding-inline: var(--padding-lg);
    }

    .shoplc-metrics-ribbon__heading-row {
      margin-bottom: var(--padding-md);
    }

    .shoplc-metrics-ribbon__badge {
      gap: var(--gap-md);
      max-width: 220px;
    }

    .shoplc-metrics-ribbon__laurel {
      width: 56px;
      height: 84px;
    }
  }

  /* Mobile — Figma Frame 1410101784: row-gap 23px, column-gap 14px; cells 165.03×117.84; grid width ~344.06 */
  @media screen and (max-width: 768px) {
    .shoplc-metrics-ribbon__grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      row-gap: 23px;
      column-gap: 14px;
      width: 100%;
      max-width: 344.06451416015625px;
      min-height: 258.8899230957031px;
      height: auto;
      margin-inline: auto;
      margin-top: var(--padding-lg);
      align-items: center;
      justify-content: center;
      box-sizing: border-box;
    }

    .shoplc-metrics-ribbon__item {
      width: 165.0322723388672px;
      max-width: min(165.03px, 100%);
      height: 117.84203338623047px;
      min-height: 117.84203338623047px;
      box-sizing: border-box;
      margin: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      justify-self: center;
    }

    .shoplc-metrics-ribbon__content {
      width: 100%;
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 0;
    }

    .shoplc-metrics-ribbon__icon {
      width: 100%;
      height: 100%;
      margin-bottom: 0;
      display: flex;
      align-items: center;
      justify-content: center;
      min-width: 0;
    }

    .shoplc-metrics-ribbon__icon-img {
      width: auto;
      height: auto;
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
      object-position: center;
    }
  }
/* END_SECTION:shoplc-metrics-ribbon */

/* START_SECTION:shopping-for-better-future (INDEX:73) */
.shopping-for-better-future {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 716.62px;
  }

  .shopping-for-better-future__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    padding-block: var(--spacing-xl);
  }

  /* Two-Column Layout */
  .shopping-for-better-future__columns {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-xl);
    align-items: start;
  }

  @media screen and (min-width: 750px) {
    .shopping-for-better-future__columns {
      grid-template-columns: 1fr 1fr;
      gap: var(--spacing-2xl, 3rem);
    }
  }

  /* Left Column: Content */
  .shopping-for-better-future__column--content {
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  /* Main Heading */
  .shopping-for-better-future__heading {
    font-family: 'Nunito Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 32px;
    line-height: 150%;
    letter-spacing: 0%;
    color: var(--color-foreground);
    margin: 0 0 114px;
    padding-left: var(--page-margin, 2rem);
    text-align: left;
  }

.shopping-for-better-future__features {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding-left: var(--page-margin, 2rem);
  max-width: 589px;
}

.shopping-for-better-future__feature {
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.shopping-for-better-future__feature-icon {
  flex-shrink: 0;
  width: 50px;
  height: 50px;
}

.shopping-for-better-future__feature-icon img {
  width: 100%;
  height: 100%;
}

.shopping-for-better-future__feature-content {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.shopping-for-better-future__feature-title {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 16px;
  font-weight: 700;   /* Bold */
  font-style: normal;
  line-height: 150%;
  letter-spacing: 0;
  margin: 0;
}


.shopping-for-better-future__feature-description {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
  opacity: 0.9;
}

  

  

  /* Right Column: Image Collage */
  .shopping-for-better-future__column--images {
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    position: relative;
  }

  .shopping-for-better-future__image-collage {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: 463px;
    margin: 0;
  }

  .shopping-for-better-future__image-wrapper {
    position: absolute;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    background: #FFFFFF;
    padding: 8px;
  }

  .shopping-for-better-future__image-wrapper--back {
    right: 55px;
    top: 0;
    height: 463px;
    width: 460px;
    transform: rotate(0deg);
    z-index: 1;
  }

  .shopping-for-better-future__image-wrapper--front {
    left: 0px;
    top: 30px;
    width: 358px;
    height: 358px;
    transform: rotate(20deg);
    z-index: 2;
  }

  .shopping-for-better-future__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
  }

  /* Trust Banner */
  /* Trust Banner */
  .shopping-for-better-future__trust-banner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 0;
    width: 100%;
    max-width: 1350px;
    margin: 3rem auto 0;
    padding: 2.5rem 2rem;
    background-color: #FFFFFF;
    border: 1px solid #E0E0E0;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  }

  .shopping-for-better-future__trust-badge {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 1.25rem;
    flex: 1;
    padding: 0 2rem;
  }

  .shopping-for-better-future__trust-badge-icon {
    flex-shrink: 0;
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #E9F1FF;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }

  .shopping-for-better-future__trust-badge-icon img {
    width: 40px;
    height: 40px;
    object-fit: contain;
  }

  .shopping-for-better-future__trust-badge-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
  }

  .shopping-for-better-future__trust-badge-title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--color-foreground);
    margin: 0;
  }

  .shopping-for-better-future__trust-badge-description {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--color-foreground);
    margin: 0;
    opacity: 0.85;
  }

  .shopping-for-better-future__trust-banner-divider {
    width: 1px;
    height: 80px;
    background-color: #E0E0E0;
    flex-shrink: 0;
  }

  /* Mobile Responsive */
  @media screen and (max-width: 749px) {
    .shopping-for-better-future__columns {
      grid-template-columns: 1fr;
      gap: var(--spacing-lg);
    }

    .shopping-for-better-future__column--content {
      order: 1;
    }

    .shopping-for-better-future__column--images {
      order: 2;
    }

    .shopping-for-better-future__heading {
      font-size: 28px;
      line-height: 150%;
      margin-bottom: 3rem;
    }

   

    .shopping-for-better-future__feature {
      gap: 1rem;
    }

    .shopping-for-better-future__feature-icon {
      width: 45px;
      height: 45px;
    }

    .shopping-for-better-future__feature-icon::before {
      width: 45px;
      height: 45px;
    }

   .shopping-for-better-future__feature-title {
  font-weight: 700 !important;
}


    .shopping-for-better-future__image-collage {
      height: 300px;
      max-width: 100%;
    }

    .shopping-for-better-future__image-wrapper {
      width: 220px;
      height: 220px;
    }

    .shopping-for-better-future__image-wrapper--back {
      left: 10px;
      transform: rotate(-3deg);
    }

    .shopping-for-better-future__image-wrapper--front {
      left: 0px;
      top: 20px;
      width: 280px;
      height: 280px;
      transform: rotate(20deg);
    }

    .shopping-for-better-future__trust-banner {
      flex-direction: column;
      padding: 1.5rem;
      margin-top: 2rem;
    }

    .shopping-for-better-future__trust-badge {
      padding: 0;
      width: 100%;
    }

    .shopping-for-better-future__trust-banner-divider {
      width: 100%;
      height: 1px;
      margin: 1rem 0;
    }
  }
/* END_SECTION:shopping-for-better-future */

/* START_SECTION:sign-in-page (INDEX:74) */
.sign-in-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    min-height: 100dvh;
    padding: 20px 15px;
    background: linear-gradient(72deg, #fff 0%, #eee 41%, #f5f5f5 99%);
    font-family: 'Nunito Sans', var(--font-body);
  }

  .sign-in-page__card {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 360px;
    gap: 40px;
  }

  .sign-in-page__main {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 28px;
    padding: 25px 15px 15px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 3.77px 49.95px 0 rgba(0, 0, 0, 0.1);
  }

  .sign-in-page__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }

  .sign-in-page__logo {
    width: 120px;
    height: auto;
    object-fit: contain;
  }

  .sign-in-page__shop-name {
    text-align: center;
  }

  .sign-in-page__customers {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .sign-in-page__avatars {
    display: flex;
  }

  .sign-in-page__avatar {
    width: 17px;
    height: 17px;
    border-radius: 50%;
    border: 1px solid #fff;
    background-color: #ddd;
    background-size: cover;
    background-position: center;
    box-shadow: 0 4.63px 6.94px 0 rgba(243, 244, 255, 1);
  }

  .sign-in-page__avatar + .sign-in-page__avatar {
    margin-left: -2px;
  }

  .sign-in-page__customer-text {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: #252525;
  }

  .sign-in-page__form-area {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .sign-in-page__social {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .sign-in-page__social-buttons {
    display: flex;
    gap: 12px;
    width: 100%;
  }

  .sign-in-page__social-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex: 1;
    padding: 12px 8px;
    border: 1px solid #d8dadc;
    border-radius: 6px;
    background: #fff;
    text-decoration: none;
    color: #191919;
    cursor: pointer;
    transition: opacity 0.2s ease;
  }

  .sign-in-page__social-btn:hover {
    opacity: 0.8;
  }

  .sign-in-page__social-btn--facebook {
    border-color: #ddd;
  }

  .sign-in-page__social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .sign-in-page__social-btn--google .sign-in-page__social-icon svg {
    width: 20px;
    height: 20px;
  }

  .sign-in-page__social-btn--facebook .sign-in-page__social-icon svg {
    width: 24px;
    height: 24px;
  }

  .sign-in-page__social-label {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    display: none;
  }

  .sign-in-page__divider {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .sign-in-page__divider-line {
    flex: 1;
    height: 1px;
    background: #ddd;
  }

  .sign-in-page__divider-text {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #626161;
    text-align: center;
    white-space: nowrap;
  }

  .sign-in-page__email-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }

  .sign-in-page__field {
    width: 100%;
  }

  .sign-in-page__input {
    width: 100%;
    padding: 14px 12px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background: #fff;
    font-family: 'Nunito Sans', var(--font-body);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #191919;
    outline: none;
    box-sizing: border-box;
  }

  .sign-in-page__input::placeholder {
    color: #919191;
  }

  .sign-in-page__input:focus {
    border-color: #191919;
  }

  .sign-in-page__submit {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    padding: 10px;
    background: #ffd334;
    border: none;
    border-bottom: 2px solid #f1c900;
    border-radius: 5px;
    font-family: 'Nunito Sans', var(--font-body);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #191919;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s ease;
    box-sizing: border-box;
  }

  .sign-in-page__submit:hover {
    opacity: 0.9;
  }

  .sign-in-page__footer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }

  .sign-in-page__footer-link {
    font-size: 12px;
    font-weight: 400;
    line-height: 1.5;
    color: #1e35b1;
    text-decoration: none;
    text-align: center;
  }

  .sign-in-page__footer-link:hover {
    text-decoration: underline;
  }

  .sign-in-page__footer-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #ddd;
    flex-shrink: 0;
  }

  @media (min-width: 750px) {
    .sign-in-page {
      background: #f1f1f1;
    }

    .sign-in-page__card {
      max-width: 500px;
    }

    .sign-in-page__main {
      gap: 40px;
      padding: 25px 30px;
    }

    .sign-in-page__header {
      gap: 12px;
    }

    .sign-in-page__logo {
      width: 167px;
    }

    .sign-in-page__customer-text {
      font-weight: 600;
    }

    .sign-in-page__social-buttons {
      gap: 20px;
    }

    .sign-in-page__social-btn {
      padding: 14px 13px;
      gap: 12px;
    }

    .sign-in-page__social-btn--google {
      padding: 18px 45px;
    }

    .sign-in-page__social-label {
      display: inline;
    }

    .sign-in-page__social-btn--facebook .sign-in-page__social-icon svg {
      width: 28px;
      height: 28px;
    }
  }
/* END_SECTION:sign-in-page */

/* START_SECTION:simple-banner (INDEX:75) */
/* Full-width banner row; height follows image intrinsic ratio (no fixed slot). */
  .simple-banner {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .simple-banner__inner {
    width: 100%;
    max-width: 100%;
    height: auto;
  }

  .simple-banner__link,
  .simple-banner__static {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    text-decoration: none;
    color: inherit;
  }

  /* Collapse descender gap under the <img> inside the anchor; text inside __media resets below. */
  .simple-banner__link {
    line-height: 0;
  }

  .simple-banner__media {
    position: relative;
    width: 100%;
    max-width: 100%;
    height: auto;
    line-height: normal;
  }

  /* Only when no desktop/mobile image: visible slot in the theme editor */
  .simple-banner__media--empty {
    min-height: 8rem;
    display: grid;
    place-items: center;
    background: rgb(var(--color-foreground-rgb) / 0.06);
  }

  .simple-banner__img {
    width: 100%;
    max-width: 100%;
    height: auto;
    display: block;
    object-fit: contain;
  }

  .simple-banner__placeholder {
    padding: 1rem;
    text-align: center;
    color: rgb(var(--color-foreground-rgb) / 0.55);
    font-weight: 600;
  }

  .simple-banner__img--mobile {
    display: none;
  }

  @media screen and (max-width: 749px) {
    .simple-banner__img--desktop {
      display: none;
    }

    .simple-banner__img--mobile {
      display: block;
    }
  }
/* END_SECTION:simple-banner */

/* START_SECTION:testimonial-carousel (INDEX:79) */
.testimonial-carousel {
    position: relative;
    margin-block-start: var(--padding-xl);
  }

  .testimonial-carousel__bg {
    position: absolute;
    inset: 0;
    background: var(--testimonial-carousel-bg);
    pointer-events: none;
  }

  .testimonial-carousel__inner {
    position: relative;
  }

  .testimonial-carousel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap-lg);
    margin-bottom: var(--padding-lg);
    position: relative;
    z-index: 5;
  }

  .testimonial-carousel__heading {
    margin: 0;
    font-weight: 700;
    font-size: clamp(20px, 2vw, 28px);
    line-height: 1.1;
    color: #ffffff;
  }

  /* Prev/next — chrome + chevron: assets/component-carousel-nav-arrow.css — desktop & mobile */
  .testimonial-carousel__nav {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    position: relative;
    z-index: 2;
    pointer-events: auto;
  }

  .testimonial-carousel__viewport {
    overflow: hidden;
  }

  .testimonial-carousel__rail {
    --card-gap: var(--gap-xl);
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - (var(--card-gap) * 3)) / 4);
    gap: var(--card-gap);
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 2px; /* prevent shadow clipping */
    scrollbar-width: none;
  }

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

  .testimonial-carousel__card {
    scroll-snap-align: start;
    background: rgb(var(--color-background-rgb));
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-rows: auto 1fr;
    min-width: 0;
  }

  .testimonial-carousel__media {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
  }

  /* Real images should cover the fixed-aspect media area (no empty space) */
  .testimonial-carousel__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* Placeholder wrapper must also fill the media area; icon stays centered */
  .testimonial-carousel__image-placeholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    background: rgb(var(--color-foreground-rgb) / var(--opacity-10));
  }

.testimonial-carousel__placeholder-img {
  width: 64px;
  height: 64px;
  opacity: 0.6;
}


  .testimonial-carousel__cta {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 12px;
    gap: var(--gap-sm);
    background: rgb(0 0 0 / 0.35);
    color: #fff;
    text-decoration: none;
    backdrop-filter: blur(9px);
  }

  .testimonial-carousel__cta-text {
    font-size: 12px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1;
    font-weight: 600;
  }

  .testimonial-carousel__body {
    padding: var(--padding-lg);
    display: grid;
    gap: var(--gap-md);
  }

  .testimonial-carousel__rating-row {
    display: flex;
    align-items: center;
    gap: var(--gap-sm);
  }

  .testimonial-carousel__stars {
    position: relative;
    display: inline-flex;
    font-size: 18px;
    line-height: 1;
  }

  .testimonial-carousel__star {
    display: inline-block;
    letter-spacing: 2px;
  }

  .testimonial-carousel__stars-bg {
    color: rgb(0 0 0 / 0.25);
    display: inline-flex;
  }

  .testimonial-carousel__stars-fg {
    position: absolute;
    inset: 0;
    width: calc(var(--rating) * 20%);
    overflow: hidden;
    color: #f2a33a;
    display: inline-flex;
    pointer-events: none;
  }

  .testimonial-carousel__rating-value {
    font-size: 14px;
    font-weight: 600;
  }

  .testimonial-carousel__text {
    font-size: 14px;
    line-height: 1.5;
    color: rgb(var(--color-foreground-rgb) / 0.85);
  }

  .testimonial-carousel__footer {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 4.95px;
    margin-top: var(--gap-sm);
  }

  .testimonial-carousel__author {
    font-weight: 500;
    min-width: 0;
  }

  .testimonial-carousel__verified {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgb(0 125 80 / 0.6);
    color: rgb(0 125 80);
    background: rgb(var(--color-background-rgb));
    font-size: 12px;
    white-space: nowrap;
  }

  @media screen and (max-width: 989px) {
    .testimonial-carousel__rail {
      grid-auto-columns: minmax(0, calc((100% - var(--card-gap)) / 2));
    }
  }

  @media screen and (max-width: 749px) {
    .testimonial-carousel {
      margin-block-start: var(--padding-lg);
    }

    .testimonial-carousel__rail {
      grid-auto-columns: minmax(0, 78%);
      --card-gap: var(--gap-lg);
    }

    .testimonial-carousel__body {
      padding: var(--padding-md);
    }
  }

  /* Mobile-only: one card at full width, ~20% preview of next; rail is scroll container so prev/next work (max-width: 768px) */
  @media screen and (max-width: 768px) {
    .testimonial-carousel__viewport {
      width: 100%;
      overflow: hidden;
    }

    /* Rail must have constrained width (100%) so it overflows and becomes scrollable; max-content made it non-scrollable */
    .testimonial-carousel__rail {
      --card-gap: 16px;
      display: flex;
      flex-wrap: nowrap;
      gap: var(--card-gap);
      width: 100%;
      min-width: 100%;
      min-height: 0;
      padding-bottom: 2px;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      scroll-behavior: smooth;
      scrollbar-width: none;
    }

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

    /* One card at full width (100% of primary area); 80% viewport = one card, ~20% = next card preview; 48px = padding + gap */
    .testimonial-carousel__card {
      flex: 0 0 calc((100vw - 48px) * 0.8);
      width: calc((100vw - 48px) * 0.8);
      min-width: calc((100vw - 48px) * 0.8);
      max-width: calc((100vw - 48px) * 0.8);
      flex-shrink: 0;
      scroll-snap-align: start;
      box-sizing: border-box;
      display: grid;
      grid-template-rows: auto 1fr;
      overflow: hidden;
      border-radius: 10px;
    }

    .testimonial-carousel__card > *,
    .testimonial-carousel__media,
    .testimonial-carousel__body,
    .testimonial-carousel__cta,
    .testimonial-carousel__rating-row,
    .testimonial-carousel__text,
    .testimonial-carousel__footer,
    .testimonial-carousel__author,
    .testimonial-carousel__verified {
      box-sizing: border-box;
    }

    /* Image: 100% width of card, rounded top corners only */
    .testimonial-carousel__media {
      min-width: 0;
      min-height: 0;
      width: 100%;
      overflow: hidden;
      position: relative;
      border-radius: 10px 10px 0 0;
    }

    .testimonial-carousel__image {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      border-radius: 10px 10px 0 0;
    }

    .testimonial-carousel__image-placeholder {
      width: 100%;
      height: 100%;
      display: grid;
      place-items: center;
      border-radius: 10px 10px 0 0;
    }

    /* "View Product" – bottom image overlay, fully visible */
    .testimonial-carousel__cta {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1;
      box-sizing: border-box;
      min-height: 44px;
      padding: 10px 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: var(--gap-sm);
      background: rgb(0 0 0 / 0.35);
      color: #fff;
    }

    .testimonial-carousel__cta-text {
      white-space: nowrap;
      overflow: hidden;
      text-overflow: ellipsis;
    }

    /* Rating stars and score on one row */
    .testimonial-carousel__rating-row {
      display: flex;
      align-items: center;
      gap: var(--gap-sm);
      flex-wrap: nowrap;
    }

    .testimonial-carousel__stars {
      flex-shrink: 0;
    }

    .testimonial-carousel__rating-value {
      flex-shrink: 0;
    }

    /* Body: no overflow */
    .testimonial-carousel__body {
      min-width: 0;
      overflow: visible;
      padding: var(--padding-md);
      display: grid;
      gap: var(--gap-md);
    }

    /* Description: wrap correctly, no clipping */
    .testimonial-carousel__text {
      min-width: 0;
      overflow-wrap: break-word;
      word-break: break-word;
      overflow: hidden;
      display: -webkit-box;
      -webkit-line-clamp: 4;
      -webkit-box-orient: vertical;
      font-size: 14px;
      line-height: 1.5;
    }

    /* Name and "Verifizierter Käufer" side by side (start-aligned, not space-between) */
    .testimonial-carousel__footer {
      display: flex;
      align-items: center;
      justify-content: flex-start;
      gap: var(--gap-sm);
      flex-wrap: wrap;
      min-width: 0;
      margin-top: var(--gap-sm);
    }

    .testimonial-carousel__author {
      min-width: 0;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }

    .testimonial-carousel__verified {
      flex-shrink: 0;
      white-space: nowrap;
    }
  }

  @media screen and (min-width: 768px) {
    .testimonial-nav {
      padding: 2px;
    }
  }
/* END_SECTION:testimonial-carousel */

/* START_SECTION:trending-searches (INDEX:80) */
.trending-searches {
    display: flex;
    flex-direction: column;
    width: 100%;
    min-height: 172px;
  }

  .trending-searches__inner {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: 0 auto;
    padding-block: var(--spacing-md);
  }

  .trending-searches__title {
    font-family: var(--font-heading);
    color: var(--color-foreground);
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin: 0 0 24px 0;
    line-height: var(--font-h2--line-height);
  }

  .trending-searches__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    width: 100%;
  }

  .trending-searches__tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.625rem 1.25rem;
    background-color: #E9F1FF;
    color: var(--color-foreground);
    font-family: var(--font-body);
    font-size: var(--font-size-body);
    font-weight: var(--font-weight-medium);
    text-decoration: none;
    border-radius: 5px;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s ease, transform 0.1s ease;
    white-space: nowrap;
  }

  .trending-searches__tag:hover {
    background-color: #D0E0FF;
    transform: translateY(-1px);
  }

  .trending-searches__tag:active {
    transform: translateY(0);
  }

  .trending-searches__tag:focus {
    outline: 2px solid var(--color-foreground);
    outline-offset: 2px;
  }

  @media screen and (max-width: 749px) {
    .trending-searches {
      min-height: 172px;
    }

    .trending-searches__title {
      font-size: var(--font-size-h3);
      margin-bottom: 20px;
    }

    .trending-searches__tags {
      gap: 10px;
    }

    .trending-searches__tag {
      padding: 0.5rem 1rem;
      font-size: var(--font-size-body);
    }
  }
/* END_SECTION:trending-searches */

/* START_SECTION:trust-metrics-ribbon (INDEX:81) */
/* Override theme .section { background: transparent } so ribbon shows #821D24 */
  .trust-metrics-ribbon-section.trust-metrics-ribbon {
    background: var(--trust-metrics-bg, #821D24);
  }

  .trust-metrics-ribbon {
    width: 100%;
    margin-block-start: var(--trust-metrics-gap-above, 2rem);
    padding-inline: var(--spacing-md, 0.9375rem) var(--grid-mobile-horizontal-spacing, 0.4375rem);
    padding-block-start: var(--trust-metrics-padding-block-start, 2.25rem);
    padding-block-end: var(--trust-metrics-padding-block-end, 2.25rem);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm, 0.625rem);
    background: var(--trust-metrics-bg, #821D24);
    border: 1px solid transparent;
    border-radius: 0.3125rem;
    box-sizing: border-box;
  }

  .trust-metrics-ribbon__inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm, 0.625rem);
  }

  .trust-metrics-ribbon__heading-row {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs, 0.25rem);
  }

  .trust-metrics-ribbon__divider {
    flex: 0 0 auto;
    flex-shrink: 0;
    display: block;
    width: 2.3rem;
    height: 1px;
    min-height: 1px;
    background: linear-gradient(90deg, #ffffff 0%, var(--trust-metrics-accent, #ce993c) 100%);
  }

  .trust-metrics-ribbon__heading {
    margin: 0;
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.5;
    text-align: center;
    color: var(--trust-metrics-heading-color, #ffffff);
  }

  .trust-metrics-ribbon__blocks {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--spacing-sm, 0.875rem) var(--spacing-lg, 1.4375rem);
    width: 100%;
    contain: layout style;
  }

  .trust-metrics-ribbon__block {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
  }

  .trust-metrics-ribbon__block--hidden {
    display: none;
  }

  .trust-metrics-ribbon__block-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    min-width: 0;
    text-decoration: none;
    color: inherit;
  }

  .trust-metrics-ribbon__block-link:focus-visible {
    outline: 2px solid var(--trust-metrics-accent);
    outline-offset: 2px;
  }

  .trust-metrics-ribbon__block-icon {
    min-height: 7.36rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .trust-metrics-ribbon__block-icon-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .trust-metrics-ribbon__block-value {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.5;
    color: var(--trust-metrics-body-color, #FFFFFF);
  }

  .trust-metrics-ribbon__block-label {
    font-size: 0.75rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--trust-metrics-body-color, #FFFFFF);
  }

  /* Mobile-only (≤768px): 2×2 grid polish — desktop (≥990px) rules below stay unchanged */
  @media (max-width: 768px) {
    .trust-metrics-ribbon {
      padding-inline: max(1rem, env(safe-area-inset-left)) max(1rem, env(safe-area-inset-right));
      overflow-x: clip;
    }

    .trust-metrics-ribbon__inner {
      max-width: 100%;
    }

    .trust-metrics-ribbon__blocks {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      /* Figma Frame 1410101784: row gap 23px, column gap 14px; grid width 165.03 + 14 + 165.03 */
      row-gap: 23px;
      column-gap: 14px;
      width: 100%;
      max-width: 344.06451416015625px;
      margin-inline: auto;
      contain: none;
    }

    .trust-metrics-ribbon__block,
    .trust-metrics-ribbon__block-link {
      gap: clamp(8px, 2vw, 12px);
      width: 100%;
      max-width: 100%;
      min-width: 0;
    }

    .trust-metrics-ribbon__block-icon {
      min-height: 0;
      width: 100%;
      max-width: 100%;
      flex-shrink: 0;
    }

    .trust-metrics-ribbon__block-icon-img {
      width: auto;
      max-width: min(100%, 165.0322723388672px);
      max-height: 117.84203338623047px;
      height: auto;
      margin-inline: auto;
      display: block;
      object-fit: contain;
      object-position: center;
    }

    /* Figma: Mobile De/P14/700 + Mobile De/H5/400 (not both 14/700) */
    .trust-metrics-ribbon__block-value {
      font-family: 'Nunito Sans', var(--font-body), sans-serif;
      font-size: 14px;
      font-weight: 700;
      line-height: 1.5;
      text-align: center;
      max-width: 100%;
      padding-inline: 4px;
      box-sizing: border-box;
      text-wrap: balance;
      overflow-wrap: break-word;
    }

    .trust-metrics-ribbon__block-label {
      font-family: 'Nunito Sans', var(--font-body), sans-serif;
      font-size: 12px;
      font-weight: 400;
      line-height: 1.5;
      text-align: center;
      max-width: 100%;
      padding-inline: 4px;
      box-sizing: border-box;
      text-wrap: balance;
      overflow-wrap: break-word;
    }
  }

  @media (min-width: 990px) {
    .trust-metrics-ribbon {
      padding-inline: var(--spacing-section-horizontal, 6.25rem);
      padding-block-start: var(--trust-metrics-padding-block-start, 2.25rem);
      padding-block-end: var(--trust-metrics-padding-block-end, 2.875rem);
      gap: var(--spacing-xl, 2.875rem);
    }

    .trust-metrics-ribbon__inner {
      gap: var(--spacing-xl, 2.875rem);
    }

    .trust-metrics-ribbon__heading-row {
      gap: var(--spacing-md, 0.9375rem);
    }

    .trust-metrics-ribbon__divider {
      width: 9.075rem;
      height: 0.125rem;
    }

    .trust-metrics-ribbon__heading {
      font-size: 1.5rem;
      font-weight: 600;
      line-height: 1.21;
    }

    .trust-metrics-ribbon__blocks {
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: var(--trust-metrics-block-gap, 6rem);
    }

    .trust-metrics-ribbon__block-icon {
      min-height: 9.53rem;
    }

    .trust-metrics-ribbon__block-value {
      font-size: 1.25rem;
    }

    .trust-metrics-ribbon__block-label {
      font-size: 1rem;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .trust-metrics-ribbon__block-link {
      transition: none;
    }
  }
/* END_SECTION:trust-metrics-ribbon */

/* START_SECTION:wide-image-banner-section (INDEX:83) */
.wide-image-banner-section {
  margin-top: 30px; 
  width: 100%;
  cursor: default;
 }

.wide-image-banner-section__container {
  max-width: 1440px;
  height: 370px;
  margin: 0 auto;
  cursor: default;              
  

  background-color: #DDDDDD;   /* ✅ MOVED HERE */
  display: flex;
  align-items: center;
  justify-content: center;

  overflow: hidden;
}

.wide-image-banner-section__link {
  display: block;
  cursor: pointer;
}

.wide-image-banner-section__image {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Maintain aspect ratio, fit within container */
  object-position: center;
  display: block;
}
/* END_SECTION:wide-image-banner-section */

/* START_SECTION:with-timer (INDEX:84) */
/*
    Do NOT set display:flex on .with-timer — it overrides .section’s display:grid and breaks
    grid-column: 2 (page-width). The red frame would then span full viewport instead of the content column.
  */
  /*
    Theme base.css sets .section { background: transparent }, which beats a single-class
    .with-timer background. Target section.with-timer so admin gradients reliably paint.
  */
  .shopify-section:not(.header-section) > section.with-timer.section {
    width: 100%;
    background: var(--wt-bg-mobile);
  }

  /* Snippet reads --category-panels-atc-*; map from admin vars (mobile default, desktop ≥750px below). */
  .with-timer {
    --category-panels-atc-bg: var(--wt-atc-bg-mobile);
    --category-panels-atc-fg: var(--wt-atc-fg-mobile);
  }

  /* Frame is transparent so section gradient (above) shows through */
  .with-timer__frame {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    gap: 1.25rem;
    padding-block: 1.25rem var(--wt-frame-padding-block-end-mobile, 1.5rem);
    background: transparent;
    opacity: 1;
  }

  /* Horizontal inset aligned with members-row / category rows (inside red frame) */
  .with-timer__inner {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding-inline: var(--grid-mobile-horizontal-spacing, 0);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    background: transparent;
  }

  /* Heading + timer/status: centered, spacing between (stacked on small screens) */
  .with-timer__header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    width: 100%;
    max-width: 100%;
    padding-block: 0.25rem 0;
    padding-inline: 0;
    text-align: center;
  }

  .with-timer__heading {
    margin: 0;
    font-size: var(--wt-heading-font-size, 1.25rem);
    font-weight: var(--font-weight-medium, 500);
    line-height: 1.4;
    text-align: center;
    color: var(--wt-heading-color);
  }

  .with-timer__heading p,
  .with-timer__heading a {
    color: inherit;
  }

  .with-timer__heading.rte p:first-child {
    margin-block-start: 0;
  }

  .with-timer__heading.rte p:last-child {
    margin-block-end: 0;
  }

  .with-timer__timer-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    width: fit-content;
    max-width: 100%;
    margin-inline: auto;
    background: #4c4c4c;
    border-radius: 1.35rem;
  }

  .with-timer__timer {
    display: inline-flex;
    align-items: center;
    gap: 0.2875rem; /* ~4.6px per Figma mobile */
    padding: 0.2875rem 0.575rem; /* ~4.6px 9.2px per Figma mobile */
    border-radius: 1.35rem; /* ~21.6px per Figma mobile */
    background-color: var(--wt-timer-bg, #4c4c4c);
    color: var(--wt-timer-color);
    font-family: var(--font-body--family);
    font-size: 0.875rem;
    font-variant-numeric: tabular-nums;
    letter-spacing: 0.01em;
    white-space: nowrap;
    visibility: visible;
    opacity: 1;
    backdrop-filter: blur(64px);
    -webkit-backdrop-filter: blur(64px);
  }

  .with-timer__timer-label {
    font-weight: 400;
  }

  .with-timer__timer-value {
    font-weight: 600;
    display: inline-block;
    min-width: 18ch;
  }

  .with-timer__timer-icon {
    display: inline-flex;
    flex-shrink: 0;
    color: var(--wt-timer-color);
  }

  .with-timer__timer-icon svg {
    display: block;
    width: 0.75rem; /* 12px per Figma mobile */
    height: 0.75rem;
  }

  /* Category pills: wrap on small screens; pill width follows label text */
  .with-timer__pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    min-height: 0;
    padding-block: 0.5rem 0;
    box-sizing: border-box;
    overflow: visible;
    opacity: 1;
    margin-inline: auto;
  }

  .with-timer__pill {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: auto;
    max-width: 100%;
    min-width: 0;
    height: auto;
    min-height: 32px;
    padding: 4px 12px;
    border-width: 1px;
    border-style: solid;
    border-color: #dddddd;
    border-radius: 5px;
    background: #fff;
    color: #191919;
    cursor: pointer;
    font-family: var(--font-body--family);
    font-size: 0.9375rem;
    font-weight: 500;
    line-height: 1.35;
    flex: 0 0 auto;
    opacity: 1;
    overflow: visible;
  }

  .with-timer__pill-label {
    display: block;
    flex: 0 0 auto;
    min-width: 0;
    white-space: nowrap;
    text-align: start;
  }

  .with-timer__pill:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
  }

  .with-timer__pill[disabled] {
    opacity: 0.7;
    cursor: default;
  }

  .with-timer__pill.is-active {
    background: var(--wt-pill-active-bg);
    color: var(--wt-pill-active-fg);
    border-color: var(--wt-pill-active-border);
    font-weight: 600;
    box-shadow: 0 1px 2px rgb(0 0 0 / 12%);
  }

  .with-timer__pill.is-active:focus-visible {
    outline-color: var(--wt-pill-active-fg);
  }

  .with-timer__lists {
    display: block;
    width: 100%;
  }

  .with-timer__list {
    display: block;
    width: 100%;
  }

  .with-timer__list[hidden] {
    display: none !important;
  }

  .with-timer__tray {
    margin-top: 0;
    background: transparent;
    border-radius: var(--border-radius-lg);
    padding: 0;
    width: 100%;
  }

  .with-timer .category-panels-card__atc:hover {
    background: color-mix(in srgb, var(--category-panels-atc-bg) 90%, #000000);
    color: var(--category-panels-atc-fg);
  }

  .with-timer__carousel-grid {
    display: grid;
    grid-template-columns: 35px 1fr 35px;
    align-items: center;
    gap: 0 24px;
  }

  .with-timer__nav-col {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* Match circular-items-row__nav column stacking */
  .with-timer__nav-col--left,
  .with-timer__nav-col--right {
    flex-shrink: 0;
    position: relative;
    z-index: 2;
    pointer-events: auto;
  }

  .with-timer__carousel-scroller {
    overflow: hidden;
    background-color: transparent;
  }

  .with-timer__carousel-scroller slideshow-arrows {
    display: none;
  }

  /* With Timer — prev/next: chrome + chevron in assets/component-carousel-nav-arrow.css (visible desktop/tablet; carousel hidden on mobile so arrows do not appear). */

  @media screen and (max-width: 749px) {
    .with-timer .resource-list__carousel {
      --slide-width-max: var(--wt-card-slide-width-mobile, 173px);
      background-color: transparent;
    }

    .with-timer .resource-list__carousel .resource-list__slide {
      --slide-width: var(--wt-card-slide-width-mobile, 173px);
      width: var(--wt-card-slide-width-mobile, 173px);
      flex: 0 0 var(--wt-card-slide-width-mobile, 173px);
      max-width: var(--wt-card-slide-width-mobile, 173px);
      box-sizing: border-box;
      padding-bottom: 10px;
    }

    .with-timer .resource-list__item {
      width: var(--wt-card-slide-width-mobile, 173px);
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }

    .with-timer .with-timer__mobile-grid .resource-list__item {
      width: 100%;
      max-width: 100%;
    }

    .with-timer .category-panels-card {
      width: var(--wt-card-slide-width-mobile, 173px);
      max-width: 100%;
      height: auto;
      min-height: var(--wt-card-min-height-mobile, 16.25rem);
      max-height: none;
      box-sizing: border-box;
      border-radius: 5px;
      border-width: 1px;
      border-style: solid;
      border-color: rgb(var(--color-foreground-rgb) / var(--opacity-10));
      opacity: 1;
      transform: none;
      position: relative;
      z-index: 2;
    }

    .with-timer .with-timer__mobile-grid .category-panels-card {
      width: 100%;
      max-width: 100%;
      margin-inline: 0;
    }

    .with-timer .category-panels-card__atc {
      padding: 0;
      height: auto;
      min-height: 34px;
      flex-shrink: 0;
    }
  }

  @media screen and (min-width: 750px) {
    .with-timer {
      --category-panels-atc-bg: var(--wt-atc-bg-desktop);
      --category-panels-atc-fg: var(--wt-atc-fg-desktop);
    }

    /* Desktop CTA: 224×40, padding, radius, bottom edge (design spec). */
    .with-timer .category-panels-card__atc {
      margin-inline: auto;
      margin-top: auto;
      margin-bottom: 0;
      width: 224px;
      max-width: 100%;
      height: 40px;
      min-height: 0;
      padding: 10px 20px;
      border-radius: 5px;
      border-bottom: 2px solid #c9a420;
      box-sizing: border-box;
      opacity: 1;
    }

    .with-timer .resource-list__carousel {
      --slide-width-max: var(--wt-card-slide-width-desktop, 244px);
      background-color: transparent;
    }

    /* Fixed slide width: theme carousel otherwise divides row into N columns (~291px+). */
    .with-timer .resource-list__carousel .resource-list__slide {
      --slide-width: var(--wt-card-slide-width-desktop, 244px);
      width: var(--wt-card-slide-width-desktop, 244px);
      flex: 0 0 var(--wt-card-slide-width-desktop, 244px);
      max-width: var(--wt-card-slide-width-desktop, 244px);
      box-sizing: border-box;
      padding-bottom: 10px;
    }

    .with-timer .resource-list__item {
      width: var(--wt-card-slide-width-desktop, 244px);
      max-width: 100%;
      height: auto;
      box-sizing: border-box;
    }

    .with-timer .category-panels-card {
      width: var(--wt-card-slide-width-desktop, 244px);
      max-width: 100%;
      height: auto;
      min-height: var(--wt-card-min-height-desktop, 24.4375rem);
      max-height: none;
      box-sizing: border-box;
      border-radius: 5px;
      border-width: 1px;
      border-style: solid;
      border-color: rgb(var(--color-foreground-rgb) / var(--opacity-10));
    }

    .with-timer .category-panels-card__body {
      --category-panels-body-padding: var(--wt-card-body-padding-desktop, 10px);
      gap: var(--wt-card-body-gap-desktop, 10px);
      padding: var(--category-panels-body-padding);
    }

    .with-timer .category-panels-card__title {
      -webkit-line-clamp: var(--wt-card-title-lines-desktop, 2);
    }
  }

  .with-timer .category-panels-card__media {
    flex-shrink: 0;
  }

  .with-timer .category-panels-card__body {
    --category-panels-body-padding: var(--wt-card-body-padding-mobile, 10px);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    gap: var(--wt-card-body-gap-mobile, 8px);
    padding: var(--category-panels-body-padding);
    flex: 1 1 auto;
    min-height: 0;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
  }

  .with-timer .category-panels-card__atc {
    flex-shrink: 0;
    margin-top: auto;
    min-height: 34px;
    box-sizing: border-box;
  }

  .with-timer .category-panels-card__title,
  .with-timer .category-panels-card__title-link {
    font-size: var(--wt-panel-title-font-size-mobile, 12px);
    min-height: 0;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .with-timer .category-panels-card__title {
    -webkit-line-clamp: var(--wt-card-title-lines-mobile, 3);
  }

  .with-timer .category-panels-card__price,
  .with-timer .category-panels-card__price-current,
  .with-timer .category-panels-card__price-compare,
  .with-timer .category-panels-card__price-discount {
    font-size: var(--wt-panel-price-font-size-mobile, 12px);
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .with-timer[data-sale-ended='true'] .category-panels-card__atc {
    opacity: 0.55;
    pointer-events: none;
  }

  .with-timer__mobile-grid {
    padding-inline: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .with-timer__mobile-grid-inner {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--wt-mobile-grid-gap, 10px);
    margin-top: 1.25rem;
  }

  .with-timer__view-more {
    margin-top: 0.625rem;
    padding-inline: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .with-timer__view-more-btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 0.48rem 1.8rem;
    border-radius: 4.8px;
    background: #B1020C;
    color: #ffffff;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.84rem;
  }

  .with-timer__view-more-btn:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
  }

  @media screen and (min-width: 750px) {
    .with-timer__frame {
      gap: 1.5rem;
      padding-block: 1.5rem var(--wt-frame-padding-block-end-desktop, 1.75rem);
    }

    .with-timer__pills {
      flex-wrap: nowrap;
      width: 100%;
      max-width: 100%;
      min-height: 0;
      justify-content: center;
      gap: 10px;
      padding-block: 0.625rem 0;
      overflow-x: auto;
      overflow-y: hidden;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

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

    .with-timer__pill {
      justify-content: center;
      width: auto;
      max-width: 100%;
      min-width: 0;
      height: auto;
      min-height: 43px;
      padding: 8px 20px;
      border-radius: 10px;
      gap: 10px;
      opacity: 1;
      overflow: visible;
    }

    .with-timer__pill-label {
      text-align: center;
    }

    .with-timer__tray {
      margin-top: var(--gap-lg, 1.875rem);
      padding-block: var(--padding-lg, 1.5rem);
      padding-inline: 0;
      background: transparent;
      border-radius: var(--border-radius-lg);
    }
  }

  @media screen and (min-width: 990px) {
    .shopify-section:not(.header-section) > section.with-timer.section {
      background: var(--wt-bg-desktop);
    }

    .with-timer__frame {
      width: 100%;
      max-width: 100%;
      min-height: 0;
      height: auto;
      gap: 1.5rem;
      padding-block: 1.5rem var(--wt-frame-padding-block-end-desktop-lg, 2rem);
      background: transparent;
    }

    .with-timer__pills {
      flex-wrap: nowrap;
      width: 100%;
      max-width: 100%;
      min-height: 0;
      justify-content: center;
      gap: 10px;
      padding-block: 0.75rem 0;
      overflow-x: auto;
      overflow-y: hidden;
      scrollbar-width: none;
      -ms-overflow-style: none;
    }

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

    .with-timer__pill {
      font-size: 1rem;
      font-weight: 600;
      line-height: 1.4;
    }

    .with-timer__inner {
      gap: 1.25rem;
      padding-inline: var(--spacing-section-horizontal, var(--page-margin, 1rem));
    }

    .with-timer.section--full-width .with-timer__inner {
      padding-inline: var(--page-margin);
    }

    .with-timer.section--page-width .with-timer__inner {
      padding-inline: 0;
    }

    /* Heading + timer centered together as one group (matches design reference) */
    .with-timer__header {
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      gap: 0.75rem 1.25rem;
      min-height: 0;
      width: 100%;
      max-width: 100%;
      padding-block: 0.25rem 0;
    }

    .with-timer__heading {
      flex: 0 1 auto;
      min-width: 0;
      font-size: var(--wt-heading-font-size, 1.5rem);
      font-weight: var(--font-weight-medium, 500);
      text-align: center;
    }

    .with-timer__timer-wrap {
      flex-shrink: 0;
      margin-inline: 0;
      border-radius: 999px;
    }

    .with-timer__timer {
      padding: 0.5rem 1.125rem;
      gap: 0.5rem;
      border-radius: 999px;
      font-size: 1.0625rem;
      font-weight: 700;
      backdrop-filter: blur(64px);
      -webkit-backdrop-filter: blur(64px);
    }

    .with-timer .category-panels-card__title,
    .with-timer .category-panels-card__title-link {
      font-size: var(--wt-panel-title-font-size, 12px);
    }

    .with-timer .category-panels-card__price,
    .with-timer .category-panels-card__price-current,
    .with-timer .category-panels-card__price-compare,
    .with-timer .category-panels-card__price-discount {
      font-size: var(--wt-panel-price-font-size, 14px);
      overflow-wrap: anywhere;
      word-break: break-word;
    }

    .with-timer__timer-icon svg {
      width: 20px;
      height: 20px;
    }

    .with-timer__timer-label {
      font-weight: 600;
    }

    .with-timer__carousel-grid {
      grid-template-columns: 35px 1fr 35px;
    }

    .with-timer__tray {
      background: transparent;
    }

    .with-timer__carousel-scroller {
      background-color: transparent;
    }

    .with-timer .resource-list__carousel {
      background-color: transparent;
    }
  }

  @media screen and (max-width: 576px) {
  .with-timer__heading {
    font-size: var(--wt-heading-font-size-mobile, 1.5rem);
  }
}

  /* Full-width: frame matches central content column; inner still applies page-margin gutters */
  .with-timer.section--full-width > .with-timer__frame {
    max-width: var(--full-page-grid-central-column-width);
    width: 100%;
    margin-inline: auto;
    justify-self: center;
  }
/* END_SECTION:with-timer */

/* START_SECTION:yotpo-product-gallery (INDEX:85) */
.yotpo-product-gallery {
    display: flex;
    flex-direction: column;
    width: 100%;
    box-sizing: border-box;
  }

  .yotpo-product-gallery__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin: 0 auto;
    height: 100%;
    min-height: 0;
    box-sizing: border-box;
  }

  .yotpo-product-gallery__media {
    width: 100%;
    max-width: 100%;
    flex-shrink: 0;
  }

  .yotpo-product-gallery__media-link {
    display: block;
    width: 100%;
    text-decoration: none;
  }

  .yotpo-product-gallery__media-image {
    display: block;
    width: 100%;
    max-width: 100%;
    height: auto;
    object-fit: contain;
  }

  .yotpo-product-gallery__title {
    font-family: var(--font-heading);
    color: var(--color-foreground);
    font-size: var(--font-size-h2);
    font-weight: var(--font-weight-bold);
    text-align: center;
    margin: 0;
    line-height: var(--font-h2--line-height);
  }

  .yotpo-product-gallery__content {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .yotpo-product-gallery__content .rte {
    font-family: var(--font-body);
    color: var(--color-foreground);
    font-size: var(--font-size-body);
    line-height: var(--font-body--line-height);
  }

  .yotpo-product-gallery__custom-html {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }

  .yotpo-product-gallery__custom-html * {
    font-family: var(--font-body);
    color: var(--color-foreground);
  }

  @media screen and (max-width: 749px) {
    .yotpo-product-gallery__title {
      font-size: var(--font-size-h3);
    }

    .yotpo-product-gallery__content .rte {
      font-size: var(--font-size-body);
    }
  }
/* END_SECTION:yotpo-product-gallery */

/* CSS from block stylesheet tags */
/* START_BLOCK:_accordion-row (INDEX:86) */
.details__icon {
    height: auto;
    margin-inline-end: var(--margin-xs);
  }
/* END_BLOCK:_accordion-row */

/* START_BLOCK:_announcement (INDEX:87) */
.text-block {
    width: var(--width);
    max-width: 100%;
  }

  .text-block > * {
    width: var(--width);
    max-width: var(--max-width, 100%);
    text-align: var(--text-align);
  }

  .text-block:not(.text-block--full-width).rte,
  .text-block:not(.text-block--full-width).paragraph {
    /* Safari doesn't support pretty, so fallback to balance */
    text-wrap: balance;
    text-wrap: pretty;
  }

  .text-block:not(.text-block--full-width).h1,
  .text-block:not(.text-block--full-width).h2,
  .text-block:not(.text-block--full-width).h3,
  .text-block:not(.text-block--full-width).h4,
  .text-block:not(.text-block--full-width).h5,
  .text-block:not(.text-block--full-width).h6 {
    text-wrap: balance;
  }

  /* Hide underline unless text is using paragraph styles. */
  .text-block:is(.h1, .h2, .h3, .h4, .h5, .h6) a {
    text-decoration-color: transparent;
  }

  .text-block h1,
  .text-block.h1 > * {
    margin-block: var(--font-h1--spacing);
  }

  .text-block h2,
  .text-block.h2 > * {
    margin-block: var(--font-h2--spacing);
  }

  .text-block h3,
  .text-block.h3 > * {
    margin-block: var(--font-h3--spacing);
  }

  .text-block h4,
  .text-block.h4 > * {
    margin-block: var(--font-h4--spacing);
  }

  .text-block h5,
  .text-block.h5 > * {
    margin-block: var(--font-h5--spacing);
  }

  .text-block h6,
  .text-block.h6 > * {
    margin-block: var(--font-h6--spacing);
  }

  .text-block > *:first-child {
    margin-block-start: 0;
  }

  .text-block > *:last-child {
    margin-block-end: 0;
  }

  .text-block--align-center,
  .text-block--align-center > * {
    margin-inline: auto;
  }

  .text-block--align-right,
  .text-block--align-right > * {
    margin-inline-start: auto;
  }
/* END_BLOCK:_announcement */

/* START_BLOCK:_blog-post-description (INDEX:90) */
.blog-post-card__content-text a {
    color: var(--color-primary);
  }

  .custom-color,
  .custom-color > :is(h1, h2, h3, h4, h5, h6, p, *) {
    color: var(--color);
  }
/* END_BLOCK:_blog-post-description */

/* START_BLOCK:_blog-post-featured-image (INDEX:91) */
.blog-post-featured-image {
    --width: 100%;
    --custom-width: 100%;

    display: block;
    position: relative;
    width: var(--width);
  }

  .blog-post-featured-image.size-style {
    --width: var(--size-style-width, 100%);
  }

  .blog-post-featured-image--height-fit {
    height: fit-content;
  }

  .blog-post-featured-image--height-fill {
    height: 100%;
  }

  .blog-post-featured-image__image {
    aspect-ratio: var(--ratio);
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  @media screen and (max-width: 749px) {
    .blog-post-featured-image {
      --width: var(--width-mobile, var(--width));
      --custom-width: var(--custom-width-mobile, var(--custom-width));
    }

    .blog-post-featured-image.size-style {
      --width: var(--size-style-width-mobile, var(--size-style-width, 100%));
    }
  }
/* END_BLOCK:_blog-post-featured-image */

/* START_BLOCK:_blog-post-image (INDEX:92) */
.blog-post-card__image {
    width: 100%;
    object-fit: cover;
    object-position: center center;
    height: calc(var(--blog-post-card-img-height) * var(--blog-post-card-scale));
  }

  .blog-post-card__image--small {
    --blog-post-card-img-height: 280px;
  }

  .blog-post-card__image--medium {
    --blog-post-card-img-height: 340px;
  }

  .blog-post-card__image--large {
    --blog-post-card-img-height: 400px;
  }
/* END_BLOCK:_blog-post-image */

/* START_BLOCK:_blog-post-info-text (INDEX:93) */
.blog-post-details {
    display: flex;
    gap: var(--gap-sm);
    font-size: var(--font-paragraph-size);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
    white-space: nowrap;
    flex-wrap: wrap;
  }

  .blog-post-details > span {
    text-overflow: clip;
    overflow: hidden;
  }
/* END_BLOCK:_blog-post-info-text */

/* START_BLOCK:_card (INDEX:94) */
.card {
    position: relative;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    width: 100%;
    height: 100%;
    border-radius: var(--border-radius, 0);
    border-width: var(--border-width, 0);
    border-style: var(--border-style, none);
    border-color: var(--border-color);
    container-type: inline-size;
  }

  .card__content {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: var(--layer-flat);
    display: flex;
    flex-direction: column;
    aspect-ratio: var(--card-ratio, 1);
  }

  .card__content.background-transparent {
    background-color: transparent;
  }

  /* When card has both image and content, use min-height from container query */
  .card__content--has-min-height {
    min-height: calc(100cqw / var(--card-ratio-numeric));
  }

  .card__inner {
    flex: 1;
  }

  .card__media-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
  }

  .card__media-wrapper video {
    z-index: var(--layer-raised);
  }

  .card__link {
    position: absolute;
    inset: 0;
    z-index: var(--layer-raised);
  }

  .card__link ~ :is(.card__content, .card__media-wrapper) {
    pointer-events: none;

    :is(a, button, input, textarea, select) {
      pointer-events: auto;
    }
  }

  /* Needs the .card__link ~ to be specific enough to take effect. */
  .card__link ~ .card__content--design-mode {
    pointer-events: auto;
  }
/* END_BLOCK:_card */

/* START_BLOCK:_carousel-content (INDEX:95) */
.carousel-content slideshow-slides {
    --slideshow-gap: var(--carousel-gap);
  }

  .carousel-content slideshow-slides > .card {
    flex: 0 0 auto;
    width: calc(
      (100% - (var(--carousel-gap, 8px) * (var(--carousel-mobile-columns, 2) - 1)) - var(--peek-next-slide-size, 0px)) /
        var(--carousel-mobile-columns, 2)
    );
  }

  @media (min-width: 750px) {
    .carousel-content slideshow-slides > .card {
      width: calc(
        (100% - (var(--carousel-gap, 8px) * (var(--carousel-columns, 4) - 1)) - var(--peek-next-slide-size, 0px)) /
          var(--carousel-columns, 4)
      );
    }
  }

  .carousel-content .slideshow-control[disabled] {
    display: none;
  }

  .carousel-content slideshow-arrows {
    padding-inline: var(--util-page-margin-offset);
  }

  .carousel-content .slideshow-control--next {
    margin-inline-start: auto;
  }
/* END_BLOCK:_carousel-content */

/* START_BLOCK:_cart-products (INDEX:96) */
.cart-page--empty .cart-items__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-block-start: 0;
    text-align: center;
  }

  .cart-page__title + .cart-page__items {
    margin-block-start: var(--margin-lg);
  }
/* END_BLOCK:_cart-products */

/* START_BLOCK:_cart-summary (INDEX:97) */
.cart__summary-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .cart__summary-item.tax-note {
    font-size: var(--cart-font-size--sm);
  }

  .cart__discount-label {
    display: flex;
    align-items: center;
    gap: var(--gap-2xs);
  }

  .cart__total {
    align-items: baseline;
    font-weight: var(--font-weight-bold);
  }

  .cart__tax-note {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .cart__discount-label svg {
    width: var(--icon-size-sm);
    height: var(--icon-size-sm);
    display: inline-block;
  }

  .cart__summary-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap-2xl);
    container-type: inline-size;
    padding: 0;
    position: sticky;
    top: 0;
    align-self: start;

    @media screen and (min-width: 750px) {
      padding: var(--padding-5xl);
      grid-row: 1 / -1;
    }
  }

  body:has(> #header-group .header[sticky]) .cart__summary-inner {
    top: var(--header-height, 0);
  }

  .cart__summary-container {
    @media screen and (max-width: 749px) {
      border: none;
    }

    @media screen and (min-width: 750px) {
      display: grid;
      grid-template-rows: subgrid;
      grid-row: 1 / -1;
    }
  }

  .cart__summary-container:not(.cart__container--extend),
  .cart__summary-container:not(.cart__container--extend) .cart__summary-inner {
    height: auto;
  }

  .cart__container--extend {
    height: 100%;

    @media screen and (min-width: 750px) {
      border-right: none;
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
    }
  }

  /* If extend is on, only include top and bottom borders when the border radius is 0. */
  .cart__container--extend:not(.has-border-radius) {
    @media screen and (min-width: 750px) {
      border-top: none;
      border-bottom: none;
    }
  }

  .cart__container--extend .cart__summary-inner {
    height: 100%;
    padding: var(--padding-md) 0 var(--padding-4xl);

    @media screen and (min-width: 750px) {
      grid-row: 2 / -1;
      padding-inline: var(--page-margin);
      width: var(--sidebar-width);
    }
  }

  /* If extend is off, apply the border radius to the inner summary container */
  .cart__summary-inner.has-border-radius {
    border-radius: var(--border-radius);
  }

  @media screen and (max-width: 749px) {
    .inherit-parent-scheme--mobile {
      --color-background: inherit;
      --color-background-rgb: inherit;
      --color-foreground: inherit;
      --color-foreground-rgb: inherit;
      --color-primary: inherit;
      --color-primary-rgb: inherit;
      --color-primary-hover: inherit;
      --color-primary-hover-rgb: inherit;
      --color-border: inherit;
      --color-border-rgb: inherit;
      --color-shadow: inherit;
      --color-shadow-rgb: inherit;
      --color-foreground-heading: inherit;
      --color-primary-button-text: inherit;
      --color-primary-button-background: inherit;
      --color-primary-button-border: inherit;
      --color-primary-button-hover-text: inherit;
      --color-primary-button-hover-background: inherit;
      --color-primary-button-hover-border: inherit;
      --color-secondary-button-text: inherit;
      --color-secondary-button-background: inherit;
      --color-secondary-button-border: inherit;
      --color-secondary-button-hover-text: inherit;
      --color-secondary-button-hover-background: inherit;
      --color-secondary-button-hover-border: inherit;
      --color-input-text: inherit;
      --color-input-text-rgb: inherit;
      --color-input-background: inherit;
    }
  }
/* END_BLOCK:_cart-summary */

/* START_BLOCK:_cart-title (INDEX:98) */
.cart-title h1 {
    margin-block-end: 0;
    display: inline-flex;
    align-items: center;
    gap: var(--gap-sm);
  }

  .cart-title .cart-bubble {
    width: fit-content;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--style-border-radius-buttons-primary);
    aspect-ratio: auto;
    padding: var(--cart-padding);
  }

  .cart-title .cart-bubble[data-maintain-ratio] {
    aspect-ratio: 1;
    min-width: 26px;
  }

  .cart-title .cart-bubble__background {
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-10-25));
  }

  .cart-title .cart-bubble__text {
    color: var(--color-foreground);
    font-family: var(--font-paragraph--family);
    font-size: clamp(var(--cart-font-size--2xs), 0.7lh, var(--cart-font-size--xs));
  }
/* END_BLOCK:_cart-title */

/* START_BLOCK:_category-product-card (INDEX:99) */
/**
   * Component: Category Product Card (dynamic)
   * Description: Small style layer for overlays + in-flow ATC button.
   *
   * Notes:
   * - ATC colors come from the parent section via CSS custom properties.
   * - Overlays rely on `.card-gallery` being positioned (we enforce `position: relative`).
   */

  .category-product-card__atc {
    display: flex;
  }

  .category-product-card__atc-button.button {
    width: 100%;
    justify-content: center;
    background: var(--category-panels-atc-bg, var(--color-primary));
    color: var(--category-panels-atc-fg, var(--color-background));
    border-color: transparent;
  }

  .category-product-card__atc-button .add-to-cart-icon {
    display: none;
  }

  .category-product-card__wishlist {
    position: absolute;
    top: var(--padding-sm);
    right: var(--padding-sm);
    width: 36px;
    height: 36px;
    border-radius: 999px;
    border: 1px solid rgb(var(--color-foreground-rgb) / var(--opacity-10));
    background: var(--color-background);
    display: grid;
    place-items: center;
    cursor: pointer;
    z-index: var(--layer-raised);
  }

  .category-product-card__wishlist svg {
    width: 18px;
    height: 18px;
  }

  .category-product-card__rating {
    position: absolute;
    left: var(--padding-sm);
    bottom: var(--padding-sm);
    display: inline-flex;
    align-items: center;
    gap: var(--gap-3xs);
    padding: calc(var(--padding-xs) / 2) var(--padding-xs);
    border-radius: 999px;
    background: rgb(var(--color-background-rgb) / var(--opacity-90));
    color: var(--category-panels-rating-color, var(--color-primary));
    z-index: var(--layer-raised);
  }

  .category-product-card__stars {
    display: inline-flex;
    gap: 2px;
    line-height: 1;
  }

  .category-product-card__star {
    width: 14px;
    height: 14px;
    fill: rgb(var(--color-foreground-rgb) / var(--opacity-20));
  }

  .category-product-card__star.is-filled {
    fill: currentColor;
  }

  .category-product-card__rating-count {
    font-size: var(--font-size--xs);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-60));
  }

  /* Ensure overlays position within gallery container */
  .product-card .card-gallery {
    position: relative;
  }
/* END_BLOCK:_category-product-card */

/* START_BLOCK:_collection-image (INDEX:102) */
.collection-image {
    width: var(--image-width);
  }

  .collection-image .collection-image__featured-image {
    aspect-ratio: var(--ratio);
    object-fit: cover;
  }
/* END_BLOCK:_collection-image */

/* START_BLOCK:_collection-link (INDEX:104) */
.collection-links__link {
    --min-font-size: var(--font-size--4xl);
    --max-font-size: var(--font-size--6xl);

    display: flex;
    color: inherit;
    text-decoration: none;
    text-wrap: pretty;
    font-size: clamp(var(--min-font-size), 4.5vw, var(--max-font-size));

    @media (hover: hover) {
      opacity: var(--disabled-opacity);
    }

    [layout='spotlight'] & {
      opacity: var(--disabled-opacity);
    }

    &[aria-current='true'] {
      opacity: 1;
    }

    .text-block {
      display: inline-block;
    }

    @media (max-width: 749px) {
      --min-font-size: var(--font-size--3xl);
      --max-font-size: var(--font-size--5xl);

      [layout='spotlight'] & {
        white-space: normal;
        scroll-snap-align: start;
        text-wrap: pretty;

        span {
          text-wrap: pretty;
        }
      }
    }
  }

  .collection-links__count {
    font-size: 0.5em;
    opacity: var(--disabled-opacity);
    font-weight: var(--font-paragraph--weight);
  }

  .collection-links__image {
    align-items: center;
    justify-content: center;

    &:not([hidden]) {
      display: flex;
    }

    &[reveal] {
      --offset: 15px;

      position: fixed;
      top: 0;
      left: 0;
      z-index: var(--layer-temporary);
      display: block;
      translate: calc(var(--x) + var(--offset)) calc(var(--y) + var(--offset));
      pointer-events: none;
      width: auto;

      image-block {
        --image-height-basis: 5rem;

        height: var(--image-height);
      }
    }
  }
/* END_BLOCK:_collection-link */

/* START_BLOCK:_featured-blog-posts-card (INDEX:108) */
.featured-blog-posts-card {
    width: 100%;
    position: relative;
    text-align: var(--text-align);
  }

  .featured-blog-posts-card__inner {
    width: 100%;
    overflow: hidden;
    position: relative;
    gap: var(--gap);
    display: flex;
    flex-direction: column;
    height: 100%;
    z-index: var(--layer-flat);
    pointer-events: none;
  }

  .resource-list--grid .resource-list__item {
    min-width: 0;
  }

  /* Editorial layout */
  .resource-list:not(.hidden--desktop) .blog-post-card--flexible-aspect-ratio {
    height: 100%;

    .featured-blog-posts-card__image,
    .blog-placeholder-svg {
      aspect-ratio: 99;
      height: 100%;
    }

    .featured-blog-posts-card__content {
      flex-shrink: 0;
      height: auto;
    }
  }

  @media (max-width: 768px) {
    .resource-list:not(.hidden--desktop) .blog-post-card--flexible-aspect-ratio {
      .featured-blog-posts-card__image,
      .blog-placeholder-svg {
        aspect-ratio: unset;
      }
    }
  }

  .featured-blog-posts-card__inner a,
  .featured-blog-posts-card__inner button {
    pointer-events: auto;
  }

  /* allow all blocks to be selectable in editor preview */
  .shopify-design-mode .featured-blog-posts-card__content * {
    pointer-events: auto;
  }

  .featured-blog-posts-card__content {
    position: relative;
    display: flex;
    height: 100%;
    width: 100%;
    gap: var(--gap);
    flex-direction: column;
    align-items: var(--horizontal-alignment);
  }

  .featured-blog-posts-card__link {
    position: absolute;
    inset: 0;
    border-radius: var(--border-radius);
  }

  .featured-blog-posts-card__content h4 {
    margin: 0;
  }
/* END_BLOCK:_featured-blog-posts-card */

/* START_BLOCK:_featured-blog-posts-image (INDEX:109) */
.featured-blog-posts-card__image {
    width: 100%;
  }

  .featured-blog-posts-card__image .blog-placeholder-svg {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
/* END_BLOCK:_featured-blog-posts-image */

/* START_BLOCK:_featured-product (INDEX:114) */
.featured-product-content-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: var(--gap-sm);
  }

  .featured-product-content-bottom:not(:has(product-swatches)) {
    display: none;
  }
/* END_BLOCK:_featured-product */

/* START_BLOCK:_footer-social-icons (INDEX:115) */
.social-icons__wrapper {
    display: flex;
    gap: var(--gap-sm);
    flex-wrap: wrap;
    justify-content: center;

    @media screen and (min-width: 750px) {
      flex-wrap: nowrap;
      justify-content: flex-start;
    }
  }
/* END_BLOCK:_footer-social-icons */

/* START_BLOCK:_header-logo (INDEX:116) */
.header-logo {
    display: flex;
    height: 100%;
    font-size: var(--font-size--md);
    font-family: var(--font-family);
    font-weight: var(--font-weight);
    font-style: var(--font-style);
    color: var(--color-foreground);
    justify-content: center;
    align-items: center;
    text-decoration: none;

    /* Make sure the logo visually hugs the left edge of the column when it is the first item in the left column */
    margin-inline: calc(-1 * var(--padding-inline-start));

    &[data-hidden-on-home-page] {
      display: none;

      #header-component:is(
          [sticky='always']:not([data-scroll-direction='none']),
          [sticky='scroll-up'][data-scroll-direction='up']
        )
        & {
        display: flex;
      }
    }

    @media screen and (max-width: 749px) {
      padding: 0;
    }

    @media screen and (min-width: 750px) {
      flex-shrink: 0;
    }

    &:hover {
      text-decoration: none;
    }
  }

  .header-logo__image {
    object-fit: contain;
    height: var(--header-logo-image-height-mobile);
    width: var(--header-logo-image-width-mobile);

    @media screen and (min-width: 750px) {
      height: var(--header-logo-image-height);
      width: var(--header-logo-image-width);
    }
  }

  .header-logo:has(.header-logo__image-container--inverse) .header-logo__image-container--original {
    display: var(--header-logo-display, block);
  }

  .header-logo__image-container--inverse {
    display: var(--header-logo-inverse-display, none);
  }
/* END_BLOCK:_header-logo */

/* START_BLOCK:_header-menu (INDEX:117) */
.menu-list--mobile {
    &.menu-list {
      display: grid;
    }

    & .menu-list__list {
      width: max-content;
      margin-inline: auto;
      gap: var(--menu-horizontal-gap);
    }

    & li {
      width: max-content;
      padding-block: var(--padding-sm);
    }

    & li:first-of-type {
      padding-inline-start: var(--menu-horizontal-gap);
    }

    & li:last-of-type {
      padding-inline-end: var(--menu-horizontal-gap);
    }

    & a {
      color: var(--color-foreground);
    }
  }

  .menu-list__scroll-container {
    position: relative;
    overflow-x: auto;
    mask-image: linear-gradient(to right, transparent, #000 20px, #000 calc(100% - 20px), transparent);
    padding-block: var(--padding-2xs);
  }

  header-menu {
    width: 100%;
  }

  /* Drawer menu featured content */
  .menu-drawer__featured-content {
    z-index: var(--layer-base);
    container-type: inline-size;
  }

  .menu-drawer__featured-content--childlist {
    z-index: var(--layer-flat);
  }

  .menu-drawer__featured-content-list {
    display: flex;
    gap: 1em;
    overflow-x: auto;
    padding-block-end: var(--padding-lg);
  }

  .menu-drawer__featured-content-list-item {
    flex: 0 0 auto;
  }

  .menu-drawer__featured-content-list-item--product {
    width: 35cqi;
  }

  .menu-drawer__featured-content-list-item--collection img.resource-card__image {
    width: 80cqi;
  }

  .menu-drawer__featured-content-list-item:first-child {
    margin-inline-start: var(--margin-xl);
  }

  .menu-drawer__featured-content-list-item:last-child {
    margin-inline-end: var(--margin-xl);
  }

  .menu-list {
    --menu-horizontal-gap: var(--gap-xl);
    --menu-vertical-gap: var(--gap-xl);

    display: flex;
  }

  .menu-list__list {
    display: flex;
    justify-content: var(--grid-area-alignment);
  }

  .menu-list__list-item {
    flex-shrink: 0;
    white-space: nowrap;
  }

  .menu-list__list-item[aria-hidden='true'] {
    visibility: hidden;
  }

  .menu-list__link {
    font-family: var(--menu-top-level-font-family);
    font-style: var(--menu-top-level-font-style);
    font-weight: var(--menu-top-level-font-weight);
    font-size: var(--menu-top-level-font-size);
    line-height: var(--menu-top-level-font-line-height);
    text-transform: var(--menu-top-level-font-case);
    color: var(--menu-top-level-font-color);
    transition: color var(--animation-speed) var(--animation-easing);
    text-decoration: none;
    display: flex;
    min-height: var(--minimum-touch-target);
    align-items: center;

    &:hover,
    &:focus {
      color: var(--menu-top-level-font-color);
    }

    @media screen and (min-width: 750px) {
      font-size: var(--menu-top-level-font-size-desktop);
    }
  }

  /*
      High specificity selectors to subdue non-hovered links without javascript.
      If the need for js-generated `hovered` and `focused` classes arises for another reason we can simplify these.
    */
  .menu-list:where(:has(.menu-list__list-item:hover)),
  .menu-list:where(:has(.menu-list__list-item:focus-within)),
  .menu-list:where(:has(.menu-list__list-item:not([aria-hidden='true']) .menu-list__link--active)) {
    .menu-list__link {
      color: rgb(var(--menu-top-level-font-color-rgb) / var(--opacity-subdued-text));
    }
  }

  /* stylelint-disable-next-line selector-max-specificity */
  .menu-list:not(:has(.menu-list__list-item:hover)) .menu-list__link--active,
  .menu-list .menu-list__list-item:where(:hover, :focus-within) .menu-list__link,
  .menu-list .menu-list__list-item[slot='overflow'] .menu-list__link[aria-expanded='true'] {
    color: var(--menu-top-level-font-color);
  }

  .overflow-menu::part(list) {
    /* Make sure focus outline is not cut off by overflow hidden */
    --focus-outline-size: calc(var(--focus-outline-offset) + var(--focus-outline-width));

    gap: 0 var(--menu-horizontal-gap);
  }

  .overflow-menu {
    background-color: transparent;
    padding: var(--focus-outline-size);
    margin: calc(-1 * var(--focus-outline-size));
  }

  /* the submenu background element to animate */
  .overflow-menu::after {
    content: '';
    position: absolute;
    top: calc(100% - 1px + var(--border-bottom-width));
    left: 0;
    width: 100%;
    height: var(--submenu-height);
    background-color: var(--color-background);
    box-shadow: var(--shadow-popover);
    clip-path: inset(0.5px 0 -100px 0); /* stylelint-disable-line */
    opacity: var(--submenu-opacity, 1);
    transition: height var(--submenu-animation-speed) var(--ease-out-cubic),
      opacity var(--animation-speed-slow) var(--ease-out-cubic) var(--animation-speed-fast);
    z-index: calc(var(--layer-header-menu) - 1);
  }

  /** mega menu **/
  .menu-list__submenu,
  .overflow-menu::part(overflow) {
    --submenu-padding-block-start: var(--padding-3xl);
    --submenu-padding-block-end: var(--padding-3xl);

    background-color: transparent;
  }

  .header__row[style*='--border-bottom-width: 0px'] {
    .menu-list__submenu.color-scheme-matches-parent,
    .overflow-menu.color-scheme-matches-parent::part(overflow) {
      --submenu-padding-block-start: 0px;
    }
  }

  .menu-list__list-item:where(:not([slot='overflow'])) > .menu-list__submenu,
  .overflow-menu::part(overflow) {
    --submenu-content-opacity: 0;
    --submenu-content-animation: opacity calc(var(--submenu-animation-speed) * 0.75) var(--animation-easing);

    box-shadow: var(--shadow-drawer);
    visibility: hidden;
    background-color: var(--color-background);
    position: absolute;
    width: 100%;
    left: 0;
    top: calc(100% - 1px + var(--border-bottom-width));
    z-index: var(--layer-header-menu);
    padding-inline: var(--padding-inline);
    clip-path: rect(0 100% var(--submenu-height) 0); /* stylelint-disable-line */
    transition: clip-path var(--submenu-animation-speed) var(--ease-out-cubic);
  }

  /* Show the submenus on hover */
  .menu-list__list-item:has([aria-expanded='true']) > .menu-list__submenu,
  /* Show the overflow menu when a menu item is hovered */
  .overflow-menu:has([slot="overflow"] [aria-expanded='true'])::part(overflow),
  /* Keep the submenus open when they are hovered */
  .menu-list__submenu:is(:hover),
  .overflow-menu::part(overflow):hover {
    --submenu-content-opacity: 1;

    visibility: visible;
  }

  .menu-list__list-item:has([data-animating]) > .menu-list__submenu {
    --submenu-content-opacity: 0;

    visibility: visible;

    &::before {
      height: 0;
    }
  }

  .menu-list__submenu-inner,
  .overflow-menu::part(overflow-list) {
    grid-column: 2;
    padding-block-start: var(--submenu-padding-block-start);
    padding-block-end: var(--submenu-padding-block-end);
    padding-inline: var(--section-padding-inline);
  }

  .overflow-menu::part(overflow) {
    --menu-top-level-font-size: var(--font-size--xlarge);

    display: grid;
    grid-template-columns: var(--full-page-grid-with-margins);
  }

  .overflow-menu::part(overflow-list) {
    --submenu-content-opacity: 0;

    position: relative;
    display: grid;
    grid-template-columns: minmax(auto, 200px) 1fr;
    grid-template-areas: 'left right';
    grid-template-rows: max-content;
    grid-gap: 0;
  }

  /* Make overflow menu scrollable when content exceeds viewport */
  .menu-list__submenu-inner,
  .overflow-menu::part(overflow-list) {
    max-height: calc(80vh - var(--header-height));
    overflow-y: auto;
    overflow-x: hidden;

    scrollbar-width: thin;
    scrollbar-color: rgb(var(--color-foreground-rgb) / var(--opacity-40)) transparent;
  }

  .menu-list__list-item:is([slot='overflow']) {
    --menu-top-level-font-color: var(--color-foreground);
    --menu-top-level-font-color-rgb: var(--color-foreground-rgb);

    display: contents;
    white-space: normal;

    .menu-list__link {
      --submenu-content-opacity: 0;

      grid-area: left;
      grid-row: auto;
      height: min-content;
      font-size: var(--font-size--xl);
      opacity: var(--submenu-content-opacity);
      transition: var(--submenu-content-animation);
    }

    .menu-list__submenu {
      visibility: hidden;
      grid-row: 1;
      grid-area: right;
      grid-row-end: span calc(var(--overflow-count) + 1);
      padding-inline-start: var(--menu-horizontal-gap);

      .menu-list__submenu-inner {
        padding-block-start: 0;
        grid-column: unset;
      }
    }

    .menu-list__link[aria-expanded='true'] + .menu-list__submenu {
      visibility: visible;
    }
  }

  .header-menu[data-overflow-expanded='true'] .menu-list__list-item:where([slot='overflow']) .menu-list__link {
    --submenu-content-opacity: 1;
  }

  .menu-list__list-item:where([slot='overflow']):has([data-animating]) > .menu-list__link {
    --submenu-content-opacity: 0;
  }

  .menu-list__submenu-inner {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    opacity: var(--submenu-content-opacity);
    transition: var(--submenu-content-animation);
  }

  .mega-menu__link {
    font-family: var(--menu-child-font-family);
    font-style: var(--menu-child-font-style);
    font-weight: var(--menu-child-font-weight);
    font-size: var(--menu-child-font-size);
    line-height: var(--menu-child-font-line-height);
    text-transform: var(--menu-child-font-case);
    color: var(--menu-child-font-color);
    white-space: normal;
    text-decoration: none;
    display: inline-flex;
    padding: var(--padding-2xs) 0;
    transition: color var(--animation-speed) var(--animation-easing);

    &:hover {
      color: var(--menu-child-active-font-color);
    }
  }

  .mega-menu__link--parent {
    font-family: var(--menu-parent-font-family);
    font-style: var(--menu-parent-font-style);
    font-weight: var(--menu-parent-font-weight);
    font-size: var(--menu-parent-font-size);
    line-height: var(--menu-parent-font-line-height);
    text-transform: var(--menu-parent-font-case);
    color: var(--menu-parent-font-color);

    &:hover {
      color: var(--menu-parent-active-font-color);
    }
  }

  @media screen and (max-width: 989px) {
    .mega-menu__content-list-item--hidden-tablet {
      display: none;
    }
  }

  .mega-menu__link:has(.mega-menu__link-image) {
    display: flex;
    flex-direction: column;
    padding-inline: 0;
    padding-block: var(--padding-sm) 0;
  }

  .mega-menu__link-image {
    width: 100%;
    position: relative;
    aspect-ratio: 16 / 9;
    margin-bottom: var(--padding-sm);
    object-fit: cover;
    border-radius: var(--menu-image-border-radius);
  }

  /* Fix alignment for collection image mode links without images */

  /* Target only top-level links (direct children of column > div) in collection image mode */
  .mega-menu__grid:has(.mega-menu__link-image)
    .mega-menu__column
    > div
    > .mega-menu__link:not(:has(.mega-menu__link-image)) {
    display: flex;
    flex-direction: column;
    padding-inline: 0;
    padding-block: var(--padding-sm) 0;
  }

  .mega-menu__grid:has(.mega-menu__link-image)
    .mega-menu__column
    > div
    > .mega-menu__link:not(:has(.mega-menu__link-image))::before {
    content: '';
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    margin-bottom: var(--padding-sm);
    background-color: var(--color-foreground-muted);
    opacity: 0.1;
    border-radius: var(--menu-image-border-radius);
  }

  .mega-menu__grid {
    display: grid;
    grid-template-columns: repeat(var(--menu-columns-tablet), minmax(0, 1fr));
    gap: var(--menu-vertical-gap) var(--menu-horizontal-gap);
    width: 100%;

    @media screen and (min-width: 990px) {
      grid-template-columns: repeat(var(--menu-columns-desktop), minmax(0, 1fr));
    }
  }

  .mega-menu__column {
    grid-column: span 1;
  }

  .mega-menu__column--span-2 {
    grid-column: span 2;
  }

  .mega-menu__column--span-3 {
    grid-column: span 3;
  }

  .mega-menu__column--span-4 {
    grid-column: span 4;
  }

  .mega-menu__column--wide-collection-image {
    grid-column: span 1;

    @media screen and (min-width: 990px) {
      grid-column: span 2;
    }
  }

  .mega-menu__submenu .mega-menu__column--wide-collection-image {
    grid-column: span 1;
  }

  .mega-menu__content-list {
    display: grid;
    justify-content: end;
    gap: var(--menu-vertical-gap) var(--menu-horizontal-gap);
  }

  .mega-menu__content-list--products {
    grid-template-columns: repeat(var(--menu-content-columns-tablet), minmax(0, 1fr));

    @media screen and (min-width: 990px) {
      grid-template-columns: repeat(var(--menu-content-columns-desktop), minmax(0, 1fr));
    }
  }

  .mega-menu__content-list--collections {
    grid-template-columns: repeat(var(--menu-content-columns-tablet), minmax(0, 300px));

    @media screen and (min-width: 990px) {
      grid-template-columns: repeat(var(--menu-content-columns-desktop), minmax(0, 300px));
    }
  }

  .mega-menu__list {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: span var(--menu-columns-tablet);
    gap: var(--menu-vertical-gap) var(--menu-horizontal-gap);

    @media screen and (min-width: 990px) {
      grid-column: span var(--menu-columns-desktop);
    }
  }

  .mega-menu__content {
    grid-column: span var(--menu-content-columns-tablet) / -1;

    @media screen and (min-width: 990px) {
      grid-column: span var(--menu-content-columns-desktop) / -1;
    }
  }

  .menu-list__list-item[slot='overflow'] .section {
    grid-template-columns: 1fr;
  }

  .menu-list__list-item[slot='overflow'] .section .mega-menu__grid {
    grid-column: 1;
  }

  .mega-menu__content-list li {
    white-space: normal;
  }

  /* mega more menu */
  .mega-menu__more-list {
    --menu-child-font-size: var(--font-size--xl);

    width: 200px;
  }

  .mega-menu__more-list-item .mega-menu__link {
    color: rgb(var(--menu-top-level-font-color-rgb) / var(--opacity-subdued-text));
  }

  .mega-menu__more-list-item:where(:hover, .active) .mega-menu__link {
    color: var(--menu-top-level-font-color);
  }

  .mega-menu__more-list-item[aria-hidden='true'] {
    display: none;
  }

  .mega-menu__submenu {
    /* preserves the inherited grid layout when this submenu wrapper is used */
    display: contents;
  }
/* END_BLOCK:_header-menu */

/* START_BLOCK:_image (INDEX:120) */
image-block {
    --image-height-basis: 10rem;
    --image-height-small: calc(var(--image-height-basis) * 2);
    --image-height-medium: calc(var(--image-height-basis) * 3);
    --image-height-large: calc(var(--image-height-basis) * 4);

    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: var(--ratio);
    width: 100%;
    max-width: calc(var(--image-height) * var(--ratio));
    height: var(--image-height);
    overflow: hidden;

    @media screen and (min-width: 750px) {
      --image-height-small: calc(var(--image-height-basis) * 2.5);
      --image-height-medium: calc(var(--image-height-basis) * 3.5);
      --image-height-large: calc(var(--image-height-basis) * 4.5);
    }

    @media screen and (max-width: 749px) {
      height: auto;
    }

    &[height='small'] {
      --image-height: var(--image-height-small);
    }

    &[height='medium'] {
      --image-height: var(--image-height-medium);
    }

    &[height='large'] {
      --image-height: var(--image-height-large);
    }

    &[ratio='portrait'] {
      --ratio: 4 / 5;
    }

    &[ratio='square'] {
      --ratio: 1 / 1;

      @media screen and (min-width: 750px) {
        max-width: var(--image-height);
      }
    }

    &[ratio='landscape'] {
      --ratio: 16 / 9;
    }

    img {
      object-fit: cover;
      width: 100%;
      height: auto;
      aspect-ratio: var(--ratio);
      border-radius: var(--border-radius);
    }
  }
/* END_BLOCK:_image */

/* START_BLOCK:_marquee (INDEX:124) */
marquee-component {
    display: block;
    width: 100%;
    overflow: hidden;
    background-color: var(--color-background);
  }

  .marquee__wrapper {
    display: flex;
    gap: var(--marquee-gap);
    width: fit-content;
    white-space: nowrap;
  }

  .marquee__content {
    min-width: max-content;
    display: flex;
    gap: var(--marquee-gap);
  }

  .marquee__content :is(p, h1, h2, h3, h4, h5, h6) {
    white-space: nowrap;
  }

  .marquee__content .marquee__repeated-items * {
    max-width: none;
  }

  .marquee__repeated-items {
    min-width: max-content;
    display: flex;
    gap: var(--marquee-gap);
    align-items: center;
    justify-content: center;
  }

  .marquee__repeated-items > * {
    align-content: center;
  }

  .hero__content-wrapper.layout-panel-flex--column marquee-component {
    --margin-inline: var(--full-page-margin-inline-offset);

    width: -webkit-fill-available;
    min-height: max-content;
  }

  @media (prefers-reduced-motion: no-preference) {
    marquee-component:not([data-disabled]) .marquee__wrapper {
      animation: marquee-motion var(--marquee-speed) linear infinite var(--marquee-direction);
    }
  }

  @keyframes marquee-motion {
    to {
      transform: translate3d(calc(-50% - (var(--marquee-gap) / 2)), 0, 0);
    }
  }
/* END_BLOCK:_marquee */

/* START_BLOCK:_product-card (INDEX:129) */
.shoplc-product-card {
    position: relative;
    background: #FFFFFF;
    border-radius: var(--border-radius-lg);
    padding-bottom: 10px;
    display: flex;
    flex-direction: column;
    gap: var(--padding-sm);
    overflow: hidden;
    height: 100%;
    width: 100%;

    @media screen and (max-width: 749px) { 
      border-width: 2px;
      border-style: solid;
      border-color: #f0f0f0;
      border-image: initial;
      padding-bottom: 0;
    }
  }

  .shoplc-product-card__variant-swatch input[type="radio"] {
    display: none;
  }

  .shoplc-product-card__overlay {
    position: absolute;
    top: 12px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 0 12px;
    pointer-events: none;
    z-index: 3;

    @media screen and (max-width: 749px) { 
      top: 6px;
    }
  }

  .shoplc-product-card__badge {
    background: #c4031b;
    color: #fff;
    border-radius: var(--border-radius-sm);
    padding: 0.25rem 0.75rem;
    font-weight: 600;
    font-size: var(--font-size--sm);
    letter-spacing: 0.03em;
    pointer-events: auto;
  }
  /* Make product-default-badges work inside the overlay flex row */
  .shoplc-product-card__overlay .product-default-badges {
    position: static;
    top: auto;
    left: auto;
    z-index: auto;
    gap: 0;
  }

  .shoplc-product-card__overlay .product-default-badge {
    border-radius: var(--border-radius-sm);
    padding: 0.25rem 0.75rem;
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 0.03em;
    pointer-events: auto;

    @media screen and (max-width: 749px) {
      font-size: 10px;
      padding: 0 3px;
    }
  }

  .wishlist-product-icon__button {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #fff !important;
    display: grid;
    place-items: center;
    cursor: pointer;
    pointer-events: auto;
    margin-left: auto;
    opacity: 0.5;
    transition: transform 0.2s ease, box-shadow 0.2s ease;

    @media screen and (max-width: 749px) { 
      margin-right: -8px;
      width: 26px;
      height: 25px;
    }
  }

  .wishlist-product-icon__button svg {
    width: 16px !important;
    height: 14px !important;
  }

  .product-grid__item .wishlist-product-icon__svg--empty {
    stroke: #191919 !important;
  }

  .shoplc-product-card__favorite svg {
    width: 16px;
    height: 16px;
    fill: #626161;
  }

  .shoplc-product-card__favorite:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  }

  .shoplc-product-card__inner {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .shoplc-price-row {
    padding: 0 10px;

    @media screen and (max-width: 749px) {
      padding: 0;
    }
  }

  .shoplc-product-card .product-card__content {
    background: transparent;
    border: none;
    padding: 0;
  }

  .shoplc-product-card .card-gallery {
    height: 260px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    background-color: #FFFFFF !important;
  }

  .shoplc-product-card .card-gallery img,
  .shoplc-product-card .card-gallery picture,
  .shoplc-product-card .card-gallery video {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .shoplc-product-card .card-gallery .product-card-gallery__no-media {
    height: 100%;
  }

  /* In-image overlay: rating (left), dots (right), ATC button (bottom) – same hover as quick-add */
  .shoplc-product-card .card-gallery {
    position: relative;
    /* Reserve space for quick-add so hover row + ATC don’t overlap; same math on every tile */
    --shoplc-quick-add-bottom: 10px;
    --shoplc-atc-visual-height: 30px;
    --shoplc-hover-meta-gap: 8px;
    --shoplc-hover-meta-bottom: calc(
      var(--shoplc-quick-add-bottom) + var(--shoplc-atc-visual-height) + var(--shoplc-hover-meta-gap)
    );
  }

  /*
   * Quick-add: theme default uses spacing-style padding inside `inset`, which changes per gallery block;
   * single-variant cards also get margin-bottom: 25px on hover (product-card.liquid). Normalize for PLP.
   */
  .shoplc-product-card .card-gallery .quick-add {
    inset: auto;
    top: auto;
    left: 12px;
    right: 12px;
    bottom: var(--shoplc-quick-add-bottom);
    width: auto;
    max-width: none;
    box-sizing: border-box;
  }

  .shoplc-product-card .card-gallery .quick-add .shopify-product-form {
    width: 100%;
    justify-content: flex-end;
    align-items: stretch;
  }

  .shoplc-product-card .card-gallery .quick-add__button {
    max-width: none;
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
  }

  .shoplc-product-card .card-gallery .quick-add__button:hover {
    border: 2px solid #ffffff;
  }

  .shoplc-product-card
    :is(.product-card):has(.quick-add__product-form-component--single-variant)
    .card-gallery:hover
    .quick-add__button--add {
    margin-bottom: 0;
  }

  /*
   * Dots live inside slideshow-component (theme sets position: relative on it).
   * That made bottom: on .shoplc-hover-dots relative to the slideshow box, not the 260px gallery,
   * so rating and dots never shared one row. Static removes that extra containing block.
   */
  .shoplc-product-card .card-gallery slideshow-component {
    position: static;
  }

  /* Single in-image rating on hover; hide duplicate static rating in flow */
  .shoplc-product-card .card-gallery .shoplc-static-rating {
    display: none;
  }

  /* Hover row: rating left + dots right, clearly above ATC button (same containing block = one row) */
  .shoplc-product-card .card-gallery .shoplc-hover-rating {
    position: absolute;
    bottom: var(--shoplc-hover-meta-bottom);
    left: 6px;
    z-index: 3;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--animation-speed, 0.2s) ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: var(--font-size--sm);
    color: var(--color-foreground);
    background: rgb(255 255 255 / 0.9);
    padding: 4px 8px;
    border-radius: var(--border-radius-sm);
    height: 28px;
    box-sizing: border-box;
    line-height: 1;
  }

  .shoplc-product-card .card-gallery .shoplc-hover-rating__star {
    color: #F19300;
  }

  .shoplc-product-card .card-gallery .shoplc-hover-dots {
    position: absolute;
    bottom: var(--shoplc-hover-meta-bottom);
    font-size: 12px;
    left: 0;
    right: 0;
    z-index: 3;
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    padding: 0 12px;
    height: 28px;
    box-sizing: border-box;
    line-height: 0;
    transition: opacity var(--animation-speed, 0.2s) ease;
  }

  .shoplc-product-card .card-gallery .shoplc-hover-dots slideshow-controls {
    pointer-events: auto;
    --color-foreground: #1f1f1f;
    --color-foreground-rgb: 31, 31, 31;
    min-height: 0;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }

  .shoplc-product-card .card-gallery .shoplc-hover-dots .slideshow-controls__dots {
    display: inline-flex;
    flex-direction: row;
    align-items: center;
    margin: 0;
    padding: 0;
    gap: 0;
    --size: 6px;
    --color: #C4C4C4;
    --color-active: #000000; 
    --color-hover: #000000;
  }

  .shoplc-product-card .slideshow-controls__dots button {
    background-color: #C4C4C4 !important;
    opacity: 1;
    --size: 6px;
    width: fit-content;
    height: fit-content;
  }

  .shoplc-product-card .slideshow-controls__dots button[aria-current="true"],
  .shoplc-product-card .slideshow-controls__dots button.is-active {
    background-color: #000000 !important;
  }

  .shoplc-product-card .card-gallery .shoplc-hover-atc {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 2;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--animation-speed, 0.2s) ease;
  }

  .shoplc-product-card .card-gallery .shoplc-hover-atc .shoplc-hover-atc__btn,
  .shoplc-product-card .card-gallery .shoplc-hover-atc .shoplc-hover-atc__form {
    pointer-events: auto;
  }

  .shoplc-product-card .card-gallery .shoplc-carousel-arrows {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 14px;
    box-sizing: border-box;
    opacity: 0;
    transition: opacity var(--animation-speed, 0.2s) ease;
  }

  .shoplc-product-card .card-gallery .shoplc-carousel-arrows .shoplc-carousel-arrow,
  .shoplc-product-card .card-gallery .shoplc-carousel-arrows .slideshow-control {
    flex-shrink: 0;
    width: 27px;
    height: 35px;
    min-width: 27px;
    min-height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    background-color: #ffffff !important;
    border-radius: 0;
  }

  .shoplc-product-card .card-gallery .shoplc-carousel-arrows .slideshow-control .svg-wrapper,
  .shoplc-product-card .card-gallery .shoplc-carousel-arrows .slideshow-control svg {
    width: 7px;
    height: 15px;
    fill: #191919;
  }

  .shoplc-product-card__payment {
    padding: 0 10px;
    flex-shrink: 0;
    display: none;
  }

  .shoplc-product-card .card-gallery .shoplc-carousel-arrows .slideshow-control--previous {
    box-shadow: 5px 0 10px 0 rgba(0, 0, 0, 0.05);
  }

  .shoplc-product-card .card-gallery .shoplc-carousel-arrows .slideshow-control--next {
    box-shadow: -5px 0 10px 0 rgba(0, 0, 0, 0.05);
  }

  .shoplc-product-card .card-gallery .shoplc-carousel-arrows .shoplc-carousel-arrow {
    pointer-events: auto;
  }

  @media screen and (min-width: 750px) {
    /* Gallery hover only — :focus-within kept overlays visible after clicking the slider elsewhere on the page */
    .shoplc-product-card .card-gallery:hover .shoplc-hover-rating,
    .shoplc-product-card .card-gallery:hover .shoplc-hover-dots,
    .shoplc-product-card .card-gallery:hover .shoplc-hover-atc,
    .shoplc-product-card .card-gallery:hover .shoplc-carousel-arrows {
      opacity: 1;
    }

    .shoplc-product-card:hover .shoplc-product-card__rating {
      opacity: 0;
      pointer-events: none;
    }
  }

  /*
   * base.css shows quick-add + theme slideshow arrows on product-card:focus-within.
   * After clicking inside a tile, focus stays there; hide those again when the pointer isn’t on this card.
   */
  @media screen and (min-width: 750px) {
    .shoplc-product-card:focus-within:not(:hover) .quick-add__button {
      display: none !important;
    }

    .shoplc-product-card:focus-within:not(:hover) .card-gallery slideshow-arrows .slideshow-control {
      opacity: 0 !important;
    }
  }

  .yotpo-sr-bottom-line-right-panel {
    display: none !important;
  }

  /* Rating inside image container, visible until hover (then hide so hover rating/dots/ATC show) */
  .shoplc-product-card__rating {
    position: absolute;
    top: calc(2 * var(--padding-lg) + 260px - 60px - 28px);
    z-index: 2;
    display: flex;
    align-items: center;
    gap: var(--padding-2xs);
    font-size: var(--font-size--sm);
    color: var(--color-foreground);
    background: transparent;
    padding: 4px 8px;
    border-radius: var(--border-radius-sm);
    margin: 0 12px;
    transition: opacity var(--animation-speed, 0.2s) ease;
  }

  .shoplc-product-card__rating:has(.yotpo-reviews-star-ratings-widget) {
    background: rgb(255 255 255 / 0.9);
  }

  .shoplc-product-card__stars {
    display: flex;
    gap: var(--padding-3xs);
  }

  .shoplc-product-card__stars svg {
    width: 18px;
    height: 18px;
    fill: rgba(0, 0, 0, 0.2);
  }

  .shoplc-product-card__stars svg.is-filled {
    fill: #F19300;
  }

  .shoplc-product-card__rating-count {
    color: var(--color-foreground);
  }

  .shoplc-product-card__payment {
    margin: 0;
    font-size: var(--font-size--xs);
    color: #1f1f1f;
    display: none;
  }

  .shoplc-product-card__payment .payment-or,
  .shoplc-product-card__payment .payment-count,
  .shoplc-product-card__payment .payment-text {
    font-size: 12px;
    line-height: 200%;
  }

  .shoplc-product-card__payment .payment-or {
    font-weight: 500;
    color: #626161;
    vertical-align: bottom;
  }

  .shoplc-product-card__payment .payment-text {
    font-weight: 500;
    color: #626161;
    vertical-align: bottom;
  }

  .shoplc-product-card__payment-bp-icon {
    display: inline-block;
    vertical-align: middle;
    height: 1em;
    width: auto;
  }

  .shoplc-product-card__promo {
    margin: 0;
    border-radius: var(--border-radius-sm);
    background: rgba(214, 56, 48, 0.08);
    color: #c4031b;
    padding: 0.75rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 500;
    font-size: var(--font-size--sm);
    gap: var(--padding-xs);
  }

  .shoplc-product-card__promo strong {
    font-weight: 700;
  }

  /* ── Variant color swatches row (Figma Frame 1410102361) ── */
  .shoplc-product-card__variants {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 14px;
    width: 100%;
    padding: 0 10px;
    margin: 0;
    flex-shrink: 0;
  }

  .shoplc-product-card__variant-swatch {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border: 1px solid #DDDDDD;
    background: #FFFFFF;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    display: block;
    box-sizing: border-box;
  }

  .shoplc-product-card__variant-swatch--selected {
    border-color: #1E35B1;
  }

  /*
   * Only one accent border at a time: selected + hovered both used #1E35B1, so two tiles looked “active”.
   * While the pointer is over the row, reset non-hovered swatches (including the checked one) to default;
   * when the pointer leaves the row, --selected shows again.
   */
  @media (hover: hover) and (pointer: fine) {
    .shoplc-product-card__variants:hover .shoplc-product-card__variant-swatch:not(:hover):not(.shoplc-product-card__variant-swatch--selected) {
      border-color: #dddddd;
    }

    .shoplc-product-card__variants:hover .shoplc-product-card__variant-swatch:hover {
      border-color: #1e35b1;
    }
  }

  .shoplc-product-card__variant-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .shoplc-product-card__variant-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #191919;
    background: #FFFFFF;
  }

  .shoplc-product-card__variant-overflow {
    width: 40px;
    height: 40px;
    flex: 0 0 40px;
    border: 1px solid #F6F6F6;
    background: #FFFFFF;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    cursor: pointer;
    padding: 0;
  }

  .shoplc-product-card__variant-img--blur {
    filter: blur(2.3px);
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .shoplc-product-card__variant-overflow::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(66, 66, 66, 0.44);
    z-index: 0;
  }

  .shoplc-product-card__variant-overflow-text {
    position: relative;
    z-index: 1;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.5em;
    color: #FFFFFF;
  }

  /* ── Quick Add CTA – mobile only (Figma: Quick Add CTA mobile) ── */
  .shoplc-product-card__quick-add-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 38px;
    padding: 10px;
    margin: 0;
    background: #F6F6F6;
    border: none;
    border-top: 1px solid #F0F0F0;
    cursor: pointer;
    box-sizing: border-box;
  }

  .shoplc-product-card__quick-add-cta-inner {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .shoplc-product-card__quick-add-cta-text {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.5em;
    text-transform: uppercase;
    color: #191919;
    white-space: nowrap;

    @media screen and (max-width: 749px) {
      font-size: 12px;
    }
  }

  .shoplc-product-card__quick-add-cta-icon {
    flex-shrink: 0;
    width: 13px;
    height: 13px;
  }

  @media screen and (min-width: 750px) {
    .shoplc-product-card__quick-add-cta {
      display: none;
    }
  }

  /* Product title - Fixed 42px height with 2-line clamp */
  /* Target the actual DOM structure: .shoplc-product-card > .product-card > .contents > .text-block > p */
  .shoplc-product-card .contents .text-block {
    height: 42px;
    max-height: 42px;
    min-height: 42px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .product-badges.product-badges--top-right {
    display: none;
  }

  .shoplc-product-card .contents .text-block > * {
    margin: 0;
    padding: 0;
  }

  .shoplc-product-card .contents .text-block p {
    font-family: 'Nunito Sans', var(--font-body--family);
    font-weight: 500;
    font-size: 14px;
    line-height: 21px; /* Exactly half of 42px for 2 lines */
    letter-spacing: 0;
    color: var(--Greys-Black-1, #191919);
    margin: 0;
    padding: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 42px;
    max-height: 42px;
    min-height: 42px;
    white-space: normal;
    word-wrap: break-word;
    word-break: break-word;

    @media screen and (max-width: 749px) {
      font-size: 12px;
    }
  }

  .shoplc-product-card .price {
    font-family: 'Nunito Sans', var(--font-body--family);
    font-weight: 700;
    font-size: 16px;
    letter-spacing: 0;
    color: var(--Warning-Sale-Red, #AE0413);

    @media screen and (max-width: 749px) {
      font-size: 14px;
    }
  }

  .product-grid__item {
    display: block;
  }

  @media screen and (max-width: 749px) {
    .shoplc-product-card__variants {
      display: flex;
      flex-wrap: nowrap;
      overflow-x: auto;
      gap: 6px;
      width: calc(35px * 4 + 6px * 3);
      max-width: 100%;

      -webkit-overflow-scrolling: touch;
      scroll-behavior: smooth;
    }

    .shoplc-product-card__variant-swatch,
    .shoplc-product-card__variant-overflow {
      flex: 0 0 40px;
      min-width: 40px;
    }

    .shoplc-product-card__variants::-webkit-scrollbar {
      display: none;
    }
    
    .shoplc-product-card__variants {
      scrollbar-width: none;
    }

    .product-grid {
      padding: 15px;
    }

    .yotpo-plp-rating {
      display: none;
    }

    .shoplc-product-card .card-gallery {
      height: auto;
      --shoplc-atc-visual-height: 50px;
      --shoplc-hover-meta-gap: 6px;
    }

    .shoplc-product-card .card-gallery .shoplc-hover-dots {
      opacity: 1;
      bottom: 0px;
    }

    .shoplc-product-card .card-gallery .shoplc-hover-rating {
      opacity: 1;
      bottom: 7px;
      height: 20px;
      font-size: 12px;
    }

    .shoplc-product-card .card-gallery .shoplc-hover-rating .shoplc-hover-rating__star {
      font-size: 14px;
    }

    .shoplc-product-card__promo {
      flex-direction: column;
      align-items: flex-start;
    }
  }
/* END_BLOCK:_product-card */

/* START_BLOCK:_search-input (INDEX:135) */
.search-page-input {
    width: 100%;
    color: var(--color-input-text);
    background-color: var(--color-input-background);
    padding-block: var(--padding-lg);
    padding-inline: calc(var(--icon-size-lg) + var(--margin-xl) * 1.5);
    text-overflow: ellipsis;
    overflow: hidden;
    border-radius: var(--style-border-radius-inputs);
    border: var(--style-border-width-inputs) solid var(--color-input-border);

    @media screen and (max-width: 749px) {
      padding-inline: calc(var(--margin-xs) + var(--icon-size-lg) + var(--padding-md));
    }
  }

  .search-page-input::placeholder {
    color: rgb(var(--color-input-text-rgb) / var(--opacity-subdued-text));
  }

  .search-page-input__parent {
    display: flex;
    flex-direction: column;
    align-items: var(--horizontal-alignment);
  }

  .search-results__no-results {
    opacity: var(--opacity-subdued-text);
  }

  search-page-input-component {
    position: relative;
    width: 100%;
    display: flex;
    top: 0;
    max-width: var(--size-style-width);
    align-items: center;
    background-color: var(--color-background);
    margin: var(--margin-2xl) 0 var(--margin-md);

    @media screen and (max-width: 749px) {
      max-width: 100%;
    }
  }

  search-page-input-component .search__icon,
  search-page-input-component .search__icon:hover,
  search-page-input-component .search__reset-button,
  search-page-input-component .search__reset-button:hover {
    background: transparent;
    position: absolute;
    top: auto;
    width: var(--icon-size-lg);
    height: var(--icon-size-lg);
  }

  search-page-input-component .search__icon svg,
  search-page-input-component .search__reset-button svg {
    width: var(--icon-size-md);
    height: var(--icon-size-md);
  }

  search-page-input-component .search__icon svg {
    color: var(--color-input-text);
  }

  search-page-input-component .search__icon {
    left: var(--margin-lg);

    @media screen and (max-width: 749px) {
      left: var(--margin-md);
    }
  }

  search-page-input-component .search__reset-button {
    border-radius: 100%;
    color: var(--color-input-text);
    right: var(--margin-lg);
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity var(--animation-speed) var(--animation-easing),
      visibility var(--animation-speed) var(--animation-easing);

    @media screen and (max-width: 749px) {
      right: var(--margin-md);
    }
  }

  search-page-input-component:has(.search-page-input:not(:placeholder-shown)) .search__reset-button {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
  }

  search-page-input-component .search__reset-button-icon {
    vertical-align: middle;
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--icon-size-lg);
    height: var(--icon-size-lg);
    transition: transform var(--animation-speed) var(--animation-easing);
  }

  search-page-input-component .search__reset-button:active .search__reset-button-icon {
    transform: scale(0.9);
  }

  search-page-input-component .search__reset-button-icon svg {
    width: var(--icon-size-md);
    height: var(--icon-size-md);
  }

  search-page-input-component .search__reset-button--hidden {
    cursor: default;
    opacity: 0;
    transition: opacity var(--animation-speed) var(--animation-easing);
    pointer-events: none;
    visibility: hidden;
  }

  search-page-input-component .search__reset-button-text {
    display: none;
  }
/* END_BLOCK:_search-input */

/* START_BLOCK:_slide (INDEX:136) */
.slide__content {
    height: 100%;
    position: relative;
    z-index: var(--layer-flat);
  }

  .slide__content > * {
    margin: auto;
  }

  .slide__content.background-transparent {
    background-color: transparent;
  }

  slideshow-slide > .slide__image-container {
    display: flex;
    width: 100%;
    height: 100%;
    overflow: hidden;
    position: absolute;
  }

  .slide__image-container > placeholder-image,
  .slide__image-container > placeholder-image > img {
    width: 100%;
  }

  .slide__image-container > .slide__image,
  .slide__image-container > .slide__video,
  .slide__image-container > .slide__video-poster {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  .slide__image-container > .slide__video-poster {
    position: absolute;
  }
/* END_BLOCK:_slide */

/* START_BLOCK:_social-link (INDEX:137) */
.social-icons__icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--icon-size-lg);
  }

  .social-icons__icon {
    display: flex;
    fill: currentColor;
    flex-shrink: 0;
    width: var(--icon-size-lg);
    height: var(--icon-size-lg);
  }

  .social-icons__icon {
    display: none;
  }

  .social-icons__icon-wrapper:has(.social-icons__icon path) {
    width: var(--icon-size-lg);

    .social-icons__icon {
      display: block;
    }

    .social-icons__icon-label {
      display: none;
    }
  }

  /* Disabled state for editor */
  .shopify-design-mode .social-icons__icon-wrapper--disabled {
    opacity: var(--disabled-opacity, 0.5);
    cursor: not-allowed;
  }

  .shopify-design-mode .social-icons__icon-wrapper--disabled a {
    pointer-events: none;
  }
/* END_BLOCK:_social-link */

/* START_BLOCK:accelerated-checkout (INDEX:138) */
.accelerated-checkout-block[data-shopify-visual-preview] {
    width: 300px;
  }

  more-payment-options-link {
    font-size: smaller;
  }

  more-payment-options-link a {
    --button-color: var(--color-primary);
  }

  more-payment-options-link a:hover {
    --button-color: var(--color-primary-hover);
  }

  .shopify-payment-button__more-options[aria-hidden='true'] {
    display: none;
  }
/* END_BLOCK:accelerated-checkout */

/* START_BLOCK:accordion (INDEX:139) */
.accordion {
    flex: 1;
    width: 100%;
  }

  .accordion--dividers accordion-custom:not(:first-child) .details {
    border-block-start: var(--style-border-width) solid var(--color-border);
  }

  /* When accordion borders are not set, show fallback borders */
  .accordion--dividers {
    /* stylelint-disable-next-line declaration-property-value-disallowed-list */
    --show-fallback-borders: 0;
  }

  .accordion--dividers:not([class*='color-'])[style*='--border-width: 0'],
  .accordion--dividers:not([class*='color-'])[style*='--border-style: none'] {
    --show-fallback-borders: 1;
  }

  .accordion--dividers accordion-custom:first-child .details {
    border-block-start: calc(var(--style-border-width) * var(--show-fallback-borders)) solid var(--color-border);
  }

  .accordion--dividers accordion-custom:last-child .details {
    border-block-end: calc(var(--style-border-width) * var(--show-fallback-borders)) solid var(--color-border);
  }

  .accordion--dividers .details-content {
    padding-block-end: var(--padding-sm);
  }

  .accordion--caret .icon-plus,
  .accordion--plus .icon-caret {
    display: none;
  }

  /* because we can't pass apply a specific class on a block based on its parent block setting */
  .accordion .details__header {
    font-family: var(--summary-font-family);
    font-style: var(--summary-font-style);
    font-weight: var(--summary-font-weight);
    font-size: var(--summary-font-size);
    line-height: var(--summary-font-line-height);
    text-transform: var(--summary-font-case);
    min-height: var(--minimum-touch-target);
  }
/* END_BLOCK:accordion */

/* START_BLOCK:buy-buttons (INDEX:143) */
.buy-buttons-block {
    width: 100%;
  }

  /* Oft zusammen gekauft Section */
  .pdp-frequently-bought {
    background: #FFFFFF;
    border-radius: 8px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    
  }

  .pdp-frequently-bought__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.5rem;
  }

  .pdp-frequently-bought__title {
    font-size: 18px;
    font-weight: 700;
    color: #000;
    margin: 0;
    line-height: 1.4;
  }

  .pdp-frequently-bought__badge {
    background: #C80000;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.375rem 0.75rem;
    border-radius: 4px;
    line-height: 1.2;
    white-space: nowrap;
  }

  .pdp-frequently-bought__products {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .pdp-frequently-bought__product {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 0;
    position: relative;
  }

  .pdp-frequently-bought__product-image {
    flex-shrink: 0;
    width: 125px;
    height: 125px;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: #F5F5F5;
  }

  .pdp-frequently-bought__product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .pdp-frequently-bought__product-content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  .pdp-frequently-bought__product-title {
    font-size: 14px;
    font-weight: 400;
    color: #000;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .pdp-frequently-bought__product-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
  }

  .pdp-frequently-bought__price-current {
    font-size: 16px;
    font-weight: 700;
    color: #000;
  }

  .pdp-frequently-bought__price-old {
    font-size: 14px;
    font-weight: 400;
    color: #999;
    text-decoration: line-through;
  }

  .pdp-frequently-bought__product-dropdowns {
    display: flex;
    gap: 0.75rem;
    margin-top: 0.25rem;
  }

  .pdp-frequently-bought__dropdown {
    flex: 1;
    min-width: 0;
    padding: 0.5rem 2rem 0.5rem 0.75rem;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    background: #FFFFFF;
    font-size: 14px;
    color: #000;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23000' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 0.5rem center;
    background-size: 12px;
    cursor: pointer;
  }

  .pdp-frequently-bought__dropdown:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

  .pdp-frequently-bought__product-checkbox {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 0.25rem;
    position: relative;
  }

  .pdp-frequently-bought__checkbox-input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
    cursor: pointer;
  }

  .pdp-frequently-bought__checkbox-label {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    cursor: pointer;
    margin: 0;
  }

  .pdp-frequently-bought__checkbox-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: #E0E0E0;
    border: 1px solid rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    transition: background 0.2s ease, border-color 0.2s ease;
  }

  .pdp-frequently-bought__checkbox-icon svg {
    width: 16px;
    height: 16px;
    color: #FFFFFF;
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .pdp-frequently-bought__checkbox-input:checked + .pdp-frequently-bought__checkbox-label .pdp-frequently-bought__checkbox-icon {
    background: #0066CC;
    border-color: #0066CC;
  }

  .pdp-frequently-bought__checkbox-input:checked + .pdp-frequently-bought__checkbox-label .pdp-frequently-bought__checkbox-icon svg {
    opacity: 1;
  }

  .pdp-frequently-bought__checkbox-input:focus + .pdp-frequently-bought__checkbox-label .pdp-frequently-bought__checkbox-icon {
    outline: 2px solid #0066CC;
    outline-offset: 2px;
  }

  .pdp-frequently-bought__divider {
    height: 1px;
    background: repeating-linear-gradient(
      to right,
      transparent,
      transparent 8px,
      rgba(0, 0, 0, 0.2) 8px,
      rgba(0, 0, 0, 0.2) 10px
    );
    margin: 0;
  }

  .pdp-frequently-bought__summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
  
  }

  .pdp-frequently-bought__summary-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    flex: 1;
    flex-grow: 1;
    min-width: 0;
  }

  .pdp-frequently-bought__summary-label {
    font-size: 14px;
    font-weight: 400;
    color: #000;
  }

  .pdp-frequently-bought__summary-price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .pdp-frequently-bought__summary-price-current {
    font-size: 18px;
    font-weight: 700;
    color: #000;
  }

  .pdp-frequently-bought__summary-price-old {
    font-size: 16px;
    font-weight: 400;
    color: #999;
    text-decoration: line-through;
  }

  .pdp-frequently-bought__summary-savings {
    font-size: 14px;
    font-weight: 400;
    color: #C80000;
  }

  .pdp-frequently-bought__cta {
    background: #FFD700;
    color: #000;
    font-size: 16px;
    font-weight: 700;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.2s ease;
    white-space: nowrap;
    height: fit-content;
    align-self: flex-start;
    flex-shrink: 0;
    min-width: 300px;
    max-width: 35%;
  }

  .pdp-frequently-bought__cta:hover:not(:disabled) {
    background: #FFC700;
  }

  .pdp-frequently-bought__cta:disabled {
    opacity: 0.6;
    cursor: not-allowed;
  }

  /* Mobile Styles */
  @media screen and (max-width: 749px) {
    .pdp-frequently-bought {
      padding: 1rem;
      margin-bottom: 1.5rem;
    }

    .pdp-frequently-bought__header {
      margin-bottom: 1rem;
    }

    .pdp-frequently-bought__title {
      font-size: 16px;
    }

    .pdp-frequently-bought__badge {
      font-size: 11px;
      padding: 0.25rem 0.5rem;
    }

    .pdp-frequently-bought__product {
      flex-wrap: wrap;
      padding: 0.75rem 0;
      position: relative;
    }

    .pdp-frequently-bought__product-image {
      width: 60px;
      height: 60px;
    }

    .pdp-frequently-bought__product-content {
      flex: 1 1 calc(100% - 100px);
      min-width: 200px;
    }

    .pdp-frequently-bought__product-title {
      font-size: 13px;
    }

    .pdp-frequently-bought__product-price {
      gap: 0.375rem;
    }

    .pdp-frequently-bought__price-current {
      font-size: 15px;
    }

    .pdp-frequently-bought__price-old {
      font-size: 13px;
    }

    .pdp-frequently-bought__product-dropdowns {
      flex-direction: column;
      gap: 0.5rem;
      width: 100%;
    }

    .pdp-frequently-bought__product-checkbox {
      position: absolute;
      top: 0.75rem;
      right: 0;
    }

    .pdp-frequently-bought__summary {
      flex-direction: column;
      align-items: stretch;
      gap: 1rem;
    }

    .pdp-frequently-bought__cta {
      width: 100%;
      max-width: none;
      min-width: auto;
      padding: 1rem;
      text-align: center;
    }
  }

  /* Section 3: Buttons – ATC full width; accelerated (Shop Pay) hidden */
  .product-form-buttons.pdp-buybox .pdp-buybox__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 22px;
    align-items: stretch;
  }

  /* Keep “In den Warenkorb” on a single line */
  .product-form-buttons.pdp-buybox .pdp-buybox__actions .add-to-cart-text,
  .product-form-buttons.pdp-buybox .pdp-buybox__actions .add-to-cart-text__content {
    white-space: nowrap;
  }

  .product-form-buttons.pdp-buybox .pdp-buybox__actions .shopify-payment-button,
  .product-form-buttons.pdp-buybox .pdp-buybox__actions .shopify-payment-button__button {
    border-radius: 10px !important;
    min-height: 64px !important;
  }

  /* Force Shop Pay / Buy it now background to the requested purple */
  .product-form-buttons.pdp-buybox .pdp-buybox__actions .shopify-payment-button__button {
    background: #5A31F4 !important;
    color: #FFFFFF !important;
    border: 0 !important;
  }

  .product-form-buttons.pdp-buybox .pdp-buybox__accelerated {
    display: none;
  }

  /* Hide Shopify’s internal label so we can show the exact “Kaufen mit” + logo.
     Shopify sometimes renders the label as a text node (not inside a child element),
     so we hide both: the button text and any inner elements. */
  .product-form-buttons.pdp-buybox .pdp-buybox__actions .shopify-payment-button__button {
    color: transparent !important;
    font-size: 0 !important;
    text-shadow: none !important;
  }

  .product-form-buttons.pdp-buybox .pdp-buybox__actions .shopify-payment-button__button * {
    opacity: 0 !important;
  }

  .product-form-buttons.pdp-buybox .pdp-buybox__shop-pay-overlay {
    position: absolute;
    inset: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    pointer-events: none;
    color: #FFFFFF;
    font-weight: 500;
    font-size: 20px;
    line-height: 1;
  }

  .product-form-buttons.pdp-buybox .pdp-buybox__shop-pay-overlay-logo {
    width: auto;
    height: 26px;
    display: block;
  }

  /* BMPL (More buy, less pay) (PDP) */
  .product-form-buttons.pdp-buybox .pdp-bmpl {
    width: 100%;
    margin-top: 14px;
    background: rgb(243 243 243);
    border-radius: 10px;
    padding: 16px;
  }

  .product-form-buttons.pdp-buybox .pdp-bmpl__heading {
    font-size: 20px;
    font-weight: 600;
    color: var(--color-foreground);
    margin: 0 0 14px;
  }

  .product-form-buttons.pdp-buybox .pdp-bmpl__option {
    background: #FFFFFF;
    border: 1px solid rgb(var(--color-foreground-rgb) / 0.2);
    border-radius: 10px;
    padding: 14px;
    display: grid;
    grid-template-columns: 22px 1fr auto;
    align-items: center;
    column-gap: 12px;
    position: relative;
  }

  .product-form-buttons.pdp-buybox .pdp-bmpl__option + .pdp-bmpl__option {
    margin-top: 14px;
  }

  .product-form-buttons.pdp-buybox .pdp-bmpl__option--selected {
    border-color: rgb(var(--color-foreground-rgb) / 0.55);
  }

  .product-form-buttons.pdp-buybox .pdp-bmpl__radio {
    width: 18px;
    height: 18px;
    border-radius: 999px;
    border: 1.5px solid rgb(var(--color-foreground-rgb) / 0.35);
    display: inline-block;
  }

  .product-form-buttons.pdp-buybox .pdp-bmpl__radio--selected {
    border-color: rgb(var(--color-foreground-rgb) / 0.95);
    position: relative;
  }

  .product-form-buttons.pdp-buybox .pdp-bmpl__radio--selected::after {
    content: '';
    position: absolute;
    inset: 3px;
    border-radius: 999px;
    background: rgb(var(--color-foreground-rgb) / 0.95);
  }

  .product-form-buttons.pdp-buybox .pdp-bmpl__label {
    display: flex;
    align-items: baseline;
    gap: 10px;
    min-width: 0;
  }

  .product-form-buttons.pdp-buybox .pdp-bmpl__qty {
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: rgb(var(--color-foreground-rgb) / 0.9);
    white-space: nowrap;
  }

  .product-form-buttons.pdp-buybox .pdp-bmpl__discount {
    font-size: 18px;
    font-weight: 700;
    color: #C00000;
    white-space: nowrap;
  }

  .product-form-buttons.pdp-buybox .pdp-bmpl__price {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
    justify-self: end;
    position: static;
    padding-left: 0;
  }

  .product-form-buttons.pdp-buybox .pdp-bmpl__price-desktop,
  .product-form-buttons.pdp-buybox .pdp-bmpl__price-mobile {
    font-size: 22px;
    font-weight: 700;
    color: rgb(var(--color-foreground-rgb) / 0.95);
    line-height: 1;
  }

  .product-form-buttons.pdp-buybox .pdp-bmpl__price-mobile {
    display: none;
  }

  .product-form-buttons.pdp-buybox .pdp-bmpl__per {
    font-size: 14px;
    font-weight: 500;
    color: rgb(var(--color-foreground-rgb) / 0.65);
    white-space: nowrap;
  }

  .product-form-buttons.pdp-buybox .pdp-bmpl__badge {
    position: absolute;
    top: -14px;
    right: 16px;
    background: #B00000;
    color: #FFFFFF;
    font-size: 14px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 4px;
    line-height: 1;
    white-space: nowrap;
    z-index: 2;
  }

  .product-form-buttons.pdp-buybox .pdp-bmpl__details {
    grid-column: 1 / -1;
    margin-top: 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .product-form-buttons.pdp-buybox .pdp-bmpl__row {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: center;
  }

  .product-form-buttons.pdp-buybox .pdp-bmpl__index {
    font-size: 14px;
    font-weight: 500;
    color: rgb(var(--color-foreground-rgb) / 0.7);
  }

  .product-form-buttons.pdp-buybox .pdp-bmpl__fields {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .product-form-buttons.pdp-buybox .pdp-bmpl__field {
    border: 1px solid rgb(var(--color-foreground-rgb) / 0.18);
    border-radius: 8px;
    background: #FFFFFF;
    height: 44px;
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 10px;
  }

  .product-form-buttons.pdp-buybox .pdp-bmpl__thumb {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    object-fit: cover;
    display: block;
    flex: 0 0 auto;
  }

  .product-form-buttons.pdp-buybox .pdp-bmpl__select {
    width: 100%;
    height: 100%;
    border: 0;
    background: transparent;
    font-size: 16px;
    font-weight: 500;
    color: rgb(var(--color-foreground-rgb) / 0.85);
    appearance: none;
    padding-right: 26px;
    outline: none;
    transition: opacity 0.2s ease, cursor 0.2s ease;
  }

  .product-form-buttons.pdp-buybox .pdp-bmpl__select:disabled,
  .product-form-buttons.pdp-buybox .pdp-bmpl__select[aria-disabled="true"] {
    opacity: 0.6;
    cursor: not-allowed;
    pointer-events: none;
  }

  .product-form-buttons.pdp-buybox .pdp-bmpl__field {
    position: relative;
  }

  .product-form-buttons.pdp-buybox .pdp-bmpl__field::after {
    content: '';
    position: absolute;
    right: 12px;
    width: 10px;
    height: 10px;
    border-right: 2px solid rgb(var(--color-foreground-rgb) / 0.55);
    border-bottom: 2px solid rgb(var(--color-foreground-rgb) / 0.55);
    transform: rotate(45deg);
    pointer-events: none;
  }

  .product-form-buttons.pdp-buybox .pdp-bmpl__cta {
    width: 100%;
    height: 64px;
    border: 0;
    border-radius: 8px;
    background: #FFD334;
    color: #111111;
    font-size: 18px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }

  .product-form-buttons.pdp-buybox .pdp-bmpl__cta-icon {
    width: 22px;
    height: 22px;
    display: block;
  }

  @media screen and (max-width: 749px) {
    .product-form-buttons.pdp-buybox .pdp-bmpl {
      padding: 14px;
    }

    .product-form-buttons.pdp-buybox .pdp-bmpl__heading {
      font-size: 18px;
    }

    .product-form-buttons.pdp-buybox .pdp-bmpl__price-desktop {
      display: none;
    }

    .product-form-buttons.pdp-buybox .pdp-bmpl__price-mobile {
      display: inline;
    }

    .product-form-buttons.pdp-buybox .pdp-bmpl__fields {
      gap: 12px;
    }

    .product-form-buttons.pdp-buybox .pdp-bmpl__cta {
      height: 58px;
      font-size: 17px;
    }
  }

  /* Bulk deals cards (PDP) */
  .product-form-buttons.pdp-buybox .pdp-bulk-deals {
    width: 100%;
    margin-top: 14px;
    background: #FFFFFF;
    border: 1px solid rgb(var(--color-foreground-rgb) / 0.15);
    border-radius: 10px;
    padding: 18px;
  }

  .product-form-buttons.pdp-buybox .pdp-bulk-deals__heading {
    font-size: 26px;
    font-weight: 700;
    line-height: 1.15;
    margin: 0 0 8px;
    color: var(--color-foreground);
  }

  .product-form-buttons.pdp-buybox .pdp-bulk-deals__sub {
    font-size: 16px;
    font-weight: 400;
    color: rgb(var(--color-foreground-rgb) / 0.65);
    margin: 0 0 18px;
  }

  .product-form-buttons.pdp-buybox .pdp-bulk-deals__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
  }

  .product-form-buttons.pdp-buybox .pdp-bulk-deals__card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .product-form-buttons.pdp-buybox .pdp-bulk-deals__collage {
    width: 100%;
    border: 2px solid rgb(var(--color-foreground-rgb) / 0.15);
    border-radius: 4px;
    background: #FFFFFF;
    padding: 14px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 14px;
    aspect-ratio: 1 / 1;
    overflow: hidden;
  }

  .product-form-buttons.pdp-buybox .pdp-bulk-deals__cell {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 999px;
    overflow: hidden;
    background: #FFFFFF;
  }

  .product-form-buttons.pdp-buybox .pdp-bulk-deals__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    border-radius: 999px;
  }

  .product-form-buttons.pdp-buybox .pdp-bulk-deals__cell--placeholder {
    border-radius: 999px;
    background: rgb(var(--color-foreground-rgb) / 0.06);
  }

  .product-form-buttons.pdp-buybox .pdp-bulk-deals__badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #B00000;
    color: #FFFFFF;
    font-size: 16px;
    font-weight: 700;
    padding: 8px 16px;
    border-radius: 4px;
    line-height: 1;
    white-space: nowrap;
    z-index: 2;
  }

  .product-form-buttons.pdp-buybox .pdp-bulk-deals__count {
    margin-top: 14px;
    font-size: 12px;
    font-weight: 500;
    color: rgb(var(--color-foreground-rgb) / 0.7);
  }

  .product-form-buttons.pdp-buybox .pdp-bulk-deals__price-row {
    margin-top: 8px;
    display: inline-flex;
    align-items: baseline;
    gap: 8px;
  }

  .product-form-buttons.pdp-buybox .pdp-bulk-deals__price {
    font-size: 14px;
    font-weight: 700;
    color: rgb(var(--color-foreground-rgb) / 0.95);
  }

  .product-form-buttons.pdp-buybox .pdp-bulk-deals__per {
    font-size: 12px;
    font-weight: 500;
    color: rgb(var(--color-foreground-rgb) / 0.65);
  }

  .product-form-buttons.pdp-buybox .pdp-bulk-deals__compare-row {
    margin-top: 6px;
    display: inline-flex;
    align-items: baseline;
    gap: 10px;
  }

  .product-form-buttons.pdp-buybox .pdp-bulk-deals__compare {
    font-size: 12px;
    font-weight: 400;
    color: rgb(var(--color-foreground-rgb) / 0.45);
    text-decoration: line-through;
  }

  .product-form-buttons.pdp-buybox .pdp-bulk-deals__save {
    font-size: 12px;
    font-weight: 700;
    color: #C00000;
  }

  .product-form-buttons.pdp-buybox .pdp-bulk-deals__cta {
    margin-top: 16px;
    width: 100%;
    height: 60px;
    border: 0;
    border-radius: 6px;
    background: #FFD334;
    color: #111111;
    font-size: 20px;
    font-weight: 700;
  }

  @media screen and (max-width: 749px) {
    .product-form-buttons.pdp-buybox .pdp-bulk-deals {
      padding: 16px;
    }

    .product-form-buttons.pdp-buybox .pdp-bulk-deals__heading {
      font-size: 28px;
    }

    .product-form-buttons.pdp-buybox .pdp-bulk-deals__grid {
      gap: 14px;
    }

    .product-form-buttons.pdp-buybox .pdp-bulk-deals__cta {
      height: 56px;
      font-size: 18px;
    }
  }

  /* PDP recommended (Frame 1410102208) */
  .product-form-buttons.pdp-buybox .pdp-rec {
    width: 100%;
    background: #FFFFFF;
    border: 1px solid rgb(var(--color-foreground-rgb) / 0.15);
    border-radius: 10px;
    padding: 14px;
  }

  .product-form-buttons.pdp-buybox .pdp-rec__heading {
    font-size: 22px;
    font-weight: 600;
    color: rgb(var(--color-foreground-rgb) / 0.9);
    margin: 0 0 12px;
  }

  .product-form-buttons.pdp-buybox .pdp-rec__list {
    display: flex;
    flex-direction: column;
  }

  .product-form-buttons.pdp-buybox .pdp-rec__item {
    display: grid;
    grid-template-columns: 180px 1fr;
    gap: 18px;
    padding: 16px 0;
    align-items: start;
  }

  .product-form-buttons.pdp-buybox .pdp-rec__item + .pdp-rec__item {
    border-top: 1px dashed rgb(var(--color-foreground-rgb) / 0.2);
  }

  .product-form-buttons.pdp-buybox .pdp-rec__media {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 0;
    background: rgb(245 245 245);
  }

  .product-form-buttons.pdp-buybox .pdp-rec__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .product-form-buttons.pdp-buybox .pdp-rec__img--placeholder {
    width: 100%;
    height: 100%;
    background: rgb(var(--color-foreground-rgb) / 0.06);
  }

  .product-form-buttons.pdp-buybox .pdp-rec__ribbon {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 56px;
    height: 56px;
    background: #C00000;
    color: #FFFFFF;
    font-weight: 800;
    font-size: 12px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-bottom: 4px;
    clip-path: polygon(0 0, 100% 0, 100% 80%, 50% 100%, 0 80%);
  }

  .product-form-buttons.pdp-buybox .pdp-rec__title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.3;
    color: rgb(var(--color-foreground-rgb) / 0.9);
    margin-bottom: 10px;
  }

  .product-form-buttons.pdp-buybox .pdp-rec__prices {
    display: inline-flex;
    flex-wrap: wrap;
    gap: 10px;
    align-items: baseline;
    margin-bottom: 14px;
  }

  .product-form-buttons.pdp-buybox .pdp-rec__price {
    font-size: 20px;
    font-weight: 700;
    color: rgb(var(--color-foreground-rgb) / 0.95);
  }

  .product-form-buttons.pdp-buybox .pdp-rec__compare {
    font-size: 16px;
    font-weight: 400;
    color: rgb(var(--color-foreground-rgb) / 0.45);
    text-decoration: line-through;
  }

  .product-form-buttons.pdp-buybox .pdp-rec__discount {
    font-size: 16px;
    font-weight: 700;
    color: #C00000;
    white-space: nowrap;
  }

  .product-form-buttons.pdp-buybox .pdp-rec__cta {
    width: 100%;
    height: 56px;
    border: 0;
    border-radius: 6px;
    background: #FFD334;
    color: #111111;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 16px;
  }

  .product-form-buttons.pdp-buybox .pdp-rec__cta-icon {
    width: 20px;
    height: 20px;
    display: block;
  }

  .product-form-buttons.pdp-buybox .pdp-rec__cta-mobile {
    display: inline;
  }
  
  .product-form-buttons.pdp-buybox .pdp-rec__cta-desktop {
    display: none;
  }

  @media screen and (max-width: 749px) {
    .product-form-buttons.pdp-buybox .pdp-rec {
      /* keep same container border on mobile too */
    }

    .product-form-buttons.pdp-buybox .pdp-rec__heading {
      font-size: 18px;
      margin-bottom: 10px;
    }

    .product-form-buttons.pdp-buybox .pdp-rec__item {
      grid-template-columns: 92px 1fr;
      gap: 14px;
      padding: 14px 0;
    }

    .product-form-buttons.pdp-buybox .pdp-rec__title {
      font-size: 14px;
      margin-bottom: 8px;
    }

    .product-form-buttons.pdp-buybox .pdp-rec__price {
      font-size: 16px;
    }

    .product-form-buttons.pdp-buybox .pdp-rec__compare,
    .product-form-buttons.pdp-buybox .pdp-rec__discount {
      font-size: 13px;
    }

    .product-form-buttons.pdp-buybox .pdp-rec__cta {
      height: 48px;
      font-size: 16px;
    }

    .product-form-buttons.pdp-buybox .pdp-rec__cta-desktop {
      display: none !important;
    }

    .product-form-buttons.pdp-buybox .pdp-rec__cta-mobile {
      display: inline !important;
    }
  }

  /* Why ShopLC card (PDP) */
  .product-form-buttons.pdp-buybox .pdp-why-shoplc {
    width: 100%;
    margin-top: 14px;
    background: #FFFFFF;
    border: 1px solid rgb(var(--color-foreground-rgb) / 0.15);
    border-radius: 8px;
    padding: 16px;
    position: relative;
  }

  .product-form-buttons.pdp-buybox .pdp-why-shoplc__heading {
    font-size: 18px;
    font-weight: 600;
    margin: 0 0 14px;
    color: var(--color-foreground);
  }

  .product-form-buttons.pdp-buybox .pdp-why-shoplc__pill {
    display: none;
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: #FFFFFF;
    border: 1px solid rgb(var(--color-foreground-rgb) / 0.15);
    border-radius: 999px;
    padding: 6px 12px;
    gap: 8px;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
  }

  .product-form-buttons.pdp-buybox .pdp-why-shoplc__pill-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-foreground);
    line-height: 1;
  }

  .product-form-buttons.pdp-buybox .pdp-why-shoplc__pill-heart {
    width: 18px;
    height: 18px;
    display: block;
  }

  .product-form-buttons.pdp-buybox .pdp-why-shoplc__items {
    display: flex;
    gap: 28px;
    align-items: center;
    justify-content: space-between;
  }

  .product-form-buttons.pdp-buybox .pdp-why-shoplc__item {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1 1 0;
    min-width: 0;
  }

  .product-form-buttons.pdp-buybox .pdp-why-shoplc__icon {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: rgb(234 242 255);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
  }

  .product-form-buttons.pdp-buybox .pdp-why-shoplc__icon-img {
    width: 24px;
    height: 24px;
    display: block;
    object-fit: contain;
  }

  .product-form-buttons.pdp-buybox .pdp-why-shoplc__text {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
  }

  .product-form-buttons.pdp-buybox .pdp-why-shoplc__line {
    font-size: 14px;
    line-height: 1.2;
    color: rgb(var(--color-foreground-rgb) / 0.8);
  }

  .product-form-buttons.pdp-buybox .pdp-why-shoplc__line strong {
    color: var(--color-foreground);
    font-weight: 700;
  }

  @media screen and (max-width: 749px) {
    .product-form-buttons.pdp-buybox .pdp-why-shoplc {
      padding-top: 26px;
    }

    .product-form-buttons.pdp-buybox .pdp-why-shoplc__heading {
      display: none;
    }

    .product-form-buttons.pdp-buybox .pdp-why-shoplc__pill {
      display: inline-flex;
    }

    .product-form-buttons.pdp-buybox .pdp-why-shoplc__items {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      justify-content: center;
    }

    .product-form-buttons.pdp-buybox .pdp-why-shoplc__item {
      flex-direction: column;
      text-align: center;
      gap: 10px;
    }

    .product-form-buttons.pdp-buybox .pdp-why-shoplc__text {
      align-items: center;
    }
  }

  @media screen and (max-width: 749px) {
    .product-form-buttons.pdp-buybox .pdp-payment-mode {
      padding: 14px;
    }
    .product-form-buttons.pdp-buybox .pdp-payment-mode__heading {
      font-size: 18px;
    }
    
  }

  /* Hide default quantity label/rules in this layout */
  .product-form-buttons.pdp-buybox .quantity-label,
  .product-form-buttons.pdp-buybox .quantity-rules {
    display: none !important;
  }

  @media screen and (max-width: 749px) {
    .pdp-buybox__row {
      grid-template-columns: 1fr auto 1fr;
      gap: 8px 12px;
      min-height: 48px;
    }

    .pdp-buybox__top {
      min-height: 48px;
    }

    .product-form-buttons.pdp-buybox .pdp-buybox__stock {
      font-size: 12px;
      margin: 0;
    }

    .pdp-buybox__price-compare {
      font-size: 14px;
    }

    .pdp-buybox__discount {
      font-size: 14px;
      padding: 7px 10px;
    }
  }

  .product-form-buttons:not(:has(.quantity-rules)) {
    gap: calc(var(--gap-sm) / 2);

    @media screen and (min-width: 750px) {
      gap: var(--gap-sm);
    }
  }

  .product-form-buttons > *:not(.quantity-selector, .quantity-rules, .quantity-label) {
    flex: 1 1 185px;
    min-width: fit-content;
  }

  .product-form-buttons--stacked > *:not(.quantity-selector, .quantity-rules, .quantity-label) {
    flex-basis: 51%; /* Force the buttons to be on separate rows */
  }

  .product-form-buttons button {
    width: 100%;
    padding-inline: var(--padding-4xl);
    padding-block: var(--padding-lg);
  }

  .quantity-selector {
    flex-grow: 0;
    flex-shrink: 0;
    height: var(--height-buy-buttons);
  }

  .product-form-buttons:has(.quantity-rules) .quantity-selector {
    margin-inline-end: var(--gap-sm);
    margin-block-end: var(--gap-sm);
  }

  .quantity-selector:has(+ .quantity-rules) {
    margin-block-end: 0;
  }

  .add-to-cart-button {
    height: var(--height-buy-buttons);
    text-transform: var(--button-text-case-primary);
  }

  .add-to-cart-button.button-secondary {
    text-transform: var(--button-text-case-secondary);
  }

  .product-form-buttons .shopify-payment-button__button {
    width: 100%;
    min-height: var(--minimum-touch-target);
  }

  .product-form-text__error {
    display: flex;
    align-items: flex-start;
    gap: var(--gap-xs);
    margin-block-end: var(--gap-xs);
  }

  .quantity-label {
    flex: 1 0 100%;
    width: 100%;
    font-size: var(--font-size--sm);
    margin-block-end: var(--gap-xs);
  }

  .quantity-label__cart-count {
    color: var(--color-foreground-secondary);
  }

  .quantity-rules {
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    row-gap: calc(var(--gap-xs) / 2);
    flex: 1 0 100%;
    width: 100%;
    font-size: var(--font-size--xs);
    color: var(--color-foreground-secondary);
    margin-block-start: var(--gap-xs);
    margin-block-end: var(--gap-2xl);
  }

  .quantity-rules__item {
    position: relative;
    display: inline-block;
  }

  .quantity-rules__item:not(:last-child) {
    padding-right: var(--padding-xl);
    margin-right: var(--margin-2xs);
  }

  .quantity-rules__item:not(:last-child)::after {
    content: '•';
    position: absolute;
    inset-inline-end: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.5em;
    line-height: 0;
  }

  .product__pickup-availabilities {
    width: 100%;
  }

  .pickup-availability__column {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
  }

  .pickup-availability__row {
    display: flex;
    gap: var(--padding-xs);
  }

  .pickup-availability__dialog-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }

  .pickup-availability__header-container {
    padding-block-end: var(--padding-2xl);
  }

  .pickup-location__wrapper {
    display: flex;
    flex-direction: column;
    padding-block: var(--padding-2xl);
    border-top: 1px solid var(--color-border);
    gap: var(--padding-xs);
  }

  .pickup-location__address-wrapper {
    display: flex;
    flex-direction: column;
    gap: var(--padding-md);
  }

  .pickup-location__dialog {
    padding: var(--padding-2xl);
    position: fixed;
    border-radius: 0;
    width: var(--sidebar-width);
    max-width: 95vw;
    height: 100%;
    margin: 0 0 0 auto;
    border: var(--style-border-drawer);
    box-shadow: var(--shadow-drawer);
    background-color: var(--color-background);
  }

  .pickup-location__dialog:modal {
    max-height: 100dvh;
  }

  .pickup-location__text-sm {
    font-size: var(--font-size--sm);
    margin: 0;
  }

  .pickup-location__text-xs {
    font-size: var(--font-size--xs);
    margin: 0;
  }

  .pickup-location__button {
    width: fit-content;
    color: var(--color-primary);
    font-size: var(--font-size--xs);
    font-family: var(--font-body--family);
    padding: 0;
    cursor: pointer;
    margin-block: var(--margin-xs);
  }

  .pickup-location__button:hover {
    color: var(--color-primary-hover);
  }

  .pickup-location__h4 {
    margin: 0;
  }

  .pickup-location__text-bold {
    font-size: var(--font-size--md);
    font-weight: 600;
    margin: 0;
  }

  .pickup-location__availability-wrapper {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
    font-family: var(--font-paragraph--family);
  }

  .pickup-location__address {
    font-style: normal;
  }

  .pickup-location__close-button {
    top: calc(var(--padding-2xl) - (var(--icon-size-xs) / 2));
    right: calc(var(--padding-2xl) - var(--icon-size-xs));
  }

  /* Enhance Brand Content Section */
  .pdp-brand-content {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-top: var(--spacing-md);
  }

  .pdp-brand-content__story {
    width: 100%;
  }

  .pdp-brand-content__story .rte {
    font-family: var(--font-body);
    color: var(--color-foreground);
  }

  .pdp-brand-content__blocks {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: var(--spacing-md);
  }

  .pdp-brand-content__block {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: var(--spacing-sm);
  }

  .pdp-brand-content__block-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius);
  }

  .pdp-brand-content__block-text {
    font-family: var(--font-body);
    color: var(--color-foreground);
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
  }

  .pdp-brand-content__banner {
    width: 100%;
  }

  .pdp-brand-content__banner-link {
    display: block;
    width: 100%;
    text-decoration: none;
  }

  .pdp-brand-content__banner-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: var(--border-radius);
  }

  @media screen and (min-width: 750px) {
    .pdp-brand-content__blocks {
      gap: var(--spacing-lg);
    }

    .pdp-brand-content__block {
      gap: var(--spacing-md);
    }
  }

  .pdp-live-auction-cta {
    margin-block-end: 12px;
  }

  .pdp-live-auction-cta__button {
    width: 100%;
    text-align: center;
    background: #EB254B !important;
    border-color: #EB254B !important;
    color: #FFFFFF !important;
  }

  .pdp-live-auction-cta__button:hover,
  .pdp-live-auction-cta__button:focus-visible {
    background: #D91E42 !important;
    border-color: #D91E42 !important;
    color: #FFFFFF !important;
  }
/* END_BLOCK:buy-buttons */

/* START_BLOCK:buy-more-save-more (INDEX:144) */
.bmsm {
    --bmsm-background: #F1F1F1;
    --bmsm-background-secondary: #f5f5f5;
    --bmsm-background-selected: #f5f5f5;
    --bmsm-text: #191919;
    --bmsm-text-secondary: #444444;
    --bmsm-text-muted: #888888;
    --bmsm-accent: #787fde;
    --bmsm-badge-new: #bc0514;
    --bmsm-badge-popular: linear-gradient(90deg, #5860c8 0%, #868ce0 100%);
    --bmsm-badge-value: linear-gradient(90deg, #c2000c 0%, #d75960 100%);
    --bmsm-radius: 5px;
    --bmsm-radius-sm: 3px;
    --bmsm-spacing-xs: 4px;
    --bmsm-spacing-sm: 8px;
    --bmsm-spacing-md: 12px;
    --bmsm-spacing-lg: 15px;
    --bmsm-spacing-xl: 20px;

    width: 100%;
    font-family: 'Nunito Sans', sans-serif;
  }

  .bmsm__container {
    border-radius: var(--bmsm-radius);
    padding: 15px 18px;
    margin: 15px 0;
    background: var(--bmsm-background);
  }

  /* Header */
  .bmsm__header {
    margin-bottom: 10px;
  }

  .bmsm__header-content {
    display: flex;
    align-items: center;
  }

  .bmsm__title {
    margin: 0;
    font-size: 16px;
    color: #191919;
  }

  /* Badges */
  .bmsm__badge {
    font-size: 10px;
    font-weight: 600;
    /* text-transform: uppercase; */
    padding: 2px 4px;
    border-radius: 1px;
    color: #fff;
    line-height: 1.5;
  }

  .bmsm__badge--popular {
    background: #B1020C;
    font-size: 14px;
    padding: 2px 8px;
    border-radius: 2px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    background-position: center;
    overflow: hidden;
    border: 1px solid #FFFFFF;
    text-wrap: nowrap;
  }

  .bmsm__badge--popular .bmsm__badge-icon {
    width: 14px;
    height: 14px;
    flex: 0 0 14px;
    display: block;
    object-fit: contain;
  }

  .purchase-in-bulk__product-badge {
    margin-bottom: 0;
    position: absolute;
    background: linear-gradient(270deg, #ef9f2a 0%, #fc5e64 100%);
    padding: 1px 18px;
    top: -10px;
    z-index: 1;
    border-radius: 2px;
    color: #fff;
    font-weight: 700;
  }

  /* Tiers */
  .bmsm__tiers {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-inline: 0;
  }

  .bmsm__tier {
    background: #FFFFFF;
    border-radius: var(--bmsm-radius);
    padding: 15px 12px;
    margin: 0;
    transition: background-color 0.2s ease;
  }

  .bmsm__tier--selected {
    border: 1px solid #919191;
  }

  .bmsm__tier-header {
    display: flex;
    align-items: center;
    gap: var(--bmsm-spacing-sm);
    cursor: pointer;
    flex-wrap: wrap;
    position: relative;
  }

  /* Custom Radio Button */
  .bmsm__tier-radio {
    position: absolute;
    opacity: 0;
    pointer-events: none;
  }

  .bmsm__tier-radio-custom {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 1px solid #DDDDDD;
    background-color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    transition: border-color 0.2s ease, background-color 0.2s ease;
  }

  .bmsm__tier-radio-custom::after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    display: block;
    background-color: #191919;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.2s ease, width 0.2s ease, height 0.2s ease;
  }

  .bmsm__tier-radio:checked + .bmsm__tier-radio-custom {
    border-color: #191919;
  }

  .bmsm__tier-radio:checked + .bmsm__tier-radio-custom::after {
    width: 16px;
    height: 16px;
    opacity: 1;
  }

  .bmsm__tier-label {
    font-size: 14px;
    font-weight: 400;
    color: var(--bmsm-text);
    line-height: 1.5;
  }

  .bmsm__tier-discount {
    color: #B1020C;
    font-weight: 700;
    font-size: 18px;
  }

  .bmsm__tier-price {
    display: flex;
    align-items: center;
    gap: 3px;
    margin-left: auto;
  }

  /* Badge inside price container */
  .bmsm__tier-price .bmsm__badge {
    position: absolute;
    bottom: 100%;
    right: 10%;
  }

  .bmsm__price-amount {
    font-size: 18px;
    font-weight: 700;
    color: var(--bmsm-text);
    line-height: 1.5;
  }

  .bmsm__price-separator {
    font-size: 18px;
    font-weight: 500;
    color: var(--bmsm-text);
    line-height: 1.5;
  }

  .bmsm__price-unit {
    font-size: 14px;
    font-weight: 400;
    color: #626161;
    line-height: 1.5;
  }

  /* Variant Selection */
  .bmsm__variants-container {
    margin-top: 19px;
    padding: 0 12px;
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .bmsm__variant-row {
    display: flex;
    align-items: flex-start;
    align-items: center;
    gap: 12px;
  }

  .bmsm__variant-number {
    font-size: 14px;
    font-weight: 500;
    color: #626161;
    min-width: 19px;
    line-height: 1.5;
    flex-shrink: 0;
  }

  .bmsm__variant-selects {
    display: flex;
    gap: 12px;
    flex: 1;
    min-width: 0;
    flex-wrap: wrap;
  }

  /* Custom Dropdown with Swatches */
  .bmsm__custom-dropdown-wrapper {
    flex: 1;
    position: relative;
    min-width: 0;
    max-width: 100%;
  }

  .bmsm__custom-dropdown-button {
    width: 100%;
    padding: 7px 24px 7px 12px;
    font-size: 14px;
    font-weight: 400;
    color: #626161;
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    text-align: left;
    line-height: 1.5;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    transition: border-color 0.2s ease;
    min-height: 40px;
  }

  .bmsm__custom-dropdown-button:hover {
    border-color: #191919;
  }

  .bmsm__custom-dropdown-button[aria-expanded='true'] .bmsm__select-icon svg {
    transform: rotate(180deg);
  }

  .bmsm__custom-dropdown-selected {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
    max-width: 100%;
  }

  .bmsm__custom-dropdown-text {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
    font-size: 14px;
    font-weight: 400;
    color: #626161;
  }

  /* Bold only the selected value (not the label) */
  .bmsm__custom-dropdown-text .bmsm__selected-value {
    font-weight: 600;
    color: #191919;
  }

  .bmsm__custom-dropdown-list {
    position: absolute;
    top: calc(100% + 5px);
    bottom: auto;
    left: 0;
    right: 0;
    background: #f6f6f6;
    border: 1px solid #DDDDDD;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 1000;
    margin: 0;
    padding: 0;
    list-style: none;
    scrollbar-width: thin;
    scrollbar-color: #bbbbbb var(--bmsm-background);
  }

  .bmsm__custom-dropdown-list::-webkit-scrollbar {
    width: 8px;
  }

  .bmsm__custom-dropdown-list::-webkit-scrollbar-track {
    background: var(--bmsm-background);
    border-radius: 4px;
  }

  .bmsm__custom-dropdown-list::-webkit-scrollbar-thumb {
    background: #bbbbbb;
    border-radius: 4px;
  }

  .bmsm__custom-dropdown-list::-webkit-scrollbar-thumb:hover {
    background: #999999;
  }

  /* Show swatch preview in button for first option only */
  .bmsm__custom-dropdown-button[data-option-index='0'] .bmsm__swatch-preview {
    display: flex !important;
  }

  .bmsm__custom-dropdown-button[data-option-index]:not([data-option-index='0']) .bmsm__swatch-preview {
    display: none !important;
  }

  /* Ensure button content is flex for proper layout */
  .bmsm__custom-dropdown-selected {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
    flex: 1;
    min-width: 0;
    max-width: 100%;
  }

  .bmsm__custom-dropdown-item {
    padding: 6px 6px 6px 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #DDDDDD;
  }

  .bmsm__custom-dropdown-item:hover:not(.bmsm__custom-dropdown-item--disabled) {
    background: var(--bmsm-background-secondary);
  }

  .bmsm__custom-dropdown-item--selected {
    background: var(--bmsm-background-selected);
    font-weight: 600;
  }

  .bmsm__custom-dropdown-item--disabled {
    opacity: 0.6;
    cursor: not-allowed;
    color: var(--bmsm-text-muted);
  }

  .bmsm__custom-dropdown-item-content {
    display: flex;
    align-items: center;
    gap: var(--bmsm-spacing-sm);
    width: 100%;
  }

  .bmsm__swatch-preview {
    width: 30px;
    height: 30px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .bmsm__swatch-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .bmsm__custom-dropdown-item-text {
    flex: 1;
    font-weight: 400;
  }

  /* Only selected items in dropdown list should be bold */
  .bmsm__custom-dropdown-item--selected .bmsm__custom-dropdown-item-text {
    font-weight: 600;
  }

  .bmsm__select-icon {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .bmsm__select-icon svg {
    width: 10px;
    height: 5px;
    transform: rotate(0deg);
    transform-origin: 50% 50%;
    transition: transform 0.2s ease;
  }
  
  @media (prefers-reduced-motion: reduce) {
    .bmsm__select-icon svg {
      transition: none;
    }
  }

  /* Actions */
  /* .bmsm__actions {
    margin-top: var(--bmsm-spacing-md);
  } */

  .bmsm__actions--no-variants {
    padding: var(--bmsm-spacing-md) 0;
  }

  .bmsm__add-to-cart {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--bmsm-spacing-sm);
    padding: 0 20px;
    height: 48px;
    background: #FFD334;
    color: #191919;
    border: none;
    border-radius: 5px;
    border: 1px solid #E0B629;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    cursor: pointer;
    transition: opacity 0.2s ease, background-color 0.2s ease;
  }

  .bmsm__add-to-cart:hover:not(:disabled) {
    opacity: 0.9;
  }

  .bmsm__add-to-cart:disabled:not([data-added='true']) {
    opacity: 0.5;
    cursor: not-allowed;
  }

  /* Maintain enabled color during animation */
  .bmsm__add-to-cart[data-added='true']:disabled {
    opacity: 1;
    cursor: default;
  }

  .bmsm__add-to-cart:focus {
    outline: 2px solid var(--bmsm-accent);
    outline-offset: 2px;
  }

  .bmsm__cart-icon {
    width: 21px;
    height: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .bmsm__cart-icon svg {
    width: 100%;
    height: 100%;
  }

  .bmsm__cart-text {
    display: flex;
    gap: var(--bmsm-spacing-sm);
    align-items: center;
    justify-content: center;
  }

  .bmsm__cart-text__content {
    white-space: nowrap;
  }

  .bmsm__add-to-cart-unit-price {
    display: none;
    white-space: nowrap;
    font-weight: 500;
  }

  .bmsm__add-to-cart-unit-price-separator {
    margin: 0;
  }

  /* Error message styling */
  .bmsm__actions .product-form-text__error {
    display: flex;
    align-items: flex-start;
    gap: var(--gap-xs);
    margin-block-end: var(--gap-xs);
    flex: 0 0 100% !important;
    color: #8c0008;
    font-size: 0.875rem;
  }

  .bmsm__actions .product-form-text__error.hidden {
    display: none;
  }

  .bmsm__actions .product-form-icon--error {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
  }

  .bmsm__actions .product-form-icon--error svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
  }

  /* Checkmark burst animation - only button-specific styles needed */
  .bmsm__add-to-cart {
    position: relative;
    --text-speed: 0.26;
    --base-delay: calc(var(--text-speed) * 0.25);
    --tick-speed: 0.1;
    --ring-speed: 0.2;
    --check-speed: 0.2;
    --burst-speed: 0.32;
    --step-delay: 3;
  }

  .bmsm__add-to-cart .add-to-cart-checkmark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease, transform 0.18s ease;
  }

  .bmsm__add-to-cart[data-added='true'] .add-to-cart-checkmark {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }

  .bmsm__add-to-cart[data-added='true'] .bmsm__cart-text {
    opacity: 0;
    filter: blur(2px);
    transform: translateY(4px);
  }

  @media (prefers-reduced-motion: reduce) {
    .bmsm__add-to-cart .add-to-cart-checkmark {
      transition: none;
    }
  }

  .bmsm__add-to-cart .add-to-cart__added {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
  }

  .bmsm__add-to-cart .add-to-cart__added-icon {
    width: 32px;
    height: 32px;
  }

  /* Show checkmark on success - checkmark-burst base styles are global */
  .bmsm__add-to-cart[data-added='true'] .checkmark-burst {
    opacity: 1;
  }

  /* Animation states for checkmark elements */
  .bmsm__add-to-cart[data-added='true'] {
    .check {
      opacity: 1;
      scale: 1;
      filter: blur(0);
    }

    .tick {
      scale: 1.75;
    }

    .ring {
      opacity: 0;
      scale: 1;
    }

    .line {
      stroke-dashoffset: 1.5;
    }

    .bmsm__cart-text {
      /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
      clip-path: circle(0% at 50% 50%);
      filter: blur(2px);
      opacity: 0;
      translate: 0 4px;
    }
  }

  @media (prefers-reduced-motion: no-preference) {
    .bmsm__add-to-cart[data-added='true'] {
      .check {
        transition-property: opacity, scale, filter;
        transition-duration: calc(calc(var(--check-speed) * 1s));
        transition-delay: calc((var(--base-delay) * 1s));
        transition-timing-function: var(--ease-out-quad);
      }

      .tick {
        transition-property: scale;
        transition-duration: calc((calc(var(--tick-speed) * 1s)));
        transition-delay: calc(((var(--base-delay) + (var(--check-speed) * (var(--step-delay) * 1.1))) * 1s));
        transition-timing-function: ease-out;
      }

      .ring {
        transition-property: opacity, scale;
        transition-duration: calc((calc(var(--ring-speed) * 1s)));
        transition-delay: calc(((var(--base-delay) + (var(--check-speed) * var(--step-delay))) * 1s));
        transition-timing-function: var(--ease-out-quad);
      }

      .line {
        transition-property: stroke-dashoffset;
        transition-duration: calc((calc(var(--burst-speed) * 1s)));
        transition-delay: calc(((var(--base-delay) + (var(--check-speed) * var(--step-delay))) * 1s));
        transition-timing-function: var(--ease-out-cubic);
      }
    }

    .bmsm__cart-text {
      transition-property: clip-path, opacity, filter, translate;
      transition-duration: calc((var(--text-speed) * 0.6s)), calc((var(--text-speed) * 1s));
      transition-timing-function: ease-out;
      /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
      clip-path: circle(100% at 50% 50%);
    }
  }

  /* Hidden containers for non-selected tiers */
  .bmsm__tier:not(.bmsm__tier--selected) .bmsm__variants-container,
  .bmsm__tier:not(.bmsm__tier--selected) .bmsm__actions {
    display: none;
  }

  @media (max-width: 1299px) {
    .bmsm__tier-radio-custom {
      width: 20px;
      height: 20px;
    }
    .bmsm__tier-radio:checked + .bmsm__tier-radio-custom::after {
      width: 14px;
      height: 14px;
    }
  }

  /* Responsive */
  @media screen and (max-width: 749px) {
    .bmsm__tier-header {
      flex-wrap: wrap;
      row-gap: 10px;
    }

    /* .bmsm__tier-price {
      flex-basis: 100%;
      margin-left: 28px;
    } */

    /* .bmsm__variant-selects {
      flex-direction: column;
    } */

    .bmsm__tiers {
      gap: 15px;
    }

    .bmsm__price-amount {
      font-size: 16px;
    }
    .bmsm__price-separator {
      font-size: 18px;
      line-height: 1.35;
    }
    .bmsm__actions {
      border-top: 2px dashed #eeeeee;
      padding-top: 15px;
    }
    .bmsm__header-content .bmsm__title {
      font-size: 14px;
    }
    .bmsm__tier-label {
      font-size: 14px;
    }
    .bmsm__tier-price .bmsm__badge::before {
      right: -9px;
      border-width: 10px 0 10px 10px;
    }
    .bmsm__add-to-cart {
      height: 36px;
      font-size: 14px;
    }

    .bmsm__cart-text__content {
      display: inline-flex;
      align-items: center;
      gap: 4px;
    }

    .bmsm__add-to-cart-unit-price {
      display: inline;
      font-size: 14px;
    }
    .bmsm__custom-dropdown-wrapper {
      flex: 0 0 calc(50% - 6px);
      max-width: calc(50% - 6px);
    }

    .bmsm__custom-dropdown-wrapper:only-child {
      flex: 0 0 100%;
      max-width: 100%;
    }
  }
  .bmsm__tier.bmsm__tier--buy-2 .bmsm__tier-header {
    padding-bottom: 0;
  }

  @media screen and (max-width: 374px) {
    .bmsm__container {
      padding: 10px;
    }

    .bmsm__tier {
      padding: 10px 8px;
    }

    .bmsm__tier-header {
      gap: 6px;
    }

    .bmsm__tier-label {
      font-size: 12px;
    }

    .bmsm__tier-discount {
      font-size: 14px;
    }

    .bmsm__price-amount {
      font-size: 14px;
    }

    .bmsm__price-separator {
      font-size: 14px;
    }

    .bmsm__price-unit {
      font-size: 12px;
    }
  }
/* END_BLOCK:buy-more-save-more */

/* START_BLOCK:buy-the-bundle (INDEX:145) */
.buy-the-bundle {
    width: 100%;
    padding: 25px 0;
    margin: 25px 0;
    display: block;
  }

  /* Mobile Toggle Button */
  .buy-the-bundle__mobile-toggle {
    display: none;
    width: 100%;
    justify-content: center;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
  }

  .buy-the-bundle__mobile-toggle-text {
    font-size: 0.875rem;
    font-weight: 700;
    line-height: 1.7;
    color: #191919;
  }

  .buy-the-bundle__mobile-toggle-icon {
    transition: transform 0.3s ease;
    color: #191919;
  }

  .buy-the-bundle__mobile-toggle[aria-expanded='true'] .buy-the-bundle__mobile-toggle-icon {
    transform: rotate(180deg);
  }

  /* Mobile Images Section */
  .buy-the-bundle__mobile-images {
    display: none;
    /* flex-direction: column;
    padding: 15px; */
    gap: 0;
  }

  .buy-the-bundle__mobile-image-wrapper {
    width: 100%;
    max-width: 98px;
    margin: 0 auto;
    position: relative;
    border-radius: 0;
    overflow: hidden;
    border: 1px solid #eeeeee;
    background: #ffffff;
    transition: border-color 0.2s ease, opacity 0.2s ease;
    aspect-ratio: 1 / 1;
    display: block;
    text-decoration: none;
    cursor: pointer;
  }

  .buy-the-bundle__mobile-image-wrapper:hover {
    opacity: 0.9;
  }

  .buy-the-bundle__mobile-image-wrapper:focus-visible {
    outline: 2px solid #0056b3;
    outline-offset: 2px;
    border-radius: 5px;
  }

  .buy-the-bundle__mobile-image-wrapper--selected {
    border-color: #191919;
    border-radius: 5px;
  }

  .buy-the-bundle__mobile-image-wrapper--primary {
    border-color: #eeeeee;
    cursor: default;
    pointer-events: none;
  }

  .buy-the-bundle__mobile-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
  }

  @media (min-width: 750px) {
    .buy-the-bundle__mobile-images {
      display: none !important;
    }

    .buy-the-bundle__mobile-toggle {
      display: none !important;
    }

    .buy-the-bundle__content {
      display: block !important;
    }
  }

  /* Header */
  .buy-the-bundle__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    gap: 12px;
    flex-wrap: wrap;
  }

  .buy-the-bundle__title-row {
    display: flex;
    align-items: center;
    gap: 12px;
  }

  .buy-the-bundle__title {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5;
    color: #191919;
    margin: 0;
  }

  .buy-the-bundle__product-discount {
    color: #8c0008;
    font-weight: 600;
  }

  .buy-the-bundle__discount-badge {
    background: #bc0514;
    padding: 8px;
    border-radius: 2px;
    line-height: 0;
  }

  @media (max-width: 749px) {
    .buy-the-bundle__discount-badge {
      padding: 6px;
    }
  }

  .buy-the-bundle__discount-badge-text {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.1;
    color: #ffffff;
    text-transform: uppercase;
    display: inline-block;
  }

  .buy-the-bundle__price-row {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
  }

  .buy-the-bundle__total-price {
    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.5;
    color: #bc0514;
  }

  @media (max-width: 749px) {
    .buy-the-bundle__total-price {
      font-size: 1.125rem;
      line-height: 1.1;
    }
  }

  .buy-the-bundle__compare-price {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    color: #888888;
  }

  @media (max-width: 749px) {
    .buy-the-bundle__compare-price {
      font-size: 0.875rem;
      line-height: 1.4;
    }
  }

  /* Products Grid - 3 columns layout */
  .buy-the-bundle__products-grid {
    display: flex;
    justify-content: space-between;
    /* align-items: flex-start; */
    gap: 1.25rem;
    margin-bottom: 25px;
  }

  .buy-the-bundle__product-card {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    position: relative;
  }

  .buy-the-bundle__product-card--bundle.buy-the-bundle__product-card--selected
    .buy-the-bundle__product-image-wrapper--selectable {
    border-color: #787fde;
  }

  /* .buy-the-bundle__product-card--bundle:not(.buy-the-bundle__product-card--selected) {
    opacity: 0.6;
  } */

  .buy-the-bundle__product-card--bundle:not(.buy-the-bundle__product-card--selected)
    .buy-the-bundle__product-image-wrapper--selectable {
    border-color: #dddddd;
  }

  .buy-the-bundle__product-image-wrapper {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 5px;
    overflow: hidden;
    border: 2px solid #f7f7f7;
    background: #f7f7f7;
    margin-bottom: 12px;
  }

  .buy-the-bundle__product-image-wrapper--primary {
    border: 2px solid #f7f7f7;
  }

  .buy-the-bundle__product-image-wrapper--selectable {
    border: 2px solid #787fde;
    cursor: pointer;
  }

  .buy-the-bundle__product-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: darken;
  }

  .buy-the-bundle__product-image--placeholder {
    background-color: var(--color-background-secondary);
    opacity: 0.5;
  }

  /* Checkbox overlay on image */
  .buy-the-bundle__checkbox-overlay {
    position: absolute;
    top: 6px;
    right: 6px;
    cursor: pointer;
    z-index: 2;
  }

  .buy-the-bundle__checkbox-overlay--disabled {
    cursor: not-allowed;
    pointer-events: none;
  }

  .buy-the-bundle__checkbox-icon {
    display: block;
    opacity: 1;
    transition: all 0.2s ease;
    border: 1px solid #000;
    width: 20px;
    height: 20px;
    border-radius: 4px;
    overflow: hidden;
  }

  .buy-the-bundle__checkbox-icon--disabled svg rect {
    fill: #ddd !important;
  }

  .buy-the-bundle__checkbox:not(:checked) ~ .buy-the-bundle__checkbox-icon svg {
    display: none;
  }

  .buy-the-bundle__checkbox:not(:checked) ~ .buy-the-bundle__checkbox-icon {
    border: 2px solid #919191;
  }

  .buy-the-bundle__checkbox-icon svg {
    width: 20px;
    height: 20px;
    border-radius: 4px;
  }

  .buy-the-bundle__checkbox:checked ~ .buy-the-bundle__checkbox-icon {
    border: none;
  }

  .buy-the-bundle__checkbox-icon.buy-the-bundle__checkbox-icon--disabled {
    border: none;
  }

  /* .buy-the-bundle__checkbox:not(:checked) ~ .buy-the-bundle__checkbox-icon {
    opacity: 0.3;
  } */

  .buy-the-bundle__checkbox:not(:checked) ~ .buy-the-bundle__checkbox-icon svg rect {
    fill: #dddddd;
  }

  .buy-the-bundle__checkbox:focus-visible ~ .buy-the-bundle__checkbox-icon {
    outline: 2px solid #0056b3;
    outline-offset: 2px;
    border-radius: 2px;
  }

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

  .buy-the-bundle__plus-sign {
    font-size: 1.25rem;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: 0.03em;
    color: #bbbbbb;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    /* align-self: center;
    margin-top: -60px; */
    position: absolute;
    right: -1.25rem;
    top: 20%;
  }

  /* Product Info - below image */
  .buy-the-bundle__product-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .buy-the-bundle__product-name {
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.5;
    color: #191919;
    letter-spacing: 0.02em;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 2.8em;
  }

  .buy-the-bundle__product-prices {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
  }

  .buy-the-bundle__product-price {
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.5;
    color: #191919;
    letter-spacing: 0.02em;
  }

  .buy-the-bundle__product-compare-price {
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #888888;
  }

  /* Variant Selectors - inline below price */
  .buy-the-bundle__variant-selectors {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 6px;
  }

  .buy-the-bundle__variant-option {
    width: 100%;
  }

  .buy-the-bundle__variant-option--hidden {
    display: none !important;
  }

  /* Custom Dropdown Styles */
  .buy-the-bundle__custom-dropdown-wrapper {
    flex: 1;
    position: relative;
    min-width: 0;
    max-width: 100%;
  }

  .buy-the-bundle__custom-dropdown-button {
    width: 100%;
    padding: 7px 24px 7px 12px;
    font-size: 0.875rem;
    font-weight: 400;
    color: #888888;
    background: #ffffff;
    border: 1px solid #bbbbbb;
    border-radius: 5px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    text-align: left;
    line-height: 1.5;
    min-width: 0;
    max-width: 100%;
    overflow: hidden;
    transition: border-color 0.2s ease;
    min-height: 40px;
  }

  .buy-the-bundle__custom-dropdown-button:hover {
    border-color: #787fde;
  }

  .buy-the-bundle__custom-dropdown-button:focus-visible {
    outline: 2px solid #0056b3;
    outline-offset: 2px;
  }

  .buy-the-bundle__custom-dropdown-button[aria-expanded='true'] .buy-the-bundle__select-icon svg {
    transform: rotate(180deg);
  }

  .buy-the-bundle__custom-dropdown-selected {
    display: flex;
    align-items: center;
    gap: 8px;
    flex: 1;
    min-width: 0;
    max-width: 100%;
  }

  .buy-the-bundle__custom-dropdown-text {
    flex: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
    font-size: 0.875rem;
    font-weight: 400;
    color: #242424;
    text-transform: capitalize;
  }

  .buy-the-bundle__custom-dropdown-text .buy-the-bundle__selected-value {
    font-weight: 600;
  }

  .buy-the-bundle__custom-dropdown-list {
    position: absolute;
    top: calc(100% + 8px);
    bottom: auto;
    left: 0;
    right: 0;
    background: #ffffff;
    border: 1px solid #bbbbbb;
    border-radius: 5px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 300px;
    overflow-y: auto;
    overflow-x: hidden;
    z-index: 9;
    margin: 0;
    padding: 7px 0;
    list-style: none;
    scrollbar-width: thin;
    scrollbar-color: #bbbbbb #ffffff;
  }

  .buy-the-bundle__custom-dropdown-list::-webkit-scrollbar {
    width: 8px;
  }

  .buy-the-bundle__custom-dropdown-list::-webkit-scrollbar-track {
    background: #ffffff;
    border-radius: 4px;
  }

  .buy-the-bundle__custom-dropdown-list::-webkit-scrollbar-thumb {
    background: #bbbbbb;
    border-radius: 4px;
  }

  .buy-the-bundle__custom-dropdown-list::-webkit-scrollbar-thumb:hover {
    background: #999999;
  }

  .buy-the-bundle__custom-dropdown-item {
    padding: 3px 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: background-color 0.2s ease;
  }

  .buy-the-bundle__custom-dropdown-item:hover:not(.buy-the-bundle__custom-dropdown-item--disabled) {
    background: #f5f5f5;
  }

  .buy-the-bundle__custom-dropdown-item--selected {
    background: #f5f5f5;
    font-weight: 600;
  }

  .buy-the-bundle__custom-dropdown-item--disabled {
    opacity: 0.6;
    cursor: not-allowed;
    color: #888888;
  }

  .buy-the-bundle__custom-dropdown-item-content {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
  }

  .buy-the-bundle__swatch-preview {
    width: 24px;
    height: 24px;
    border-radius: 3px;
    overflow: hidden;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ffffff;
  }

  .buy-the-bundle__swatch-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .buy-the-bundle__custom-dropdown-item-text {
    flex: 1;
    font-weight: 400;
  }

  .buy-the-bundle__custom-dropdown-item--selected .buy-the-bundle__custom-dropdown-item-text {
    font-weight: 600;
  }

  .buy-the-bundle__select-icon {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
    width: 15px;
    height: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .buy-the-bundle__select-icon svg {
    width: 10px;
    height: 5px;
    transition: transform 0.2s ease;
  }

  .buy-the-bundle__custom-dropdown-input {
    display: none;
  }

  /* Show swatch preview in button for first option only */
  .buy-the-bundle__custom-dropdown-button[data-option-index='0'] .buy-the-bundle__swatch-preview {
    display: flex !important;
  }

  .buy-the-bundle__custom-dropdown-button[data-option-index]:not([data-option-index='0'])
    .buy-the-bundle__swatch-preview {
    display: none !important;
  }

  /* Product Links */
  .buy-the-bundle__product-link {
    display: block;
    text-decoration: none;
    color: inherit;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    background-color: #f7f7f7;
  }

  .buy-the-bundle__product-link:hover {
    opacity: 0.9;
  }

  .buy-the-bundle__product-link:focus-visible {
    outline: 2px solid #0056b3;
    outline-offset: 2px;
    border-radius: 5px;
  }

  .buy-the-bundle__product-name-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
  }

  .buy-the-bundle__product-name-link:focus-visible {
    outline: 2px solid #0056b3;
    outline-offset: 2px;
    border-radius: 2px;
  }

  /* Ensure checkbox overlay is above image link */
  .buy-the-bundle__checkbox-overlay {
    z-index: 3;
  }

  /* Add to Cart Button */
  .buy-the-bundle__add-to-cart-wrapper {
    width: 100%;
  }

  .buy-the-bundle__add-to-cart-wrapper .product-form-text__error {
    display: flex;
    align-items: flex-start;
    gap: var(--gap-xs);
    margin-block-end: var(--gap-xs);
    flex: 0 0 100% !important;
    color: #8c0008;
    font-size: 0.875rem;
  }

  .buy-the-bundle__add-to-cart-wrapper .product-form-text__error.hidden {
    display: none;
  }

  .buy-the-bundle__add-to-cart-wrapper .product-form-icon--error {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
  }

  .buy-the-bundle__add-to-cart-wrapper .product-form-icon--error svg {
    width: 100%;
    height: 100%;
    fill: currentColor;
  }

  .buy-the-bundle__add-to-cart {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    padding: 4px 31px;
    background: #191919;
    border: 1px solid #191919;
    border-radius: 5px;
    cursor: pointer;
    transition: opacity 0.2s ease;
    min-height: 44px;
    position: relative;
  }

  .buy-the-bundle__add-to-cart:hover:not(:disabled) {
    background-color: #636ACA;
  }

  .buy-the-bundle__add-to-cart-text {
    display: flex;
    gap: 10px;
    align-items: center;
    justify-content: center;
  }

  /* Checkmark burst animation - only button-specific styles needed */
  .buy-the-bundle__add-to-cart {
    position: relative;
    --text-speed: 0.26;
    --base-delay: calc(var(--text-speed) * 0.25);
    --tick-speed: 0.1;
    --ring-speed: 0.2;
    --check-speed: 0.2;
    --burst-speed: 0.32;
    --step-delay: 3;
  }

  .buy-the-bundle__add-to-cart .add-to-cart__added {
    position: absolute;
    top: 50%;
    left: 50%;
    translate: -50% -50%;
  }

  .buy-the-bundle__add-to-cart .add-to-cart__added-icon {
    width: 32px;
    height: 32px;
  }

  /* Base checkmark-burst styles - must be defined since global styles are scoped to .add-to-cart-button */
  .buy-the-bundle__add-to-cart .checkmark-burst {
    opacity: 0;
    overflow: visible;
    color: #ffffff;
    fill: #ffffff;
  }

  .buy-the-bundle__add-to-cart .checkmark-burst .burst {
    rotate: 20deg;
  }

  .buy-the-bundle__add-to-cart .checkmark-burst .check {
    opacity: 0;
    scale: 0.8;
    filter: blur(2px);
    transform: translateZ(0);
  }

  .buy-the-bundle__add-to-cart .checkmark-burst :is(.ring, .line, .check, .burst, .tick) {
    transform-box: fill-box;
    transform-origin: center;
  }

  .buy-the-bundle__add-to-cart .checkmark-burst .line {
    stroke-dasharray: 1.5 1.5;
    stroke-dashoffset: -1.5;
    translate: 0 -180%;
  }

  .buy-the-bundle__add-to-cart .checkmark-burst path,
  .buy-the-bundle__add-to-cart .checkmark-burst circle,
  .buy-the-bundle__add-to-cart .checkmark-burst line {
    fill: #ffffff;
    stroke: #ffffff;
  }

  /* Show checkmark on success */
  .buy-the-bundle__add-to-cart[data-added='true'] .checkmark-burst {
    opacity: 1;
  }

  /* Animation states for checkmark elements */
  .buy-the-bundle__add-to-cart[data-added='true'] {
    .check {
      opacity: 1;
      scale: 1;
      filter: blur(0);
    }

    .tick {
      scale: 1.75;
    }

    .ring {
      opacity: 0;
      scale: 1;
    }

    .line {
      stroke-dashoffset: 1.5;
    }

    .buy-the-bundle__add-to-cart-text {
      /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
      clip-path: circle(0% at 50% 50%);
      filter: blur(2px);
      opacity: 0;
      translate: 0 4px;
    }
  }

  @media (prefers-reduced-motion: no-preference) {
    .buy-the-bundle__add-to-cart[data-added='true'] {
      .check {
        transition-property: opacity, scale, filter;
        transition-duration: calc(calc(var(--check-speed) * 1s));
        transition-delay: calc((var(--base-delay) * 1s));
        transition-timing-function: var(--ease-out-quad);
      }

      .tick {
        transition-property: scale;
        transition-duration: calc((calc(var(--tick-speed) * 1s)));
        transition-delay: calc(((var(--base-delay) + (var(--check-speed) * (var(--step-delay) * 1.1))) * 1s));
        transition-timing-function: ease-out;
      }

      .ring {
        transition-property: opacity, scale;
        transition-duration: calc((calc(var(--ring-speed) * 1s)));
        transition-delay: calc(((var(--base-delay) + (var(--check-speed) * var(--step-delay))) * 1s));
        transition-timing-function: var(--ease-out-quad);
      }

      .line {
        transition-property: stroke-dashoffset;
        transition-duration: calc((calc(var(--burst-speed) * 1s)));
        transition-delay: calc(((var(--base-delay) + (var(--check-speed) * var(--step-delay))) * 1s));
        transition-timing-function: var(--ease-out-cubic);
      }
    }

    .buy-the-bundle__add-to-cart-text {
      transition-property: clip-path, opacity, filter, translate;
      transition-duration: calc((var(--text-speed) * 0.6s)), calc((var(--text-speed) * 1s));
      transition-timing-function: ease-out;
      /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
      clip-path: circle(100% at 50% 50%);
    }
  }

  .buy-the-bundle__add-to-cart:hover:not(:disabled) {
    opacity: 0.9;
  }

  .buy-the-bundle__add-to-cart:disabled:not([data-added='true']) {
    opacity: 0.5;
    cursor: not-allowed;
  }

  /* Maintain enabled color during animation */
  .buy-the-bundle__add-to-cart[data-added='true']:disabled {
    opacity: 1;
    cursor: default;
  }

  .buy-the-bundle__add-to-cart:focus-visible {
    outline: 2px solid #0056b3;
    outline-offset: 2px;
  }

  .buy-the-bundle__add-to-cart-icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .buy-the-bundle__add-to-cart-icon svg {
    width: 23px;
    height: 18px;
    fill: #ffffff;
  }

  .buy-the-bundle__add-to-cart-text {
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.5;
    color: #ffffff;
  }

  @media (max-width: 749px) {
    .buy-the-bundle__add-to-cart-text {
      font-size: 0.875rem;
      line-height: 1.6;
    }
  }

  /* Screen reader only */
  .buy-the-bundle__sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  @media (max-width: 1199px) {
    .buy-the-bundle {
      padding: 12px;
    }
  }

  @media (max-width: 749px) {
    .buy-the-bundle {
      padding: 15px 15px 0;
      border-radius: 5px;
      background: #ffffff;
    }

    .buy-the-bundle__mobile-images {
      display: flex;
      padding: 0;
      /* border-bottom: 1px solid #DDDDDD; */
    }

    .buy-the-bundle__title {
      font-size: 1rem;
    }

    .buy-the-bundle__mobile-toggle {
      display: flex;
      /* border-bottom: 1px solid #DDDDDD;
      border-radius: 0 0 5px 5px; */
      padding: 6px 12px;
      margin-top: 25px;
    }

    .buy-the-bundle__content {
      display: none;
      padding: 0;
      /* border-radius: 5px 5px 0 0; */
    }

    .buy-the-bundle__content.is-expanded {
      display: block;
    }

    .buy-the-bundle.is-mobile-expanded .buy-the-bundle__mobile-toggle {
      border-bottom: none;
      border-radius: 0 0 5px 5px;
    }

    /* Hide images in product cards on mobile when expanded (but keep checkboxes visible) */
    .buy-the-bundle__content.is-expanded .buy-the-bundle__product-image-wrapper {
      display: flex !important;
      align-items: center;
      justify-content: flex-start;
      border: none;
      background: transparent;
      margin-bottom: 0;
      aspect-ratio: auto;
      height: auto;
      min-height: 0;
      padding: 0;
    }

    .buy-the-bundle__content.is-expanded .buy-the-bundle__product-image-wrapper .buy-the-bundle__product-image {
      display: none !important;
    }

    .buy-the-bundle__content.is-expanded .buy-the-bundle__product-link {
      display: none !important;
    }

    /* Vertical layout for product details on mobile */
    .buy-the-bundle__content.is-expanded .buy-the-bundle__product-card {
      flex-direction: row;
      align-items: flex-start;
      gap: 0;
    }

    .buy-the-bundle__content.is-expanded .buy-the-bundle__product-card--bundle {
      position: relative;
    }

    /* Show checkboxes on mobile when expanded - position them on the left */
    .buy-the-bundle__content.is-expanded .buy-the-bundle__product-card--bundle .buy-the-bundle__checkbox-overlay {
      position: static !important;
      display: flex !important;
      order: -1;
      flex-shrink: 0;
      width: 30px;
      height: 30px;
      align-items: flex-start;
      justify-content: center;
      margin-top: 4px;
      top: auto;
      right: auto;
      margin-right: 10px;
    }

    .buy-the-bundle__checkbox-icon {
      width: 25px !important;
      height: 25px !important;
    }

    .buy-the-bundle__content.is-expanded .buy-the-bundle__product-card--bundle .buy-the-bundle__checkbox-overlay svg {
      width: 30px;
      height: 30px;
    }

    .buy-the-bundle__content.is-expanded .buy-the-bundle__product-card--primary {
      padding-left: 0;
    }

    .buy-the-bundle__content.is-expanded .buy-the-bundle__product-card--primary .buy-the-bundle__checkbox-overlay {
      display: none !important;
    }

    /* Make product info vertical - stack title, price, dropdown vertically */
    .buy-the-bundle__content.is-expanded .buy-the-bundle__product-info {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .buy-the-bundle__content.is-expanded .buy-the-bundle__product-name {
      order: 1;
    }

    .buy-the-bundle__content.is-expanded .buy-the-bundle__product-prices {
      order: 2;
    }

    .buy-the-bundle__content.is-expanded .buy-the-bundle__variant-selectors {
      order: 3;
      width: 100%;
    }

    /* Add separator lines between products in mobile expanded view */
    .buy-the-bundle__content.is-expanded .buy-the-bundle__products-grid {
      flex-direction: column;
      gap: 0;
    }

    .buy-the-bundle__content.is-expanded .buy-the-bundle__product-card {
      padding: 8px 0;
      border-bottom: 1px solid #dddddd;
      margin-bottom: 16px;
    }

    .buy-the-bundle__content.is-expanded .buy-the-bundle__product-card:last-child {
      border-bottom: none;
    }

    .buy-the-bundle__content.is-expanded .buy-the-bundle__plus-sign {
      display: none;
    }

    .buy-the-bundle__discount-badge-text {
      font-size: 0.75rem;
      font-weight: 600;
      line-height: 1;
    }

    .buy-the-bundle__header {
      gap: 10px;
    }

    .buy-the-bundle__plus-sign {
      font-size: 1.25rem;
      padding: 0;
      margin-top: 0;
      position: static;
    }

    .buy-the-bundle__product-name {
      font-size: 14px;
      min-height: auto;
    }

    .buy-the-bundle__product-price {
      font-size: 18px;
    }

    .buy-the-bundle__product-compare-price {
      font-size: 18px;
      font-weight: 500;
    }

    .buy-the-bundle__add-to-cart {
      min-height: 40px;
      margin-bottom: 15px;
    }

    .buy-the-bundle__products-grid {
      gap: 6px;
      flex-wrap: nowrap;
      margin-bottom: 0;
    }
  }
  /* ===== Buy the bundle redesign ===== */

.buy-the-bundle {
  --btb-red: #B1020C;
  --btb-yellow: #FFD334;
  --btb-text: #191919;
  --btb-muted: #777777;
  --btb-border: #DDDDDD;
  --btb-blue: #1E35B1;

  width: 100%;
  border: 1px solid var(--btb-border);
  border-left: unset;
  border-right: unset;
  border-radius: 0;
}

/* Design does not use collapsed mobile preview */
.buy-the-bundle__mobile-images,
.buy-the-bundle__mobile-toggle {
  display: none !important;
}

.buy-the-bundle__content {
  display: block !important;
  padding: 0;
}

/* Header */
.buy-the-bundle__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 15px;
}

.buy-the-bundle__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.buy-the-bundle__title {
  margin: 0;
  color: var(--btb-text);
  font-size: 16px;
  font-weight: 700;
  line-height: 150%;
}

.buy-the-bundle__discount-badge {
  flex-shrink: 0;
  padding: 5px 10px;
  border-radius: 0;
  background: var(--btb-red);
}

.buy-the-bundle__discount-badge-text {
  display: block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 700;
  line-height: 150%;
  text-transform: uppercase;
}

.buy-the-bundle__products-grid,
.buy-the-bundle__content.is-expanded .buy-the-bundle__products-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 15px;
}

.buy-the-bundle__product-card,
.buy-the-bundle__content.is-expanded .buy-the-bundle__product-card {
  position: relative;
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  column-gap: 20px;
  align-items: start;
  padding: 15px 40px 15px 0;
  margin: 0;
  border-bottom: 1px dashed var(--btb-border);
}

.buy-the-bundle__product-card:last-child {
  border-bottom: none;
}

.buy-the-bundle__product-image-wrapper,
.buy-the-bundle__content.is-expanded .buy-the-bundle__product-image-wrapper {
  position: static !important;
  display: block !important;
  width: 100%;
  height: 100% !important;
  min-height: 96px;
  margin: 0;
  padding: 0 !important;
  aspect-ratio: 1 / 1;
  border: none !important;
  border-radius: 0;
  background: #f7f7f7;
  overflow: hidden;
}

.buy-the-bundle__product-image,
.buy-the-bundle__product-link,
.buy-the-bundle__content.is-expanded .buy-the-bundle__product-image-wrapper .buy-the-bundle__product-image,
.buy-the-bundle__content.is-expanded .buy-the-bundle__product-link {
  display: block !important;
  width: 100%;
  height: 100%;
  background: #f7f7f7;
}

.buy-the-bundle__product-image-wrapper img,
.buy-the-bundle__product-image img,
.buy-the-bundle__product-link img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: darken;
}

/* Product text */
.buy-the-bundle__product-info,
.buy-the-bundle__content.is-expanded .buy-the-bundle__product-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

.buy-the-bundle__product-name {
  min-height: 0;
  color: var(--btb-text);
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
  letter-spacing: 0;
  -webkit-line-clamp: 2;
  line-clamp: 2;
}

.buy-the-bundle__product-prices {
  display: flex;
  align-items: baseline;
  gap: 5px;
  flex-wrap: wrap;
}

.buy-the-bundle__product-price {
  color: var(--btb-text);
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 0;
}

.buy-the-bundle__product-compare-price {
  color: #626161;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

.buy-the-bundle__product-discount {
  display: none;
}

/* Variant selectors */
.buy-the-bundle__variant-selectors,
.buy-the-bundle__content.is-expanded .buy-the-bundle__variant-selectors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  width: 100%;
  margin-top: 4px;
}

.buy-the-bundle__variant-option {
  width: auto;
  min-width: 0;
}

.buy-the-bundle__variant-option[data-is-size='true'] {
  order: 1;
}

.buy-the-bundle__variant-option[data-is-size='false'] {
  order: 2;
}

.buy-the-bundle__custom-dropdown-button {
  width: 100%;
  min-height: 34px;
  height: 34px;
  padding: 6px 32px 6px 10px;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  background: #ffffff;
  color: var(--btb-muted);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
}

.buy-the-bundle__custom-dropdown-button:hover {
  border-color: #cccccc;
}

.buy-the-bundle__custom-dropdown-text {
  color: var(--btb-muted);
  font-size: 12px;
  font-weight: 400;
  text-transform: none;
}

.buy-the-bundle__custom-dropdown-text .buy-the-bundle__selected-value {
  font-weight: 400;
}

.buy-the-bundle__swatch-preview {
  display: none !important;
}

.buy-the-bundle__select-icon {
  right: 10px;
}

.buy-the-bundle__select-icon svg {
  width: 10px;
  height: 6px;
}

/* Hide plus signs from old horizontal layout */
.buy-the-bundle__plus-sign {
  display: none !important;
}

/* Checkbox on the right side, like design */
.buy-the-bundle__checkbox-overlay,
.buy-the-bundle__content.is-expanded .buy-the-bundle__product-card--bundle .buy-the-bundle__checkbox-overlay,
.buy-the-bundle__content.is-expanded .buy-the-bundle__product-card--primary .buy-the-bundle__checkbox-overlay {
  position: absolute !important;
  top: 14px;
  right: 0;
  z-index: 3;
  display: flex !important;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin: 0;
}

.buy-the-bundle__checkbox-icon,
.buy-the-bundle__content.is-expanded .buy-the-bundle__product-card--bundle .buy-the-bundle__checkbox-overlay svg {
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 4px;
  overflow: hidden;
}

.buy-the-bundle__checkbox-icon svg {
  width: 28px;
  height: 28px;
}

.buy-the-bundle__checkbox-icon svg rect {
  fill: var(--btb-blue);
}

/* Summary + button */
.buy-the-bundle__bundle-footer {
  display: flex;
  gap: 32px;
  justify-content: space-between;
  align-items: center;
  margin-top: 12px;
}

.buy-the-bundle__summary {
  min-width: 0;
  width: 100%;
}

.buy-the-bundle__summary-label {
  display: block;
  margin-bottom: 3px;
  color: #626161;
  font-size: 14px;
  font-weight: 500;
  line-height: 150%;
}

.buy-the-bundle__price-row {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.buy-the-bundle__total-price {
  color: var(--btb-text);
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
}

.buy-the-bundle__compare-price {
  color: #626161;
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

.buy-the-bundle__saved-price {
  color: var(--btb-red);
  font-size: 16px;
  font-weight: 600;
  line-height: 150%;
}

.buy-the-bundle__add-to-cart-wrapper {
  max-width: 60%;
  width: 100%;
}

.buy-the-bundle__add-to-cart {
  width: 100%;
  min-height: 36px;
  height: 100%;
  padding: 15px 0;
  border: none;
  border-radius: 5px;
  background: var(--btb-yellow);
  color: var(--btb-text);
  cursor: pointer;
}

.buy-the-bundle__add-to-cart:hover:not(:disabled) {
  background: var(--btb-yellow);
  opacity: 1;
}

.buy-the-bundle__add-to-cart-text {
  font-family: 'Nunito Sans', sans-serif;
  color: var(--btb-text);
  font-size: 16px;
  font-weight: 500;
  line-height: 150%;
}

.buy-the-bundle__add-to-cart-icon {
  display: none;
}

/* Mobile cleanup */
@media (max-width: 749px) {
  .buy-the-bundle {
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 5px;
  }

  .buy-the-bundle__header {
    margin-bottom: 25px;
  }

  .buy-the-bundle__title {
    font-size: 14px;
  }

  .buy-the-bundle__discount-badge {
    padding: 2px 5px;
  }

  .buy-the-bundle__discount-badge-text {
    font-size: 12px;
  }

  .buy-the-bundle__product-card,
  .buy-the-bundle__content.is-expanded .buy-the-bundle__product-card {
    column-gap: 14px;
    padding: 15px 35px 15px 0;
    grid-template-columns: 96px minmax(0, 1fr);
  }

  .buy-the-bundle__checkbox-icon svg {
    width: 25px;
    height: 25px;
  }

  .buy-the-bundle__bundle-footer {
    gap: 10px;
  }

  .buy-the-bundle__product-price {
    font-size: 14px;
  }

  .buy-the-bundle__product-compare-price {
    font-size: 12px;
  }

  .buy-the-bundle__summary-label,
  .buy-the-bundle__compare-price,
  .buy-the-bundle__saved-price {
    font-size: 12px;
  }

  .buy-the-bundle__total-price {
    font-size: 14px;
  }

  .buy-the-bundle__add-to-cart-text {
    font-size: 13px;
  }

  .buy-the-bundle__product-image-wrapper,
  .buy-the-bundle__content.is-expanded .buy-the-bundle__product-image-wrapper {
    width: 96px;
    height: 96px !important;
    min-height: 96px;
  }
}

@media (max-width: 390px) {

  .buy-the-bundle__product-image-wrapper,
  .buy-the-bundle__content.is-expanded .buy-the-bundle__product-image-wrapper {
    width: 86px;
    height: 86px !important;
    min-height: 86px;
  }
}

@media (max-width: 749px) {
  .buy-the-bundle__variant-selectors,
  .buy-the-bundle__content.is-expanded .buy-the-bundle__variant-selectors {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    width: 100%;
  }

  .buy-the-bundle__variant-option {
    width: 100%;
    min-width: 0;
  }

  .buy-the-bundle__custom-dropdown-wrapper {
    width: 100%;
    max-width: 100%;
  }

  .buy-the-bundle__custom-dropdown-button {
    width: 100%;
    min-width: 0;
  }

  .buy-the-bundle__custom-dropdown-text {
    max-width: 100%;
  }
}
/* END_BLOCK:buy-the-bundle */

/* START_BLOCK:comparison-slider (INDEX:148) */
comparison-slider-component {
    display: block;
  }

  .comparison-slider {
    position: relative;
    overflow: hidden;
    aspect-ratio: var(--ratio);
  }

  .comparison-slider:not(:has(img)) {
    min-width: 25dvh;
  }

  .comparison-slider__container {
    position: relative;
    width: 100%;
    height: 100%;
  }

  /* Container and Layout */
  .comparison-slider__media-wrapper {
    --compare: 50;

    position: relative;
    width: 100%;
    height: 100%;
    display: grid;
    grid-template: 1fr / 1fr;
    overflow: hidden;
  }

  /* Layer Containers */
  .comparison-slider__layer {
    grid-area: 1 / 1;
    position: relative;
    width: 100%;
    height: 100%;
    transition: clip-path var(--transition-duration, 0s) ease-in-out;
  }

  .comparison-slider__layer--after {
    z-index: var(--layer-base);
  }

  /* Before Layer Clipping (inverse of after layer) */
  [data-orientation='horizontal'] .comparison-slider__layer--before {
    /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
    clip-path: inset(0 calc((100 - var(--compare)) * 1%) 0 0);
  }

  [data-orientation='vertical'] .comparison-slider__layer--before {
    /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
    clip-path: inset(0 0 calc(var(--compare) * 1%) 0);
  }

  /* After Layer Clipping */
  [data-orientation='horizontal'] .comparison-slider__layer--after {
    /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
    clip-path: inset(0 0 0 calc(var(--compare) * 1%));
  }

  [data-orientation='vertical'] .comparison-slider__layer--after {
    /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
    clip-path: inset(calc((100 - var(--compare)) * 1%) 0 0 0);
  }

  /* Images and Placeholders */
  .before-image,
  .after-image,
  .comparison-slider__placeholder {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: var(--ratio);
  }

  .comparison-slider__placeholder {
    position: absolute;
    inset: 0;
  }

  .comparison-slider__placeholder svg {
    width: 100%;
    height: 100%;
    background-color: var(--color-background);
    fill: var(--color-foreground);
  }

  /* Range Input (Hidden but Functional) */
  .cs-slider {
    position: absolute;
    inset: 0;
    z-index: var(--layer-heightened);
    width: 100%;
    height: 100%;
    margin: 0;
    padding: 0;
    opacity: 0;
    cursor: inherit;
    appearance: none;
  }

  [data-orientation='horizontal'] .cs-slider {
    cursor: ew-resize;
  }

  [data-orientation='vertical'] .cs-slider {
    cursor: ns-resize;
    writing-mode: vertical-lr;
    direction: rtl;
  }

  /* Range Input Thumb */
  .cs-slider::-webkit-slider-thumb,
  .cs-slider::-moz-range-thumb {
    width: var(--button-size);
    height: var(--button-size);
    border: 0;
    background: transparent;
    cursor: inherit;
    appearance: none;
  }

  /* Range Input Track */
  .cs-slider::-webkit-slider-track,
  .cs-slider::-moz-range-track {
    background: transparent;
    border: 0;
    appearance: none;
  }

  /* Visual Slider Elements */
  .comparison-slider__media-wrapper::before,
  .comparison-slider__media-wrapper::after {
    content: '';
    position: absolute;
    pointer-events: none;
    transition: left var(--transition-duration, 0s) ease-in-out, top var(--transition-duration, 0s) ease-in-out;
    z-index: var(--layer-raised);
  }

  /* Slider Track Line */
  .comparison-slider__media-wrapper::after {
    background: var(--color-background);
    box-shadow: 0 0 12px 0 rgb(0 0 0 / 0.1);
  }

  .comparison-slider__media-wrapper::before {
    background: var(--color-background);
  }

  .comparison-slider__media-wrapper[data-orientation='horizontal']::after {
    inset: 0 auto;
    left: calc(var(--compare) * 1%);
    width: 4px;
    transform: translateX(-50%);
  }

  .comparison-slider__media-wrapper[data-orientation='vertical']::after {
    inset: auto 0;
    top: calc((100 - var(--compare)) * 1%);
    height: 4px;
    transform: translateY(-50%);
  }

  /* Slider Handle */
  .cs-slider__handle {
    position: absolute;
    z-index: var(--layer-heightened);
    pointer-events: none;
    width: var(--button-size);
    height: var(--button-size);
    background: var(--color-background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 12px 0 rgb(0 0 0 / 0.1);
    transition: left var(--transition-duration, 0s) ease-in-out, top var(--transition-duration, 0s) ease-in-out,
      gap 0.2s ease-in-out;
    gap: var(--gap-sm);
    padding: var(--padding-xs);
  }

  .comparison-slider__media-wrapper:hover .cs-slider__handle {
    gap: var(--gap-2xs);
  }

  .cs-slider__chevron {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  [data-orientation='horizontal'] .cs-slider__handle {
    top: 50%;
    left: calc(var(--compare) * 1%);
    transform: translate(-50%, -50%);
    flex-direction: row;
  }

  [data-orientation='vertical'] .cs-slider__handle {
    left: 50%;
    top: calc((100 - var(--compare)) * 1%);
    transform: translate(-50%, -50%) rotate(90deg);
  }

  /* Text Labels */
  .comparison-slider__text {
    position: absolute;
    padding: var(--padding-xs);
    pointer-events: none;
  }

  .comparison-slider__text--with-bg {
    background: var(--text-background-color);
    border-radius: var(--text-corner-radius);
  }

  /* Horizontal: before/after control inline (left/right), position controls block (top/bottom) */
  [data-orientation='horizontal'] .comparison-slider__text--before {
    inset-inline-start: var(--padding-sm);
  }

  [data-orientation='horizontal'] .comparison-slider__text--after {
    inset-inline-end: var(--padding-sm);
  }

  [data-orientation='horizontal'][data-text-position='start'] .comparison-slider__text {
    inset-block-start: var(--padding-sm);
  }

  [data-orientation='horizontal'][data-text-position='end'] .comparison-slider__text {
    inset-block-end: var(--padding-sm);
  }

  /* Vertical: before/after control block (top/bottom), position controls inline (left/right) */
  [data-orientation='vertical'] .comparison-slider__text--before {
    inset-block-start: var(--padding-sm);
  }

  [data-orientation='vertical'] .comparison-slider__text--after {
    inset-block-end: var(--padding-sm);
  }

  [data-orientation='vertical'][data-text-position='start'] .comparison-slider__text {
    inset-inline-start: var(--padding-sm);
  }

  [data-orientation='vertical'][data-text-position='end'] .comparison-slider__text {
    inset-inline-end: var(--padding-sm);
  }
/* END_BLOCK:comparison-slider */

/* START_BLOCK:contact-form-submit-button (INDEX:149) */
.submit-button {
    min-width: max-content;
  }
/* END_BLOCK:contact-form-submit-button */

/* START_BLOCK:email-signup (INDEX:152) */
email-signup-block {
    display: block;
  }

  .email-signup-block {
    min-width: fit-content;

    @media screen and (max-width: 749px) {
      width: 100%;
      min-width: unset;
    }
  }

  .email-signup__heading {
    padding-block: var(--padding-sm);
  }

  .email-signup__form {
    display: flex;
    flex-direction: column;
  }

  .email-signup__input-group {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    background-color: transparent;
  }

  .email-signup__input-group:not(:has(.email-signup__button--integrated)) {
    gap: var(--gap-xs);
  }

  .email-signup__input-group:not(:has(.email-signup__button--arrow)) {
    @media screen and (max-width: 749px) {
      grid-template-columns: 1fr;
    }
  }

  .email-signup__input {
    width: 100%;
    border-width: var(--border-width);
    border-radius: var(--border-radius);
    border-style: solid;
    border-color: var(--color-input-border);
  }

  .email-signup__input.paragraph {
    color: var(--color-input-text);
    outline-color: var(--color-input-background);
  }

  .email-signup__button {
    white-space: nowrap;
    padding: 0;

    @media screen and (max-width: 749px) {
      width: 100%;
    }
  }

  .email-signup__input,
  .email-signup__button--text {
    padding: var(--padding-lg) var(--padding-3xl);
  }

  .email-signup__input-group .email-signup__input--underline {
    --box-shadow-color: var(--color-input-border);
    --box-shadow-multiplier: 1;

    color: var(--color-input-text);
    background-color: transparent;
    padding: 12px 0;
    border: none;
    border-radius: 0;
    box-shadow: 0 calc(var(--border-width) * var(--box-shadow-multiplier)) 0 var(--box-shadow-color);
    transition: box-shadow var(--animation-values);

    &:focus-visible {
      --box-shadow-multiplier: 1.75;
      --box-shadow-color: var(--color-input-text);

      outline: none;
    }
  }

  .email-signup__input::placeholder {
    color: rgb(var(--color-input-text-rgb) / var(--opacity-70));
  }

  .email-signup__input-group .email-signup__input--none {
    color: var(--color-input-text);
    background-color: var(--color-input-background);
    border: none;
  }

  .email-signup__input-group {
    --button-actual-width: var(--button-size);
  }

  .email-signup__input:has(+ .email-signup__button--arrow.email-signup__button--integrated) {
    padding-inline-end: calc(var(--button-size) + var(--padding-sm));

    @media screen and (max-width: 749px) {
      text-align: left;
    }
  }

  .email-signup__input:has(+ .email-signup__button--integrated.email-signup__button--text) {
    padding-inline-end: calc(var(--button-actual-width) + var(--padding-xs) + var(--margin-xs));

    @media screen and (max-width: 749px) {
      text-align: left;
    }
  }

  .email-signup__button-icon {
    color: currentcolor;
    padding: 5px;

    @media screen and (max-width: 749px) {
      padding: 0;
      align-self: center;
      justify-self: center;
      width: var(--icon-size-lg);
      height: var(--icon-size-lg);
    }
  }

  .email-signup__button--arrow {
    aspect-ratio: 1;
    padding-inline: var(--padding-xs);

    &:not(.email-signup__button--integrated) {
      width: auto;
    }
  }

  .email-signup__button--integrated {
    --button-offset: var(--margin-xs);

    position: absolute;
    height: calc(100% - (var(--button-offset) * 2) - (var(--border-width) * 2));
    right: calc(var(--button-offset) + var(--border-width));
    top: calc(var(--button-offset) + var(--border-width));
    width: max-content;

    @media screen and (max-width: 749px) {
      width: fit-content;
    }

    &.email-signup__button--text {
      padding: 0 var(--padding-3xl);
    }

    &.email-signup__button--text.button-unstyled {
      padding: 0 var(--padding-xl);
    }

    &.button-unstyled {
      border-radius: var(--border-radius);
    }

    > .email-signup__button-icon {
      padding: 0;
    }
  }

  .email-signup__input--underline + .email-signup__button--integrated {
    --button-offset: calc(10% - var(--border-width));

    right: 0;

    &.email-signup__button--text.button-unstyled {
      padding: 0;
    }

    &.button-unstyled {
      border-radius: 0;
    }
  }

  .email-signup__button:not(.button-unstyled) {
    background-color: var(--button-background-color);
    color: var(--button-color);
    text-transform: var(--button-text-case-primary);
  }

  .email-signup__button.button-secondary {
    text-transform: var(--button-text-case-secondary);
  }

  .email-signup__button.button-unstyled {
    background-color: transparent;
    color: var(--color-input-text);
  }

  .email-signup__button.button-unstyled:hover {
    color: rgb(var(--color-input-text-rgb) / var(--opacity-70));
    cursor: pointer;
  }

  .email-signup__message {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
  }

  .email-signup__message-text {
    margin: 0;
  }
/* END_BLOCK:email-signup */

/* START_BLOCK:filters (INDEX:154) */
.collection-wrapper {
    @media screen and (min-width: 750px) {
      --facets-vertical-col-width: 6;
    }

    @media screen and (min-width: 990px) {
      --facets-vertical-col-width: 5;
    }
  }

  .facets-block-wrapper {
    @media screen and (min-width: 750px) {
      margin: var(--facets-margin);
      grid-column: var(--grid-column--desktop);
    }
  }

  /*
    PLP: filters + product grid share .collection-layout so sticky ends when the grid column ends.
    Mobile / horizontal: display contents keeps prior grid placement; drawer unchanged.
  */
  .collection-layout,
  .collection-layout__sidebar {
    display: contents;
  }

  .collection-layout--no-filters {
    display: contents;
  }

  @media screen and (min-width: 750px) {
    .collection-wrapper:has(
        .facets-block-wrapper--vertical:not(.hidden):not(.facets-block-wrapper--drawer)
      )
      .collection-layout:not(.collection-layout--no-filters) {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      align-items: stretch;
      grid-column: 2 / -1;
      width: 100%;
      min-width: 0;
    }

    .collection-wrapper:has(.collection-wrapper--full-width):has(
        .facets-block-wrapper--vertical:not(.hidden):not(.facets-block-wrapper--drawer)
      )
      .collection-layout:not(.collection-layout--no-filters) {
      grid-column: 1 / -1;
    }

    .collection-wrapper:has(
        .facets-block-wrapper--vertical:not(.hidden):not(.facets-block-wrapper--drawer)
      )
      .collection-layout:not(.collection-layout--no-filters)
      > .collection-layout__sidebar {
      display: flex;
      flex-direction: column;
      align-items: stretch;
      align-self: stretch;
      flex: 0 0 calc((var(--facets-vertical-col-width) - 2) * 100% / var(--centered-column-number));
      max-width: calc((var(--facets-vertical-col-width) - 2) * 100% / var(--centered-column-number));
      min-width: 0;
    }

    .collection-wrapper:has(
        .facets-block-wrapper--vertical:not(.hidden):not(.facets-block-wrapper--drawer)
      )
      .collection-layout:not(.collection-layout--no-filters)
      > .collection-products-area,
    .collection-wrapper:has(
        .facets-block-wrapper--vertical:not(.hidden):not(.facets-block-wrapper--drawer)
      )
      .collection-layout:not(.collection-layout--no-filters)
      > .main-collection-grid {
      flex: 1 1 0;
      min-width: 0;
      grid-column: unset;
      width: auto;
    }

    .collection-wrapper:has(
        .facets-block-wrapper--vertical:not(.hidden):not(.facets-block-wrapper--drawer)
      )
      .collection-layout:not(.collection-layout--no-filters)
      > .main-collection-grid {
      max-width: 100%;
    }
  }

  /* Sticky within .collection-layout (height = product column); sidebar stretches, facet box is content-height. */
  .collection-wrapper:has(
      .facets-block-wrapper--vertical:not(.hidden):not(.facets-block-wrapper--drawer)
    )
    .collection-layout__sidebar
    .facets-block-wrapper--vertical:not(.facets-block-wrapper--drawer):not(.hidden) {
    @media screen and (min-width: 750px) {
      position: sticky;
      top: calc(var(--header-group-height, var(--header-height, 70px)) - 55px);
      align-self: flex-start;
      width: 100%;
      z-index: var(--layer-sticky, 8);
    }
  }

  .facets-block-wrapper--vertical + .facets-toggle {
    @media screen and (max-width: 749px) {
      margin: 0;
    }
  }

  .facets-mobile-wrapper {
    display: flex;
    align-items: center;
    gap: var(--gap-sm);
    justify-content: flex-end;
  }

  .facets-mobile-wrapper:has(> :nth-child(2)) {
    justify-content: space-between;
  }

  dialog-component.facets-block-wrapper:not(:has(.facets--drawer[open])) {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }

  .variant-option__swatch-wrapper {
    position: relative;
    overflow: visible;
    border-radius: var(--options-border-radius);
  }

  .variant-option--swatches-disabled .variant-option__swatch-wrapper {
    overflow: hidden;
  }

  .facets {
    --facets-form-horizontal-gap: 20px;
    --facets-horizontal-max-input-wrapper-height: 230px;
    --facets-upper-z-index: var(--layer-raised);
    --facets-open-z-index: var(--layer-heightened);
    --facets-sticky-z-index: var(--layer-sticky);
    --facets-panel-min-width: 120px;
    --facets-panel-height: 300px;
    --facets-grid-panel-width: 300px;
    --facets-clear-padding: var(--padding-md);
    --facets-clear-shadow: 0 -4px 14px 0 rgb(var(--color-foreground-rgb) / var(--facets-low-opacity));
    --facets-input-label-color: rgb(var(--color-input-text-rgb) / var(--opacity-60));
    --facets-clear-all-min-width: 120px;
    --facets-see-results-min-width: 55%;
    --facets-mobile-gap: 5px;
    --facets-low-opacity: 10%;
    --facets-hover-opacity: 75%;

    top: auto;
    bottom: 0;
    height: var(--drawer-height);
    max-height: var(--drawer-height);
    width: var(--drawer-width);
    max-width: var(--drawer-max-width);
    box-shadow: none;
    padding-block: 0;

    &:not(.facets--drawer) {
      @media screen and (min-width: 750px) {
        padding-inline: var(--padding-inline-start) var(--padding-inline-end);
        width: 100%;
        max-width: 100%;
      }
    }
  }

  .facets--horizontal {
    display: none;

    @media screen and (min-width: 750px) {
      padding-block: var(--padding-block-start) var(--padding-block-end);
      display: flex;
      align-items: center;
      position: relative;
      z-index: var(--facets-upper-z-index);
      border: none;
      height: auto;
      top: initial;
      bottom: initial;
      max-height: none;
      width: auto;
      overflow: visible;
    }
  }

  .facets--vertical {
    display: none;

    @media screen and (min-width: 750px) {
      padding-block: 0 var(--padding-block-end);
      display: block;
      position: static;
      width: auto;
      max-height: none;
      height: auto !important;
      overflow: visible;
    }
  }

  .collection-wrapper:has(.collection-wrapper--full-width) .facets--vertical:not(.facets--drawer) {
    @media screen and (min-width: 750px) {
      padding-inline-start: max(var(--padding-sm), var(--padding-inline-start));
    }
  }

  .facets--drawer {
    border-radius: 0;
    border-right: var(--style-border-drawer);
    box-shadow: var(--shadow-drawer);
    padding-inline: 0;
  }

  .facets--drawer[open] {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .facets.facets-controls-wrapper {
    @media screen and (min-width: 750px) {
      grid-column: column-1 / column-12;
      color: rgb(var(--color-foreground-rgb) / var(--opacity-70));
      gap: 0 var(--facets-form-horizontal-gap);
      padding-bottom: var(--padding-xs);
    }
  }

  .collection-wrapper:has(.product-grid-mobile--large) .facets-mobile-wrapper.facets-controls-wrapper {
    @media screen and (max-width: 749px) {
      display: none;
    }
  }

  .facets__inputs {
    display: flex;
    flex-direction: column;
    gap: var(--padding-lg);
    width: 100%;
  }

  :is(.facets--drawer, .facets--vertical) .facets__inputs:not(:has(.show-more)) {
    padding-block-end: var(--padding-sm);
  }

  /* Facets - Form */
  .facets__form-wrapper {
    display: flex;
    flex-direction: column;
    color: var(--color-foreground-muted);
    width: 100%;
  }

  .facets--horizontal .facets__form-wrapper {
    @media screen and (min-width: 750px) {
      flex-direction: row;
      height: auto;
    }
  }

  .facets__form {
    display: flex;
    flex-flow: column;
    width: 100%;
    height: 100%;
  }

  .facets--horizontal .facets__form {
    @media screen and (min-width: 750px) {
      flex-flow: row nowrap;
      height: auto;
    }
  }

  .facets:not(.facets--drawer) .facets__filters-wrapper {
    @media screen and (min-width: 750px) {
      margin-inline-end: 40px;
    }
  }

  .facets--horizontal .facets__filters-wrapper {
    @media screen and (min-width: 750px) {
      max-width: 60%;
      display: flex;
      flex-wrap: wrap;
      column-gap: var(--gap-xl);
      margin-inline-end: 0;
    }
  }

  /* Facets - Summary */
  .facets__summary {
    --variant-picker-swatch-width: 32px;
    --variant-picker-swatch-height: 32px;
    --icon-opacity: 0.5;

    @media screen and (min-width: 750px) {
      --variant-picker-swatch-width: 26px;
      --variant-picker-swatch-height: 26px;
    }

    font-size: var(--font-h5--size);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: var(--gap-xs);

    &:hover {
      --icon-opacity: 1;
    }
  }

  /* Label and count grouped together so count appears beside the label */
  .facets__summary-label-group {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--gap-2xs);
    min-width: 0;
  }

  .facets__summary-label-group .facets__status {
    margin-inline-start: 0;
    flex-shrink: 0;
  }

  .facets__filters-wrapper .facets__summary:hover,
  .facets__filters-wrapper .facets__panel[open] .facets__summary {
    opacity: 1;
  }

  .facets--horizontal .facets__summary {
    @media screen and (min-width: 750px) {
      font-size: var(--font-paragraph--size);
      justify-content: flex-start;
      height: var(--minimum-touch-target);
    }
  }

  .facets__summary .icon-caret {
    height: 7px;
    width: 13px;
    color: #191919;
    margin-block: var(--margin-2xs);
    transition: color var(--animation-speed) var(--animation-easing);
  }

  .facets--drawer .facets__summary .icon-caret {
    margin-inline-start: var(--margin-2xs);
  }

  /* Facets - Bubble (count beside label) */
  .facets__bubble {
    display: inline-flex;
    font-family: var(--font-paragraph--family);
    font-weight: var(--font-paragraph--weight);
    aspect-ratio: 1 / 1;
    background-color: #fff;
  }

  .facets__inputs .show-more {
    display: flex;
    flex-direction: column;
    gap: var(--gap-xl);
    margin-block-end: var(--padding-xl);
  }

  .facets:not(.facets--drawer) .facets__inputs-wrapper {
    @media screen and (min-width: 750px) {
      gap: var(--gap-sm);
    }
  }

  .facets--horizontal .facets__inputs .show-more {
    @media screen and (min-width: 750px) {
      display: contents;
    }
  }

  .facets--horizontal .facets__inputs-wrapper {
    @media screen and (min-width: 750px) {
      max-height: var(--facets-horizontal-max-input-wrapper-height);
      scrollbar-width: none;
      -ms-overflow-style: none;
      overflow-x: auto;
      padding: var(--padding-md);
      margin-block: 0;
    }
  }

  .facets--vertical .facets__inputs:has(.show-more) .facets__inputs-wrapper {
    padding-block: var(--padding-sm);
    padding-inline: var(--padding-sm);
    margin-block: calc(var(--padding-sm) * -1);
    margin-inline: calc(var(--padding-sm) * -1);
  }

  @media screen and (max-width: 749px) {
    .facets__inputs:has(.show-more) .facets__inputs-wrapper {
      padding-block: var(--padding-sm);
      padding-inline: var(--padding-sm);
      margin-block: calc(var(--padding-sm) * -1);
      margin-inline: calc(var(--padding-sm) * -1);
    }
  }

  .facets__inputs-wrapper:not(:has(.facets__inputs-list)),
  .facets__inputs-wrapper .facets__inputs-list {
    display: flex;
    gap: var(--facets-mobile-gap);
    flex-direction: column;

    @media screen and (min-width: 750px) {
      gap: var(--gap-sm);
    }
  }

  @media screen and (min-width: 750px) {
    .facets--vertical .facets__inputs-wrapper .facets__inputs-list--swatches {
      gap: var(--gap-sm);
    }

    .facets--horizontal
      .facets__inputs-wrapper
      .facets__inputs-list--swatches:not(.facets__inputs-list--swatches-grid) {
      display: grid;
      grid-template-columns: repeat(var(--swatch-columns, 4), 1fr);
    }
  }

  .facets__inputs-wrapper .facets__inputs-list--swatches {
    --facets-mobile-gap: var(--gap-sm);
  }

  .facets__inputs-wrapper .facets__inputs-list--grid {
    --min-column-width: 20%;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(var(--min-column-width), 1fr));
    gap: var(--gap-sm);

    @media screen and (min-width: 750px) {
      --min-column-width: 50px;
    }
  }

  .facets-block-wrapper:not(.facets-block-wrapper--vertical) .facets__inputs-list--grid {
    @media screen and (min-width: 750px) {
      width: var(--facets-grid-panel-width);
    }
  }

  .facets__inputs-wrapper--row:not(:has(.facets__inputs-list)),
  .facets__inputs-wrapper--row .facets__inputs-list {
    flex-wrap: wrap;
    flex-direction: row;
  }

  .facets__inputs .show-more__button {
    --show-more-icon-size: 22px;
    --show-more-gap: 8px;

    gap: var(--show-more-gap);

    @media screen and (min-width: 750px) {
      --show-more-icon-size: 16px;
      --show-more-gap: 6px;
    }
  }

  .facets__inputs .show-more__button .icon-plus {
    width: var(--show-more-icon-size);
    height: var(--show-more-icon-size);

    svg {
      width: var(--icon-size-xs);
      height: var(--icon-size-xs);
    }
  }

  /* Facets - Panel */
  .facets__panel {
    padding: 0 var(--drawer-padding);
  }

  .facets:not(.facets--drawer) .facets__panel,
  .facets-controls-wrapper .facets__panel {
    @media screen and (min-width: 750px) {
      padding: 0;
    }
  }

  .facets--horizontal .facets__panel {
    @media screen and (min-width: 750px) {
      position: relative;
    }
  }

  .facets__form-wrapper .facets__panel .icon-caret {
    height: 14px;
    width: 14px;
  }

  .facets-mobile-wrapper .facets__panel-content {
    border-radius: var(--style-border-radius-popover);
  }

  .facets-mobile-wrapper {
    --facets-upper-z-index: var(--layer-raised);
    --facets-panel-min-width: 120px;
    --facets-panel-height: 300px;
  }

  .facets--horizontal .facets__panel-content,
  .sorting-filter__options {
    @media screen and (min-width: 750px) {
      border-radius: var(--style-border-radius-popover);
      position: absolute;
      top: 100%;
      width: max-content;
      min-width: var(--facets-panel-min-width);
      max-width: var(--facets-panel-width);
      max-height: var(--facets-panel-height);
      z-index: var(--facets-upper-z-index);
      box-shadow: var(--shadow-popover);
      border: var(--style-border-popover);
      background-color: var(--color-background);
      overflow-y: hidden;
      gap: 0;
    }
  }

  :is(.facets--drawer, .facets--vertical) :is(.facets__item, .sorting-filter)::before {
    content: '';
    display: block;
    height: 0;
    width: calc(100% - var(--drawer-padding) * 2);
    border-top: var(--style-border-width) solid var(--color-border);
    margin: 0 auto;
  }

  @media screen and (min-width: 750px) {
    .facets:not(.facets--drawer) :is(.facets__item, .sorting-filter)::before {
      width: 100%;
    }

    .facets--horizontal .facets__item:not(:first-of-type)::before,
    .facets--horizontal .sorting-filter::before {
      content: none;
    }
  }

  @media screen and (min-width: 750px) {
    .facets--vertical .facets__item:not(:first-of-type)::before,
    .facets--vertical .sorting-filter::before {
      content: '';
    }
  }

  /* Facets - Text */
  .facets__label,
  .facets__clear-all,
  .clear-filter {
    text-decoration-color: transparent;
    text-decoration-thickness: 0.075em;
    text-underline-offset: 0.125em;
    transition: text-decoration-color var(--animation-speed) var(--animation-easing);
  }

  .facets__label,
  .products-count-wrapper {
    text-transform: var(--facet-label-transform);
  }

  .clear-filter {
    background-color: transparent;
    box-shadow: none;
    padding: 0;
  }

  /* Facets - Label (left-side filters: black) */
  .facets__label {
    color: #191919;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;

    @media screen and (min-width: 750px) {
      margin-inline-end: var(--margin-2xs);
    }
  }

  /* Products count */
  .products-count-wrapper {
    display: none;
  }

  .facets--horizontal .products-count-wrapper {
    @media screen and (min-width: 750px) {
      display: flex;
      margin-left: auto;
      flex-shrink: 0;
      align-items: center;
      height: var(--minimum-touch-target);
    }
  }

  /* Mobile specific components */
  .facets__title-wrapper {
    background-color: var(--color-background);
    color: #191919;
    position: sticky;
    top: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-block: var(--padding-xs);
    padding-inline-start: var(--drawer-padding);
    padding-inline-end: var(--padding-2xs);
    z-index: var(--facets-sticky-z-index);
  }

  :is(.facets--horizontal, .facets--vertical) .facets__title-wrapper {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }

  .facets-drawer__title {
    --variant-picker-swatch-width: 32px;
    --variant-picker-swatch-height: 32px;
    margin: 0;
    display: flex;
    align-items: center;
    gap: var(--gap-xs);

    @media screen and (min-width: 750px) {
      --variant-picker-swatch-width: 26px;
      --variant-picker-swatch-height: 26px;
    }
  }

  /* Drawer headline (FILTERN): spec typography; overrides .h3 */
  #filters-drawer-heading.facets-drawer__title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 17px;
    line-height: 21.96px;
    letter-spacing: 0;
    text-transform: uppercase;
  }

  .facets-drawer__close {
    position: relative;
    top: 0;
    right: 0;
    padding: 0;
    cursor: pointer;
  }

  /* Status */
  .facets__status:not(:empty) {
    width: max-content;
    display: flex;
    margin-inline-start: auto;
    font-weight: 500;
    color: #191919;
  }

  /* Keep count visible when panel is open or collapsed - do not hide .facets__status */

  .facets--filters-title {
    margin-block-end: 0;
    color: #191919;
    height: fit-content;

    @media screen and (max-width: 749px) {
      display: none;
    }
  }

  .facets--horizontal .facets__panel .facets__summary-label-group .facets__status:has(:not(:empty)) {
    @media screen and (min-width: 750px) {
      display: flex;
      margin-inline-start: 0;
      margin-inline-end: 0;
    }
  }

  /* Horizontal filter style */
  .facets--horizontal .facets__form {
    @media screen and (min-width: 750px) {
      gap: 0 var(--facets-form-horizontal-gap);
    }
  }

  .collection-wrapper:has(> .facets--horizontal) .facets__panel[open] {
    @media screen and (min-width: 750px) {
      z-index: var(--facets-open-z-index);
    }
  }

  /* Figma Design - Top Filter Bar inside Product Grid Area */
  .product-grid-top-bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: var(--margin-lg);
    width: 100%;
    padding-block: var(--padding-sm);
    margin-bottom: var(--margin-md);
  }

  .product-grid-top-bar__filter-btn {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
    padding: var(--padding-2xs) var(--padding-sm);
    font-size: var(--font-paragraph--size);
    color: var(--color-foreground);
    white-space: nowrap;
    transition: opacity var(--animation-speed) var(--animation-easing);
  }

  .product-grid-top-bar__filter-btn:hover {
    opacity: var(--opacity-75);
  }

  .product-grid-top-bar__filter-btn .svg-wrapper {
    width: var(--icon-size-sm);
    height: var(--icon-size-sm);
    flex-shrink: 0;
  }

  .product-grid-top-bar__count {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
  }

  .product-grid-top-bar__count span {
    font-size: var(--font-paragraph--size);
    color: var(--color-foreground);
  }

  .product-grid-top-bar__sort {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    justify-content: flex-end;
  }

  /* Hide filter button on desktop when sidebar is visible */
  @media screen and (min-width: 990px) {
    .collection-wrapper:has(.facets-block-wrapper--vertical:not(.hidden)) .product-grid-top-bar__filter-btn {
      display: none;
    }
  }

  /* Collection PLP: sticky bottom sort + filter (mobile only, both features enabled) */
  .plp-mobile-sticky-actions {
    display: none;
  }

  @keyframes plp-mobile-sticky-actions-enter {
    from {
      transform: translate3d(0, 100%, 0);
    }

    to {
      transform: translate3d(0, 0, 0);
    }
  }

  @media screen and (max-width: 749px) {
    :is(main[data-template='collection'], main[data-template='search']):has([data-plp-mobile-sticky-actions]) {
      --plp-sticky-actions-bar-height: 52px;
    }

    :is(main[data-template='collection'], main[data-template='search']):has([data-plp-mobile-sticky-actions]) .plp-mobile-sticky-actions {
      display: block;
      position: fixed;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: var(--layer-header-menu, 12);
      padding-bottom: env(safe-area-inset-bottom, 0px);
      box-sizing: border-box;
      transform: translate3d(0, 0, 0);
      will-change: transform;
      transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1);
      animation: plp-mobile-sticky-actions-enter 0.4s cubic-bezier(0.32, 0.72, 0, 1) both;
    }

    :is(main[data-template='collection'], main[data-template='search']):has([data-plp-mobile-sticky-actions])
      .plp-mobile-sticky-actions.plp-mobile-sticky-actions--sheet-open {
      transform: translate3d(0, 100%, 0);
      animation: none;
    }

    :is(main[data-template='collection'], main[data-template='search']):has([data-plp-mobile-sticky-actions])
      .plp-mobile-sticky-actions.plp-mobile-sticky-actions--past-pagination {
      transform: translate3d(0, 100%, 0);
      display: none;
      animation: none;
    }

    /* While scrolling PLP: tuck bar away; show again shortly after scroll stops (see facets.js). */
    :is(main[data-template='collection'], main[data-template='search']):has([data-plp-mobile-sticky-actions])
      .plp-mobile-sticky-actions.plp-mobile-sticky-actions--hidden-on-scroll:not(
        .plp-mobile-sticky-actions--sheet-open
      ) {
      transform: translate3d(0, 100%, 0);
      display: none;
    }

    .plp-mobile-sticky-actions__inner {
      display: flex;
      flex-direction: row;
      align-items: stretch;
      width: 100%;
      max-width: 100%;
      min-height: var(--plp-sticky-actions-bar-height, 52px);
      box-sizing: border-box;
      background-color: var(--white, #ffffff);
      border-top: 1px solid var(--line-grey, #DDDDDD);
      padding: 10px;
      gap: 10px;
    }

    .plp-mobile-sticky-actions__btn {
      flex: 1;
      min-width: 0;
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      margin: 0;
      padding: 10px 12px;
      border: 1px solid var(--line-grey, #DDDDDD);
      border-radius: 5px;
      background: var(--white, #ffffff);
      font-family: 'Nunito Sans', sans-serif;
      font-size: 14px;
      font-weight: 500;
      font-style: normal;
      line-height: 1.5;
      letter-spacing: 0;
      color: var(--color-foreground, #191919);
      text-transform: uppercase;
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
    }

    .plp-mobile-sticky-actions__btn:active {
      opacity: 0.92;
    }

    .plp-mobile-sticky-actions__segment {
      display: inline-flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      gap: 50px;
      max-width: 100%;
    }

    .plp-mobile-sticky-actions__text {
      display: inline-flex;
      flex-direction: row;
      align-items: center;
      justify-content: center;
      flex-wrap: nowrap;
      gap: 4px;
      min-width: 0;
      white-space: nowrap;
      text-align: center;
      color: #191919;
    }

    .filter-count-bubble {
      margin-left: 3px;
    }

    .plp-mobile-sticky-actions__icon {
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .plp-mobile-sticky-actions__icon svg {
      display: block;
      width: 16px;
      height: 16px;
    }

    .plp-mobile-sticky-actions__btn[data-plp-sticky-sort] .plp-mobile-sticky-actions__icon svg {
      width: 16px;
      height: 18px;
    }

    .plp-mobile-sticky-actions__count {
      font-weight: 500;
      color: var(--Blues-Primary-Blue, #1e35b1);
    }

    :is(main[data-template='collection'], main[data-template='search']):has([data-plp-mobile-sticky-actions]) .facets-toggle,
    :is(main[data-template='collection'], main[data-template='search']):has([data-plp-mobile-sticky-actions]) .product-grid-top-bar {
      display: none !important;
    }

    :is(main[data-template='collection'], main[data-template='search']):has([data-plp-mobile-sticky-actions]) results-list {
      padding-bottom: calc(var(--plp-sticky-actions-bar-height, 52px) + env(safe-area-inset-bottom, 0px));
    }
  }

  @media screen and (max-width: 749px) and (prefers-reduced-motion: reduce) {
    :is(main[data-template='collection'], main[data-template='search']):has([data-plp-mobile-sticky-actions]) .plp-mobile-sticky-actions {
      animation: none;
      transition: none;
    }
  }

  /* Mobile PLP: sort bottom sheet (Screenshot 2 layout, Screenshot 1 labels via sort-option-label + de.json) */
  .sort-sheet-mobile {
    display: none;
  }

  @media screen and (max-width: 749px) {
    :is(main[data-template='collection'], main[data-template='search']):has([data-plp-mobile-sticky-actions]) .sort-sheet-mobile {
      display: block;
    }

    .sort-sheet-mobile__dialog {
      --animation-speed: 0.28s;
      --animation-easing: cubic-bezier(0.32, 0.72, 0, 1);

      width: 100%;
      max-width: 100%;
      max-height: min(85dvh, 640px);
      height: auto;
      margin: 0;
      padding: 0;
      border: none;
      border-radius: 16px 16px 0 0;
      inset-block-end: 0;
      inset-block-start: auto;
      inset-inline: 0;
      overflow: visible;
      z-index: var(--layer-overlay);
      background: transparent;
    }

    .sort-sheet-mobile__dialog::backdrop {
      background: rgb(var(--color-foreground-rgb) / 0.35);
      transition: opacity var(--animation-speed) var(--animation-easing);
    }

    .sort-sheet-mobile__dialog[open]::backdrop {
      opacity: 1;
    }

    .sort-sheet-mobile__dialog.dialog-closing::backdrop {
      opacity: 0;
    }

    .sort-sheet-mobile__chrome {
      position: relative;
      display: flex;
      flex-direction: column;
      align-items: center;
      padding-block-start: 8px;
    }

    .sort-sheet-mobile__close-floating {
      position: relative;
      z-index: 2;
      margin-block-end: 10px;
      padding: 0;
      border: none;
      background: transparent;
      cursor: pointer;
      color: #242424;
      -webkit-tap-highlight-color: transparent;
    }

    .sort-sheet-mobile__close-floating-inner {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      border-radius: 50%;
      background: #e2e2e2;
      box-shadow: 0 2px 12px rgb(var(--color-foreground-rgb) / 0.12);
    }

    .sort-sheet-mobile__close-floating-inner svg {
      width: 18px;
      height: 18px;
    }

    .sort-sheet-mobile__panel {
      width: 100%;
      background: #fff;
      overflow: hidden;
    }

    .sort-sheet-mobile__header {
      display: flex;
      flex-direction: row;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      padding: 20px 18px;
      background-color: #f1f1f1;
      border-bottom: 1px solid rgb(var(--color-foreground-rgb) / 0.1);
    }

    .sort-sheet-mobile__title {
      margin: 0;
      font-weight: 600;
      font-size: 14px;
      color: #000000;
    }

    .sort-sheet-mobile__header-icon {
      display: flex;
      flex-shrink: 0;
      stroke-width: 1.5px;
    }

    .sort-sheet-mobile__header-icon svg {
      width: 16px;
      height: 18px;
      display: block;
      color: #000000;
    }

    .sort-sheet-mobile__list {
      margin: 0;
      padding: 0;
      max-height: min(60dvh, 480px);
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }

    .sort-sheet-mobile__item {
      margin: 0;
      border-bottom: 1px solid rgb(var(--color-foreground-rgb) / 0.08);
    }

    .sort-sheet-mobile__item:last-child {
      border-bottom: none;
    }

    .sort-sheet-mobile__option {
      width: 100%;
      display: block;
      margin: 0;
      padding: 15px 18px;
      border: none;
      background: #fff;
      text-align: start;
      font-family: inherit;
      font-size: 12px;
      font-weight: 400;
      color: var(--color-foreground, #191919);
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
    }

    .sort-sheet-mobile__option--selected,
    .sort-sheet-mobile__option[aria-selected='true'] {
      background: rgb(30 53 177 / 0.08);
      color: var(--Blues-Primary-Blue, #1e35b1);
      font-weight: 600;
    }

    .sort-sheet-mobile__dialog[open] {
      animation: sort-sheet-mobile-in var(--animation-speed) var(--animation-easing) forwards;
    }

    .sort-sheet-mobile__dialog.dialog-closing {
      animation: sort-sheet-mobile-out var(--animation-speed) var(--animation-easing) forwards;
    }
  }

  @keyframes sort-sheet-mobile-in {
    from {
      transform: translateY(100%);
      opacity: 0.96;
    }

    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes sort-sheet-mobile-out {
    from {
      transform: translateY(0);
      opacity: 1;
    }

    to {
      transform: translateY(100%);
      opacity: 0.96;
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .sort-sheet-mobile__dialog[open],
    .sort-sheet-mobile__dialog.dialog-closing {
      animation-duration: 0.01ms;
    }
  }

  /* Mobile filter drawer: two-panel category + options (desktop unchanged) */
  @media screen and (max-width: 749px) {
    /*
      Host sits inside .collection-layout__sidebar (display: contents), so it becomes a grid item
      of .collection-wrapper.grid.gap-style. Do not give the host in-flow height — min-height: 100dvh
      reserved a full viewport row and row-gap above the product grid on PLP mobile.
    */
    dialog-component#filters-drawer {
      display: contents;
    }

    #filters-drawer dialog > .facets__actions {
      flex-shrink: 0;
    }

    /* Override base .dialog-modal mobile padding (was inset + side gaps) */
    #filters-drawer dialog.facets.facets--drawer.dialog-modal,
    #filters-drawer .facets.facets--drawer.dialog-modal {
      width: 100% !important;
      max-width: 100% !important;
      min-width: 0;
      margin: 0 !important;
      margin-inline: 0 !important;
      padding: 0 !important;
      padding-inline: 0 !important;
      padding-block: 0 !important;
      box-sizing: border-box;
      inset-inline: 0;
      /* Flex column so header + two-column body + footer share height; inner columns scroll independently */
      display: flex;
      flex-direction: column;
      height: 100%;
      max-height: 100dvh;
      min-height: 0;
      overflow: hidden;
    }

    #filters-drawer .facets__form-wrapper:has([data-facets-mobile-drawer-masterdetail]) {
      width: 100%;
      max-width: 100%;
      margin: 0;
      padding-inline: 0;
      flex: 1;
      min-height: 0;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    #filters-drawer .facets__form:has([data-facets-mobile-drawer-masterdetail]) {
      width: 100%;
      max-width: 100%;
      margin: 0;
      padding-inline: 0;
      flex: 1;
      min-height: 0;
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    #filters-drawer .facets__filters-wrapper:has([data-facets-mobile-drawer-masterdetail]) {
      width: 100% !important;
      max-width: 100% !important;
      margin: 0 !important;
      padding: 0 !important;
      flex: 1;
      min-height: 0;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      /* Full-bleed grey behind the two-column grid (left column “base” when nav doesn’t paint) */
      background-color: #f6f6f6;
    }

    #filters-drawer .facets-remove {
      padding-inline: 0 !important;
      width: 100%;
      max-width: 100%;
      box-sizing: border-box;
    }

    #filters-drawer .facets__title-wrapper {
      flex-shrink: 0;
      padding-block: 0;
      padding-inline-start: max(var(--padding-sm), env(safe-area-inset-left, 0px));
      padding-inline-end: max(var(--padding-sm), env(safe-area-inset-right, 0px));
    }

    /* Drawer panels use global drawer-padding — flush for full-width two-column body */
    #filters-drawer .facets--drawer .facets__panel {
      padding-inline: 0 !important;
    }

    #filters-drawer .price-facet .price-facet__presets.list-unstyled {
      display: block;
    }

    #filters-drawer .price-facet {
      gap: var(--padding-xs);
    }

    #filters-drawer .price-facet__preset-item .checkbox {
      align-items: center;
    }

    #filters-drawer .price-facet__preset-item .checkbox__label {
      display: inline-flex;
      align-items: center;
      flex: 1;
      min-width: 0;
      line-height: 1.35;
    }

    #filters-drawer .price-facet__preset-item .checkbox__label-text {
      padding-inline-start: 12px;
      font-size: 14px;
      font-weight: 500;
      white-space: nowrap;
    }

    #filters-drawer .price-facet__preset-item {
      padding-block: 4px;
    }

    /* Price + list facets: explicit square “box” controls (not circular) in mobile drawer */
    #filters-drawer .price-facet__preset-item .checkbox,
    #filters-drawer .facets-mobile-drawer-masterdetail__panel-slot .checkbox {
      --checkbox-border-radius: 3px;
      --checkbox-size: 18px;
    }

    #filters-drawer .price-facet__preset-item .checkbox .icon-checkmark,
    #filters-drawer .facets-mobile-drawer-masterdetail__panel-slot .checkbox .icon-checkmark {
      width: 18px;
      height: 18px;
      min-width: 18px;
      min-height: 18px;
      border-radius: 3px;
      box-sizing: border-box;
    }

    #filters-drawer .price-facet__preset-item .checkbox__input,
    #filters-drawer .facets-mobile-drawer-masterdetail__panel-slot .checkbox__input {
      width: 18px;
      height: 18px;
    }

    #filters-drawer .price-facet__presets-scroll {
      margin-inline: 0;
      padding-inline: 0;
    }

    #filters-drawer [data-facets-mobile-drawer-masterdetail] {
      display: grid;
      /* Fixed narrow category rail; remaining space for options (reference: compact left rail) */
      grid-template-columns: minmax(0, 7.75rem) minmax(0, 1fr);
      grid-template-rows: minmax(0, 1fr);
      align-items: stretch;
      align-content: stretch;
      flex: 1;
      min-height: 0;
      width: 100%;
      max-width: 100%;
      margin-inline: 0;
      border-block-start: 1px solid rgb(var(--color-foreground-rgb) / 0.1);
      /* Entire grid base = left column color; right column is covered by .__panels (white) */
      background-color: #f6f6f6;
    }

    #filters-drawer .facets-mobile-drawer-masterdetail__nav {
      display: flex;
      flex-direction: column;
      align-self: stretch;
      min-height: 0;
      height: auto;
      gap: 0;
      margin: 0;
      padding: 0;
      /* Category rail: only scroll if many facets; does not scroll with the options column */
      overflow-x: hidden;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior: contain;
      background-color: transparent;
      border-inline-end: 1px solid rgb(var(--color-foreground-rgb) / 0.12);
      box-shadow: none;
    }

    #filters-drawer .facets-mobile-drawer-masterdetail__tab {
      flex: 0 0 auto;
      width: 100%;
      margin: 0;
      padding: 20px 15px 20px 20px;
      border: none;
      border-bottom: 1px solid #ddd;
      background-color: transparent;
      box-sizing: border-box;
      display: flex;
      align-items: center;
      font-family: 'Nunito Sans', sans-serif;
      font-size: 14px;
      font-weight: 500;
      font-style: normal;
      line-height: 150%;
      letter-spacing: 0;
      vertical-align: middle;
      color: #000000;
      text-align: start;
      cursor: pointer;
      -webkit-tap-highlight-color: transparent;
      white-space: normal;
      overflow-wrap: anywhere;
      hyphens: auto;
      position: relative;
    }

    #filters-drawer .facets-mobile-drawer-masterdetail__nav-spacer {
      flex: 1 1 auto;
      min-height: 0;
      background-color: transparent;
    }

    #filters-drawer .facets-mobile-drawer-masterdetail__tab.is-active {
      color: var(--Blues-Primary-Blue, #1e35b1);
      font-weight: 600;
      background-color: rgb(var(--color-background-rgb));
    }

    #filters-drawer .facets-mobile-drawer-masterdetail__tab-count {
      color: var(--Blues-Primary-Blue, #1e35b1);
      font-weight: 500;
      margin-inline-start: 4px;
    }

    #filters-drawer .facets-mobile-drawer-masterdetail__panels {
      display: flex;
      flex-direction: column;
      align-self: stretch;
      min-height: 0;
      overflow: hidden;
      background-color: rgb(var(--color-background-rgb));
    }

    #filters-drawer .facets-mobile-drawer-masterdetail__panel-slot {
      display: none;
      flex: 1;
      min-height: 0;
      flex-direction: column;
    }

    #filters-drawer .facets-mobile-drawer-masterdetail__panel-slot--active {
      display: flex;
    }

    #filters-drawer .facets-mobile-drawer-masterdetail__panel-slot .facets__summary {
      display: none;
    }

    #filters-drawer .facets-mobile-drawer-masterdetail__panel-slot--active .facets__panel {
      display: flex;
      flex-direction: column;
      flex: 1;
      min-height: 0;
      border: none;
    }

    #filters-drawer .facets-mobile-drawer-masterdetail__panel-slot--active .facets__panel-content {
      position: static;
      flex: 1 1 auto;
      min-height: 0;
      max-height: none;
      overflow-y: auto;
      overflow-x: hidden;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior: contain;
      padding: 18px 12px;
      opacity: 1;
      height: calc(100vh - 94px);
    }

    #filters-drawer .facets-mobile-drawer-masterdetail__panel-slot--active .facets__panel-content:has(.price-facet) {
      padding: 12px 23px;
    }

    /* Right column: list facet rows — checkbox + label alignment (mobile drawer only) */
    #filters-drawer .facets-mobile-drawer-masterdetail__panel-slot .checkbox {
      align-items: center;
      width: 100%;
    }

    #filters-drawer .facets-mobile-drawer-masterdetail__panel-slot .checkbox__label {
      display: inline-flex;
      align-items: center;
      flex: 1;
      min-width: 0;
      line-height: 1.35;
      padding-bottom: 10px;
    }

    #filters-drawer .facets-mobile-drawer-masterdetail__panel-slot .checkbox__label-text {
      padding-inline-start: 12px;
      font-size: 14px;
      font-weight: 500;
      line-height: 1.35;
      letter-spacing: 0.01em;
      white-space: nowrap;
    }

    #filters-drawer .facets-mobile-drawer-masterdetail__panel-slot .facets__inputs-list-item {
      padding-block: 4px;
    }

    #filters-drawer .facets-mobile-drawer-masterdetail__panel-slot--active .facets__item::before {
      display: none;
    }
  }

  @media screen and (min-width: 750px) {
    #filters-drawer [data-facets-mobile-drawer-masterdetail] {
      display: contents;
    }

    #filters-drawer .facets-mobile-drawer-masterdetail__nav {
      display: none !important;
    }

    #filters-drawer .facets-mobile-drawer-masterdetail__panels {
      display: contents;
    }

    #filters-drawer .facets-mobile-drawer-masterdetail__panel-slot {
      display: contents;
    }
  }
/* END_BLOCK:filters */

/* START_BLOCK:footer-policy-list (INDEX:157) */
.policy-list-trigger {
    anchor-name: --terms-policies-trigger;
    cursor: pointer;
    font-size: var(--font-size, 0.75rem);
    text-transform: var(--text-transform, none);
  }

  .policy_list {
    li {
      border-radius: calc(var(--style-border-radius-popover) - 8px);

      a {
        color: var(--color-foreground);
        display: inline-block;
        padding: 8px;
        text-align: start;
        width: 100%;
        outline-color: #0000;
        font-size: var(--font-size, 0.75rem);
        text-transform: var(--text-transform, none);
      }

      &:is(:hover, :focus-within) {
        background: rgb(var(--color-foreground-rgb) / 0.15);
      }
    }
  }

  .terms-policies-popover {
    position-anchor: --terms-policies-trigger;
    inset: unset;
    bottom: calc(anchor(top) + 1rem);
    left: anchor(left);
    border-radius: var(--style-border-radius-popover);
    background: linear-gradient(var(--color-background) 0 100%),
      linear-gradient(rgb(var(--color-background-rgb) / 0.15) 0 100%);
    background-clip: padding-box, border-box;
    border: 1px solid #0000;
    box-shadow: var(--shadow-popover);
    padding: 8px;
    margin: 0;
    opacity: 0;
    scale: 0.94;
    translate: 0 6px;
    transform-origin: 6ch 100%;
  }

  .terms-policies-popover.\:popover-open,
  .terms-policies-popover:popover-open {
    opacity: 1;
    translate: 0 0;
    scale: 1;
  }

  @media screen and (max-width: 750px) {
    .terms-policies-popover {
      left: anchor(center);
      transform: translate(-50%, 0);
      transform-origin: 0% 100%;
    }
  }

  @supports not (position-anchor: --account-button-trigger) {
    .terms-policies-popover {
      bottom: unset;
      top: calc(var(--anchor-top) * 1px);
      left: calc(var(--anchor-left) * 1px);
      transform: translate(0, calc(-100% - 1.25rem));
    }
    @media screen and (max-width: 750px) {
      .terms-policies-popover {
        left: calc((var(--anchor-left) + (var(--anchor-width) / 2)) * 1px);
        transform: translate(-50%, calc(-100% - 1.25rem));
      }
    }
  }
  @media (prefers-reduced-motion: no-preference) {
    .terms-policies-popover {
      transition-property: display, overlay, opacity, scale, translate;
      transition-behavior: allow-discrete;
      transition-duration: 0.3s;
      transition-timing-function: var(--ease-out-quad);
    }
    @starting-style {
      .terms-policies-popover.\:popover-open,
      .terms-policies-popover:popover-open {
        opacity: 0.7;
        translate: 0 6px;
        scale: 0.94;
      }
    }
  }
/* END_BLOCK:footer-policy-list */

/* START_BLOCK:icon (INDEX:159) */
.icon-block {
    display: flex;
    fill: currentcolor;
    flex-shrink: 0;
  }

  .icon-block__media {
    height: auto;
  }
/* END_BLOCK:icon */

/* START_BLOCK:image (INDEX:160) */
.placeholder-image {
    position: relative;
    aspect-ratio: var(--ratio);
    overflow: hidden;
  }

  placeholder-image img {
    width: 100%;
    height: 100%;
    aspect-ratio: var(--ratio);
  }

  .image-block {
    display: flex;

    /* When the image is nested in a group, section, etc, respect the parent's horizontal alignment */
    justify-content: var(--horizontal-alignment, 'inline-start');
  }

  .image-block--height-fill .image-block__image {
    height: 100%;
  }

  .image-block__image {
    object-fit: cover;
    aspect-ratio: var(--ratio);
  }
/* END_BLOCK:image */

/* START_BLOCK:logo (INDEX:162) */
.logo-block {
    width: calc(var(--logo-width) + var(--padding-inline-start) + var(--padding-inline-end));
    max-width: 100%;
    max-height: calc(var(--logo-height, 100%) + var(--padding-block-start) + var(--padding-block-end));
    font-size: var(--logo-height);
    display: flex;

    @media screen and (max-width: 750px) {
      max-height: calc(
        var(--logo-height-mobile, var(--logo-height, 100%)) + var(--padding-block-start) + var(--padding-block-end)
      );
      font-size: var(--logo-height-mobile, var(--logo-height));
      width: calc(
        var(--logo-width-mobile, var(--logo-width)) + var(--padding-inline-start) + var(--padding-inline-end)
      );
    }
  }

  .logo-block__image-wrapper {
    display: flex;
    width: 100%;
    max-width: 100%;
    max-height: 100%;
  }

  .logo-block__image {
    object-fit: contain;
    width: 100%;
  }
/* END_BLOCK:logo */

/* START_BLOCK:members-row-tile (INDEX:163) */
/* Mobile / tablet (<990px): same admin-driven structure as desktop — fluid width, no clipped copy */
  .members-row-tile {
    position: relative;
    background: var(--members-row-tile-bg, #981319);
    border: var(--members-row-tile-border-width, 0) solid var(--members-row-tile-border-color, #981319);
    border-radius: var(--members-row-tile-radius, 0.3125rem);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
    width: 100%;
    max-width: 100%;
    margin-inline: 0;
    height: auto;
    min-height: var(--members-row-tile-height-mobile, 17.75rem);
    max-height: none;
    opacity: 1;
    transform: none;
    box-sizing: border-box;
  }

  .members-row-tile--full-row-banner {
    min-height: var(--members-row-tile-height-mobile, 17.75rem);
  }

  .members-row-tile__link {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: var(--layer-raised);
  }

  .members-row-tile__media {
    position: relative;
    width: 100%;
    flex: 0 0 auto;
    height: var(--members-row-media-height-mobile, 11.25rem);
    min-height: var(--members-row-media-height-mobile, 11.25rem);
    overflow: hidden;
    background: var(--members-row-media-placeholder-mobile, #981319);
    box-sizing: border-box;
  }

  .members-row-tile--full-row-banner .members-row-tile__media {
    aspect-ratio: unset;
    height: 100%;
    min-height: 0;
    flex: 1 1 auto;
  }

  .members-row-tile__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* When desktop and mobile images differ: stack and show by breakpoint */
  .members-row-tile__image--desktop {
    display: none;
    position: absolute;
    inset: 0;
  }

  .members-row-tile__image--mobile {
    display: block;
    position: absolute;
    inset: 0;
  }

  @media screen and (min-width: 990px) {
    .members-row-tile__image--desktop {
      display: block;
    }

    .members-row-tile__image--mobile {
      display: none;
    }
  }

  .members-row-tile__placeholder {
    width: 100%;
    height: 100%;
    min-height: var(--members-row-media-height-mobile, 11.25rem);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--members-row-media-placeholder-mobile, #981319);
  }

  .members-row-tile__placeholder svg {
    width: 100%;
    height: 100%;
  }

  .members-row-tile__badge {
    position: absolute;
    top: var(--members-row-badge-offset, 0.5rem);
    right: var(--members-row-badge-offset, 0.5rem);
    background: var(--members-row-badge-bg, #FFFFFF);
    color: var(--members-row-badge-text-color, #282828);
    border-radius: var(--members-row-badge-radius, 0.3125rem);
    padding: var(--members-row-badge-padding-block, 0.1875rem) var(--members-row-badge-padding-inline, 0.5rem);
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto auto;
    justify-items: center;
    align-items: center;
    align-content: center;
    gap: 0;
    line-height: 1.4;
    z-index: var(--layer-raised);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
    width: min(100%, var(--members-row-badge-width-mobile, 4.5rem));
    max-width: calc(100% - 2 * var(--members-row-badge-offset, 0.5rem));
    min-height: var(--members-row-badge-height-mobile, 4rem);
    box-sizing: border-box;
    text-align: center;
  }

  /* speech-bubble tail */
  .members-row-tile__badge::after {
    content: '';
    position: absolute;
    left: 12px;
    bottom: calc(var(--members-row-badge-tail-size, 18px) / -2);
    width: var(--members-row-badge-tail-size, 18px);
    height: var(--members-row-badge-tail-size, 18px);
    background: var(--members-row-badge-bg, #FFFFFF);
    transform: rotate(45deg);
    border-radius: 2px;
    box-shadow: 1px 1px 0 0 rgba(0, 0, 0, 0.1);
  }

  .members-row-tile__badge-amount {
    font-size: var(--members-row-badge-amount-font-size-mobile, 1.125rem);
    font-weight: 700;
    line-height: 1.3;
    color: inherit;
    display: block;
    word-break: break-word;
  }

  .members-row-tile__badge-label {
    font-size: var(--members-row-badge-label-font-size-mobile, 0.75rem);
    font-weight: 500;
    line-height: 1.3;
    text-transform: uppercase;
    color: inherit;
    display: block;
  }

  .members-row-tile__content {
    background: var(--members-row-content-bg, #981319);
    padding: var(--members-row-content-padding-mobile, 0.75rem);
    gap: var(--members-row-content-gap-mobile, 0.5rem);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    min-height: var(--members-row-content-height-mobile, 6.5rem);
    min-width: 0;
    box-sizing: border-box;
    flex: 0 1 auto;
    overflow: hidden;
  }

  .members-row-tile__title-chip {
    display: flex;
    justify-content: flex-start;
    min-width: 0;
  }

  .members-row-tile__title {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
    background: var(--members-row-title-chip-bg, #ffffff);
    border-radius: var(--members-row-title-chip-radius, 0.171875rem);
    padding: var(--members-row-title-chip-padding-block, 0.25rem) var(--members-row-title-chip-padding-inline, 0.375rem);
    color: var(--members-row-title-color, #000000);
    font-weight: 600;
    font-size: var(--members-row-title-font-size-mobile, 0.875rem);
    line-height: 1.35;
    text-align: left;
    box-sizing: border-box;
    overflow: hidden;
    text-overflow: ellipsis;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  .members-row-tile__description {
    margin: 0;
    color: var(--members-row-description-color, #ffffff);
    font-weight: 400;
    font-size: var(--members-row-description-font-size-mobile, 0.8125rem);
    line-height: 1.45;
    text-align: left;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    min-width: 0;
    background: var(--members-row-description-bg, transparent);
    border-radius: 0.25rem;
    padding-block: 0;
    padding-inline: 0;
    box-sizing: border-box;
    overflow-wrap: anywhere;
    word-break: break-word;
  }

  /* Full-row banner: only image, no text block; image fills media area */
  .members-row-tile--full-row-banner .members-row-tile__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  /* ========== DESKTOP (990px+) – Figma: tile 460px, media 319px, content 141px ========== */
  @media screen and (min-width: 990px) {
    .members-row-tile {
      width: 100%;
      height: auto;
      min-height: var(--members-row-tile-height, 28.75rem);
      max-height: none;
      max-width: min(100%, var(--members-row-tile-max-width, 100%));
      margin-inline: auto;
      border-radius: var(--members-row-tile-radius, 0.65375rem);
      border-width: var(--members-row-tile-border-width, 5px);
      background: var(--members-row-tile-bg, #981319);
    }

    .members-row-tile__media {
      height: var(--members-row-media-height, 19.9375rem);
      min-height: 0;
      background: var(--members-row-media-placeholder, #626161);
    }

    .members-row-tile__placeholder {
      background: var(--members-row-media-placeholder, #626161);
      min-height: var(--members-row-media-height, 19.9375rem);
    }

    .members-row-tile__content {
      padding: var(--members-row-content-padding, 1.25rem);
      gap: var(--members-row-content-gap, 0.625rem);
      min-height: var(--members-row-content-height, 8.8125rem);
    }

    .members-row-tile__title {
      background: var(--members-row-title-chip-bg, #ffffff);
      color: var(--members-row-title-color, #000000);
      padding: var(--members-row-title-chip-padding-block, 0.375rem) var(--members-row-title-chip-padding-inline, 0.625rem);
      border-radius: var(--members-row-title-chip-radius, 0.326875rem);
      font-size: var(--members-row-title-font-size-desktop, var(--members-row-title-font-size, 1.125rem));
      line-height: 1.39;
    }

    .members-row-tile__description {
      color: var(--members-row-description-color, #ffffff);
      font-size: var(--members-row-description-font-size-desktop, var(--members-row-description-font-size, 1.125rem));
      -webkit-line-clamp: 3;
    }

    .members-row-tile__badge {
      width: var(--members-row-badge-width, 5.3125rem);
      max-width: none;
      min-height: var(--members-row-badge-height, 5rem);
      padding: var(--members-row-badge-padding-block, 0.1875rem) var(--members-row-badge-padding-inline, 0.75rem);
    }

    .members-row-tile__badge-amount {
      font-size: var(--members-row-badge-amount-font-size, 1.5rem);
    }

    .members-row-tile__badge-label {
      font-size: var(--members-row-badge-label-font-size, 1rem);
    }

    .members-row-tile--full-row-banner {
      min-height: var(--members-row-tile-height, 28.75rem);
      max-width: 100%;
    }

    .members-row-tile--full-row-banner .members-row-tile__media {
      height: 100%;
      min-height: 0;
      flex: 1 1 auto;
    }
  }
/* END_BLOCK:members-row-tile */

/* START_BLOCK:menu (INDEX:164) */
.menu {
    width: 100%;
  }

  .menu:not(:has(.menu__heading--empty)) .details-content {
    margin-block-start: var(--spacing--size);
  }

  .menu__item + .menu__item {
    margin-block-start: var(--spacing--size);
  }

  .menu .menu__heading--empty {
    display: none;
  }

  .menu__heading__default {
    display: contents;
  }

  .menu__heading__accordion {
    display: none;
  }

  @media screen and (max-width: 749px) {
    /* Always show the fallback heading on mobile when accordion is enabled */
    .menu--accordion .menu__heading--empty {
      display: flex;
    }

    .menu--accordion .menu__heading__accordion {
      display: contents;
    }

    .menu--accordion .menu__heading__default {
      display: none;
    }

    .menu--accordion .details-content {
      margin-block-start: var(--spacing--size);
    }

    .menu--accordion .menu__details {
      padding-inline: 0;
    }

    .menu--dividers .menu__details {
      border-block-end: var(--style-border-width) solid var(--color-border);
    }

    .menu--dividers .details-content {
      padding-block-end: var(--padding-sm);
    }
  }

  .menu--caret .icon-plus,
  .menu--plus .icon-caret {
    display: none;
  }
/* END_BLOCK:menu */

/* START_BLOCK:page (INDEX:167) */
.page-block {
    display: flex;
    flex-direction: column;
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: auto;
    align-items: flex-start;
  }

  .page-title {
    margin-bottom: var(--margin-xl);
  }

  .placeholder-image {
    position: relative;
    aspect-ratio: var(--ratio);
    overflow: hidden;
  }

  .page-placeholder {
    width: 100%;
    height: 100%;
  }
/* END_BLOCK:page */

/* START_BLOCK:payment-icons (INDEX:168) */
.payment-icons {
    width: 100%;
  }

  .payment-icons__list {
    display: flex;
    align-items: center;
    justify-content: var(--alignment);
    flex-wrap: wrap;
    gap: var(--icon-gap);
    margin: 0;
    padding: 0;
  }

  .payment-icons__item {
    display: flex;
    align-items: center;
  }
/* END_BLOCK:payment-icons */

/* START_BLOCK:popup-link (INDEX:171) */
.popup-link__button svg {
    display: inline-block;
    position: relative;
    top: var(--margin-2xs);
  }

  .popup-link__content {
    box-shadow: var(--shadow-popover);
    border: var(--style-border-popover);
    border-radius: var(--style-border-radius-popover);
    background-color: var(--color-background);
    padding: var(--padding-4xl) var(--padding-xl) var(--padding-xl);
    max-width: var(--normal-content-width);
    max-height: var(--modal-max-height);

    @media screen and (min-width: 750px) {
      padding: var(--padding-5xl);
    }
  }

  .popup-link__content[open] {
    animation: modalSlideInTop var(--animation-speed) var(--animation-easing) forwards;
  }

  .popup-link__content.dialog-closing {
    animation: modalSlideOutTop var(--animation-speed) var(--animation-easing) forwards;
  }

  .popup-link__content--drawer {
    position: fixed;
    border-radius: 0;
    width: var(--sidebar-width);
    max-width: 95vw;
    height: 100%;
    margin: 0 0 0 auto;
  }

  /* Needed to ensure the drawer is full height */
  .popup-link__content--drawer:modal {
    max-height: 100dvh;
  }

  .popup-link__close {
    top: var(--margin-2xs);
    right: var(--margin-2xs);
    opacity: 0.8;
    animation: none;
  }
/* END_BLOCK:popup-link */

/* START_BLOCK:price (INDEX:172) */
.tax-note:empty {
    display: none;
  }

  form.payment-terms {
    padding-top: 0.5em;
    font-size: min(0.85em, var(--font-paragraph--size));
    font-weight: var(--font-paragraph--weight);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .installments:not(:has(shopify-payment-terms)) {
    display: none;
  }
/* END_BLOCK:price */

/* START_BLOCK:product-custom-property (INDEX:174) */
product-custom-property-component {
    display: block;
    width: 100%;
  }

  product-custom-property-component .__heading {
    margin-inline: 0;
    margin-block: 0 var(--padding-sm);
  }

  product-custom-property-component .__heading:has(+ .__description) {
    margin-block-end: var(--padding-2xs);
  }

  product-custom-property-component .__description {
    font-size: min(0.85em, var(--font-paragraph--size));
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
    margin-inline: 0;
    margin-block: 0 var(--padding-md);
  }

  product-custom-property-component .__field {
    position: relative;
  }

  product-custom-property-component .__input-wrapper {
    position: relative;
  }

  product-custom-property-component input,
  product-custom-property-component textarea {
    width: 100%;
    /* stylelint-disable-next-line declaration-no-important */
    color: var(--color-input-text) !important;
  }

  /* Add padding for inputs with counter inside */
  product-custom-property-component .__input-wrapper input {
    padding-bottom: calc(var(--padding-sm) * 3);
  }

  product-custom-property-component .__input-wrapper textarea {
    padding-bottom: calc(var(--padding-sm) * 3);
    scroll-padding-bottom: calc(var(--padding-sm) * 3);
  }

  product-custom-property-component textarea {
    min-height: 80px;
  }

  @supports (resize: vertical) {
    @media (hover: hover) and (pointer: fine) {
      product-custom-property-component textarea {
        resize: vertical; /* stylelint-disable-line */
      }
    }
  }

  product-custom-property-component .__character-label {
    position: absolute;
    left: var(--input-padding-x);
    bottom: var(--padding-sm);
    pointer-events: none;
  }

  product-custom-property-component .__character-count {
    font-style: italic;
    /* stylelint-disable-next-line declaration-no-important */
    color: var(--color-input-text) !important;
  }

  /* We should consolidate input styles that share the same behavior */
  .custom-property__input {
    border: var(--style-border-width-inputs) solid var(--color-input-border);
    border-radius: var(--style-border-radius-inputs);

    /* this is needed to override the styles from field__input */
    box-shadow: none;

    &:is(:hover, :focus) {
      /* this is needed to override the styles from field__input */
      box-shadow: none;
    }

    &:focus {
      /* this is needed to override the styles from field__input */
      outline: var(--focus-outline-width) solid var(--color-input-background);
    }
  }
/* END_BLOCK:product-custom-property */

/* START_BLOCK:product-inventory (INDEX:176) */
.product-inventory__status {
    display: flex;
    align-items: center;
    font-size: var(--font-paragraph--size);
    line-height: var(--font-paragraph--line-height);
    gap: var(--padding-xs);
  }

  .product-inventory__icon,
  .product-inventory__icon svg {
    width: var(--icon-size-sm);
    height: var(--icon-size-sm);
  }

  .product-inventory__icon-low {
    color: var(--color-lowstock);
  }

  .product-inventory__icon-in_stock {
    color: var(--color-instock);
  }

  .product-inventory__icon-out_of_stock {
    color: var(--color-outofstock);
  }

  .product-inventory__icon circle:first-of-type {
    opacity: 0.3;
  }
/* END_BLOCK:product-inventory */

/* START_BLOCK:product-recommendations (INDEX:177) */
.product-recommendations .resource-list__carousel slideshow-slides {
    padding: 0;
  }

  .product-recommendations .section-resource-list__content{
    margin-bottom: 20px;
  }

  .product-recommendations-wrapper {
    width: 100%;
  }

  .product-recommendations-wrapper:has(product-recommendations[data-shopify-editor-preview]) {
    width: 100vw;
  }

  .product-recommendations {
    display: block;
  }

  .product-recommendations__skeleton-item {
    aspect-ratio: 3 / 4;
    background-color: var(--color-foreground);
    opacity: var(--skeleton-opacity);
    border-radius: 4px;
  }
/* END_BLOCK:product-recommendations */

/* START_BLOCK:product-title (INDEX:178) */
/* Fixed height for product titles in product cards - 42px with 2-line truncation */
  /* Target the actual DOM structure: .product-card/.product-grid__card > .contents > .text-block > p */
  .product-card .contents .text-block,
  .product-grid__card .contents .text-block {
    height: 42px;
    max-height: 42px;
    min-height: 42px;
    margin: 0;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  .product-card .contents .text-block > *,
  .product-grid__card .contents .text-block > * {
    margin: 0;
    padding: 0;
  }

  .product-card .contents .text-block p,
  .product-grid__card .contents .text-block p {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    height: 42px;
    max-height: 42px;
    min-height: 42px;
    line-height: 21px; /* Exactly half of 42px for 2 lines */
    margin: 0;
    padding: 0;
    white-space: normal;
    word-wrap: break-word;
    word-break: break-word;
  }
/* END_BLOCK:product-title */

/* START_BLOCK:review (INDEX:181) */
.rating-wrapper {
    width: 100%;
    gap: var(--gap-xs);
    flex-wrap: wrap;
  }

  .rating-color--primary {
    --star-fill-color: var(--color-primary);
    --star-fill-color-rgb: var(--color-primary-rgb);
  }

  .rating-color--foreground {
    --star-fill-color: var(--color-foreground);
    --star-fill-color-rgb: var(--color-foreground-rgb);
  }

  .rating-wrapper,
  .rating {
    display: flex;
    align-items: center;
  }

  .rating-wrapper.justify-right {
    flex-direction: row-reverse;
  }

  .rating {
    gap: var(--gap-3xs);
  }

  .rating-wrapper .rating-text,
  .rating-wrapper .rating-count,
  .rating-wrapper .rating-count-separator {
    color: var(--star-fill-color);
    margin: 0;
    white-space: nowrap;
  }

  .rating-count-separator {
    opacity: var(--opacity-20);
    padding-left: calc(var(--padding-xs) / 2);
    padding-right: var(--padding-xs);
  }

  .stars {
    height: var(--star-size);
    fill: var(--empty-star-fill-color);
  }

  .filled-star {
    fill: var(--star-fill-color);
  }
/* END_BLOCK:review */

/* START_BLOCK:social-links (INDEX:183) */
.social-icons__wrapper {
    display: flex;
    gap: var(--gap-sm);
    flex-wrap: wrap;
    justify-content: center;

    @media screen and (min-width: 750px) {
      flex-wrap: nowrap;
      justify-content: flex-start;
    }
  }

  .social-icons__icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: var(--icon-size-lg);
  }

  .social-icons__icon {
    display: flex;
    fill: currentColor;
    flex-shrink: 0;
    width: var(--icon-size-lg);
    height: var(--icon-size-lg);
  }

  .social-icons__icon {
    display: none;
  }

  .social-icons__icon-wrapper:has(.social-icons__icon path) {
    width: var(--icon-size-lg);

    .social-icons__icon {
      display: block;
    }

    .social-icons__icon-label {
      display: none;
    }
  }

  /* Disabled state for editor */
  .shopify-design-mode .social-icons__icon-wrapper--disabled {
    opacity: var(--disabled-opacity, 0.5);
    cursor: not-allowed;
  }

  .shopify-design-mode .social-icons__icon-wrapper--disabled a {
    pointer-events: none;
  }
/* END_BLOCK:social-links */

/* START_BLOCK:spacer (INDEX:184) */
/* Fill opposite direction */
  .layout-panel-flex--column > .spacer-block {
    width: 100%;
  }

  .layout-panel-flex--row > .spacer-block {
    height: 100%;
  }

  /* Flex - Percent */
  :is(.layout-panel-flex--row, .layout-panel-flex--column) > .spacer-block--size-percent {
    flex: var(--spacer-size);
  }

  /* Flex - Pixel */
  .layout-panel-flex--row > .spacer-block--size-pixel {
    width: var(--spacer-size);
  }

  .layout-panel-flex--column > .spacer-block--size-pixel {
    height: var(--spacer-size);
  }

  /* Mobile */
  @media screen and (max-width: 750px) {
    /* Percent */
    .layout-panel-flex--row:not(.mobile-column) > .spacer-block--size-mobile-percent {
      flex: var(--spacer-size-mobile);
      height: 100%;
    }

    .layout-panel-flex--column > .spacer-block--size-mobile-percent,
    .mobile-column > .spacer-block--size-percent:not(.spacer-block--size-mobile-pixel) {
      width: 100%;
      flex: var(--spacer-size-mobile);
    }

    /* Pixel */
    .layout-panel-flex--row:not(.mobile-column) > .spacer-block--size-mobile-pixel {
      width: var(--spacer-size-mobile);
      height: 100%;
    }

    .layout-panel-flex--column > .spacer-block--size-mobile-pixel,
    .mobile-column > .spacer-block--size-mobile-pixel {
      width: 100%;
      flex: 0;
      height: var(--spacer-size-mobile);
    }
  }
/* END_BLOCK:spacer */

/* START_BLOCK:swatches (INDEX:185) */
product-swatches {
    width: 100%;
    display: flex;
    position: relative;
    overflow: hidden;
    gap: 0;
    flex-shrink: 0;
  }

  swatches-variant-picker-component {
    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: var(--product-swatches-alignment-mobile);

    @media (min-width: 750px) {
      justify-content: var(--product-swatches-alignment);
    }
  }

  swatches-variant-picker-component .variant-option--swatches {
    padding-block: calc(
        var(--product-swatches-padding-block-start) + var(--focus-outline-offset) + var(--focus-outline-width)
      )
      calc(var(--product-swatches-padding-block-end) + var(--focus-outline-offset) + var(--focus-outline-width));
    padding-inline: calc(
        var(--product-swatches-padding-inline-start) + var(--focus-outline-offset) + (1.5 * var(--focus-outline-width))
      )
      calc(var(--product-swatches-padding-inline-end) + var(--focus-outline-offset) + var(--focus-outline-width));
  }

  .variant-option--swatches {
    overflow-list::part(list) {
      gap: var(--gap-sm);
    }

    overflow-list[defer]::part(list) {
      flex-wrap: nowrap;
    }
  }

  .hidden-swatches__count {
    display: flex;
    align-self: center;
    align-items: center;
    justify-content: center;
    color: rgb(var(--color-foreground-rgb) / var(--opacity-40-60));
    background-color: transparent;
    padding: 0;
    border: 0;
    border-radius: 0;

    &::before {
      /* This doesn't work in Safari without the counter-reset. https://stackoverflow.com/a/40179718 */
      counter-reset: overflow-count var(--overflow-count);
      content: '+' counter(overflow-count);
      line-height: 1;
      cursor: pointer;
    }
  }

  .hidden-swatches__count:hover {
    color: var(--color-foreground-rgb);
  }
/* END_BLOCK:swatches */

/* START_BLOCK:video (INDEX:189) */
.placeholder-video {
    aspect-ratio: 5 / 3;
  }
/* END_BLOCK:video */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:account-actions (INDEX:190) */
.account-actions {
    background-color: var(--color-background);
    display: flex;
    flex-direction: column;
    position: relative;
    transition: height var(--animation-values);

    &:has([data-active]) .account-actions__main-menu {
      visibility: hidden;
    }
  }

  .account-actions__header {
    padding: var(--padding-xl);
    display: flex;
    flex-direction: column;
    gap: var(--gap-2xs);
  }

  .account-actions__title {
    /* Ideally we set the font-size here, but specificity issues make this necessary */
    --font-h5--size: var(--font-size--lg);

    margin: 0;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
  }

  .account-actions__email {
    display: flex;
    align-items: center;
    gap: var(--gap-2xs);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-60));
    max-width: var(--account-actions-max-width);
    word-break: break-all;
  }

  .account-actions__sign-ins {
    padding: var(--padding-xl);
    padding-block-start: 0;
    padding-block-end: var(--padding-md);
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
  }

  .account-actions__sign-in-text {
    display: inline;
  }

  .account-actions__fallback-text {
    display: none;
  }

  .account-actions__sign-ins:not(:has(shop-login-button)) {
    gap: 0;

    .account-actions__sign-in-text {
      display: none;
    }

    .account-actions__fallback-text {
      display: block;
    }
  }

  /* Makes the shop login button radius match the theme settings */
  .account-actions__shop-login {
    --buttons-radius: var(--style-border-radius-buttons-primary);
  }

  .account-actions__nav {
    padding: var(--padding-xl);
    padding-block-start: 0;
  }

  .account-actions__list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-sm);
    width: 100%;
    list-style: none;
    margin: 0;
    padding: 0;

    @media screen and (max-width: 300px) {
      grid-template-columns: 1fr;
    }
  }

  .account-actions__link {
    width: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--gap-2xs);
  }

  .account-actions__icon {
    display: flex;
    width: var(--icon-size-sm);
    height: var(--icon-size-sm);
    margin-block: -4px;
  }

  /* This triggers iOS < 16.4. The outline bug is not recognized as a lack of @supports */

  @supports not (background-color: rgb(from red 150 g b / alpha)) {
    /**
    There is a bug in safari < 16.4 that causes the outline to not follow the elements border radius. This is a workaround.
    Using element selector to increase specificity.
  **/

    .account-actions :is(a.button, a.button-secondary):focus-visible {
      outline: none;
      overflow: visible;
      position: relative;

      &::after {
        content: '';
        position: absolute;
        inset: calc(-1 * var(--focus-outline-offset));
        border: var(--focus-outline-width) solid currentColor;
        border-radius: var(--style-border-radius-buttons-secondary);
        display: inherit;
      }
    }

    .account-actions a.button:focus-visible::after {
      border-color: var(--button-background-color);
      border-radius: var(--style-border-radius-buttons-primary);
    }
  }
/* END_SNIPPET:account-actions */

/* START_SNIPPET:account-button (INDEX:191) */
.account-button {
    color: var(--color-foreground);
    appearance: none;
    border: none;
    background: none;
    height: var(--button-size);
    width: var(--button-size);
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-content: center;
    transition: color var(--animation-speed) var(--animation-easing);
    anchor-name: --account-button-trigger;
  }

  .account-button__avatar {
    --account-button-size: 1.625rem;

    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--account-button-size);
    height: var(--account-button-size);
    border-radius: var(--style-border-radius-50);
    background-color: var(--color-primary-button-background);
    font-size: var(--font-size--sm);
    font-weight: 500;
    color: var(--color-primary-button-text);
    text-transform: uppercase;
    line-height: 1;
  }

  .account-button__icon {
    color: currentColor;
    display: inline-flex;
    justify-content: center;
    align-items: center;
  }

  /* The shop avatar doesn't bubble the click event up to our button, so we need to prevent that or the button doesn't work */
  .account-button shop-user-avatar {
    pointer-events: none;
  }
/* END_SNIPPET:account-button */

/* START_SNIPPET:account-drawer (INDEX:192) */
.account-drawer {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }

  .account-drawer__dialog {
    --animation-speed: 0.24s;
    --dialog-drawer-opening-animation: account-drawer-slide-in;
    --dialog-drawer-closing-animation: account-drawer-slide-out;

    height: fit-content;
    margin: 0;
    inset-block-end: 0;
    inset-block-start: auto;
    border-radius: 0;
    padding: 0;
  }

  .account-drawer__close-button {
    z-index: 1;
    inset-block-start: var(--padding-xs);
    inset-inline-end: var(--padding-xs);
    color: var(--color-foreground);
    background-color: transparent;
  }

  .account-drawer__close-button .svg-wrapper {
    display: flex;
    width: var(--button-size);
    height: var(--button-size);
    align-items: center;
    justify-content: center;
  }

  @keyframes account-drawer-slide-in {
    from {
      transform: translateY(100%);
    }

    to {
      transform: translateY(0);
    }
  }

  @keyframes account-drawer-slide-out {
    from {
      transform: translateY(0);
    }

    to {
      transform: translateY(100%);
    }
  }
/* END_SNIPPET:account-drawer */

/* START_SNIPPET:account-popover (INDEX:193) */
.account-popover {
    --account-popover-min-width: 22rem;
    --account-actions-max-width: 22rem;
  }

  .account-popover__summary {
    padding: 0;

    &:hover {
      color: var(--color-foreground);
    }
  }

  .account-popover__panel {
    --account-popover-opacity: 0;
    --account-popover-y: 20px;
    position-anchor: --account-button-trigger;
    border-radius: var(--style-border-radius-popover);
    margin: 0;
    left: unset;
    width: max-content;
    min-width: var(--account-popover-min-width);
    box-shadow: var(--shadow-popover);
    border: var(--style-border-popover);
    background-color: var(--color-background);
    overflow-y: hidden;
    opacity: var(--account-popover-opacity);
    translate: 0 var(--account-popover-y);
    transition-property: display, opacity, translate;
    transition-duration: 0.3s;
    transition-timing-function: var(--ease-out-quad);
    transition-behavior: allow-discrete;
    top: calc(anchor(bottom) + var(--header-padding));
    right: anchor(right);

    &:popover-open {
      --account-popover-opacity: 1;
      --account-popover-y: 0px;
    }

    @supports not (position-anchor: --account-button-trigger) {
      top: calc(var(--anchor-top) * 1px + var(--minimum-touch-target) + var(--header-padding));
      right: calc(var(--anchor-right) * 1px);
    }

    @supports not selector(:popover-open) {
      &.\:popover-open {
        --account-popover-opacity: 1;
        --account-popover-y: 0px;
      }
    }
  }

  @starting-style {
    .account-popover__panel {
      --account-popover-opacity: 0.7;
      --account-popover-y: 20px;
    }

    .account-popover__panel:popover-open {
      --account-popover-opacity: 0.7;
      --account-popover-y: 20px;
    }
  }
/* END_SNIPPET:account-popover */

/* START_SNIPPET:add-to-cart-button (INDEX:194) */
.add-to-cart-text {
    display: flex;
    gap: var(--gap-2xs);
    align-items: center;
    justify-content: center;
    animation-duration: var(--animation-speed);
    animation-timing-function: var(--animation-easing);
    animation-fill-mode: forwards;
    transition: opacity var(--animation-speed) var(--animation-easing);
  }

  .atc-added .add-to-cart-text {
    animation-name: atc-slide-out;
  }

  .add-to-cart-text--added {
    position: absolute;
    inset: 0;
    animation-duration: var(--animation-speed);
    animation-timing-function: var(--animation-easing);
    animation-fill-mode: forwards;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: width var(--animation-speed) var(--animation-easing),
      opacity var(--animation-speed) var(--animation-easing);
  }

  .atc-added .add-to-cart-text--added {
    animation-name: atc-slide-in;
  }

  @keyframes atc-slide-in {
    from {
      opacity: 0;
      transform: translateY(0.5em);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }

  @keyframes atc-slide-out {
    from {
      transform: translateY(0);
      opacity: 1;
    }

    to {
      transform: translateY(-1em);
      opacity: 0;
    }
  }
/* END_SNIPPET:add-to-cart-button */

/* START_SNIPPET:background-video (INDEX:198) */
@media (prefers-reduced-motion: reduce) {
    video-background-component video {
      display: none;
    }
  }
/* END_SNIPPET:background-video */

/* START_SNIPPET:bento-grid (INDEX:201) */
.bento-box {
    display: grid;
    column-gap: var(--bento-gap);
    row-gap: calc(var(--bento-gap) * 1.5);
    width: 100%;
  }

  .bento-box:has(.collection-card--image-bg) {
    row-gap: var(--bento-gap);
  }

  .bento-box ~ .bento-box {
    padding-block-start: var(--bento-gap);
  }

  @media (max-width: 900px) {
    .bento-box {
      grid-template-columns: repeat(2, 1fr);
    }

    .bento-box__item:nth-child(3n + 1) {
      grid-column: span 1;
    }

    .bento-box__item:nth-child(3n + 2) {
      grid-column: span 1;
    }

    .bento-box__item:nth-child(3n + 3) {
      grid-column: span 2;
    }

    /* Ensure last items create a full row */
    .bento-box__item:last-child:nth-child(3n + 5) {
      grid-column: span 1;
    }

    .bento-box__item:last-child:nth-child(3n + 4) {
      grid-column: span 2;
    }
  }

  @media (min-width: 901px) {
    .bento-box {
      grid-template-columns: repeat(12, 1fr);
      grid-template-areas:
        'A A A B B B B B B C C C'
        'D D D D D D E E E F F F'
        'G G G H H H I I I I I I'
        'J J J J K K K K L L L L';
    }

    .bento-box__item:nth-child(1) {
      grid-area: A;
    }

    .bento-box__item:nth-child(2) {
      grid-area: B;
    }

    .bento-box__item:nth-child(3) {
      grid-area: C;
    }

    .bento-box__item:nth-child(4) {
      grid-area: D;
    }

    .bento-box__item:nth-child(5) {
      grid-area: E;
    }

    .bento-box__item:nth-child(6) {
      grid-area: F;
    }

    .bento-box__item:nth-child(7) {
      grid-area: G;
    }

    .bento-box__item:nth-child(8) {
      grid-area: H;
    }

    .bento-box__item:nth-child(9) {
      grid-area: I;
    }

    .bento-box__item:nth-child(10) {
      grid-area: J;
    }

    .bento-box__item:nth-child(11) {
      grid-area: K;
    }

    .bento-box__item:nth-child(12) {
      grid-area: L;
    }

    /* === Overrides for specific cases === */

    /* Exactly 1 item */
    .bento-box:has(.bento-box__item:first-child:nth-last-child(1)) {
      grid-template-areas: 'A A A A A A A A A A A A';
    }

    /* Exactly 2 items */
    .bento-box:has(.bento-box__item:first-child:nth-last-child(2)) {
      grid-template-areas: 'A A A A A A B B B B B B';
    }

    /* Exactly 4 items */
    .bento-box:has(.bento-box__item:first-child:nth-last-child(4)) {
      grid-template-areas:
        'A A A A B B B B B B B B'
        'C C C C C C C C D D D D';
    }

    /* Exactly 5 items */
    .bento-box:has(.bento-box__item:first-child:nth-last-child(5)) {
      grid-template-areas:
        'A A A B B B B B B C C C'
        'D D D D D D E E E E E E';
    }

    /* Exactly 7 items */
    .bento-box:has(.bento-box__item:first-child:nth-last-child(7)) {
      grid-template-areas:
        'A A A B B B B B B C C C'
        'D D D D D D D D D E E E'
        'F F F F F F G G G G G G';
    }

    /* Exactly 8 items */
    .bento-box:has(.bento-box__item:first-child:nth-last-child(8)) {
      grid-template-areas:
        'A A A B B B B B B C C C'
        'D D D D D D E E E F F F'
        'G G G H H H H H H H H H';
    }

    /* Exactly 10 items */
    .bento-box:has(.bento-box__item:first-child:nth-last-child(10)) {
      grid-template-areas:
        'A A A B B B B B B C C C'
        'D D D D D D E E E F F F'
        'G G G G G G G G G H H H'
        'I I I J J J J J J J J J';
    }

    /* Exactly 11 items */
    .bento-box:has(.bento-box__item:first-child:nth-last-child(11)) {
      grid-template-areas:
        'A A A B B B B B B C C C'
        'D D D D D D E E E F F F'
        'G G G H H H I I I I I I'
        'J J J J K K K K K K K K';
    }
  }
/* END_SNIPPET:bento-grid */

/* START_SNIPPET:blog-comment-form (INDEX:202) */
.blog-post-comments__form-container {
    --comment-form-gap: var(--gap-md);

    width: 100%;
    max-width: var(--normal-content-width);
    margin: var(--margin-4xl) auto 0;
  }

  .blog-post-comments__form {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--comment-form-gap);

    @media screen and (min-width: 750px) {
      grid-template-columns: 1fr 1fr;
    }
  }

  .blog-post-comments__form-input {
    padding: var(--padding-lg) var(--padding-xl);
    border: var(--style-border-width-inputs) solid var(--color-input-border);
  }

  .blog-post-comments__form-input--textarea {
    resize: vertical;
    min-height: var(--input-textarea-min-height);
  }

  .blog-post-comments__form-message {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
  }

  .blog-post-comments__form-body {
    grid-column: 1 / -1;
  }

  .blog-post-comments__form-input:focus-visible {
    outline: var(--focus-outline-width) solid currentcolor;
    outline-offset: var(--focus-outline-offset);
  }

  .blog-post-comments__form-moderated {
    font-size: var(--font-size--xs);
  }

  .blog-post-comments__form-submit {
    margin-block-start: var(--comment-form-gap);
  }
/* END_SNIPPET:blog-comment-form */

/* START_SNIPPET:button (INDEX:205) */
.link {
    text-decoration: none;
    text-decoration-color: currentcolor;

    &:hover {
      color: var(--color-primary-hover);
      text-decoration-color: transparent;
    }
  }
/* END_SNIPPET:button */

/* START_SNIPPET:bv-cart-yotpo-points (INDEX:210) */
.cart-yotpo-points {
    padding: 15px;
    background-color: #ffffff;
  }

  .cart-yotpo-points__wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;

    padding: 5px 15px;
    border-radius: 5px;
    border: 1px solid #DDDDDD;
  }

  .cart-yotpo-points__left {
    display: flex;
    align-items: center;
    gap: 8px;
  }

  .cart-yotpo-points__icon {
    width: 25px;
    height: 25px;
    flex-shrink: 0;
  }

  .cart-yotpo-points__text {
    color: #191919;
    line-height: 1.4;
    font-size: 14px;
  }

  .cart-yotpo-points__text strong {
    font-weight: 600;
  }

  .cart-yotpo-points__info {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  @media (max-width: 544px) {
    .cart-yotpo-points__text {
      font-size: 12px;
    }

    .cart-yotpo-points {
      padding-top: 8px;
    }
  }

  @media (max-width: 390px) {
    .cart-yotpo-points__text {
      font-size: 10px;
    }

    .cart-yotpo-points {
      padding: 5px;
    }

    .cart-yotpo-points__wrapper {
      padding: 5px 10px;
    }
  }
/* END_SNIPPET:bv-cart-yotpo-points */

/* START_SNIPPET:card-gallery (INDEX:212) */
.card-gallery {
    overflow: hidden;
    container-type: inline-size; /* Make card-gallery a container */
    container-name: card-gallery-container; /* Optional: name the container */
  }

  .card-gallery__placeholder svg {
    height: 100%;
    width: 100%;
  }

  .card-gallery svg {
    aspect-ratio: var(--gallery-aspect-ratio, var(--ratio));
  }

  .card-gallery slideshow-slide {
    width: 100%;
    scroll-snap-stop: always;
  }

  .card-gallery slideshow-slides {
    gap: 1px !important;
  }

  .product-card-gallery__title-placeholder {
    padding: var(--padding-md);
    font-size: var(--font-size--2xl);
    line-height: var(--line-height--display-loose);
    word-break: break-word;
    color: var(--color-foreground);
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5));
    aspect-ratio: var(--gallery-aspect-ratio);
    border-radius: var(--product-corner-radius);
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .product-card-gallery__title-placeholder a {
    color: var(--color-foreground);
  }

  .product-card-gallery__no-media {
    display: block;
    width: 100%;
    aspect-ratio: var(--gallery-aspect-ratio, var(--ratio));
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5));
    border-radius: var(--product-corner-radius);
    overflow: hidden;
  }

  .product-card-gallery__no-media-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 0;
  }

  .product-card-gallery__no-media-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  @media screen and (min-width: 750px) {
    .product-grid[data-product-card-size='extra-large'] .product-card-gallery__title-placeholder {
      padding: var(--padding-3xl);
      font-size: var(--font-size--3xl);
    }

    .product-grid[data-product-card-size='large'] .product-card-gallery__title-placeholder {
      padding: var(--padding-2xl);
      font-size: var(--font-size--2xl);
    }

    .product-grid[data-product-card-size='medium'] .product-card-gallery__title-placeholder {
      padding: var(--padding-xl);
      font-size: var(--font-size--xl);
    }

    .product-grid[data-product-card-size='small'] .product-card-gallery__title-placeholder {
      padding: var(--padding-sm);
      font-size: var(--font-size--lg);
    }

    .product-grid[data-product-card-size='extra-large']
      .card-gallery:has(.product-badges--top-right .product-badges__badge)
      .product-card-gallery__title-placeholder {
      padding-right: calc(var(--padding-3xl) + 50px);
    }

    .product-grid[data-product-card-size='large']
      .card-gallery:has(.product-badges--top-right .product-badges__badge)
      .product-card-gallery__title-placeholder {
      padding-right: calc(var(--padding-2xl) + 50px);
    }

    .product-grid[data-product-card-size='medium']
      .card-gallery:has(.product-badges--top-right .product-badges__badge)
      .product-card-gallery__title-placeholder {
      padding-right: calc(var(--padding-xl) + 50px);
    }

    .product-grid[data-product-card-size='small']
      .card-gallery:has(.product-badges--top-right .product-badges__badge)
      .product-card-gallery__title-placeholder {
      padding-right: calc(var(--padding-sm) + 50px);
    }

    .product-grid[data-product-card-size='extra-large']
      .card-gallery:has(.product-badges--top-left .product-badges__badge)
      .product-card-gallery__title-placeholder {
      padding-top: calc(var(--padding-3xl) + 40px);
    }

    .product-grid[data-product-card-size='large']
      .card-gallery:has(.product-badges--top-left .product-badges__badge)
      .product-card-gallery__title-placeholder {
      padding-top: calc(var(--padding-2xl) + 40px);
    }

    .product-grid[data-product-card-size='medium']
      .card-gallery:has(.product-badges--top-left .product-badges__badge)
      .product-card-gallery__title-placeholder {
      padding-top: calc(var(--padding-xl) + 40px);
    }

    .product-grid[data-product-card-size='small']
      .card-gallery:has(.product-badges--top-left .product-badges__badge)
      .product-card-gallery__title-placeholder {
      padding-top: calc(var(--padding-sm) + 40px);
    }

    .product-grid[data-product-card-size='extra-large']
      .card-gallery:has(.product-badges--bottom-left .product-badges__badge)
      .product-card-gallery__title-placeholder {
      padding-bottom: calc(var(--padding-3xl) + 40px);
    }

    .product-grid[data-product-card-size='large']
      .card-gallery:has(.product-badges--bottom-left .product-badges__badge)
      .product-card-gallery__title-placeholder {
      padding-bottom: calc(var(--padding-2xl) + 40px);
    }

    .product-grid[data-product-card-size='medium']
      .card-gallery:has(.product-badges--bottom-left .product-badges__badge)
      .product-card-gallery__title-placeholder {
      padding-bottom: calc(var(--padding-xl) + 40px);
    }

    .product-grid[data-product-card-size='small']
      .card-gallery:has(.product-badges--bottom-left .product-badges__badge)
      .product-card-gallery__title-placeholder {
      padding-bottom: calc(var(--padding-sm) + 40px);
    }
  }

  @media screen and (max-width: 749px) {
    .product-card-gallery__title-placeholder {
      font-size: var(--font-size--xl);
      padding: var(--padding-md);
    }

    .product-grid[data-product-card-size]
      .card-gallery:has(.product-badges--top-right .product-badges__badge)
      .product-card-gallery__title-placeholder {
      padding-right: calc(var(--padding-sm) + 50px);
    }

    .product-grid[data-product-card-size]
      .card-gallery:has(.product-badges--top-left .product-badges__badge)
      .product-card-gallery__title-placeholder {
      padding-top: calc(var(--padding-sm) + 40px);
    }

    .product-grid[data-product-card-size]
      .card-gallery:has(.product-badges--bottom-left .product-badges__badge)
      .product-card-gallery__title-placeholder {
      padding-bottom: calc(var(--padding-sm) + 40px);
    }
  }

  [product-grid-view='zoom-out'] .card-gallery .product-card-gallery__title-placeholder {
    /* stylelint-disable-next-line declaration-no-important */
    padding: var(--padding-xs) !important;
    font-size: var(--font-size--xs);
  }

  [product-grid-view='zoom-out'] .card-gallery .slideshow-control {
    min-width: auto;
  }
/* END_SNIPPET:card-gallery */

/* START_SNIPPET:cart-discount (INDEX:214) */
.cart-discount__input {
    background-color: var(--color-input-background);
    color: var(--color-input-text);
    border-width: var(--style-border-width-inputs);
    border-color: var(--color-input-border);
    border-style: solid;
    border-radius: var(--style-border-radius-inputs);
    padding: var(--padding-sm) var(--padding-md);
    height: 100%;
    flex-grow: 1;
    min-width: 0;
  }

  .cart-discount__input::placeholder {
    color: rgb(var(--color-input-text-rgb) / var(--opacity-subdued-text));
  }

  .cart-discount__pill-code {
    overflow: hidden;
    max-width: 100px;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin: 0;
  }

  .cart-discount {
    width: 100%;
  }

  .cart-discount__codes {
    display: none;
    gap: var(--padding-xs);
    flex-wrap: wrap;
    list-style: none;
    padding-inline: 0;
    margin: 0;
  }

  .cart-discount__codes:has(.cart-discount__pill) {
    display: flex;
  }

  .cart-discount__button {
    height: 100%;
  }

  .cart-discount__content {
    height: calc(var(--button-size) + var(--padding-2xs) + var(--padding-sm));
  }

  .cart-discount__pill {
    display: flex;
    color: var(--color-foreground);
    gap: var(--padding-xs);
    align-items: center;
    padding: var(--padding-xs) var(--padding-sm);
    border-radius: var(--style-border-radius-pills);
    background-color: var(--color-input-background);
    text-transform: uppercase;
  }

  .cart-discount__form {
    display: flex;
    gap: var(--padding-md);
    align-items: center;
    height: 100%;
    padding-block: var(--padding-2xs) var(--padding-sm);
  }

  :is(.cart-discount__pill-remove, .cart-discount__pill-remove:hover) {
    --close-icon-opacity: 0.4;

    color: var(--color-foreground);
    background-color: transparent;
    pointer-events: all;
    cursor: pointer;
    height: 100%;
  }

  .cart-discount__error {
    display: flex;
    align-items: center;
    width: 100%;
    padding-block: var(--padding-2xs) var(--padding-sm);
  }

  .cart-discount__error .svg-wrapper {
    flex-shrink: 0;
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
    margin-inline: var(--margin-3xs) var(--margin-xs);
  }

  .cart-discount__error-text {
    margin-block-start: var(--margin-3xs);
  }
/* END_SNIPPET:cart-discount */

/* START_SNIPPET:cart-icon-component (INDEX:217) */
cart-icon:has(.cart-bubble__text-count:empty) {
    --cart-bubble-size: 10px;
    --cart-bubble-top: 9px;
    --cart-bubble-right: 9px;

    .svg-wrapper {
      --cart-bubble-top: 4px;
      --cart-bubble-right: 4px;
    }
  }
/* END_SNIPPET:cart-icon-component */

/* START_SNIPPET:cart-products (INDEX:219) */
.cart-items {
    --cart-item-media-width-min: 2.5rem;
    --cart-item-media-width-max: 7.5rem;

    container-name: cart-items;
    container-type: inline-size;
    width: 100%;
  }

  .cart-items-disabled {
    pointer-events: none;
  }

  .cart-items__table {
    width: 100%;
  }

  .cart-items__table * {
    margin: 0;
  }

  .cart-items__table-row {
    --cart-item-price-width: 6rem;

    display: grid;
    grid-template-columns: clamp(2.5rem, 15cqi, 7.5rem) minmax(0, 1fr) minmax(var(--cart-item-price-width), auto);
    grid-template-areas:
      'media details price'
      'media quantity price'
      'media error error';
    column-gap: var(--gap-md);
    align-items: start;
    padding-bottom: var(--cart-items-gap);
    margin-bottom: var(--margin-lg);
  }

  .cart-items__table-row.cart-items__nested-line td:first-child {
    width: 60%;
    justify-self: right;
  }

  html:active-view-transition-type(page-navigation) .cart-items__table-row {
    /* stylelint-disable-next-line declaration-no-important */
    view-transition-name: none !important;
  }

  .cart-items__table-row.removing {
    overflow: hidden;
    animation: removeRow calc(var(--animation-speed) * 2) var(--animation-easing) forwards;
    animation-delay: var(--animation-speed);
  }

  @keyframes removeRow {
    0% {
      height: var(--row-height);
    }

    100% {
      opacity: 0;
      height: 0;
      padding-bottom: 0;
      margin-bottom: 0;
      border-color: transparent;
    }
  }

  .cart-items__table-row:last-child {
    padding-bottom: 0;
  }

  .cart-items--dividers .cart-items__table-row {
    border-bottom: 1px solid var(--color-border);
    margin-bottom: var(--cart-items-gap);
  }

  .cart-items--dividers .cart-items__table-row:has(+ .cart-items__nested-line) {
    border-bottom: none;
    margin-bottom: 0;
  }

  .cart-items--dividers .cart-items__table-row:last-child {
    border-block-end: none;
    padding-block-end: 0;
    margin-bottom: 0;
  }

  .cart-items__details {
    grid-area: details;
    color: rgb(var(--color-foreground-rgb) / var(--opacity-70));
  }

  .cart-items__details > * + *,
  .cart-items__bundle li {
    margin-block-start: var(--margin-2xs);
  }

  .cart-items__details * {
    font-size: var(--cart-font-size--sm);
  }

  .cart-items__details a {
    text-decoration: none;
  }

  .cart-items__title {
    font-size: var(--cart-font-size--md);
    color: var(--color-foreground);
    text-transform: var(--product-title-case);
  }

  .cart-items__variant {
    display: inline-block;
  }

  .cart-items__quantity {
    grid-area: quantity;
    margin-block-start: var(--margin-xs);
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: var(--gap-xs);
    width: fit-content;
  }

  .cart-items__quantity .quantity-selector {
    display: inline-flex;
    flex: 0 1 var(--quantity-selector-width);
    font-size: var(--cart-font-size--sm);
    height: auto;
  }

  .cart-items__remove {
    background-color: transparent;
    color: var(--color-foreground);
    width: var(--minimum-touch-target);
    height: var(--minimum-touch-target);
    justify-content: center;
    box-shadow: none;
    padding: 0;
  }

  .cart-items__media {
    grid-area: media;
    padding: 0;
  }

  .cart-items__price {
    grid-area: price;
    min-height: unset;
    min-width: var(--cart-item-price-width);
    text-align: end;
    display: block;
    font-size: var(--cart-font-size--md);
  }

  .cart-items__price-unit {
    font-size: var(--cart-font-size--xs);
  }

  .cart-items__media-container {
    display: flex;
    aspect-ratio: var(--ratio);
    position: relative;
    width: 100%;
    overflow: hidden;
  }

  .cart-items__media-image {
    aspect-ratio: inherit;
    object-fit: cover;
    object-position: center center;
    width: 100%;
    height: auto;
  }

  .cart-items__empty-button {
    margin-top: var(--margin-md);
    padding-inline: var(--padding-4xl);
    padding-block: var(--padding-lg);
  }

  /* Error message */
  .cart-items__error {
    display: flex;
    align-items: flex-start;
    width: 100%;
    grid-area: error;
    margin-block-start: var(--margin-xs);
    opacity: 1;
    overflow: hidden;
    transform: translateY(0);
    transition: opacity var(--drawer-animation-speed) var(--animation-easing),
      transform var(--drawer-animation-speed) var(--animation-easing);

    @starting-style {
      opacity: 0;
      transform: translateY(-0.5rem);
    }
  }

  .cart-item__error {
    display: flex;
    align-items: flex-start;
    width: 100%;
    font-size: var(--cart-font-size--sm);
    padding-block: var(--padding-2xs);
  }

  .cart-item__error .svg-wrapper {
    flex-shrink: 0;
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
    margin-inline: var(--margin-3xs) var(--margin-xs);
    margin-block-start: var(--margin-3xs);
  }

  @container cart-items (min-width: 720px) {
    .cart-items__table-row {
      --cart-item-price-width: 6rem;

      grid-template-columns: 7.5rem 1fr 1fr minmax(var(--cart-item-price-width), auto);
      grid-template-rows: min-content 1fr;
      grid-template-areas:
        'media details quantity price'
        'media details error error';
    }

    .cart-items__quantity,
    .cart-items__price {
      grid-area: initial;
    }

    .cart-items__quantity {
      margin-top: 0;
    }

    .cart-items__price {
      min-height: var(--minimum-touch-target);
      display: flex;
      flex-direction: column;
      align-items: flex-end;
      justify-content: center;
    }
  }

  .cart__original-total-container,
  .cart__total-container {
    display: flex;
    flex-direction: column;
  }

  .cart__total-container {
    row-gap: var(--gap-2xs);

    &:has(.cart__installments) {
      row-gap: var(--gap-xs);
    }
  }

  .cart__original-total-container:empty {
    display: none;
  }

  .cart__summary-totals {
    display: flex;
    flex-direction: column;
    gap: var(--gap-xl);
    width: 100%;
    border-block-start: none;

    &:has(> :first-child:not(.cart__original-total-container, .cart__total-container)) {
      padding-block-start: 0;
      border-block-start: none;
    }

    @media screen and (min-width: 750px) {
      padding-block-start: 0;
    }
  }

  .cart__original-total-container,
  .cart__original-total-container * {
    font-size: var(--cart-font-size--sm);
  }

  .cart__total {
    font-weight: var(--font-weight-bold);
  }

  .cart__total-label {
    font-size: var(--cart-font-size--sm);
  }

  .cart__total-value {
    font-size: var(--cart-font-size--2xl);
  }

  .cart-primary-typography {
    font-family: var(--cart-primary-font-family);
    font-style: var(--cart-primary-font-style);
    font-weight: var(--cart-primary-font-weight);
  }

  .cart-secondary-typography {
    font-family: var(--cart-secondary-font-family);
    font-style: var(--cart-secondary-font-style);
    font-weight: var(--cart-secondary-font-weight);
  }

  .cart__ctas {
    width: 100%;
    display: grid;
    gap: var(--checkout-button-gap);
    grid-auto-flow: row;
    grid-template-columns: 1fr;
  }

  .cart__additional-checkout-buttons {
    width: 100%;
  }

  .cart__ctas .cart__checkout-button {
    width: 100%;
    height: clamp(25px, var(--height-buy-buttons), 55px);
    padding-inline: var(--padding-4xl);
  }

  shopify-accelerated-checkout-cart {
    --shopify-accelerated-checkout-inline-alignment: center;
    --shopify-accelerated-checkout-button-border-radius: var(--style-border-radius-buttons-primary);
    --shopify-accelerated-checkout-row-gap: var(--checkout-button-gap, 10px);
  }

  .cart-note {
    width: 100%;
  }

  @starting-style {
    .cart-note[open-by-default-on-desktop][open-by-default-on-mobile] .details-content {
      block-size: auto;
      opacity: 1;
      overflow-y: visible;
    }
  }

  .cart-note__inner {
    padding-block: var(--padding-2xs) var(--padding-sm);
  }

  .cart-note__summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .cart-note__summary:hover {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .cart-note__label {
    display: flex;
    align-items: flex-start;
    gap: var(--gap-2xs);
    font-size: var(--cart-font-size--sm);
  }

  .cart-note__instructions {
    color: var(--color-input-text);
    background-color: var(--color-input-background);
    border-width: var(--style-border-width-inputs);
    border-color: var(--color-input-border);
    transition: box-shadow var(--animation-speed) ease;
    box-shadow: var(--input-box-shadow);
    min-height: 5.5rem;
    min-width: 100%;
    max-width: 100%;
    font-size: var(--cart-font-size--sm);
    padding: max(4px, calc(var(--style-border-radius-inputs) * (1 - cos(45deg))));
  }

  .cart-note .svg-wrapper {
    height: var(--icon-size-sm);
    width: var(--icon-size-sm);
    margin: 0;
  }

  .cart-note .icon-plus {
    height: var(--icon-size-xs);
    width: var(--icon-size-xs);
  }

  /* Remove animation */
  .remove-icon-bottom,
  .remove-icon-top {
    transition: transform var(--animation-speed) var(--animation-easing);
  }

  .cart-items__remove:hover .remove-icon-top {
    transform: translate(calc(-1 * var(--icon-stroke-width)), var(--icon-stroke-width)) rotate(-15deg);
  }

  .cart-items__remove:is(:hover, :active) .remove-icon-bottom {
    transform: translateY(var(--icon-stroke-width));
  }

  .cart-items__table-row.removing .remove-icon-bottom {
    transform: translateY(0);
  }

  .cart-items__table-row.removing .remove-icon-top {
    animation: removeButtonClickedIconTop var(--animation-speed) var(--animation-easing) forwards;
  }

  @keyframes removeButtonClickedIconTop {
    50% {
      transform: translate(0, calc(-1 * var(--icon-stroke-width)));
    }

    100% {
      transform: translate(0, 0);
    }
  }

  .cart-items__properties {
    display: block;
    margin-block-start: var(--margin-2xs);
  }

  .cart-items__properties dt,
  .cart-items__properties dd {
    display: inline;
  }
/* END_SNIPPET:cart-products */

/* START_SNIPPET:cart-summary (INDEX:220) */
.cart__total-disclosure {
    display: flex;
    flex-direction: column-reverse;
    gap: 10px;
  }

  .cart__total-disclosure summary {
    cursor: pointer;
  }

  .cart__total-disclosure summary::-webkit-details-marker {
    display: none;
  }

  .cart__total-summary-right {
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .cart__total-disclosure-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #191919;
    transition: transform 0.2s ease;
  }

  .cart__total-disclosure[open] .cart__total-disclosure-icon {
    transform: rotate(180deg);
  }

  .cart__total-disclosure[open] summary .cart__total-original {
    max-width: 0;
    opacity: 0;
    transform: translateY(-2px);
    margin-left: 0;
  }

  .cart__total-breakdown-wrap {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 220ms ease 120ms;
    font-size: 14px;
  }

  .cart__total-disclosure[open] .cart__total-breakdown-wrap {
    grid-template-rows: 1fr;
    transition-delay: 0ms;
  }

  .cart__total-breakdown {
    display: grid;
    gap: 10px;
    padding-top: 4px;
    overflow: hidden;
    min-height: 0;
    opacity: 0;
    transform: translateY(-4px);
    transition: opacity 160ms ease, transform 160ms ease;
  }

  .cart__total-disclosure[open] .cart__total-breakdown {
    opacity: 1;
    transform: translateY(0);
  }

  .cart__breakdown-row--discount .cart__breakdown-value {
    color: #B1020C;
  }

  .cart__breakdown-value--muted {
    color: #919191;
  }

  .cart__breakdown-value--free {
    color: #0C6C48;
    font-weight: 500;
  }

  .cart__total {
    padding: 0 !important;
  }

  .cart__checkout-error {
    background: linear-gradient(to right, #FFEFEF, #FFFFFF);
    border: 1px solid #F2B2B2;
    color: #B1020C;
    border-radius: 5px;
    padding: 10px 12px;
    margin-bottom: 12px;
    font-size: 13px;
    line-height: 1.4;
  }

  .cart__total-wrapper {
    display: flex;
    align-items: center;
    gap: 0;
  }

  .cart-actions {
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
    border-block: 1px solid var(--color-border);
    padding-block: var(--padding-sm);
    margin-block-start: var(--margin-3xs);
  }

  .cart-actions__divider {
    border-block-start: 1px solid var(--color-border);
  }

  .cart__summary-totals:not(:has(.cart-actions)) {
    margin-block-start: var(--margin-3xs);
    border-block-start: 1px solid var(--color-border);
    padding-block-start: var(--margin-xl);
  }

  .cart__summary-totals {
    padding: 0 !important;
    border: none !important;
    gap: 0 !important;
  }

  .cart__installments {
    color: var(--color-foreground);
  }

  .cart__total-original {
    text-decoration: line-through;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    max-width: 20ch;
    opacity: 1;
    transform: translateY(0);
    margin-left: 8px;
    transition:
      max-width 200ms ease,
      opacity 160ms ease,
      transform 160ms ease,
      margin-left 200ms ease;
  }

  .cart__total-label {
    color: #191919;
  }

  /* Price update animation */
  .cart__total-value {
    position: relative;
    overflow: hidden;
    font-size: 16px;
    font-weight: 600;
    color: #191919;
  }

  .cart__total-value-closed {
    display: none;
  }

  .cart__total-value-open {
    display: inline;
  }

  .cart__total-disclosure[open] .cart__total-value-closed {
    display: none;
  }

  .cart__total-disclosure[open] .cart__total-value-open {
    display: inline;
  }

  .cart__total-original {
    font-size: 14px;
    color: #919191;
  }

  @media (prefers-reduced-motion: reduce) {
    .cart__total-disclosure-icon,
    .cart__total-breakdown-wrap,
    .cart__total-breakdown,
    .cart__total-original {
      transition: none !important;
    }
  }

  .cart__total-value.loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.7) 50%, transparent 100%);
    animation: priceShimmer 0.9s infinite;
  }

  @keyframes priceShimmer {
    0% {
      transform: translateX(-100%);
    }
    100% {
      transform: translateX(100%);
    }
  }

  @media (max-width: 390px) {

    .cart__total-label {
      font-size: 14px;
    }

    .cart__total-value {
      font-size: 14px;
    }

    .cart__total-original {
      font-size: 12px;
    }

    .cart__total-breakdown-wrap {
      font-size: 12px;
    }
  }
/* END_SNIPPET:cart-summary */

/* START_SNIPPET:category-panels-card (INDEX:221) */
.category-panels-card {
    background: var(--color-background);
    border: 1px solid rgb(var(--color-foreground-rgb) / var(--opacity-10));
    border-radius: 6px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }

  .category-panels-card__media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: rgb(var(--color-foreground-rgb) / var(--opacity-5));
    overflow: hidden;
  }

  .category-panels-card__media::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #000;
    opacity: 0.03;
    pointer-events: none;
    z-index: 2;
  }

  .category-panels-card__media-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: block;
    color: inherit;
    text-decoration: none;
  }

  .category-panels-card__media-link:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: -2px;
  }

  .category-panels-card__image,
  .category-panels-card__image-placeholder {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
  }

  .category-panels-card__image-placeholder {
    background: linear-gradient(
      135deg,
      rgb(var(--color-foreground-rgb) / var(--opacity-5)),
      rgb(var(--color-foreground-rgb) / var(--opacity-10))
    );
  }

  .category-panels-card__body {
    --category-panels-body-padding: 10px;
    padding: var(--category-panels-body-padding);
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
  }

  .category-panels-card__title {
    font-size: 12px;
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(1.35em * 2);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-80));
  }

  .category-panels-card__title-link {
    color: inherit;
    text-decoration: none;
  }

  .category-panels-card__title-link:hover {
    text-decoration: underline;
  }

  .category-panels-card__price {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    align-items: baseline;
    min-height: 21px;
    height: auto;
    width: 100%;
    box-sizing: border-box;
  }

  .category-panels-card__price-current {
    font-weight: 700;
    color: var(--color-foreground);
  }

  .category-panels-card__price-compare {
    text-decoration: line-through;
    color: rgb(var(--color-foreground-rgb) / var(--opacity-45));
    font-size: 12px;
  }

  .category-panels-card__price-discount {
    color: #D32F2F;
    font-size: 12px;
  }

  .category-panels-card__atc {
    margin-top: auto;
    margin-inline: calc(var(--category-panels-body-padding) * -1);
    margin-bottom: calc(var(--category-panels-body-padding) * -1);
    width: calc(100% + 2 * var(--category-panels-body-padding));
    max-width: none;
    height: 34px;
    padding: 0;
    border-radius: 0 0 6px 6px;
    border: none;
    background: var(--category-panels-atc-bg, #F4C542);
    color: var(--category-panels-atc-fg, #111111);
    font-weight: 600;
    display: grid;
    place-items: center;
    text-decoration: none;
    cursor: pointer;
    box-sizing: border-box;
  }

  .category-panels-card__atc[disabled] {
    opacity: 0.7;
    cursor: not-allowed;
  }

  /* Mobile (theme breakpoint): fixed product card frame; desktop/tablet ≥750px unchanged above */
  @media screen and (max-width: 749px) {
    .category-panels-card__atc {
      border-radius: 0 0 5px 5px;
    }

    .category-panels-card {
      width: 173px;
      max-width: 100%;
      height: 295px;
      min-height: 295px;
      margin-inline: auto;
      border-radius: 5px;
      border-width: 1px;
      opacity: 1;
      transform: none;
      position: relative;
      z-index: 2;
      box-sizing: border-box;
    }

    .category-panels-card__media {
      flex-shrink: 0;
    }

    .category-panels-card__body {
      flex: 1;
      min-height: 0;
      overflow: visible;
    }
  }
/* END_SNIPPET:category-panels-card */

/* START_SNIPPET:collection-card (INDEX:223) */
.collection-card {
    --fixed-card-height: var(--height-small);
    flex: 1 1 var(--card-width-small);
    width: 100%;
    position: relative;
  }

  .collection-card > svg {
    height: 100%;
    width: 100%;
    aspect-ratio: var(--ratio);
  }

  .collection-card__inner {
    width: 100%;
    overflow: hidden;
    position: relative;
    gap: var(--collection-card-gap);
    display: flex;
    flex-direction: column;
  }

  .collection-card--image-bg .collection-card__inner {
    height: 100%;
  }

  .collection-card__inner {
    z-index: var(--layer-flat);
    pointer-events: none;

    a,
    button {
      /* only allow interactive elements to be clickable separate from .collection-card__link */
      pointer-events: auto;
    }
  }

  /* allow all blocks to be selectable in editor preview */
  .shopify-design-mode .collection-card__content * {
    pointer-events: auto;
  }

  .collection-card__content {
    position: relative;
    display: flex;
    height: 100%;
    width: 100%;
    max-width: 100%;
    gap: var(--collection-card-gap);
    flex-direction: column;
    align-items: var(--horizontal-alignment);
    justify-content: var(--vertical-alignment);
  }

  .collection-card__link {
    position: absolute;
    inset: 0;

    /* allows focus outline to have radius in supported browsers */
    border-radius: var(--border-radius);
  }

  /* Nested image block rules */

  .collection-card.collection-card--image-bg {
    aspect-ratio: var(--ratio);
  }

  .collection-card.collection-card--image-bg .collection-card__content {
    padding: var(--padding-lg);
  }

  /* Bento layout rules */
  .collection-card--image-height-fixed .collection-card__image {
    height: var(--fixed-card-height);
    width: 100%;
  }

  .collection-card--image-height-fixed.collection-card--image-bg {
    height: var(--fixed-card-height);
    aspect-ratio: unset;
  }

  .collection-card__image .image-block__image {
    object-fit: cover;
    width: 100%;
    height: 100%;
    max-width: 100%;
  }

  .collection-card--image-bg .collection-card__image {
    position: absolute;
    width: 100%;
    height: 100%;
  }

  .collection-card__image svg {
    height: 100%;
    width: 100%;
  }

  .resource-list:not(.hidden--desktop) .collection-card--flexible-aspect-ratio {
    &.collection-card.collection-card--image-bg,
    &.collection-card .placeholder-svg {
      aspect-ratio: 99;
    }

    .collection-card__image {
      aspect-ratio: 99;
      height: 100%;
    }

    .collection-card__inner {
      display: flex;
      flex-direction: column;
      height: 100%;
    }

    .collection-card__content {
      flex-shrink: 0;
    }

    &:not(.collection-card--image-bg) .collection-card__content {
      height: auto;
    }
  }
/* END_SNIPPET:collection-card */

/* START_SNIPPET:contact-form (INDEX:225) */
.contact-form__form {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);
  }

  .contact-form__form-row {
    display: flex;
    flex-direction: column;
    gap: var(--gap-md);

    @media screen and (min-width: 750px) {
      flex-direction: row;
      align-items: center;
    }
  }

  .contact-form__input {
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--color-input-text);
    background-color: var(--color-input-background);
    padding: var(--padding-lg) var(--padding-xl);
    border-radius: var(--style-border-radius-inputs);
    border: var(--style-border-width-inputs) solid var(--color-input-border);
    -webkit-font-smoothing: antialiased;
  }

  .contact-form__input--textarea {
    resize: vertical;
    min-height: var(--input-textarea-min-height);
  }

  .contact-form__error,
  .contact-form__success {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
  }
/* END_SNIPPET:contact-form */

/* START_SNIPPET:disclosure-content (INDEX:229) */
.disclosure-content {
    display: grid;
    grid-template-rows: 1fr;
    /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
    clip-path: inset(-5% -5% 0 -5%);
    opacity: 1;

    &[inert] {
      grid-template-rows: 0fr;
      opacity: 0;
    }

    & > * {
      min-height: 0;
    }
  }

  @media (prefers-reduced-motion: no-preference) {
    .disclosure-content {
      transition-property: grid-template-rows, opacity;
      transition-duration: var(--surface-transition-duration);
      transition-timing-function: var(--surface-transition-timing);
    }
  }
/* END_SNIPPET:disclosure-content */

/* START_SNIPPET:disclosure-trigger (INDEX:230) */
.disclosure-trigger {
    cursor: pointer;
    color: var(--color-foreground);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-block: var(--padding-sm);
    width: 100%;
    border: none;
    background: #0000;

    &[aria-expanded='true'] .horizontal {
      rotate: 90deg;
    }

    &:is(:hover, :focus-visible) {
      color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
    }

    .horizontal {
      transform-box: fill-box;
      transform-origin: center;
    }

    svg {
      aspect-ratio: 1;
      width: var(--icon-size-xs);
    }
  }

  .disclosure-trigger__label {
    display: flex;
    align-items: flex-start;
    gap: var(--gap-2xs);
    font-size: var(--cart-font-size--sm);
  }

  @media (prefers-reduced-motion: no-preference) {
    .disclosure-trigger .horizontal {
      transition: rotate var(--surface-transition-duration) var(--surface-transition-timing);
    }
  }
/* END_SNIPPET:disclosure-trigger */

/* START_SNIPPET:divider (INDEX:231) */
.divider {
    align-self: stretch;
    display: flex;
    align-items: center;
    justify-content: var(--divider-justify-content);

    @media screen and (max-width: 749px) {
      display: none;
    }
  }

  .divider__line {
    border-bottom: var(--divider-border-thickness) solid var(--color-border);
    border-right: var(--divider-border-thickness) solid var(--color-border);
    border-radius: calc(var(--style-border-radius-sm) * var(--divider-border-rounded));
    flex-basis: var(--divider-flex-basis);
    min-height: var(--divider-flex-basis);
  }
/* END_SNIPPET:divider */

/* START_SNIPPET:editorial-blog-grid (INDEX:234) */
.editorial-blog__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 1fr;
    gap: var(--gap-xl);

    .shopify-block {
      height: 100%;
    }
  }

  .editorial-blog__spacer {
    aspect-ratio: 1;
  }

  @media (max-width: 768px) {
    .editorial-blog__grid {
      display: flex;
      flex-direction: column;
      gap: var(--gap-2xl);
    }

    .editorial-blog__spacer {
      display: none;
    }

    .featured-blog-posts-card__image {
      min-height: 200px;
    }

    /* Mobile layout - also horizontally mirrored from collection grid */
    .editorial-blog__item-0 {
      width: 66%;
      align-self: flex-end; /* Originally flex-start, now flex-end */
    }

    .editorial-blog__item-1 {
      width: 83%;
      align-self: flex-start; /* Originally flex-end, now flex-start */
    }

    .editorial-blog__item-2 {
      width: 83%;
      align-self: flex-end; /* Originally flex-start, now flex-end */
    }

    .editorial-blog__item-3 {
      width: 100%;
      align-self: center; /* Stays centered */
    }
  }
/* END_SNIPPET:editorial-blog-grid */

/* START_SNIPPET:editorial-collection-grid (INDEX:235) */
.editorial-collection__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 1fr;
    gap: var(--gap-xl);

    .resource-list__item,
    .collection-card {
      height: 100%;
    }
  }

  .editorial-collection__spacer {
    aspect-ratio: 1;
  }

  @media (max-width: 768px) {
    .editorial-collection__grid {
      display: flex;
      flex-direction: column;
      gap: var(--gap-2xl);
    }

    .editorial-collection__spacer {
      display: none;
    }

    .editorial-collection__item-0 {
      width: 66%;
      align-self: flex-start;
      aspect-ratio: 4 / 5;
    }

    .editorial-collection__item-1 {
      width: 83%;
      align-self: flex-end;
      aspect-ratio: 5 / 5;
    }

    .editorial-collection__item-2 {
      width: 83%;
      align-self: flex-start;
      aspect-ratio: 8 / 6;
    }

    .editorial-collection__item-3 {
      width: 100%;
      align-self: center;
      aspect-ratio: 8 / 6;
    }
  }
/* END_SNIPPET:editorial-collection-grid */

/* START_SNIPPET:editorial-product-grid (INDEX:236) */
.editorial-product__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: 1fr;
    gap: var(--gap-xl);

    /* Make the aspect ratio super high on width, then increase the height of
     * slideshow containers until they fill all the available space */
    .card-gallery {
      /* stylelint-disable-next-line declaration-no-important */
      --gallery-aspect-ratio: 99 !important;
    }

    .card-gallery,
    slideshow-component,
    slideshow-container,
    slideshow-slides {
      height: 100%;
    }
  }

  .editorial-product__spacer {
    aspect-ratio: 1;
  }

  @media (max-width: 768px) {
    .editorial-product__grid {
      display: flex;
      flex-direction: column;
      gap: var(--gap-2xl);
    }

    .editorial-product__spacer {
      display: none;
    }

    .editorial-product__item-0 {
      width: 83%;
      align-self: flex-start;
      aspect-ratio: 7 / 6;
    }

    .editorial-product__item-1 {
      width: 83%;
      align-self: flex-end;
      aspect-ratio: 4 / 5;
    }

    .editorial-product__item-2 {
      width: 66%;
      align-self: flex-start;
      aspect-ratio: 5 / 5;
    }

    .editorial-product__item-3 {
      width: 100%;
      aspect-ratio: 8 / 6;
    }
  }
/* END_SNIPPET:editorial-product-grid */

/* START_SNIPPET:facets-actions (INDEX:237) */
/* Facets - Actions */
  .facets__actions {
    --to-top-gradient-background: linear-gradient(
      to top,
      rgb(var(--color-background-rgb) / var(--opacity-90)),
      rgb(var(--color-background-rgb) / var(--opacity-80)),
      rgb(var(--color-background-rgb) / var(--opacity-40)),
      transparent
    );

    order: 1;
    position: sticky;
    bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    gap: var(--gap-sm);
    background-image: var(--to-top-gradient-background);
    z-index: var(--facets-sticky-z-index);
    padding-block-start: var(--padding-xs);
    padding-block-end: var(--padding-md);
    padding-inline: var(--padding-lg);
    margin-top: auto;
  }

  .facets:not(.facets--drawer) .facets__actions {
    @media screen and (min-width: 750px) {
      position: static;
    }
  }

  .facets--vertical .facets__actions {
    padding-inline: 0;
    justify-content: center;
  }

  .facets--horizontal .facets__actions {
    @media screen and (min-width: 750px) {
      order: 0;
      bottom: auto;
      position: static;
      padding: 0;
      z-index: var(--layer-flat);
      flex-shrink: 0;
      align-items: center;
      margin-top: initial;
      background-image: none;
    }
  }

  .facets--horizontal .facets__actions--active::before {
    @media screen and (min-width: 750px) {
      content: '';
      border-inline-start: var(--style-border-width) solid var(--color-border);
      height: var(--font-paragraph--size);
      position: absolute;
    }
  }

  /* Clear button */
  .facets__clear {
    display: none;
  }

  .facets--horizontal .facets__clear {
    @media screen and (min-width: 750px) {
      width: 100%;
      justify-content: flex-end;
      padding: 0 var(--facets-clear-padding) var(--facets-clear-padding) 0;
      cursor: pointer;
    }
  }

  .facets__clear--active {
    @media screen and (min-width: 750px) {
      display: flex;
    }
  }

  .clear-filter:hover {
    text-decoration: underline;
    background-color: transparent;
  }

  /* Clear all button */
  .facets__clear-all {
    display: none;
    cursor: pointer;
    min-width: var(--facets-clear-all-min-width);
    transition: transform var(--animation-values), opacity var(--animation-values);
    opacity: 0;
    transform: translateY(100%);
    flex-grow: 1;
    padding-block: var(--padding-lg);
  }

  .facets:not(.facets--drawer) .facets__clear-all {
    box-shadow: none;
  }

  .facets--horizontal .facets__clear-all {
    @media screen and (min-width: 750px) {
      --facets-clear-all-min-width: var(--minimum-touch-target);
      --button-color: var(--color-primary);

      text-decoration: underline transparent 0.075em;
      text-underline-offset: 0.125em;
      width: auto;
      transform: none;
      opacity: 1;
      height: var(--minimum-touch-target);
      align-items: center;
      flex-grow: 0;
      transition: text-decoration-color var(--animation-speed) var(--animation-easing);
    }
  }

  .facets--horizontal .facets__clear-all:hover {
    @media screen and (min-width: 750px) {
      --button-color: var(--color-primary-hover);
    }
  }

  @starting-style {
    .facets__clear-all {
      opacity: 1;
      transform: translateY(0);
    }
  }

  .facets__clear-all.active {
    transform: translateY(0);
    opacity: 1;
    display: grid;
  }

  .facets--horizontal .facets__clear-all.active {
    @media screen and (min-width: 750px) {
      padding-block: 0;
      padding-inline: var(--facets-form-horizontal-gap);
      background-color: transparent;
      position: static;
      transform: none;
    }
  }

  @starting-style {
    .facets__clear-all.active {
      opacity: 0;
      transform: translateY(100%);
    }

    .facets--horizontal .facets__clear-all.active {
      @media screen and (min-width: 750px) {
        opacity: 1;
        transform: none;
      }
    }
  }

  .facets__see-results {
    min-width: var(--facets-see-results-min-width);
    flex-grow: 1;
    padding-block: var(--padding-lg);
  }

  .facets:not(.facets--drawer) .facets__see-results {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }

  @media screen and (max-width: 749px) {
    .facets--drawer .facets__actions--drawer-mobile-footer {
      display: flex;
      flex-direction: row;
      flex-wrap: nowrap;
      justify-content: stretch;
      align-items: stretch;
      gap: 10px;
      width: 100%;
      box-sizing: border-box;
      padding: 10px 12px;
      padding-block-end: calc(10px + env(safe-area-inset-bottom, 0px));
      padding-inline: max(12px, env(safe-area-inset-left, 0px)) max(12px, env(safe-area-inset-right, 0px));
      background-image: none;
      background-color: rgb(var(--color-background-rgb));
      border-block-start: 1px solid rgb(var(--color-foreground-rgb) / 0.12);
    }

    .facets--drawer .facets__actions--drawer-mobile-footer facet-remove-component {
      flex: 1 1 0;
      min-width: 0;
      display: flex;
      align-items: stretch;
    }

    .facets--drawer .facets__actions--drawer-mobile-footer facet-remove-component .facets__clear-all,
    .facets--drawer .facets__actions--drawer-mobile-footer .facets__clear-all,
    .facets--drawer .facets__actions--drawer-mobile-footer .facets__see-results {
      flex: 1 1 0;
      width: 100%;
      min-width: 0;
      max-width: none;
      height: 44px;
      min-height: 44px;
      max-height: none;
      padding-inline: 10px;
      box-sizing: border-box;
      border-radius: 5px;
      margin: 0;
      font-size: 14px;
      line-height: 1.2;
    }

    .facets--drawer .facets__actions--drawer-mobile-footer facet-remove-component .facets__clear-all {
      width: 100%;
    }

    .facets--drawer .facets__actions--drawer-mobile-footer .facets__clear-all {
      display: grid !important;
      opacity: 1 !important;
      transform: none !important;
      border: 1px solid #ddd;
      background-color: rgb(var(--color-background-rgb));
      color: #000000;
    }

    .facets--drawer .facets__actions--drawer-mobile-footer .facets__see-results {
      font-weight: 600;
      --button-background-color: #ffd333;
      --button-color: #191919;
      --button-border-color: transparent;
      --button-border-width: 0;
      background-color: #ffd333 !important;
      color: #191919 !important;
      box-shadow: none;
    }

    .facets--drawer .facets__actions--drawer-mobile-footer .facets__see-results:hover {
      filter: brightness(0.97);
    }
  }
/* END_SNIPPET:facets-actions */

/* START_SNIPPET:filter-remove-buttons (INDEX:238) */
/* Facets - Remove buttons */
  .facets-remove {
    --variant-picker-swatch-width: 20px;
    --variant-picker-swatch-height: 20px;

    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--gap-xs);
    padding: 0 var(--drawer-padding);
    margin: 0;

    @media screen and (min-width: 750px) {
      --variant-picker-swatch-width: 16px;
      --variant-picker-swatch-height: 16px;

      gap: var(--gap-2xs);
    }
  }

  .facets-remove:has(facet-remove-component) {
    display: flex;
    margin-block-start: var(--margin-2xs);
    margin-block-end: var(--margin-md);
  }

  /* Clear all on top row */
  .facets-remove__clear-wrapper {
    width: 100%;
  }

  .facets-remove__pills {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-xs);
    width: 100%;
  }

  @media screen and (min-width: 750px) {
    .facets-remove__pills {
      gap: var(--gap-2xs);
    }
  }

  /* Clear all link – "Clear all" (lowercase a), no underline, Nunito Sans SemiBold 14px, blue #1E35B1 */
  .facets__clear-all-link {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0;
    text-transform: none;
    text-decoration: none;
    border: none;
    background-color: transparent;
    padding: var(--padding-xs);
    min-width: fit-content;
    color: var(--Blues-Primary-Blue, #1E35B1);
    transition: color var(--animation-speed) var(--animation-easing);
  }

  .facets__clear-all-link:hover {
    color: var(--Blues-Primary-Blue, #1E35B1);
    text-decoration: none;
  }

  .facets:not(.facets--drawer) .facets-remove--mobile-and-vertical {
    @media screen and (min-width: 750px) {
      padding: 0;
    }
  }

  .facets--horizontal .facets-remove--mobile-and-vertical {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }

  /* Pills: box with slight corner radius (not full pill shape) */
  .facets-remove .facets-remove__pill,
  .facets-remove .pills__pill {
    border-radius: var(--style-border-radius-xs);
    color: #191919;
    font-size: 14px;
    font-weight: 400;
  }

  .facets-remove__pill {
    .svg-wrapper,
    .swatch {
      flex-shrink: 0;
    }
  }

  .facets--horizontal .facets-remove {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }

  /* PLP mobile: applied-filter pills strip — drawer handles filters; hide duplicate clutter */
  @media screen and (max-width: 749px) {
    .facets:not(.facets--drawer) .facets-remove.facets-remove--mobile-and-vertical {
      display: none !important;
    }

    /* Drawer uses .facets--drawer — previous rule excluded it; hide pills row only (keep optional clear-all link) */
    #filters-drawer .facets-remove__pills {
      display: none !important;
    }
  }
/* END_SNIPPET:filter-remove-buttons */

/* START_SNIPPET:filters-toggle (INDEX:239) */
/* Facets - Toggle */
  .facets-toggle {
    --icon-offset: -3px;

    display: flex;
    justify-content: space-between;
    align-items: center;
    height: var(--minimum-touch-target);
    margin: var(--facets-margin);
    padding-block: var(--facets-inner-padding-block);
    padding-inline: var(--facets-inner-padding-inline);

    @media screen and (min-width: 750px) {
      display: none;
    }
  }

  .facets-toggle__wrapper {
    margin-left: var(--icon-offset);
  }

  .facets-toggle__button {
    box-shadow: none;

    @media screen and (min-width: 750px) {
      display: none;
    }
  }

  /* Filter count */
  .filter-count-bubble {
    position: relative;
    width: 20px;
    aspect-ratio: 1;
    border-radius: 50%;
    display: grid;
    line-height: normal;
    place-content: center;
    color: var(--color-foreground);
    border: var(--icon-stroke-width) solid var(--color-background);
  }

  .facets-mobile__title-wrapper .h3 {
    margin-block-end: 0;
    display: inline-flex;
    align-items: center;
    gap: var(--gap-xs);
  }

  .facets-mobile__title-wrapper .filter-count-bubble {
    width: 22px;
    height: 22px;
  }

  .facets-mobile__title-wrapper .filter-count-bubble__text {
    font-size: var(--font-size--xs);
  }

  .filter-count-bubble__background {
    position: absolute;
    inset: 0;
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-10-25));
    border-radius: var(--style-border-radius-50);
  }

  .filter-count-bubble__text {
    font-size: 11px;
    font-weight: var(--font-paragraph--weight);
    aspect-ratio: 1 / 1;
  }

  .facets-toggle--no-filters {
    @media screen and (max-width: 749px) {
      /* stylelint-disable-next-line declaration-no-important */
      justify-content: unset !important;

      & > .facets-mobile-wrapper {
        width: 100%;
      }
    }
  }
/* END_SNIPPET:filters-toggle */

/* START_SNIPPET:footer-app-card (INDEX:241) */
/**
   * Footer App Download Card Component Styles
   * 
   * Layout: Vertical flexbox card with gradient background
   * Design: Light blue margin wrapper with gradient card interior
   * Dimensions: Fixed width 267px matching Figma
   * 
   * BEM Structure:
   * - .footer-app-card (Block)
   * - .footer-app-card__margin (Element - outer wrapper)
   * - .footer-app-card__background (Element - gradient card)
   * - .footer-app-card__content (Element)
   * - .footer-app-card__title (Element)
   * - .footer-app-card__description (Element)
   * - .footer-app-card__qr-wrapper (Element)
   * - .footer-app-card__qr-code (Element)
   * - .footer-app-card__qr-label (Element)
   * - .footer-app-card__links (Element)
   * - .footer-app-card__link (Element)
   */
  
  /* Main card container - fixed width matching Figma */
  .footer-app-card {
    display: flex;
    flex-direction: column;
    width: var(--footer-app-card-width, 16.6875rem); /* 267px from Figma */
  }

  /* Outer margin wrapper - light blue background #F1F6FF */
  .footer-app-card__margin {
    background-color: var(--footer-light-blue-bg, var(--color-background)); /* #F1F6FF from Figma */
    padding: var(--padding-xs);
  }

  /* Card background - gradient with border matching Figma */
  .footer-app-card__background {
    background: linear-gradient(180deg, var(--color-background) 0%, var(--footer-gradient-end, var(--color-background)) 100%); /* linear-gradient(180deg, #FFFFFF 0%, #EDF3FF 100%) from Figma */
    border: 1px solid var(--footer-blue-border, var(--color-border)); /* #E9F1FF from Figma */
    border-radius: var(--footer-app-radius, 0.75rem); /* 12px from Figma */
    padding: var(--footer-app-padding, 1.4375rem 1.5rem 1.5rem); /* 23px 24px 24px from Figma */
    display: flex;
    flex-direction: column;
    gap: var(--gap-xs);
  }

  .footer-app-card__content {
    display: flex;
    flex-direction: column;
    gap: var(--gap-xs);
    align-items: center;
    text-align: center;
  }

  .footer-app-card__text-group {
    display: flex;
    flex-direction: column;
    gap: var(--gap-2xs);
    align-items: center;
    text-align: center;
  }

  .footer-app-card__title {
    font-family: var(--font-body-family);
    font-size: var(--font-size-lg); /* 16px */
    font-weight: 700;
    line-height: 1.5;
    color: var(--color-foreground-heading);
    margin: 0;
  }

  .footer-app-card__description {
    font-family: var(--font-body-family);
    font-size: var(--font-size-xs); /* 12px */
    font-weight: 500;
    line-height: 1.5;
    color: var(--footer-secondary-text, var(--color-foreground));
    margin: 0;
  }

  /* Desktop / tablet QR layout — mobile uses assets/footer-app-card.css */
  @media screen and (min-width: 750px) {
    .footer-app-card__qr-wrapper {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      background: #000;
      padding: 0.5rem;
      border-radius: 0.75rem;
    }

    .footer-app-card__qr-code {
      height: var(--footer-qr-height, 8.786rem);
      border: var(--footer-qr-border, 3.87px) solid var(--color-foreground-heading);
      border-radius: var(--footer-qr-radius, 0.726rem);
      padding: var(--padding-xs);
      display: flex;
      align-items: center;
      justify-content: center;
      background-color: var(--color-background);
    }

    .footer-app-card__qr-code img,
    .footer-app-card__qr-generated {
      background: #fff;
      padding: 0.25rem;
      border-radius: 0.5rem;
    }

    .footer-app-card__qr-label {
      writing-mode: vertical-rl;
      transform: rotate(180deg);
      background: #000;
      color: #fff;
      font-family: 'Nunito Sans', sans-serif;
      font-weight: 500;
      font-style: normal;
      font-size: 14px;
      line-height: 150%;
      letter-spacing: 0;
      text-align: center;
      leading-trim: none;
      padding: 0.5rem 0.4rem;
      border-radius: 0.5rem 0 0 0.5rem;
      white-space: nowrap;
    }
  }

  .footer-app-card__links {
    display: flex;
    gap: var(--gap-sm);
    margin-top: var(--padding-sm);
  }

  .footer-app-card__link {
    font-family: var(--font-body-family);
    font-size: var(--font-size-sm);
    color: var(--footer-primary-blue, var(--color-primary));
    text-decoration: underline;
  }

  @media screen and (max-width: 749px) {
    .footer-app-card {
      width: 100%;
      max-width: 100%;
      margin: 0;
    }

    .footer-app-card__margin {
      padding: 0;
    }

    .footer-app-card__background {
      padding: 16px;
    }

    /* Row layout: text left, QR right; links wrap below */
    .footer-app-card__content {
      flex-direction: row;
      flex-wrap: wrap;
      align-items: center;
      gap: 16px;
      text-align: left;
    }

    .footer-app-card__text-group {
      flex: 1;
      min-width: 0;
      align-items: flex-start;
      text-align: left;
    }

    .footer-app-card__title {
      font-size: 14px;
      line-height: 1.35;
    }

    .footer-app-card__description {
      font-size: 11px;
      line-height: 1.4;
    }

    .footer-app-card__links {
      width: 100%;
      flex-basis: 100%;
      margin-top: 12px;
    }
  }
/* END_SNIPPET:footer-app-card */

/* START_SNIPPET:footer-legal (INDEX:242) */
/**
   * Footer Legal Component Styles
   * 
   * Layout: Vertical flexbox with top row (company | links) and copyright below
   * Typography: Small text (12px) for links and copyright, medium (18px) for company
   * Colors: Primary blue for links (#1E35B1), light grey for company/copyright (#919191)
   * 
   * BEM Structure:
   * - .footer-legal (Block)
   * - .footer-legal__top (Element)
   * - .footer-legal__company (Element)
   * - .footer-legal__company-text (Element)
   * - .footer-legal__logo (Element)
   * - .footer-legal__links (Element)
   * - .footer-legal__link (Element)
   * - .footer-legal__separator (Element)
   * - .footer-legal__copyright (Element)
   */
  
  /* Main container - vertical layout with gap */
  .footer-legal {
    display: flex;
    flex-direction: column;
    gap: var(--footer-medium-gap, 1.5rem); /* 24px from Figma */
    width: 100%;
  }

  /* Top row - company info and legal links side by side */
  .footer-legal__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: var(--footer-legal-gap, 7.5rem); /* 120px from Figma */
    flex-wrap: wrap; /* Wraps on smaller screens */
  }

  .footer-legal__company {
    display: flex;
    align-items: flex-end;
    gap: var(--gap-sm);
  }

  .footer-legal__company-text {
    font-family: var(--font-body-family);
    font-size: var(--font-size-xl); /* 18px */
    font-weight: 400;
    line-height: 1.5;
    color: var(--footer-light-text, var(--color-foreground));
    opacity: 0.7;
  }

  .footer-legal__logo {
    width: var(--footer-vgl-logo-width, 2.577rem); /* 41.23px */
    height: var(--footer-vgl-logo-height, 1.611rem); /* 25.77px */
    display: flex;
    align-items: center;
  }

  .footer-legal__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .footer-legal__links {
    display: flex;
    align-items: center;
    gap: var(--footer-small-gap, 0.75rem); /* 12px */
    flex-wrap: wrap;
  }

  /* Legal link - small text with primary blue color matching Figma Desktop De/H6/400 */
  .footer-legal__link {
    font-family: var(--font-body-family);
    font-size: var(--font-size-xs); /* 12px - matches Figma Desktop De/H6/400 */
    font-weight: 400; /* Regular weight per Figma spec */
    line-height: 1.5;
    color: var(--footer-primary-blue, var(--color-primary)); /* #1E35B1 from Figma */
    text-decoration: none;
    transition: opacity 0.2s ease; /* Smooth hover transition */
  }

  .footer-legal__link:hover {
    opacity: 0.7; /* Subtle hover feedback */
    text-decoration: underline; /* Underline on hover for clarity */
  }

  /* Dot separator between legal links - matches Figma (3px × 3px) */
  .footer-legal__separator {
    width: var(--footer-separator-size, 0.1875rem); /* 3px from Figma */
    height: var(--footer-separator-size, 0.1875rem); /* 3px from Figma */
    border-radius: 50%; /* Perfect circle */
    background-color: var(--footer-divider, var(--color-border)); /* #DDDDDD from Figma */
    opacity: 0.5; /* Subtle appearance */
  }

  /* Copyright text - small muted text matching Figma Desktop De/H6/400 */
  .footer-legal__copyright {
    font-family: var(--font-body-family);
    font-size: var(--font-size-xs); /* 12px - matches Figma Desktop De/H6/400 */
    font-weight: 400; /* Regular weight per Figma spec */
    line-height: 1.5;
    color: var(--footer-light-text, var(--color-foreground)); /* #919191 from Figma */
    opacity: 0.7; /* Additional muting for hierarchy */
    max-width: var(--footer-copyright-width, 32.875rem); /* 526px from Figma */
  }

  @media screen and (max-width: 989px) {
    .footer-legal__top {
      flex-direction: column;
      align-items: flex-start;
      gap: var(--padding-lg);
    }

    .footer-legal__links {
      width: 100%;
    }
  }

  @media screen and (max-width: 749px) {
    .footer-legal__top {
      gap: var(--padding-md);
    }

    .footer-legal__company {
      flex-direction: column;
      align-items: flex-start;
    }

    .footer-legal__copyright {
      max-width: 100%;
    }
  }
/* END_SNIPPET:footer-legal */

/* START_SNIPPET:footer-newsletter-form (INDEX:243) */
/* ================= BASE ================= */

.footer-newsletter {
  width: 100%;
  max-width: 100%;
  margin: 0;
  padding: 40px 0;
  box-sizing: border-box;
}

.footer-newsletter__header {
  text-align: left;
  padding: 0;
  margin-bottom: 24px;
}

.footer-newsletter__title {
  font-size: 20px;
  font-weight: 600;
  text-align: center;
}

.footer-newsletter__description {
  font-size: 16px;
  color: #666;
  text-align: left;
}

/* ================= FORM ================= */

.footer-newsletter__form {
  width: 100%;
  margin: 0;
  padding: 0;
  text-align: left;
  box-sizing: border-box;
}

.footer-newsletter__form-row {
  display: flex;
  gap: 32px;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* Each column */
.footer-newsletter__group {
  display: flex;
  flex-direction: column;
}

/* Inline input + button */
.footer-newsletter__inline {
  display: flex;
  gap: 12px;
}

/* INPUT */
.footer-newsletter__input {
  width: 333px;
  height: 48px;
  padding: 0 12px;
  border: 1px solid #ccc;
  font-size: 14px;
}

/* BUTTON */
.footer-newsletter__button {
  height: 48px;
  padding: 0 16px;
  background: #191919;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* ================= CHECKBOX ================= */

.footer-newsletter__checkbox-wrapper {
  display: flex;
  gap: 8px;
  margin-top: 10px;
  font-size: 14px;
  color: #666;
  align-items: center;
  align-self: flex-start;
  max-width: 480px;
  text-align: left;
}

.footer-newsletter__checkbox-wrapper input {
  margin-top: 0;
  flex-shrink: 0;
}

.footer-newsletter__terms-link {
  color: #1e35b1;
  text-decoration: underline;
}

/* ================= STATES ================= */

.footer-newsletter__error {
  margin-top: 16px;
  background: #ff6b6b;
  color: #fff;
  padding: 8px;
  text-align: left;
}

.footer-newsletter__success {
  margin-top: 16px;
  background: #51cf66;
  color: #fff;
  padding: 8px;
  text-align: left;
}

/* ================= MOBILE ================= */

@media screen and (max-width: 749px) {
  .footer-newsletter {
    padding: 24px 0;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .footer-newsletter__header {
    padding: 0;
    margin-bottom: 20px;
    text-align: center;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .footer-newsletter__title {
    font-size: 18px;
  }

  .footer-newsletter__description {
    font-size: 14px;
    line-height: 1.4;
    text-align: center;
    max-width: 100%;
    min-width: 0;
    margin-inline: auto;
    word-break: break-word;
    overflow-wrap: anywhere;
    box-sizing: border-box;
  }

  .footer-newsletter__form {
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  /* Form rows stack; each group is same max width, centered (equal side margins) */
  .footer-newsletter__form-row {
    flex-direction: column;
    gap: 16px;
    align-items: center;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  .footer-newsletter__form-row > .footer-newsletter__group {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    margin-inline: auto;
    box-sizing: border-box;
    align-items: stretch;
  }

  /*
   * Fluid row: input grows/shrinks, button caps by max-width — avoids 360px overlap (no fixed 206+142).
   */
  .footer-newsletter__inline {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: clamp(4px, 1.5vw, 8px);
    width: 100%;
    max-width: 100%;
    min-width: 0;
    box-sizing: border-box;
  }

  .footer-newsletter__group--phone .footer-newsletter__inline {
    gap: clamp(2px, 1vw, 8px);
  }

  .footer-newsletter__input {
    flex: 1 1 0;
    width: 0;
    min-width: 0;
    max-width: 100%;
    height: 51px;
    opacity: 1;
    box-sizing: border-box;
    font-size: 14px;
  }

  .footer-newsletter__group--phone .footer-newsletter__input[type="tel"] {
    height: 52px;
    padding-left: 12px;
    padding-right: 12px;
    opacity: 1;
    box-sizing: border-box;
  }

  /* Buttons: shared typography; max-width caps, flex-shrink allows narrow viewports */
  .footer-newsletter__button {
    flex: 0 1 auto;
    min-width: 0;
    width: auto;
    height: 48px;
    min-height: 48px;
    max-height: 48px;
    opacity: 1;
    box-sizing: border-box;
    font-family: 'Open Sans', var(--font-body-family, ui-sans-serif), sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 1.5;
    letter-spacing: 0;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    padding: 0 clamp(6px, 2vw, 10px);
  }

  .footer-newsletter__group:not(.footer-newsletter__group--phone) .footer-newsletter__button {
    max-width: min(120px, 38%);
  }

  .footer-newsletter__group--phone .footer-newsletter__button {
    max-width: min(142px, 42%);
  }

  /* Checkbox: same width as rows above; text left-aligned with inputs */
  .footer-newsletter__checkbox-wrapper {
    margin-top: 12px;
    flex-wrap: wrap;
    align-items: flex-start;
    font-size: 13px;
    width: 100%;
    min-width: 0;
    box-sizing: border-box;
    text-align: left;
  }

  .footer-newsletter__checkbox-wrapper span {
    overflow-wrap: break-word;
    word-break: break-word;
    min-width: 0;
  }
}
/* END_SNIPPET:footer-newsletter-form */

/* START_SNIPPET:footer-review-badge (INDEX:244) */
/**
   * Footer Review Badge Component Styles
   * 
   * Layout: Vertical flexbox card with centered content
   * Design: White card with subtle border, shadow, and rounded corners
   * Dimensions: Fixed width/height matching Figma specifications
   * 
   * BEM Structure:
   * - .footer-review-badge (Block)
   * - .footer-review-badge--google (Modifier - darker border)
   * - .footer-review-badge--ehi (Modifier - text-only variant)
   * - .footer-review-badge__logo (Element)
   * - .footer-review-badge__content (Element)
   * - .footer-review-badge__text (Element)
   * - .footer-review-badge__rating (Element)
   * - .footer-review-badge__rating-value (Element)
   * - .footer-review-badge__count (Element)
   * - .footer-review-badge__count-lead (Element — e.g. 101K; desktop 16px/600, mobile 12px/600)
   * - .footer-review-badge__count-rest (Element — e.g. Bewertungen; desktop 14px/500, mobile 10px/500)
   */
  
  /* Main badge card */
  .footer-review-badge {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    width: 173px;
    height: 76px;
    background-color: var(--color-background);
    border: 0.54px solid var(--footer-border-medium, var(--color-border));
    border-radius: 5.8px;
    box-shadow: 0px 2px 16.8px rgba(0, 0, 0, 0.08);
    padding: 6px 8px;
    gap: 8px;
    opacity: 1;
    box-sizing: border-box;
  }

  /* Google badge variant - uses darker border color */
  .footer-review-badge--google {
    border-color: var(--footer-border-dark, var(--color-border)); /* #DADADA from Figma */
  }

  .footer-review-badge__logo {
    width: 45px;
    height: 54px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
  }

  .footer-review-badge__logo img,
  .footer-review-badge__logo svg {
    width: 100%;
  height: auto;
  }

  .footer-review-badge__content {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
    text-align: left;
    justify-content: center;
    flex: 1;
    min-height: 0;
    min-width: 0;
  }

  .footer-review-badge__text {
    box-sizing: border-box;
    width: auto;
    max-width: 100%;
    height: auto;
    font-family: 'Nunito Sans', var(--font-body), sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 9px;
    line-height: 1.4;
    letter-spacing: 0;
    color: #626161;
    white-space: nowrap;
    flex-shrink: 1;
    min-width: 0;
  }
  .footer-review-badge__stars {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 61.677px;
    height: 12.335px;
    flex-shrink: 0;
    gap: 0;
    opacity: 1;
    overflow: visible;
  }

  .footer-review-badge__star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 12.335px;
    height: 12.335px;
    flex-shrink: 0;
    opacity: 1;
  }

  .footer-review-badge__star--full {
    width: 12.335px;
    height: 12.335px;
    opacity: 1;
  }

  .footer-review-badge__star-svg {
    width: 12.335px;
    height: 12.335px;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: visible;
  }

  .footer-review-badge__star-fill {
    fill: #e69a38;
  }

  .footer-review-badge__star-bg {
    fill: #e0e0e0;
  }

  .footer-review-badge__text--ehi {
    display: block;
    width: 100%;
    flex-basis: 100%;
    max-width: 100%;
    height: auto;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    overflow: visible;
    text-overflow: clip;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    text-align: center;
    color: var(--color-foreground-heading);
  }

  .footer-review-badge__text-line {
    display: block;
  }

  .footer-review-badge__rating {
    display: flex;
    align-items: center;
    gap: var(--gap-2xs);
    height: var(--footer-rating-height, 1.575rem); /* 25.2px */
  }
  .footer-review-badge__rating-row {
    display: inline-flex;
    align-items: center;
    box-sizing: border-box;
    width: auto;
    height: auto;
    gap: 3px;
    opacity: 1;
    flex-shrink: 0;
  }

  .footer-review-badge__rating-value {
    box-sizing: border-box;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    flex-shrink: 0;
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
    color: #191919;
    opacity: 1;
  }

  .footer-review-badge__count {
    box-sizing: border-box;
    display: inline-flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: baseline;
    width: 100%;
    flex-basis: 100%;
    height: auto;
    font-family: 'Nunito Sans', var(--font-body), sans-serif;
    font-style: normal;
    letter-spacing: 0;
    text-align: center;
    color: #191919;
    opacity: 1;
    white-space: nowrap;
    overflow: visible;
    text-overflow: clip;
  }

  /* Desktop (≥769px): count value vs label — mobile overrides in max-width 768px block */
  /* Mobile-first: ≤768px — overridden at ≥769px */
  .footer-review-badge__count-lead {
    font-family: 'Nunito Sans', var(--font-body), sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 12px;
    line-height: 150%;
    letter-spacing: 0;
    color: inherit;
  }

  .footer-review-badge__count-rest {
    font-family: 'Nunito Sans', var(--font-body), sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 10px;
    line-height: 150%;
    letter-spacing: 0;
    color: inherit;
    margin-inline-start: 0.2em;
  }

  /* Google variant - muted count color for visual distinction */
  .footer-review-badge--google .footer-review-badge__count {
    color: #191919;
  }

  /* Default footer review icons — desktop dimensions (≥769px) */
  @media screen and (min-width: 769px) {
    .footer-review-badge__logo:has(img[data-frb-icon*='trustedshope']) {
      width: 65px;
      height: 77px;
      min-width: 65px;
      min-height: 77px;
      max-width: 65px;
      max-height: 77px;
    }

    .footer-review-badge__logo:has(img[data-frb-icon*='trustedshope']) img {
      width: 65px;
      height: 77px;
      object-fit: contain;
    }

    .footer-review-badge__logo:has(img[data-frb-icon*='reviews-yotpo']) {
      width: 73.85px;
      height: 81.72px;
      min-width: 73.85px;
      min-height: 81.72px;
      max-width: 73.85px;
      max-height: 81.72px;
      overflow: hidden;
      border-radius: 5.25px;
    }

    .footer-review-badge__logo:has(img[data-frb-icon*='reviews-yotpo']) img {
      width: 73.85px;
      height: 81.72px;
      border-radius: 5.25px;
      object-fit: contain;
    }

    .footer-review-badge__logo:has(img[data-frb-icon*='onlineshop']) {
      width: 65px;
      height: 64px;
      min-width: 65px;
      min-height: 64px;
      max-width: 65px;
      max-height: 64px;
    }

    .footer-review-badge__logo:has(img[data-frb-icon*='onlineshop']) img {
      width: 65px;
      height: 64px;
      object-fit: contain;
    }

    .footer-review-badge__logo:has(img[data-frb-icon*='icon-google']) {
      width: 46.21px;
      height: 46.21px;
      min-width: 46.21px;
      min-height: 46.21px;
      max-width: 46.21px;
      max-height: 46.21px;
    }

    .footer-review-badge__logo:has(img[data-frb-icon*='icon-google']) img {
      width: 46.21px;
      height: 46.21px;
      object-fit: contain;
    }

    .footer-review-badge__count-lead {
      font-size: 16px;
      font-weight: 600;
      line-height: 150%;
    }

    .footer-review-badge__count-rest {
      font-size: 14px;
      font-weight: 500;
      line-height: 150%;
    }
  }

  /* Mobile only — fluid type/sizing in 2-col grid; desktop unchanged above 768px */
  @media screen and (max-width: 768px) {
    .footer-desktop__review-badges {
      display: grid;
    gap: 10px;
    width: 100%;
    }
    .footer-review-badge {
      --frb-star: clamp(8px, 2.2vw, 12px);
      --frb-logo: clamp(30px, 8vw, 40px);
      --frb-rating-fs: clamp(12px, 3.2vw, 16px);
      --frb-label-fs: clamp(7px, 1.9vw, 9px);
      --frb-count-fs: clamp(7px, 1.9vw, 10px);
      --frb-gap: clamp(4px, 1.5vw, 8px);

      width: 100%;
      max-width: 100%;
      min-width: 0;
      box-sizing: border-box;
      padding: 6px 8px;
      flex-direction: row;
      justify-content: flex-start;
      align-items: center;
      gap: var(--frb-gap);
      height: 76px;
      flex: 1 1 auto;
      overflow: visible;
      container-type: inline-size;
      container-name: footer-review-badge;
      border-width: 0.54px;
      border-radius: 5.8px;
      opacity: 1;
    }

    .footer-review-badge__logo {
      width: var(--frb-logo);
      height: var(--frb-logo);
      min-width: var(--frb-logo);
      min-height: var(--frb-logo);
      max-width: var(--frb-logo);
      max-height: var(--frb-logo);
      flex-shrink: 0;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .footer-review-badge__logo img,
    .footer-review-badge__logo svg {
      width: 100%;
      height: 100%;
      object-fit: contain;
    }

    .footer-review-badge__logo:has(img[data-frb-icon*='trustedshope']) {
      width: 40px;
      height: 47px;
      min-width: 40px;
      min-height: 47px;
      max-width: 40px;
      max-height: 47px;
    }

    .footer-review-badge__logo:has(img[data-frb-icon*='trustedshope']) img {
      width: 40px;
      height: 47px;
      object-fit: contain;
    }

    .footer-review-badge__logo:has(img[data-frb-icon*='reviews-yotpo']) {
      width: 40px;
      height: 44px;
      min-width: 40px;
      min-height: 44px;
      max-width: 40px;
      max-height: 44px;
      overflow: hidden;
      border-radius: 3.63px;
    }

    .footer-review-badge__logo:has(img[data-frb-icon*='reviews-yotpo']) img {
      width: 40px;
      height: 44px;
      border-radius: 3.63px;
      border-width: 1px;
      border-style: solid;
      border-color: var(--footer-border-medium, var(--color-border));
      box-sizing: border-box;
      object-fit: contain;
    }

    .footer-review-badge__logo:has(img[data-frb-icon*='onlineshop']) {
      width: 46px;
      height: 45px;
      min-width: 46px;
      min-height: 45px;
      max-width: 46px;
      max-height: 45px;
    }

    .footer-review-badge__logo:has(img[data-frb-icon*='onlineshop']) img {
      width: 46px;
      height: 45px;
      object-fit: contain;
    }

    .footer-review-badge__logo:has(img[data-frb-icon*='icon-google']) {
      width: auto;
      height: auto;
      min-width: 0;
      min-height: 0;
      max-width: none;
      max-height: none;
    }

    .footer-review-badge__logo:has(img[data-frb-icon*='icon-google']) img {
      box-sizing: border-box;
      width: 36.15px;
      height: 40.01px;
      padding: 5.72px 4.9px 5.72px 4.9px;
      border-width: 0.3px;
      border-style: solid;
      border-color: var(--footer-border-medium, var(--color-border));
      border-radius: 2.96px;
      object-fit: contain;
    }

    .footer-review-badge__content {
      min-width: 0;
      flex: 1 1 0;
      display: flex;
      flex-direction: row;
      flex-wrap: wrap;
      align-items: flex-start;
      text-align: left;
      justify-content: flex-start;
      gap: 3px;
      padding-top: 0;
      overflow: visible;
    }

    .footer-review-badge__text {
      width: 100%;
      max-width: 100%;
      height: auto;
      min-height: 0;
      font-family: 'Nunito Sans', var(--font-body), sans-serif;
      font-size: 12px;
      font-weight: 400;
      line-height: 1.3;
      letter-spacing: 0;
      color: #626161;
      white-space: normal;
      flex-shrink: 1;
      min-width: 0;
      overflow: visible;
      text-align: left;
      align-self: flex-start;
    }

    .footer-review-badge__rating-row {
      display: inline-flex;
      align-items: center;
      box-sizing: border-box;
      width: 100%;
      height: auto;
      gap: clamp(2px, 0.8vw, 4px);
      flex-shrink: 0;
      flex-wrap: nowrap;
      opacity: 1;
      justify-content: flex-start;
      align-self: flex-start;
    }

    .footer-review-badge__rating-value {
      box-sizing: border-box;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: auto;
      min-width: 0;
      height: auto;
      min-height: var(--frb-star);
      flex-shrink: 0;
      font-size: 18px;
      font-weight: 700;
      line-height: 1;
      color: #191919;
      opacity: 1;
    }

    .footer-review-badge__stars {
      display: inline-flex;
      align-items: center;
      box-sizing: border-box;
      width: 61.677px;
      height: 12.335px;
      flex-shrink: 0;
      gap: 0;
      opacity: 1;
      overflow: visible;
    }

    .footer-review-badge__star {
      width: 12.335px;
      height: 12.335px;
      opacity: 1;
    }

    .footer-review-badge__star--full {
      width: 12.335px;
      height: 12.335px;
      opacity: 1;
    }

    .footer-review-badge__star-svg {
      width: 12.335px;
      height: 12.335px;
    }

    .footer-review-badge__count {
      width: 100%;
      flex-basis: 100%;
      height: auto;
      min-height: 0;
      white-space: nowrap;
      overflow: visible;
      text-overflow: clip;
      justify-content: flex-start;
      text-align: left;
      align-self: flex-start;
    }

    .footer-review-badge--google .footer-review-badge__count {
      color: #191919;
    }

    .footer-review-badge--ehi {
      align-items: center;
    }

    .footer-review-badge--ehi .footer-review-badge__content {
      justify-content: flex-start;
      align-items: flex-start;
      text-align: left;
    }

    .footer-review-badge--ehi .footer-review-badge__text--ehi {
      display: block;
      text-align: left;
      width: 100%;
      flex-basis: 100%;
      max-width: 100%;
      font-size: 12px;
      line-height: 1.3;
      white-space: normal;
      word-break: break-word;
      overflow-wrap: break-word;
      hyphens: auto;
      color: #191919;
      font-weight: 600;
    }

    /* Very narrow cell: keep label + rating + count left-aligned */
    @container footer-review-badge (max-width: 130px) {
      .footer-review-badge__content {
        justify-content: flex-start;
        align-items: flex-start;
        text-align: left;
      }

      .footer-review-badge__text {
        flex-basis: 100%;
        text-align: left;
      }

      .footer-review-badge__rating-row {
        justify-content: flex-start;
        align-self: flex-start;
        width: 100%;
      }

      .footer-review-badge__count {
        justify-content: flex-start;
        text-align: left;
      }
    }
  }

  @media screen and (max-width: 390px) {
    .footer-review-badge {
      width: 100%;
      max-width: 100%;
    }

    .footer-review-badge .footer-review-badge__text {
      font-size: 10px;
    }
  }

  @media screen and (min-width: 1200px) {
    .footer-review-badge {
      width: 252px;
      height: 110px;
      padding: 16px 10px;
      font-size: 14px;
      line-height: 21px;
    }

    .footer-review-badge__text {
      font-size: 14px;
    }

    .footer-review-badge--ehi .footer-review-badge__text--ehi {
      font-size: 12px;
      line-height: 24px;
    }

    .footer-review-badge__rating-value {
      font-size: 24px;
    }

    .footer-review-badge__stars {
      width: 61.677px;
      height: 12.335px;
      gap: 0;
      opacity: 1;
    }

    .footer-review-badge__star,
    .footer-review-badge__star--full,
    .footer-review-badge__star-svg {
      width: 12.335px;
      height: 12.335px;
      opacity: 1;
    }
  }
/* END_SNIPPET:footer-review-badge */

/* START_SNIPPET:footer-social-icons (INDEX:245) */
.footer-bottom {
    /* Flexbox 3-column layout: left / center / right */
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--footer-bottom-gap, 1.5rem);
    width: 100%;
  }

  /* Left and right take equal space so center stays perfectly centered */
  .footer-bottom__left,
  .footer-bottom__right {
    flex: 1 1 0;
    min-width: 0;
  }

  .footer-bottom__left {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: flex-start;
  }

  .footer-bottom__label {
    font-family: var(--font-body-family);
    font-size: var(--font-size-lg, 16px);
    font-weight: 600;
    line-height: 1.5;
    color: var(--color-foreground-heading, #191919);
  }

  .footer-bottom__social {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: nowrap; /* requirement: single row */
  }

  .footer-bottom__social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    color: inherit;
    text-decoration: none;
  }

  .footer-bottom__social-icon svg {
    width: 100%;
    height: 100%;
    display: block;
  }

  .footer-bottom__center {
    flex: 0 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .footer-bottom__center-badge {
    width: 3.25rem;
    height: 3.25rem;
    background: #1E35B1;
    border-radius: 50%; /* circular badge per Figma */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .footer-bottom__center-icon svg {
    width: 2.25rem;
    height: 2.25rem;
    display: block;
  }

  .footer-bottom__right {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }

  .footer-bottom__payments {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    flex-wrap: nowrap; /* requirement: single row */
  }

  .footer-bottom__payment-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 2rem;
  }

  .footer-bottom__payment-icon svg {
    height: 2rem;
    width: auto;
    display: block;
  }

  @media screen and (max-width: 749px) {
    /* Vertical stack: Social → Payment → Brand icon */
    .footer-bottom {
      flex-direction: column;
      align-items: center;
      gap: 1rem;
    }

    .footer-bottom__left {
      order: 1;
      width: 100%;
      align-items: center;
    }

    .footer-bottom__right {
      order: 2;
      width: 100%;
      justify-content: center;
    }

    .footer-bottom__center {
      order: 3;
    }

    .footer-bottom__social {
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.75rem;
    }

    /* Payment: compact grid, 2–3 per row, consistent spacing, no stretch */
    .footer-bottom__payments {
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      gap: 0.5rem;
      max-width: 100%;
    }

    .footer-bottom__payment-icon {
      flex: 0 0 auto;
      height: 1.75rem;
    }

    .footer-bottom__payment-icon svg,
    .footer-bottom__payment-icon img {
      height: 1.75rem;
      width: auto;
      max-width: none;
      display: block;
    }

    /* Brand icon: center, same size, no overlap */
    .footer-bottom__center-badge {
      width: 3.25rem;
      height: 3.25rem;
    }
  }
/* END_SNIPPET:footer-social-icons */

/* START_SNIPPET:footer-trust-badge (INDEX:246) */
/**
   * Footer Trust Badge Component Styles
   * 
   * Layout: Vertical flexbox (column) with center alignment
   * Spacing: Uses CSS variables with Figma values as defaults
   * Responsive: Full width on mobile, fixed width on desktop
   * 
   * BEM Structure:
   * - .footer-trust-badge (Block)
   * - .footer-trust-badge__icon (Element)
   * - .footer-trust-badge__content (Element)
   * - .footer-trust-badge__title (Element)
   * - .footer-trust-badge__subtitle (Element)
   * - .footer-trust-badge__divider (Element)
   */
  
  /* Main badge container - vertical layout with center alignment */
  .footer-trust-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: var(--footer-trust-badge-gap, 1.0625rem); /* 17px from Figma */
    width: var(--footer-trust-badge-width, 14rem); /* 224px from Figma */
    box-sizing: border-box;
    min-height: 0;
  }

  /* Equal height with siblings in the footer trust strip (parent flex row or grid); dividers keep align-self: center */
  .footer-desktop__trust-badges > .footer-trust-badge {
    align-self: stretch;
    height: 100%;
  }

  /* Icon container - fixed size to maintain layout consistency */
  .footer-trust-badge__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0; /* Prevents icon from shrinking in flex layout */
  }

  .footer-trust-badge__icon img,
  .footer-trust-badge__icon svg {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  /* Content fills space below icon so subtitles align across cards when row heights match */
  .footer-trust-badge__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: var(--footer-text-gap, 0.25rem); /* 4px from Figma - minimum space title / subtitle */
    text-align: center;
    flex: 1 1 auto;
    width: 100%;
    min-height: 0;
  }

  /* Title text - bold heading style matching Figma Desktop De/H3/600 */
  .footer-trust-badge__title {
    font-family: var(--font-body-family);
    font-size: 14px;
    font-weight: 600; /* Semi-bold per Figma spec */
    line-height: 1.3; /* Tighter than 30px so wrapped titles don’t inflate card height unevenly */
    color: var(--color-foreground-heading); /* Primary text color #191919 */
  }

  /* Subtitle text - lighter supporting text matching Figma Desktop De/H5/500 */
  .footer-trust-badge__subtitle {
    font-family: var(--font-body-family);
    font-size: 12px;
    font-weight: 500; /* Medium weight per Figma spec */
    line-height: 1.5;
    color: var(--footer-secondary-text, var(--color-foreground)); /* Secondary text #626161 */
    opacity: 0.8; /* Slightly muted for hierarchy */
  }

  /* Vertical divider: DOM dividers only render ≥750px (footer); 93px matches balanced desktop row. Mobile gutter line: ::before below (130px, unchanged). */
  .footer-trust-badge__divider {
    box-sizing: border-box;
    width: 0;
    height: 93px;
    margin: 0;
    padding: 0;
    border: none;
    border-left: 1px solid var(--Greys-Stroke-Grey-2, #f0f0f0);
    opacity: 1;
    flex-shrink: 0;
    align-self: center;
  }

  /* Mobile: first badge full width, second/third in two columns; 40×40 icons; vertical rule between bottom pair (footer hides DOM dividers) */
  @media screen and (max-width: 749px) {
    .footer-desktop .footer-desktop__trust-badges {
      align-items: stretch;
    }

    .footer-trust-badge {
      width: 100%;
      min-width: 0;
      gap: var(--footer-trust-badge-gap, 0.75rem);
      align-items: center;
      justify-content: flex-start;
    }

    .footer-trust-badge__icon {
      width: 40px;
      height: 40px;
      opacity: 1;
      align-items: center;
      justify-content: center;
    }

    .footer-trust-badge__icon img,
    .footer-trust-badge__icon svg {
      opacity: 1;
    }

    /* Grid overflow: allow text column to shrink */
    .footer-trust-badge__content {
      min-width: 0;
    }

    /*
     * Trust row DOM: 1=badge1, 2=divider, 3=badge2 (payment), 4=divider, 5=badge3 (returns).
     * Payment title ("100% Zahlungssicherheit"): one line, fluid type (min 10px — max 14px) for narrow half-columns.
     */
    .footer-desktop__trust-badges > .footer-trust-badge:nth-child(3) .footer-trust-badge__title {
      white-space: nowrap;
      font-size: clamp(10px, 3.4vw + 1.5vmin, 14px);
      line-height: 1.3;
      letter-spacing: -0.01em;
      max-width: 100%;
      min-width: 0;
    }

    /* Trust row DOM: 1=badge1, 2=divider, 3=badge2 (payment), 4=divider, 5=badge3 — center a vertical stroke in the grid gutter */
    .footer-desktop__trust-badges > .footer-trust-badge:nth-child(5) {
      position: relative;
    }

    /* Gutter line between payment (col 1) and returns (col 2): inset top/bottom so height tracks the row without overshooting copy */
    .footer-desktop__trust-badges > .footer-trust-badge:nth-child(5)::before {
      content: '';
      position: absolute;
      z-index: 1;
      left: calc(var(--padding-md, 1rem) / -2);
      top: 5%;
      bottom: 5%;
      height: auto;
      width: 0;
      transform: none;
      box-sizing: border-box;
      border: none;
      border-left: 1px solid var(--Greys-Stroke-Grey-2, #f0f0f0);
      pointer-events: none;
    }
  }

  @media screen and (max-width: 390px) {
    .footer-desktop__trust-badges > .footer-trust-badge:nth-child(3) .footer-trust-badge__title,
    .footer-desktop__trust-badges > .footer-trust-badge .footer-trust-badge__title {
      font-size: clamp(10px, 3.4vw + 1.5vmin, 12px);
    }
  }

  @media screen and (min-width: 1200px) {
    .footer-trust-badge__title,
    .footer-trust-badge__subtitle {
      white-space: nowrap;
      font-size: 20px;
    }

    .footer-trust-badge__title {
      font-size: 20px;
      line-height: 1.25;
    }

    .footer-trust-badge__subtitle {
      font-size: 16px;
    }

    .footer-trust-badge__icon {
      height: 50px;
      width: 50px;
    }
  }
/* END_SNIPPET:footer-trust-badge */

/* START_SNIPPET:gift-card-recipient-form (INDEX:250) */
.recipient-form {
    --options-border-radius: var(--variant-picker-button-radius);
    --options-border-width: var(--variant-picker-button-border-width);

    display: flex;
    flex-direction: column;
    padding-bottom: var(--padding-2xl);
  }

  .recipient-form__send-to {
    padding: 0;
    margin-block-end: var(--margin-xs);
  }

  .gift-card-form-option {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--gap-sm);
    padding: 0;
    border: none;
  }

  .gift-card-form-option__button-label {
    display: flex;
    align-items: center;
    position: relative;
    padding-block: var(--padding-sm);
    padding-inline: var(--padding-lg);
    border: var(--style-border-width) solid var(--color-variant-border);
    border-radius: var(--options-border-radius);
    border-width: var(--options-border-width);
    overflow: clip;
    justify-content: center;
    min-width: auto;
    background-color: var(--color-variant-background);
    color: var(--color-variant-text);
    transition: background-color var(--animation-speed) var(--animation-easing),
      border-color var(--animation-speed) var(--animation-easing);

    &:hover {
      background-color: var(--color-variant-hover-background);
      border-color: var(--color-variant-hover-border);
      color: var(--color-variant-hover-text);
    }
  }

  .gift-card-form-option__button-label:has(:focus-visible) {
    --variant-picker-stroke-color: var(--color-foreground);

    border-color: var(--color-foreground);
    outline: var(--focus-outline-width) solid var(--color-foreground);
    outline-offset: var(--focus-outline-offset);
  }

  .gift-card-form-option__button-label:has(:checked) {
    color: var(--color-selected-variant-text);
    background-color: var(--color-selected-variant-background);
    border-color: var(--color-selected-variant-border);
    transition: background-color var(--animation-speed) var(--animation-easing),
      border-color var(--animation-speed) var(--animation-easing);

    &:hover {
      background-color: var(--color-selected-variant-hover-background);
      border-color: var(--color-selected-variant-hover-border);
      color: var(--color-selected-variant-hover-text);
    }
  }

  .gift-card-form-option__button-label input {
    /* remove the checkbox from the page flow */
    position: absolute;

    /* set the dimensions to match those of the label */
    inset: 0;

    /* hide it */
    opacity: 0;
    margin: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
  }

  .recipient-fields {
    display: flex;
    flex-direction: column;
    gap: var(--gap-sm);
    transition: opacity 0.3s var(--animation-easing);
    padding-block-start: var(--padding-xl);
  }

  .recipient-fields[hidden] {
    display: none;
  }

  .field--send-on {
    display: flex;
    flex-direction: column;
  }

  .recipient-form__message {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: var(--gap-sm);
    margin-top: var(--margin-sm);
  }

  .recipient-form-field-label {
    position: absolute;
    left: var(--padding-sm);
    bottom: var(--padding-sm);
    font-style: italic;
    color: var(--color-input-text);
  }

  .recipient-fields__textarea {
    min-height: 5.5rem;
    overflow-y: auto;

    /* Space for the character count */
    padding-bottom: calc(var(--padding-sm) * 3);
    scroll-padding-bottom: calc(var(--padding-sm) * 3);
  }

  .recipient-fields__input {
    flex-grow: 1;
    transition: background-color var(--animation-speed) ease;
    padding: var(--input-padding);
    background-color: var(--color-input-background);
    color: var(--color-input-text);
    text-align: left;
    font-size: var(--font-paragraph--size);
    border: var(--style-border-width-inputs) solid var(--color-input-border);
    border-radius: var(--style-border-radius-inputs);

    &:autofill {
      background-color: var(--color-input-background);
      color: var(--color-input-text);
    }

    &:is(:focus) {
      outline-color: var(--color-input-background);
    }
  }

  /* Date picker calendar icon
   * Safari doesn't show the icon and Firefox correctly applies the color from the input field.
   * Webkit browsers need the mask-image trick to use the correct icon color.
   */
  .field--send-on .recipient-fields__input::-webkit-calendar-picker-indicator {
    cursor: pointer;
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='currentColor' viewBox='0 0 24 24' %3E%3Cg%3E%3Cpath d='M9 11H7v2h2v-2zm4 0h-2v2h2v-2zm4 0h-2v2h2v-2zm2-7h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V9h14v11z'%3E%3C/path%3E%3C/g%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-image: none;
    background-color: currentColor;
    mask-type: match-source;
  }

  /* For Webkit browsers - text cursor for input area */
  .field--send-on .recipient-fields__input::-webkit-datetime-edit {
    cursor: text;
  }

  .field--send-on .recipient-fields__input::-webkit-datetime-edit-year-field,
  .field--send-on .recipient-fields__input::-webkit-datetime-edit-month-field,
  .field--send-on .recipient-fields__input::-webkit-datetime-edit-day-field {
    /* Override the disabled color */
    color: var(--color-input-text);
  }

  /* Fallback for other browsers */
  .field--send-on .recipient-fields__input {
    cursor: text;
  }

  /* For Firefox - entire field is clickable, so show pointer */
  @supports (-moz-appearance: none) {
    .field--send-on .recipient-fields__input {
      cursor: pointer;
    }
  }
/* END_SNIPPET:gift-card-recipient-form */

/* START_SNIPPET:grid-density-controls (INDEX:251) */
.column-options-wrapper {
    --icon-offset: -3px;

    display: flex;
    gap: var(--gap-sm);
    min-width: fit-content;
    justify-content: flex-end;
    height: var(--minimum-touch-target);
    align-items: center;
    margin-right: var(--icon-offset);
  }

  .column-options-wrapper:only-child {
    margin-left: auto;
  }

  .facets__form-wrapper > .column-options-wrapper:first-child {
    margin-left: auto;
  }

  .facets .column-options-wrapper {
    display: none;

    @media screen and (min-width: 750px) {
      display: flex;
    }
  }

  .column-options {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-xs);
    margin: 0;
    padding: 0;
    border: none;

    @media screen and (min-width: 750px) {
      gap: var(--gap-2xs);
    }
  }

  .column-options__option {
    display: none;
    position: relative;
  }

  .column-options__option:has(.column-picker-mobile--single),
  .column-options__option:has(.column-picker-mobile--double) {
    @media screen and (max-width: 749px) {
      display: flex;
    }
  }

  .column-options__option:has(.column-picker--default),
  .column-options__option:has(.column-picker--zoom-out) {
    @media screen and (min-width: 750px) {
      display: flex;
    }
  }

  .column-options__legend {
    padding: 0;
    margin: 0;
  }

  .column-options__option-input {
    /* this is a repeating pattern a bit with the variant picker buttons */

    /* remove the checkbox from the page flow */
    position: absolute;

    /* set the dimensions to match those of the label */
    inset: 0;

    /* hide it */
    opacity: 0;
    margin: 0;
    cursor: pointer;
  }

  .column-picker {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-50));
    padding: var(--padding-2xs);
    border-radius: var(--style-border-radius-xs);
    transition: background-color var(--animation-speed) ease, color var(--animation-speed) ease;
  }

  .column-options__option:hover .column-picker {
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5));
  }

  .column-options__option-input:checked ~ .column-picker {
    color: rgb(var(--color-foreground-rgb));
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5));
  }
/* END_SNIPPET:grid-density-controls */

/* START_SNIPPET:group (INDEX:252) */
.group-block__link {
    position: absolute;
    inset: 0;
  }

  .group-block__link ~ :is(.group-block-content, .group-block__media-wrapper) {
    pointer-events: none;

    :is(a, button, input, textarea, select) {
      pointer-events: auto;
    }
  }

  /* Needs the .group-block__link ~ to be specific enough to take effect. */
  .group-block__link ~ .group-block-content--design-mode {
    pointer-events: auto;
  }
/* END_SNIPPET:group */

/* START_SNIPPET:header-actions-new (INDEX:255) */
.header-actions-new {
  display: flex;
  align-items: center;
  /* Figma (84:6409): icon group gap = 35px */
  gap: 35px;
  flex-shrink: 0;
}

.header-actions-new__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  text-decoration: none;
  color: var(--color-foreground);
  transition: opacity var(--animation-speed) var(--animation-easing);
}

.header-actions-new__item:hover {
  opacity: 0.8;
}

/* Strict 20×20: vectors map to this viewport only */
.header-actions-new__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  max-width: 20px;
  max-height: 20px;
  flex-shrink: 0;
  overflow: hidden;
}

/* Heart stroke extends past geometry; hidden clips sides with non-scaling-stroke */
.header-actions-new__icon--wishlist {
  overflow: visible;
}

.header-actions-new__icon--rewards {
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  max-width: 20px;
  max-height: 20px;
}

.header-actions-new__icon svg {
  box-sizing: border-box;
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  max-width: 20px;
  max-height: 20px;
  opacity: 1;
}

.header-actions-new__icon--wishlist svg {
  transform: rotate(0deg);
}

.header-actions-new__icon--profile svg {
  box-sizing: border-box;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  max-width: 20px;
  max-height: 20px;
  opacity: 1;
}

.header-actions-new__icon--profile svg path,
.header-actions-new__icon--profile svg circle {
  stroke-width: 1.2px;
}

.header-actions-new__icon--rewards svg {
  box-sizing: border-box;
  display: block;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  max-width: 20px;
  max-height: 20px;
  opacity: 1;
}

.header-actions-new__icon--wishlist svg path {
  stroke: #191919;
  stroke-width: 1.2;
  opacity: 1;
}

.header-actions-new__label {
  /* PRD: Icon labels must explicitly use Nunito Sans per Figma specification */
  font-family: 'Nunito Sans', var(--font-body);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  /* PRD: Color #191919 (Figma foreground) - using var(--color-foreground) per Horizon rules */
  color: var(--color-foreground);
  white-space: nowrap;
}

@media screen and (max-width: 989px) {
  .header-new__right .header-actions-new {
    gap: clamp(4px, 1.5vw, 10px);
  }
}
/* END_SNIPPET:header-actions-new */

/* START_SNIPPET:header-actions (INDEX:256) */
.header-actions-new {
    display: flex;
    align-items: center;
    /* Figma (84:6409): icon group gap = 35px */
    gap: 35px;
    flex-shrink: 0;
  }

  .header-actions-new__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    color: var(--color-foreground);
    transition: opacity var(--animation-speed) var(--animation-easing);
  }

  .header-actions-new__item:hover {
    opacity: 0.8;
  }

  /* Strict 20×20 artboard: vector fills this box only (no spill from intrinsic SVG size) */
  .header-actions-new__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
    flex-shrink: 0;
    overflow: hidden;
  }

  .header-actions-new__icon--wishlist {
    overflow: hidden;
  }

  .header-actions-new__icon--rewards {
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
  }

  .header-actions-new__icon svg {
    box-sizing: border-box;
    display: block;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
    opacity: 1;
  }

  /* Profile icon inherits sizing from .header-actions-new__icon wrapper */

  /* Rewards medal: square viewBox in asset maps 1:1 into strict 20×20 */
  .header-actions-new__icon--rewards svg {
    box-sizing: border-box;
    display: block;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
    opacity: 1;
  }

  .header-actions-new__label {
    /* PRD: Icon labels must explicitly use Nunito Sans per Figma specification */
    font-family: 'Nunito Sans', var(--font-body);
    font-size: 12px;
    font-weight: 400;
    line-height: 1.2;
    text-align: center;
    /* PRD: Color #191919 (Figma foreground) - using var(--color-foreground) per Horizon rules */
    color: var(--color-foreground);
    white-space: nowrap;
  }

  .header-actions-new__points {
    font-weight: 700;
  }

  .header-actions-new__label--rewards-points {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
  }

  .header-actions-new__rewards-text {
    max-width: 50%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    min-width: 0;
  }

  .cart-drawer-section {
    opacity: 0;
  }

  .cart-drawer {
    --cart-drawer-padding: var(--padding-lg) var(--padding-xl);
    --cart-drawer-padding-desktop: var(--padding-xl) var(--padding-2xl);
    --cart-font-size--2xs: var(--font-size--2xs);
    --cart-font-size--xs: var(--font-size--xs);
    --cart-font-size--sm: var(--font-size--sm);
    --cart-font-size--md: var(--font-size--md);
    --cart-font-size--2xl: var(--font-size--2xl);
  }

  .mobile_cart_text {
    display: none;
  }
  @media screen and (max-width: 1199px) {
    .mobile-search-wrapper {
      background: #fff;
      padding: 10px 12px;
    }
    .mobile_cart_text {
      display: block;
    }
    .desktop_cart_text {
      display: none !important;
    }
  }

  .cart-drawer__dialog {
    position: fixed;
    border-radius: 0;
    width: var(--sidebar-width);
    max-width: 95vw;
    height: 100%;
    margin: 0 0 0 auto;
    padding: 0;
    border-left: var(--style-border-drawer);
    box-shadow: var(--shadow-drawer);
    background-color: var(--color-background);
  }

  /* @media screen and (max-width: 1199px) {
    .cart-drawer__dialog {
      width: calc(100% - 50px);
      max-width: 340px;
    }
  } */

  /* Needed to ensure the drawer is full height */
  .cart-drawer__dialog:modal {
    max-height: 100dvh;
    overflow-y: hidden;
  }

  .cart-drawer__inner {
    height: 100%;
  }

  .cart-drawer__content {
    padding: 0;
    background-color: var(--color-background);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    /* overflow-y: auto; */
  }

  .cart-drawer__heading {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
  }

  .cart-drawer__close-button {
    margin-right: calc(var(--padding-sm) * -1);
  }

  .cart-drawer--empty .cart-drawer__content {
    text-align: center;
    min-height: auto;
  }

  .cart-drawer--empty .cart-drawer__heading {
    margin-bottom: var(--margin-md);
  }

  .cart-drawer__items .cart-items__table-row {
    padding-bottom: var(--gap-xl);
    border-bottom: var(--style-border-width) solid var(--color-border);
    margin-bottom: var(--gap-xl);
  }

  .cart-drawer__items .cart-items__table-row:has(+ .cart-items__nested-line) {
    border-bottom: none;
    margin-bottom: 0;
  }

  /* .cart-drawer__items .cart-items__table-row:last-child {
      border-bottom: none;
    } */

  .cart-drawer__summary {
    --cart-drawer-summary-padding: var(--padding-lg);

    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--gap-2xl);
    padding: var(--cart-drawer-summary-padding);
    margin-top: auto;
    background-color: var(--color-background);
    /* stylelint-disable-next-line color-named */
    /* mask-image: linear-gradient(to bottom, transparent, black var(--cart-drawer-summary-padding));     */
  }

  @media screen and (min-width: 1200px) {
    .cart-drawer__summary {
      --cart-drawer-summary-padding: var(--padding-2xl);
    }
  }

  .cart-drawer__summary .cart__summary-totals:not(:has(.cart__original-total-container:empty)) {
    border-block-start: var(--style-border-width) solid var(--color-border);
    padding-block-start: var(--padding-2xl);
  }

  @media screen and (min-width: 1200px) {
    .cart-drawer__summary .cart-note {
      margin-block-start: var(--margin-3xs);
    }
  }

  .cart-drawer__heading--empty {
    display: flex;
    justify-content: center;
  }

  .cart-drawer__items {
    display: flex;
    flex-direction: column;
    padding-inline: var(--cart-drawer-padding);
    overflow-y: auto;
  }

  @media screen and (min-width: 1200px) {
    .cart-drawer__items {
      padding-inline: var(--cart-drawer-padding-desktop);
    }
  }

  .cart-drawer__items .cart-items__table-row {
    padding-bottom: var(--gap-xl);
    border-bottom: var(--style-border-width) solid #eeeeee;
    margin-bottom: var(--gap-xl);
  }

  .cart-drawer__items .cart-items__table-row:last-child {
    /* border-bottom: none;
      padding-block-end: 0; */
    margin-block-end: 15px;
  }

  .cart-drawer--empty .cart-drawer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100dvh;
    margin-top: 0;
  }

  .cart-drawer:not(:has(.cart-form)) .cart-drawer__content {
    justify-content: center;
  }

  .cart-drawer--empty .cart-drawer__header {
    justify-content: right;
    border-bottom: none;
    padding-bottom: 0;
  }

  .cart-drawer--empty .cart-drawer__heading {
    text-align: center;
  }

  .cart-drawer:not(:has(.cart-form)) .cart-items__wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
  }

  header-actions {
    display: flex;
    align-items: center;
  }

  @media screen and (max-width: 1199px) {
    header-actions {
      justify-self: flex-end;
    }
  }

  @media screen and (min-width: 990px) {
    header-actions {
      gap: 24px;
    }
  }

  .header__column--right header-actions {
    margin-inline-start: calc(var(--gap-md) * -1);
  }

  @media screen and (min-width: 990px) {
    .header__column--right header-actions {
      margin-inline-start: 0;
    }
  }

  .header-actions__action {
    --button-color: var(--color-foreground);

    cursor: pointer;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    overflow: visible;
  }

  @media screen and (max-width: 1199px) {
    .account-button.header-actions__action {
      flex-direction: column;
      font-size: 9px;
      height: auto;
    }
  }

  @media screen and (max-width: 1199px) {
    .menu-drawer .header-actions__action .account-button__icon svg {
      width: 33px;
      height: 33px;
    }
  }

  @media screen and (max-width: 1199px) {
    .menu-drawer .account-button.header-actions__action {
      flex-direction: row;
      height: 70px;
      margin-left: 22px;
      padding: 0;
      font-size: 14px;
    }

    .menu-drawer .account-drawer {
      border-bottom: solid 1px #eeeeee;
      margin-bottom: 10px;
      display: flex;
    }

    .menu-drawer .menu-drawer__top-actions-search {
      padding: 0 15px 50px;
      border-bottom: solid 5px #f5f5f5;
    }

    .menu-drawer .menu-drawer__top-actions-search button {
      background: #f5f5f5;
      border: none;
      height: 44px;
    }
    .menu-drawer .menu-drawer__top-actions-search button input {
      background: #f5f5f5;
    }
    .menu-drawer .menu-drawer__top-actions-search button .svg-wrapper {
      background: none;
      border: none;
    }
    .menu-drawer .menu-drawer__menu.has-submenu {
      padding: 15px;
    }

    .menu-overflow {
      overflow: initial;
    }

    .top-menu-blocks-wrapper {
      padding: 15px;
    }

    .suggested-items-menu-slider::-webkit-scrollbar {
      display: none;
    }

    .mobile-menu-bottom-blocks-wrapper {
      padding: 15px 20px;
      background: linear-gradient(0deg, #ffffff, #eff0ff),
        linear-gradient(174.72deg, rgba(239, 240, 255, 0.4) 29.67%, rgba(255, 255, 255, 0.4) 100.21%);
      margin-top: 8px;
    }

    .mobile-menu-bottom-blocks-wrapper .footer-menu__list {
      gap: 0px;
    }

    .mobile-banner-slider .mobile-banner-dots {
      padding: 0;
      margin-top: 5px;
      margin-bottom: 0px;
    }

    .mobile-banner-block {
      padding: 0 15px;
    }

    .social-links-section {
      padding-top: 25px;
      border-top: solid 1px #e6e6e6;
    }
  }

  .search-action .search-modal__button {
    justify-content: space-between;
  }

  .search-action .header-actions__action .svg-wrapper {
    height: 36px;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #787fde;
    border-radius: 5px;
  }

  .search-action {
    width: 100%;
  }

  .search-action button {
    padding: 4px 6px;
    border: solid 1px rgba(136, 136, 136, 0.5);
    border-radius: 5px;
    width: 100%;
  }

  .search-action button input {
    border: 0;
    flex: 0 0 85%;
    max-width: 85%;
  }

  .search-action button input::placeholder {
    font-style: italic;
    font-size: 14px;
    color: #888888;
    font-weight: 400;
  }

  .header-actions__action svg {
    width: 15px;
    height: 15px;
    display: block;
  }

  .header-actions__action .account-button__icon svg {
    width: 20px;
    height: 20px;
  }

  @media screen and (max-width: 1199px) {
    .header-actions__action .account-button__icon svg {
      width: 33px;
      height: 33px;
    }
  }

  @media screen and (max-width: 1199px) {
    .header-actions__action .account-button__icon svg {
      width: 16px;
      height: 16px;
    }

    wishlist-header .wishlist-header__icon-wrapper {
      display: flex;
      font-size: 9px;
      flex-direction: column;
      gap: 2px;
    }

    wishlist-header {
      margin-right: 6px;
      margin-left: 6px;
    }

    .wishlist-header__icon-wrapper .wishlist-header__text {
      margin-left: 0;
    }

    .cart-button-wrapper {
      margin: 0;
    }
  }

  .wishlist-button-wrapper.header-actions__action svg {
    width: 22px;
    height: 20px;
  }

  cart-drawer-component .header-actions__action svg {
    width: 21px;
    height: 20px;
  }

  .cart-button-wrapper
    cart-drawer-component
    .button:not(.quantity-minus, .quantity-plus, .cart__checkout-button, .bv-mini-cart__empty-btn, .view-cart__button),
  .cart-button-wrapper
    cart-drawer-component
    .button.header-actions__action:not(
      .quantity-minus,
      .quantity-plus,
      .cart__checkout-button,
      .bv-mini-cart__empty-btn,
      .view-cart__button
    ) {
    position: relative;
    margin-right: 10px;
  }

  @media screen and (max-width: 1199px) {
    .header-actions__item {
      flex-direction: column;
      font-size: 9px;
    }
    .menu-drawer .menu-drawer__top-actions-search {
      padding-bottom: 10px;
    }
    .menu-drawer__top-actions-search svg path {
      stroke: #444444;
    }
  }

  /* Desktop header actions styling */
  @media screen and (min-width: 990px) {
    .header-actions__item {
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .header-actions__link {
      display: flex;
      align-items: center;
      gap: 6px;
      text-decoration: none;
      color: var(--color-foreground);
    }

    .header-actions__icon {
      width: 18px;
      height: 18px;
      flex-shrink: 0;
    }

    .header-actions__text {
      font-size: 13px;
      font-weight: 400;
      color: #222222;
      white-space: nowrap;
    }

    .header-actions__shoplc {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .header-actions__shoplc-icon {
      width: 18px;
      height: 18px;
      max-height: 18px !important;
      object-fit: contain;
    }

    .header-actions__shoplc-text {
      font-size: 13px;
      font-weight: 400;
      color: #222222;
      margin-left: 0 !important;
    }

    .wishlist-button-wrapper.header-actions__item a {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .wishlist-button-wrapper .icon-default {
      width: 18px;
      height: 18px;
    }

    .cart-button-wrapper.header-actions__item {
      display: flex;
      align-items: center;
      gap: 5px;
    }

    .cart-button-wrapper .header-actions__cart-text {
      font-size: 12px;
      font-weight: 400;
      color: #222222;
      margin-left: 8px;
    }

    .cart-button-wrapper cart-drawer-component {
      display: flex;
      align-items: center;
    }

    .cart-button-wrapper cart-drawer-component .header-actions__action {
      display: flex;
      align-items: center;
    }

    .cart-button-wrapper
      cart-drawer-component
      .button:not(
        .quantity-minus,
        .quantity-plus,
        .cart__checkout-button,
        .bv-mini-cart__empty-btn,
        .view-cart__button
      ),
    .cart-button-wrapper
      cart-drawer-component
      .button.header-actions__action:not(
        .quantity-minus,
        .quantity-plus,
        .cart__checkout-button,
        .bv-mini-cart__empty-btn,
        .view-cart__button
      ) {
      padding: 0;
      min-height: auto;
      height: auto;
      background: transparent;
      border: none;
      overflow: visible;
    }

    .cart-button-wrapper .header-actions__action .svg-wrapper {
      width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cart-button-wrapper .header-actions__action .svg-wrapper svg {
      width: 20px;
      height: 20px;
      display: block;
    }

    .cart-button-wrapper cart-icon,
    .cart-button-wrapper .header-actions__cart-icon {
      display: flex;
      align-items: center;
      position: relative;
    }

    .cart-button-wrapper cart-icon .svg-wrapper,
    .cart-button-wrapper .header-actions__cart-icon .svg-wrapper {
      width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .cart-button-wrapper cart-icon .svg-wrapper svg,
    .cart-button-wrapper .header-actions__cart-icon .svg-wrapper svg {
      width: 20px;
      height: 20px;
      display: block;
    }
  }

  /* Hide text on mobile/tablet */
  @media screen and (max-width: 989px) {
    .header-actions__text {
      display: block;
    }

    .header-actions__item {
      display: flex;
      align-items: center;
    }

    /*
      New header: cart is .cart-button-wrapper + sibling .mobile_cart_text (row) — doubles width
      and clips the last icon. Match other actions: icon + label in one column; hide duplicate span.
    */
    .header-new__right .cart-button-wrapper {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      gap: 4px;
      flex-shrink: 0;
      margin: 0;
    }

    .header-new__right .cart-button-wrapper .mobile_cart_text {
      display: none !important;
    }

    .header-new__right .cart-button-wrapper .desktop_cart_text {
      display: block !important;
      font-family: 'Nunito Sans', var(--font-body);
      font-size: 12px;
      font-weight: 400;
      line-height: 1;
      text-align: center;
      color: var(--color-foreground);
      white-space: nowrap;
    }

    .header-new__right .cart-button-wrapper cart-drawer-component .button.header-actions__action {
      flex-direction: column;
      align-items: center;
      justify-content: flex-end;
      gap: 4px;
      margin: 0 !important;
    }
  }

  .header-actions__cart-icon,
  .header-actions__cart-icon--has-cart {
    --cart-bubble-size: 15px;
    --cart-bubble-top: -6px;
    --cart-bubble-right: -8px;

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
    flex-shrink: 0;
    /* Bubble sits outside this box; do not clip it */
    overflow: visible;
  }

  .header-actions__cart-icon .svg-wrapper,
  .header-actions__cart-icon--has-cart .svg-wrapper {
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
    flex-shrink: 0;
    overflow: hidden;
  }

  .header-actions__cart-icon .svg-wrapper svg,
  .header-actions__cart-icon--has-cart .svg-wrapper svg {
    box-sizing: border-box;
    display: block;
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    min-width: 20px;
    min-height: 20px;
    max-width: 20px;
    max-height: 20px;
  }

  .header-actions__cart-icon .cart-bubble {
    position: absolute;
    box-sizing: border-box;
    width: 15px;
    min-width: 15px;
    height: 15px;
    min-height: 15px;
    max-width: 15px;
    max-height: 15px;
    top: -8px;
    right: var(--cart-bubble-right);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 1px;
  }

  @media screen and (max-width: 1199px) {
    .header-actions__cart-icon .cart-bubble {
      top: -8px;
    }
  }

  .header-actions__cart-icon .cart-bubble__background {
    background-color: #bc0514;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 50%;
  }

  .header-actions__cart-icon .cart-bubble__text {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-actions__cart-icon .cart-bubble__text-count {
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    line-height: 1;
  }

  .header-actions__cart-icon .cart-bubble__text,
  .cart-drawer__heading .cart-bubble__text {
    font-family: var(--font-paragraph--family);
    font-weight: var(--font-paragraph--weight);
  }

  .cart-drawer__heading .cart-bubble__background {
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-10-25));
  }

  .cart-drawer__heading .cart-bubble__text {
    color: var(--color-foreground);
    font-size: var(--font-size--xs);
  }

  .cart-bubble--animating .cart-bubble__background {
    animation: grow var(--animation-speed) var(--animation-easing);
  }

  .cart-bubble--animating .cart-bubble__text {
    animation: cartBubbleSlideIn var(--animation-speed) var(--animation-easing);
  }

  /* Cart icon desktop: count badge position; bubble stays 15×15 */
  @media screen and (min-width: 990px) {
    .header-actions__cart-icon,
    .header-actions__cart-icon--has-cart {
      --cart-bubble-size: 15px;
      --cart-bubble-top: -4px;
      --cart-bubble-right: -6px;
    }
  }

  /* Hide static placeholder as soon as the real wishlist-header is present in the slot */
  .wishlist-button-wrapper:has(wishlist-header) .wishlist-header-placeholder {
    display: none !important;
  }

  /* App extension serves 'Wishlist' (EN) — override to German at theme level */
  .wishlist-button-wrapper wishlist-header .wishlist-header__text {
    font-size: 0 !important;
    line-height: 0;
  }
  .wishlist-button-wrapper wishlist-header .wishlist-header__text::after {
    content: 'Wunschliste';
    font-size: 12px;
    font-family: 'Nunito Sans', var(--font-body);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-foreground);
    white-space: nowrap;
  }
/* END_SNIPPET:header-actions */

/* START_SNIPPET:header-search-inline (INDEX:262) */
.header-search-inline {
  display: flex;
  flex: 1 1 0;
  width: 100%;
  max-width: 820px;
  opacity: 1;
  transform: rotate(0deg);
}

.header-search-inline__wrapper {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  height: 43px;
  background-color: #FFFFFF;
  border: 0.5px solid #919191;
  border-radius: 27px;
  overflow: hidden;
  opacity: 1;
  transform: rotate(0deg);
  gap: 0;
}

.header-search-inline__input {
  flex: 1;
  min-width: 0;
  padding-left: 24px;
  padding-right: 20px;
  border: none;
  background: transparent;
  font-family: 'Nunito Sans', var(--font-body);
  font-size: 14px;
  color: var(--color-foreground);
  outline: none;
  height: 100%;
  opacity: 1;
  transform: rotate(0deg);
  overflow: visible;
  text-overflow: clip;
}

.header-search-inline__input::placeholder {
  color: #626161;
  font-family: 'Nunito Sans', var(--font-body);
  font-weight: 400;
  font-style: normal;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 0%;
  opacity: 1;
  transform: rotate(0deg);
  white-space: nowrap;
  overflow: visible;
}

.header-search-inline__button {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 21px;
  background-color: #1E35B1;
  border: none;
  border-radius: 0 21px 22px 0;
  cursor: pointer;
  transition: opacity var(--animation-speed) var(--animation-easing);
}

.header-search-inline__button:hover {
  opacity: 0.9;
}

.header-search-inline__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25px;
  height: 25px;
  color: white;
}

.header-search-inline__icon svg {
  width: 100%;
  height: 100%;
  stroke: white;
  fill: none;
}

/* Responsive: allow the search bar to fill available width on tablet/mobile */
@media (max-width: 989px) {
  .header-search-inline {
    width: 100%;
    max-width: 100%;
  }

  .header-search-inline__wrapper {
    width: 100%;
    max-width: 100%;
  }
}
/* END_SNIPPET:header-search-inline */

/* START_SNIPPET:jumbo-text (INDEX:274) */
.jumbo-text__container {
    width: 100%;
  }

  footer .jumbo-text__container {
    pointer-events: none;
  }

  jumbo-text {
    display: block;
    font-family: var(--font-family, inherit);
    font-style: var(--font-style, normal);
    color: var(--color, inherit);
    font-weight: var(--font-weight, inherit);
    letter-spacing: var(--letter-spacing, -0.02em);
    line-height: var(--line-height, 1);
    opacity: 0;
    text-align: var(--text-align);
    text-box: var(--text-trim, trim-end cap text);
    text-transform: var(--text-transform, none);
    transition: opacity 0.3s ease;
    white-space: pre;
    width: 100%;
    will-change: font-size;
    margin-left: var(--margin-left-nudge, 0);
    margin-right: var(--margin-right-nudge, 0);
    overflow: visible;
  }

  jumbo-text.ready {
    opacity: 1;
  }

  jumbo-text[data-cap-text='true'] {
    /* stylelint-disable-next-line plugin/no-unsupported-browser-features */
    text-box-edge: cap text;
  }

  .jumbo-text-space {
    display: inline-flex;
    width: 0.5ch;
  }

  :is(.jumbo-text-char, .jumbo-text-line) {
    display: inline-flex;
  }

  @media (prefers-reduced-motion: no-preference) {
    /* Blur effect */
    [data-text-effect='blur'] {
      filter: blur(20px);
      opacity: 0.5;
      scale: 1.05;
      transition: filter 1.6s var(--animation-timing-fade-in), opacity 1.3s var(--animation-timing-fade-in),
        scale 1.6s var(--animation-timing-fade-in);
    }

    .jumbo-text-visible[data-text-effect='blur'] {
      filter: blur(0);
      opacity: 1;
      scale: 1;
    }

    /* Reveal effect */
    .ready[data-text-effect='reveal'],
    .ready[data-text-effect='reveal'] .jumbo-text-line {
      overflow: hidden;
    }

    .ready[data-text-effect='reveal'] .jumbo-text-char {
      transform: translateY(100%);
    }

    .jumbo-text-visible[data-text-effect='reveal'] .jumbo-text-char {
      transition: transform 0.5s var(--animation-timing-fade-in) calc(var(--line-index) * 0.05s);
      transform: translateY(0);
    }

    .jumbo-text-visible[data-text-effect='reveal'],
    .jumbo-text-visible[data-text-effect='reveal'] .jumbo-text-line {
      overflow: visible;
      transition: overflow 0s linear 0.75s;
    }
  }
/* END_SNIPPET:jumbo-text */

/* START_SNIPPET:list-filter (INDEX:280) */
.facets input:checked + label {
    font-weight: 500;
  }

  .facets .checkbox {
    --checkbox-size: 20px;
    --checkbox-border-radius: var(--style-border-radius-xs);
  }

  .facets .checkbox .icon-checkmark {
    width: 20px;
    height: 20px;
    opacity: 1;
    transform: rotate(0deg);
    border-radius: var(--style-border-radius-xs);
    transition: border-color 0.2s ease, background-color 0.2s ease;
  }

  .facets .checkbox:not(:has(.checkbox__input:disabled)):hover .icon-checkmark {
    border-color: rgb(var(--color-foreground-rgb) / var(--opacity-40-60));
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5));
  }

  .facets .checkbox:has(.checkbox__input:checked):not(:has(.checkbox__input:disabled)):hover .icon-checkmark {
    background-color: var(--Blues-Primary-Blue, #1E35B1);
    border-color: var(--Blues-Primary-Blue, #1E35B1);
  }

  .facets .checkbox:not(:has(.checkbox__input:disabled)):hover .checkbox__label-text {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-90));
  }

  .facets .checkbox .checkbox__label-text {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #191919;
    transition: color 0.2s ease, font-weight 0.2s ease;
  }

  /* Blue label + checkbox when checked */
  .facets .checkbox:has(.checkbox__input:checked) .checkbox__label-text {
    color: #1E35B1;
  }

  .facets .checkbox:has(.checkbox__input:checked) .icon-checkmark {
    background-color: #1E35B1;
    border-color: #1E35B1;
  }

  /* Pill style */
  .facets__pill-label {
    --pill-label-padding-inline: var(--padding-xs);
    --pill-label-border-radius: var(--style-border-radius-md);
    --pill-label-border-width: var(--variant-picker-button-border-width);
    --pill-label-height: var(--button-size-md);
    --pill-label-focus-outline-color: var(--color-foreground);
    --pill-label-color: var(--color-foreground);
    --pill-label-color-rgb: var(--color-foreground-rgb);
    --pill-label-background-color: var(--color-background);
    --pill-label-background-color-rgb: var(--color-background-rgb);
    --pill-label-border-opacity: var(--facets-low-opacity);

    display: inline-flex;
    position: relative;
    align-items: center;
    justify-content: center;
    box-shadow: inset 0 0 0 var(--pill-label-border-width) rgb(var(--pill-label-color-rgb) / var(--opacity-10-25));
    border-radius: var(--pill-label-border-radius);
    height: var(--pill-label-height);
    width: 100%;
    padding-inline: var(--pill-label-padding-inline);
    color: rgb(var(--pill-label-color-rgb));
    background-color: rgb(var(--pill-label-background-color-rgb));
    cursor: pointer;
    transition: color var(--animation-speed) var(--animation-easing),
      background-color var(--animation-speed) var(--animation-easing);
    outline-color: var(--pill-label-focus-outline-color);

    &:hover {
      --pill-label-border-opacity: 100%;
    }
  }

  .facets__pill-input {
    &:checked + .facets__pill-label {
      --pill-label-color-rgb: var(--color-background-rgb);
      --pill-label-background-color-rgb: var(--color-foreground-rgb);
      --pill-label-border-opacity: 0;

      font-weight: 500;
    }

    &:disabled + .facets__pill-label {
      opacity: var(--disabled-opacity);
      cursor: not-allowed;

      &:hover {
        --pill-label-border-opacity: var(--facets-low-opacity);
      }
    }
  }

  .facets__summary-label-group {
    display: flex;
    align-items: center;
  }

  .facets--drawer .facets__summary-label-group {
    @media screen and (max-width: 749px) {
      gap: var(--gap-3xs);
    }
  }

  .facets--vertical .facets__summary-label-group {
    gap: var(--gap-xs);
  }

  .facets--horizontal .facets__summary-label-group {
    gap: var(--gap-2xs);
  }

  .facets__pill-input:disabled + .facets__pill-label svg {
    position: absolute;
    top: 0;
    left: 0;
    border-radius: var(--style-border-radius-md);
  }

  .facets__pill-label svg line {
    stroke-width: 1.5px;
    stroke: rgb(var(--color-foreground-rgb) / var(--facets-low-opacity));
  }

  .facets__pill-wrapper {
    position: relative;
  }

  .facets__pill-input {
    position: absolute;
    inset: 0;
    margin: 0;
    opacity: 0;
    cursor: pointer;
  }

  /* Swatches */
  .facets__status--swatches {
    display: none;
  }

  .facets__swatch-wrapper {
    display: flex;
  }

  .facets__inputs-list--swatches .variant-option__button-label {
    --color-variant-text: var(--color-foreground);
  }

  .facets__inputs-list--swatches {
    --variant-picker-swatch-width: 32px;
    --variant-picker-swatch-height: 32px;

    @media screen and (min-width: 750px) {
      --variant-picker-swatch-width: 26px;
      --variant-picker-swatch-height: 26px;
    }
  }

  .facets--vertical .facets__inputs-wrapper .facets__inputs-list--swatches-grid {
    gap: var(--gap-sm);
  }

  .facets--vertical .facets__inputs-list--swatches .facets__inputs-list-item {
    display: flex;
  }

  .facets__inputs-wrapper .facets__inputs-list--swatches-grid {
    --columns: 2;

    display: grid;
    grid-template-columns: repeat(var(--columns), 1fr);
  }

  .facets__inputs-wrapper .facets__inputs-list--swatches-grid .variant-option--swatches {
    cursor: pointer;
    overflow: visible;

    &.variant-option--swatches-disabled,
    &:has(input:disabled) {
      cursor: not-allowed;
    }
  }

  .facets__inputs-wrapper .facets__inputs-list--swatches-grid label {
    cursor: pointer;
    word-break: break-word;
    white-space: normal;

    .variant-option--swatches-disabled &,
    .variant-option--swatches:has(input:disabled) & {
      cursor: not-allowed;
    }
  }

  .facets__inputs-wrapper .facets__inputs-list--swatches-grid .variant-option__button-label--has-swatch {
    align-items: center;
    overflow: visible;
    justify-content: flex-start;
    display: flex;
    width: 100%;
    flex-basis: unset;
    gap: var(--gap-sm);
  }

  .facets__inputs-wrapper .facets__inputs-list--swatches-grid .variant-option__button-label:has(:checked) {
    color: rgb(var(--color-foreground-rgb));
    background-color: rgb(var(--color-background-rgb));
    font-weight: 500;
    transition: font-weight 0.2s ease;
  }

  .facets .variant-option--swatches {
    --options-border-radius: var(--variant-picker-swatch-radius);

    width: auto;
  }

  .facets--horizontal .facets__status--swatches {
    @media screen and (min-width: 750px) {
      display: flex;
    }
  }

  .facets--horizontal .sorting-filter .facets__status {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }

  .facets__status--swatches .swatch {
    width: calc(var(--variant-picker-swatch-width) / 1.5);
    height: calc(var(--variant-picker-swatch-height) / 1.5);
  }

  .facets__status--swatches .swatch + .swatch {
    margin-left: calc(var(--variant-picker-swatch-width) / -3);
    outline: 1px solid rgb(var(--color-background-rgb));
  }

  .variant-option--images {
    position: relative;
  }

  .variant-option--images {
    --image-facet-border-width: var(--variant-picker-button-border-width);
    --image-facet-border-opacity: var(--facets-low-opacity);
    --image-facet-border-radius: var(--style-border-radius-xs);

    border-radius: var(--image-facet-border-radius);
    box-shadow: inset 0 0 0 var(--image-facet-border-width)
      rgb(var(--color-foreground-rgb) / var(--image-facet-border-opacity));

    &:hover:not(:has(input:disabled)),
    &:has(input:checked) {
      --image-facet-border-opacity: 100%;
    }

    &:has(input:checked) {
      font-weight: 500;
      transition: font-weight 0.2s ease;
    }

    &:has(input:checked):hover {
      --image-facet-border-width: calc(var(--variant-picker-button-border-width) + 0.5px);
    }

    &:has(input:focus-visible) {
      outline: var(--focus-outline-width) solid currentcolor;
      outline-offset: var(--focus-outline-offset);
    }

    &:has(input:disabled),
    &:has(input:disabled):hover {
      --image-facet-border-opacity: 0;

      opacity: var(--disabled-opacity);
      cursor: not-allowed;

      img {
        opacity: var(--disabled-opacity);
      }

      input,
      label,
      .facets__image-label {
        cursor: not-allowed;
      }

      .facets__image-wrapper {
        border: var(--style-border-width) solid rgb(var(--color-foreground-rgb) / var(--opacity-30));
        border-radius: var(--image-facet-border-radius);
      }
    }
  }

  .facets__inputs-wrapper .facets__inputs-list--images {
    display: grid;
    grid-template-columns: repeat(var(--image-columns), 125px);
    gap: var(--gap-sm);
  }

  .facets--drawer .facets__inputs-wrapper .facets__inputs-list--images {
    grid-template-columns: repeat(3, 1fr);

    @media screen and (min-width: 750px) {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  .facets--vertical .facets__inputs-wrapper .facets__inputs-list--images {
    grid-template-columns: repeat(2, 1fr);
  }

  .facets--drawer .facets__inputs-list--images {
    padding-top: var(--padding-xs);
  }

  .facets__image-wrapper {
    aspect-ratio: 1/1;
    width: 100%;
    padding: var(--padding-xs);
    position: relative;
    overflow: hidden;
  }

  .facets__image-wrapper img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    border-radius: calc(var(--border-radius) / 2);
  }

  /* Position disabled-svg */
  .variant-option--images svg {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    stroke-width: var(--border-width);
    stroke: rgb(var(--color-foreground-rgb) / var(--opacity-5));
  }

  /* Position label text and handle overflow */
  .facets__inputs-list-item,
  .variant-option--images {
    min-width: 0;
  }

  .facets__image-label {
    width: 100%;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    padding-block-end: var(--padding-xs);
    cursor: pointer;

    .variant-option--images:has(input:disabled) & {
      cursor: not-allowed;
    }
  }

  .facets__inputs-list--swatches .variant-option__button-label:hover:not(:has(input:disabled)) {
    font-weight: 500;
  }

  .variant-option--images:not(:has(input:disabled)) .facets__image-label:hover {
    font-weight: 500;
  }

  .facet-values-search,
  .facets__search-wrapper {
    width: 100%;
  }

  .facets__search-wrapper:focus-within {
    outline: none;
    box-shadow: none;
  }

  .facet-values-search__field {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    border-radius: var(--style-border-radius-inputs);
    margin-bottom: 15px;
  }

  /* Keep wrapper visually stable when the inner search field is focused */
  .facet-values-search__field:focus-within {
    outline: none;
    box-shadow: none;
  }

  .facets__search-input,
  .facet-values-search__input {
    width: 100%;
    height: 40px;
    margin: 0;
    padding: 10px 15px;
    font: inherit;
    font-size: var(--font-paragraph--size);
    font-weight: 500;
    line-height: 1.4;
    color: var(--color-foreground);
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5));
    border: var(--style-border-width-inputs) solid var(--color-border);
    border-radius: var(--style-border-radius-inputs);
    appearance: none;
    -webkit-appearance: none;
    outline: none;
    box-shadow: none;
    transition: none;
  }

  .facets__search-input::placeholder,
  .facet-values-search__input::placeholder {
    color: var(--facets-input-label-color);
  }

  /* Same border as default on focus — no theme outline, glow, or size jump */
  .facets__search-input:focus,
  .facets__search-input:focus-visible,
  .facet-values-search__input:focus,
  .facet-values-search__input:focus-visible {
    outline: none;
    box-shadow: none;
    border-color: var(--color-border);
    border-width: var(--style-border-width-inputs);
  }

  .facet-values-search__icon {
    position: absolute;
    inset-inline-end: var(--padding-xs);
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    color: rgb(var(--color-foreground-rgb) / var(--opacity-50));
  }

  .facet-values-search__icon svg {
    width: var(--icon-size-sm);
    height: var(--icon-size-sm);
  }

  facet-inputs-component .list-filter__show-more-btn {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    text-align: left;
    width: 100%;
    gap: 0;
  }

  facet-inputs-component .list-filter__show-more-btn .show-more__label--more {
    color: var(--Blues-Primary-Blue, #1e35b1);
    text-decoration: underline;
    text-underline-offset: 0.15em;
    background: none;
    padding: 0;
    border-radius: 0;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 150%;
  }

  facet-inputs-component .list-filter__show-more-btn:hover .show-more__label--more {
    color: var(--Blues-Primary-Blue, #1e35b1);
    text-decoration-thickness: from-font;
    opacity: 0.88;
  }

  facet-inputs-component .list-filter__show-more-btn .show-more__label--less {
    text-align: left;
    color: var(--Blues-Primary-Blue, #1e35b1);
    text-decoration: underline;
    font-weight: 600;
  }

  @media screen and (min-width: 750px) {
    facet-inputs-component .list-filter__show-more-btn .show-more__label--less {
      display: none !important;
    }
  }
/* END_SNIPPET:list-filter */

/* START_SNIPPET:live-tv-content-block (INDEX:281) */
.live-tv-content-block {
    width: 809px;
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  /* Desktop: Label → Video → Engagement → Banner (banner below video) */
  .live-tv-content-block__label { order: 0; }
  .live-tv-content-block__video { order: 1; }
  .live-tv-content-block__engagement { order: 2; }
  .live-tv-content-block__banner-slot { order: 3; }

  .live-tv-content-block__title {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 700;
    font-size: 24px;
    margin: 0;
    color: #000000;
  }

  .live-tv-content-block__label {
    width: fit-content;
    height: 64px;
    padding: 8px 8px 8px 10px;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    background-color: rgba(255, 255, 255, 1);
    border-radius: 5px;
  }

  .live-tv-content-block__label-text {
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 32px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #000000;
    width: 110px;
    height: 48px;
    display: flex;
    align-items: flex-end;
  }

  .live-tv-content-block__live-indicator {
    width: 14px;
    height: 14px;
    background-color: #FF0000;
    border-radius: 50%;
    display: inline-block;
  }

  .live-tv-content-block__banner-slot {
  display: flex;
  flex-direction: row;

  width: 808px;
  height: 150px;

  padding: 0 316px; /* ✅ EXACT Figma values */
  gap: 10px;

  background-color: #DDDDDD;
  border-radius: 5px;
  overflow: hidden;

  justify-content: center;
  align-items: center;
}



  .live-tv-content-block__banner-image {
    width: 808px;
    height: 150px;
    max-width: none;
    display: block;
    object-fit: cover;
  }

  .live-tv-content-block__banner-placeholder {
    color: #666666;
    font-size: 18px;
    text-align: center;
  }

  .live-tv-content-block__video {
  width: 100%;
  background-color: #000;
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  aspect-ratio: 16 / 9;
  }

  .live-tv-content-block__video iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  }


/* MAIN ENGAGEMENT ROW */
.live-tv-content-block__engagement {
  display: flex;
  flex-direction: row;
  width: 100%;            /* Figma: Fixed */
  align-items: center;
  padding: 8px 0;
  font-size: 14px;
}

/* LEFT + RIGHT GROUPS */
.live-tv-content-block__engagement-left,
.live-tv-content-block__engagement-right {
  display: flex;
  align-items: center;
}

/* GAP BETWEEN GROUPS (Figma: 464px) */
.live-tv-content-block__engagement-left {
  margin-right: 464px;
}

/* INDIVIDUAL ITEM */
.live-tv-content-block__engagement-item {
  display: flex;
  align-items: center;
  gap: 10px;               /* Figma item gap */
}

/* ICON (Figma: 34×34 + 1px padding) */
.live-tv-content-block__icon {
  width: 34px;
  height: 34px;
  padding: 1px;
  object-fit: contain;
  display: block;
}

@media screen and (max-width: 989px) {
  .live-tv-content-block {
    width: 100%;
   
    gap: 12px;
  }

  /* Mobile: Label → Banner → Video → Engagement (banner above video) */
  .live-tv-content-block__label { order: 0; }
  .live-tv-content-block__banner-slot { order: 1; }
  .live-tv-content-block__video { order: 2; }
  .live-tv-content-block__engagement { order: 3; }

  .live-tv-content-block__label {
    width: 100%;
  }

  .live-tv-content-block__engagement-left {
    margin-right: auto;
  }

  .live-tv-content-block__engagement {
    flex-wrap: wrap;
  }

  .live-tv-content-block__banner-slot {
    width: 100%;
   
    padding: 0 16px;
  }
}
/* END_SNIPPET:live-tv-content-block */

/* START_SNIPPET:localization-form (INDEX:285) */
/* Localization */
  localization-form-component {
    display: flex;
    width: var(--width, auto);

    @media screen and (min-width: 750px) {
      position: relative;
    }
  }

  localization-form-component[data-show-filter='false'] .country-selector-form__wrapper {
    padding-block-start: var(--padding-xs);
  }

  .localization-form {
    width: 100%;
  }

  localization-form-component .button:is(:not(.country-filter__reset-button)) {
    --button-color: var(--color-primary);
    --button-background-color: var(--language-button-background-color, var(--color-background));
    --button-border-color: var(--language-button-border-color, var(--color-border));

    text-decoration-color: transparent;
    text-decoration-thickness: 0.075em;
    text-underline-offset: 0.125em;
    transition: text-decoration-color var(--animation-speed) var(--animation-easing);
  }

  localization-form-component .button:is(:not(.country-filter__reset-button)):hover,
  .localization-form__list-item:hover,
  .localization-form__list-item:focus {
    --button-color: var(--color-primary-hover);

    background-color: rgb(var(--color-primary-hover-rgb) / var(--opacity-8));
  }

  .localization-form__list-item[aria-current='true'] {
    --button-color: var(--color-primary-active);

    background-color: rgb(var(--color-primary-hover-rgb) / var(--opacity-10));
  }

  .localization-form__list-item-disabled {
    pointer-events: none;
  }

  .localization-form__list-item:focus-visible {
    outline: none;
  }

  localization-form-component .localization-selector {
    display: flex;
    align-items: center;
    gap: var(--margin-2xs);
  }

  localization-form-component .country-filter__search-icon {
    left: 8px;
    right: auto;
    color: var(--color-foreground-muted);
    pointer-events: none;
  }

  .country-filter__search-icon .svg-wrapper svg {
    width: var(--icon-size-sm);
    height: var(--icon-size-sm);
  }

  .disclosure {
    width: 100%;
  }

  .dropdown-localization__button {
    display: flex;
    position: relative;
    align-items: center;
    gap: 4px;
    font-family: var(--menu-localization-font);
    font-size: var(--menu-localization-font-size);
    font-weight: var(--menu-top-level-font-weight);
    padding-inline: var(--padding-2xs);
    margin-inline: calc(-1 * var(--padding-2xs));
  }

  .dropdown-localization__button .icon-caret {
    height: var(--icon-size-xs);
    width: var(--icon-size-xs);
    right: var(--margin-xs);
    top: calc(50% - var(--padding-2xs));
    flex-shrink: 0;
    transition: transform var(--animation-speed) var(--animation-easing);
  }

  .drawer-localization__button .icon-flag,
  .dropdown-localization__button .icon-flag {
    width: var(--menu-localization-font-size, var(--icon-size-sm));
    height: var(--menu-localization-font-size, var(--icon-size-sm));
    clip-path: circle(50%); /* stylelint-disable-line */
    background-position: center;
    background-size: cover;
    margin-inline-end: 4px;
    position: relative;
  }

  .icon-flag::after {
    content: '';
    position: absolute;
    inset: 0;
    box-shadow: inset 0 0 var(--size-shadow) var(--color-shadow);
    border-radius: 50%;
  }

  .dropdown-localization__button[aria-expanded='true'] .icon-caret svg {
    transform: rotate(180deg);
  }

  .dropdown-localization__button,
  .dropdown-localization__button:hover {
    box-shadow: none;
    background-color: transparent;
    border-color: transparent;
    color: var(--color-foreground);
  }

  .localization-form__list {
    position: relative;
    width: 100%;
    padding-block: 0 var(--padding-xs);
    font-size: var(--font-size-lg);
    scroll-padding: var(--padding-xs) 0;
    overflow-y: auto;
    white-space: nowrap;

    /* Hide scrollbar which would cause extra right padding in Safari */
    scrollbar-width: none;

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

  dropdown-localization-component .localization-form__list {
    max-height: 20.5rem;
  }

  .localization-wrapper {
    position: fixed;
    z-index: var(--layer-raised);
    border-radius: var(--style-border-radius-popover);
    transition-property: display, opacity, translate;
    transition-duration: 0.3s;
    transition-timing-function: var(--ease-out-quad);
    transition-behavior: allow-discrete;
    translate: 0 20px;
    opacity: 0;
  }

  .localization-wrapper:not([hidden]) {
    translate: 0 0;
    opacity: 1;
  }

  @starting-style {
    .localization-wrapper:not([hidden]) {
      translate: 0 20px;
      opacity: 0;
    }
  }

  .localization-form__list-item:not([hidden]) {
    margin-block-end: var(--margin-3xs);
    display: flex;
    gap: var(--margin-sm);
    padding: 8px;
    border-radius: 8px;
    line-height: var(--font-line-height-md);
    align-items: center;
    text-align: start;
    cursor: pointer;
    transition: background-color var(--animation-speed) var(--animation-easing);

    .country {
      flex: 1;
      color: var(--color-foreground);
    }

    &:hover {
      background-color: rgb(var(--color-foreground-rgb) / var(--opacity-8));
    }

    &[aria-current='true'] {
      .country {
        font-weight: 500;
      }
    }
  }

  .localization-form__list-item#no-results-message {
    grid-template-columns: 1fr;
    text-align: center;
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .is-searching .localization-form__list-item .country {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-80));
  }

  .localization-form__list-item .country mark {
    font-weight: 500;
    background: none;
    color: var(--color-foreground);
  }

  .country-filter {
    position: relative;
    padding: var(--padding-xs);
    border-bottom: var(--style-border-width) solid transparent;
    transition: border-color var(--animation-values);
  }

  .country-filter.is-scrolled {
    border-color: var(--color-border);
  }

  .drawer-localization .country-filter {
    padding-block: 8px;
  }

  dropdown-localization-component .country-filter {
    position: relative;
    padding: 8px;
  }

  .country-selector-form__wrapper {
    overflow-y: auto;
    max-height: 100%;
    flex-grow: 1;
  }

  .language-selector {
    display: flex;
    gap: var(--gap-xs);
    padding: var(--padding-md) var(--padding-lg);
    position: relative;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  }

  .language-selector__label {
    flex-shrink: 0;
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .localization-form__select {
    border: none;
    color: var(--color-foreground);
    appearance: none;
    background-color: var(--color-input-background);
    padding-block: var(--padding-3xs);
    padding-inline: var(--padding-xs) calc(var(--icon-size-xs) + var(--padding-xs));
    text-align: right;
    cursor: pointer;
    max-width: 40vw;
    text-overflow: ellipsis;

    &:focus-visible {
      outline: var(--focus-outline-width) solid currentcolor;
    }

    &:focus {
      outline: none;
    }
  }

  #header-component[transparent] localization-form-component .localization-form .localization-form__select {
    background-color: transparent;
  }

  .localization-form__select option {
    background-color: var(--color-input-background);
    color: var(--color-input-text);
  }

  dropdown-localization-component .localization-form__select:hover {
    background-color: rgb(var(--color-primary-hover-rgb) / var(--opacity-8));
  }

  .language-selector .svg-wrapper.icon-caret {
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
  }

  .language-selector--collapse-space {
    padding-inline-end: var(--padding-2xs);
  }

  .language-selector--collapse-space .localization-form__select {
    padding-inline-end: var(--icon-size-xs);
  }

  .language-selector--collapse-space .svg-wrapper.icon-caret {
    right: 0;
  }

  .localization-form .icon-checkmark {
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
  }

  .localization-form .svg-wrapper.icon-checkmark {
    visibility: hidden;
  }

  .localization-form__list-item[aria-current='true'] .svg-wrapper.icon-checkmark {
    visibility: visible;
  }

  .country-filter__input {
    width: 100%;
    height: 44px;
    font-size: var(--font-size-lg);
    padding: var(--padding-md) var(--padding-lg) var(--padding-md) calc(var(--margin-md) + var(--padding-xl));
    border: 1px solid var(--color-foreground);
    color: var(--color-input-text);
    background-color: var(--color-input-background);
    outline-offset: -1px;

    @media screen and (min-width: 750px) {
      height: 36px;
    }
  }

  .country-filter__input::placeholder {
    color: inherit;
  }

  .country-filter .field {
    position: relative;
  }

  .country-filter .field__label {
    font-size: var(--font-size-lg);
    left: var(--margin-2xl);
    top: var(--margin-xl);
    pointer-events: none;
    position: absolute;
  }

  .country-filter__input:focus ~ .field__label,
  .country-filter__input:not(:placeholder-shown) ~ .field__label,
  .country-filter__input:-webkit-autofill ~ .field__label {
    font-size: var(--font-size-xs);
    top: var(--margin-xs);
  }

  .country-filter .field__button:not([hidden]) {
    display: flex;
    height: fit-content;
    position: absolute;
    padding: 0;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    align-items: center;
    background-color: transparent;
    color: var(--color-input-text);
    border: 0;
  }

  input[type='search']::-webkit-search-cancel-button {
    appearance: none;
  }

  .country-selector__close-button {
    display: none;
  }

  .drawer-localization .drawer-localization__button {
    display: flex;
    padding: 0;
    position: relative;
    text-decoration: none;
    height: 44px;

    &:hover {
      color: var(--color-foreground);
    }
  }

  .drawer-localization .drawer-localization__button .icon-caret {
    width: fit-content;
    height: fit-content;
    margin: 0;
    padding: var(--padding-xl) var(--padding-xl) var(--padding-xl) var(--padding-xs);
  }

  dropdown-localization-component {
    position: relative;
    background-color: transparent;
  }

  dropdown-localization-component .country-filter__input {
    border: none;
  }

  dropdown-localization-component .localization-form__list-item {
    margin-inline: 8px;
  }

  dropdown-localization-component .localization-wrapper {
    box-shadow: var(--shadow-popover);
    border: var(--style-border-popover);
    background-color: var(--color-background);
    max-height: 27.5rem;
    position: absolute;
    top: calc(100% + 10px);
    z-index: calc(var(--layer-header-menu) + 1);
  }

  dropdown-localization-component .localization-wrapper.right-bound {
    right: 0;
    left: unset;
  }

  dropdown-localization-component .localization-wrapper.left-bound {
    left: -8px;
    right: unset;
  }

  /* Additional specificity due to dropdown-localization-component getting a low score */
  dropdown-localization-component .language-selector.language-selector {
    padding: 10px 8px 10px 16px;
  }

  dropdown-localization-component .localization-form__currency {
    width: max-content;
    opacity: 0;
    visibility: hidden;
    transition: none;
  }

  dropdown-localization-component
    :is(
      .localization-form__list-item:hover,
      .localization-form__list-item[aria-selected='true'],
      .localization-form__list-item[aria-current='true']
    )
    .localization-form__currency {
    opacity: 1;
    color: var(--color-foreground-muted);
    transition: opacity var(--animation-speed-slow) var(--animation-easing);
    visibility: visible;
  }

  .dropdown-localization .language-selector:where(:not(.top-shadow)) {
    font-weight: var(--menu-top-level-font-weight);
  }

  .dropdown-localization:not(dropdown-localization-component) .language-selector,
  .menu-drawer__localization:not(drawer-localization-component) .language-selector {
    font-family: var(--menu-localization-font);
    font-size: var(--menu-localization-font-size);
  }

  .menu-drawer__localization .language-selector.h5 {
    padding-inline-start: 0;
  }

  .header__column .localization-form__select {
    background-color: var(--header-bg-color);
  }

  .drawer-localization {
    display: contents;
    color: var(--color-foreground);
  }

  .drawer-localization localization-form-component {
    position: relative;
    height: 100%;
  }

  .drawer-localization .mobile-localization,
  .drawer-localization .drawer-localization__button--label {
    display: flex;
    gap: var(--gap-xs);
    margin-block: 0;
    align-items: center;
  }

  .drawer-localization__button--label.h6 {
    font-family: var(--menu-localization-font);
  }

  .drawer-localization img {
    width: var(--icon-size-sm);
  }

  .drawer-localization .localization-button__icon,
  .drawer-localization .localization-button__icon svg {
    width: var(--icon-size-xs);
    height: var(--icon-size-xs);
  }

  .drawer-localization summary.is-disabled {
    pointer-events: none;
  }

  .drawer-localization .localization-wrapper {
    width: 100%;
  }

  .drawer-localization .localization-form {
    display: flex;
    flex-direction: column;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
  }

  .drawer-localization .localization-form > * {
    padding-inline: var(--padding-xl);
  }

  .drawer-localization .language-selector .svg-wrapper.icon-caret {
    transform: translateY(-50%) rotate(0deg);
  }

  .drawer-localization .language-selector .svg-wrapper.icon-caret svg {
    transform: none;
  }
/* END_SNIPPET:localization-form */

/* START_SNIPPET:media (INDEX:286) */
.media-block {
    overflow: hidden;
    position: relative;

    @media screen and (min-width: 750px) {
      min-height: var(--media-height);
    }
  }

  .media-block__media {
    height: var(--media-height-mobile, auto);
    object-fit: var(--image-position, 'cover');
    object-position: center center;
    width: 100%;

    @media screen and (min-width: 750px) {
      height: 100%;
      position: absolute;
    }
  }

  deferred-media[class].media-block__media
    :is(.deferred-media__poster-button img, .deferred-media__poster-button ~ video) {
    object-fit: var(--video-position, 'cover');
  }

  /* This is to support corner radius on video and align the video to the center of the block */
  .media-block__media--video {
    display: flex;
    align-items: center;
    justify-content: center;

    @media screen and (max-width: 749px) {
      --media-height-mobile: auto;
    }
  }
/* END_SNIPPET:media */

/* START_SNIPPET:minicart-product-badges (INDEX:291) */
.minicart-product-badges {
    position: absolute;
    width: 100%;
    z-index: 2;
    display: flex;
    flex-direction: column;
    pointer-events: none;
  }

  .minicart-product-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 2px 0px;
    border-radius: 0px 0 5px 5px;
    font-family: "Nunito Sans", sans-serif;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.4;
    text-align: center;
    white-space: nowrap;
    box-shadow: 0px 1px 0.6px 0px #00000012;
  }

  .minicart-product-badge.minicart-product-badge--live {
    color: #1E35B1 !important;
    background-color: #F1F6FF !important;
  }

  .minicart-product-badge__text {
    display: block;
  }
/* END_SNIPPET:minicart-product-badges */

/* START_SNIPPET:minicart-products (INDEX:292) */
.mini-cart-item {
    font-family: var(--font-family-base);
    display: flex;
    gap: 10px;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
  }

  .mini-cart-item:last-child {
    border-bottom: none;
  }

  /* OUT OF STOCK STATE */

  .mini-cart-item.out-of-stock .mini-cart-item__media,
  .mini-cart-item.out-of-stock .mini-cart-item__title a,
  .mini-cart-item.out-of-stock .mini-cart-item__options,
  .mini-cart-item.out-of-stock .mini-cart-item__quantity {
    opacity: 0.6;
  }

  .mini-cart-item__out-of-stock-message {
    color: #B1020C;
    font-size: 14px;
    font-weight: 500;
    padding: 2px 6px;
    margin: 20px 0 10px 0;
    background: linear-gradient(to right, #FFEFEF, #FFFFFF);
  }

  .mini-cart-item.bv-oos-highlight {
    outline: 2px solid #B1020C;
    outline-offset: 2px;
    border-radius: 5px;
  }

  .mini-cart-item__media {
    flex: 0 0 132px;
  }

  .mini-cart-item__image-link {
    position: relative;
    display: block;
    z-index: 0;
  }

  .mini-cart-item__image-link::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #00000008;
    pointer-events: none;
    z-index: 1;
  }

  .mini-cart-item__image {
    width: 100%;
    height: auto;
    display: block;
  }

  .mini-cart-item__image--placeholder {
    object-fit: contain;
    padding: 15%;
    background: #f5f5f5;
  }

  .mini-cart-item__content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    min-width: 0;
  }

  .bv-cart-item__info {
    display: flex;
    flex-direction: column;
  }

  .bv-cart-item__info ul {
    list-style-type: none;
    padding: 0;
    margin: 6px 0 0 0; 
  }

  .bv-cart-item__info ul .bv-cart-item__title {
    padding: 1px;
    background-color: #f5f5f5;
    margin-bottom: 6px;
    font-size: 11px;
  }

  .mini-cart-item__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
  }

  .mini-cart-item__actions {
    display: flex;
    align-items: flex-start;
  }

  .mini-cart-item__remove {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    min-width: 30px;
    min-height: 30px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
  }

  .mini-cart-item__title a {
    color: #191919;
    font-size: 14px;
    text-decoration: none;
    font-weight: 500;
    min-width: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-align: left;
  }

  .mini-cart-item__price {
    display: flex;
    gap: 6px;
    align-items: center;
  }

  .mini-cart-item__price-current {
    color: #191919;
    font-size: 16px;
    font-weight: bold;
  }

  .mini-cart-item__price-old {
    color: #919191;
    font-size: 14px;
    text-decoration: line-through;
  }

  .mini-cart-item__budgetpay {
    display: flex;
    align-items: center;
    font-size: 12px;
    gap: 3px;
  }

  .payment-message {
    color: #919191;
  }

  .payment-count,
  .payment-price {
    color: #191919;
    font-weight: 600;
  }

  .payment-bp-icon {
    margin-left: 3px;
    width: 24px;
    height: 10px;
  }

  .mini-cart-item__options {
    display: flex;
    gap: 10px;
    font-size: 14px;
  }

  .mini-cart-item__option {
    text-wrap: nowrap;
  }

  .mini-cart-item__option-name {
    color: #919191;
    font-weight: 400;
  }

  .mini-cart-item__option-value {
    color: #191919;
    font-weight: 600;
  }

  .mini-cart-item__quantity {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .mini-cart-item__quantity.mobile {
    display: none;
  }

  .mini-cart-item__stock-warning {
    color: #b1020c;
    font-size: 14px;
  }

  /* Remove animation */
  .mini-cart-item.removing {
    overflow: hidden;
    animation: removeItem calc(var(--animation-speed, 300ms) * 2) var(--animation-easing, ease-out) forwards;
    animation-delay: var(--animation-speed, 300ms);
  }

  @keyframes removeItem {
    0% {
      height: var(--row-height);
      opacity: 1;
      padding: 15px 0;
      margin-bottom: 0;
      border-bottom-width: 1px;
    }

    100% {
      opacity: 0;
      height: 0;
      padding: 0;
      margin-bottom: 0;
      border-bottom-width: 0;
    }
  }

  @media (max-width: 544px) {
    .cart-drawer__dialog {
      max-width: 100vw;
      width: 100%;
    }

    .mini-cart-item {
      gap: 12px;
    }

    .mini-cart-item__content {
      gap: 7px;
    }

    .mini-cart-item__budgetpay {
      font-size: 10px;
    }

    .mini-cart-item__quantity.desktop .quantity-selector,
    .mini-cart-item__quantity.mobile .mini-cart-item__stock-warning {
      display: none;
    }

    .mini-cart-item__quantity.desktop {
      display: block;
    }

    .mini-cart-item__quantity.mobile {
      display: flex;
      width: 100%;
    }

    .mini-cart-item__media {
      flex: 0 0 100px;
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 10px;
    }
  }

  @media (max-width: 390px) {

    .mini-cart-item__media {
      flex: 0 0 80px;
    }

    .mini-cart-item__title a {
      font-size: 12px;
    }

    .mini-cart-item__content {
      gap: 5px;
    }

    .mini-cart-item__price-current {
      font-size: 14px;
    }

    .mini-cart-item__price-old {
      font-size: 12px;
    }

    .mini-cart-item__options {
      gap: 5px;
      font-size: 10px;
    }

    .mini-cart-item__budgetpay {
      font-size: 8px;
    }

    .mini-cart-item__stock-warning {
      font-size: 10px;
    }
  }

  .mini-cart-item__bundle-mini-images {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 100%;
  }

  .mini-cart-item__bundle-mini-image-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 62px;
    background: #f7f7f7;
    overflow: hidden;
    text-decoration: none;
  }

  .mini-cart-item__bundle-mini-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    mix-blend-mode: darken;
  }

  .mini-cart-item__bundle-mini-image--placeholder {
    padding: 12px;
    background: #f5f5f5;
  }

  @media (max-width: 544px) {
    .mini-cart-item__bundle-mini-image-link {
      height: 50px;
    }
  }

  @media (max-width: 390px) {
    .mini-cart-item__bundle-mini-image-link {
      height: 42px;
    }
  }
/* END_SNIPPET:minicart-products */

/* START_SNIPPET:minicart-quantity-selector (INDEX:293) */
.mini-cart-quantity-wrapper .quantity-selector {
    display: flex;
    align-items: center;
    width: 100%;
    max-width: 80px;
    height: 30px;
    border: unset;
    background-color: #f1f1f1;
    border-radius: 5px;
  }

  .mini-cart-quantity-wrapper .quantity-selector:hover {
    background-color: #f1f1f1;
  }

  .mini-cart-quantity-wrapper .quantity-selector__button {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .mini-cart-quantity-wrapper .quantity-selector__button:disabled {
    opacity: 0.4;
    cursor: not-allowed !important;
  }

  .mini-cart-quantity-wrapper .quantity-selector__button:hover {
    background: unset;
    cursor: pointer;
  }

  .mini-cart-quantity-wrapper .quantity-selector__input {
    text-align: center;
    font-size: 14px;
    font-weight: 600;
    color: #191919;
    background-color: #ffffff !important;
    border: 1px solid #f1f1f1 !important;
    width: 30px;
    height: 30px;
  }

  @media (max-width: 544px) {
    .mini-cart-quantity-wrapper .quantity-selector {
      max-width: 100px;
    }

    .mini-cart-quantity-wrapper {
      width: 100%;
    }
  }
/* END_SNIPPET:minicart-quantity-selector */

/* START_SNIPPET:missed-tv-products-block (INDEX:294) */
.missed-tv-products-block {
    width: 100%;                 /* Fill available space */
    max-width: 1368px;           /* Figma Fill width */
    margin: 0 auto;              /* Center horizontally */

    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 20px;

    background-color: rgba(255, 255, 255, 1);
    border-radius: 5px;
}


.missed-tv-products-block__title {
  width: 258px;
  height: 36px;

  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;          /* Bold */
  font-size: 24px;
  line-height: 150%;         /* 36px */
  letter-spacing: 0;

  color: rgba(25, 25, 25, 1);

  display: flex;             /* for vertical-align middle */
  align-items: center;       /* vertical-align: middle */

  margin: 0;
  opacity: 1;
}


  .missed-tv-products-block__carousel {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
    
    background: transparent;
  }

  /* Arrow chrome + chevron: assets/component-carousel-nav-arrow.css (.carousel-nav-arrow) */

  .missed-tv-products-block__products {
    display: flex;                 /* Flow: Horizontal */
    flex-direction: row;           /* Explicit */
    flex-wrap: nowrap;             /* REQUIRED for carousel */

    width: 1275px;                 /* Figma width */
    height: 465.64px;              /* Rounded from Figma */

    gap: 10px;                     /* Exact Figma gap */

    overflow-x: auto;              /* Horizontal scroll */
    overflow-y: hidden;            /* No vertical scroll */

    scroll-behavior: smooth;

    opacity: 1;

    scrollbar-width: none;         /* Firefox */
    -ms-overflow-style: none;      /* IE / Edge */
  }

  .missed-tv-products-block__products::-webkit-scrollbar {
    display: none;
  }

 .missed-tv-products-block__product-card {
    width: 277.12px;                    /* Figma width */
    height: 465.64px;                   /* Figma height */

    display: flex;
    flex-direction: column;
    gap: 8.7px;                         /* Figma gap */

    padding: 10.44px;                   /* Figma padding */

    background: rgba(255, 255, 255, 1);
    opacity: 1;

    border-radius: 7.9px;               /* Figma radius */
    border: 0.81px solid rgba(221, 221, 221, 1);

    box-sizing: border-box;             /* IMPORTANT */
    flex-shrink: 0;                     /* REQUIRED for carousel */
}


.missed-tv-products-block__image-wrapper {
  position: relative;

  width: 256.23px;                 /* Figma width */
  height: 259.24px;                /* Figma height */

  background: rgba(0, 0, 0, 0.03); /* Figma background */
  opacity: 1;

  border-radius: 4.06px;           /* Figma radius */
  overflow: hidden;

  box-sizing: border-box;
}


  .missed-tv-products-block__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

 .missed-tv-products-block__heart-icon {
  position: absolute;

  top: 8.56px;                 /* Figma top */
  left: 212.56px;              /* Figma left */

  width: 33px;
  height: 33px;

  background: rgba(255, 255, 255, 1);
  opacity: 1;

  border-radius: 41.35px;      /* Fully circular */
  border: none;

  display: flex;
  align-items: center;
  justify-content: center;

  cursor: pointer;
  padding: 0;
}

.missed-tv-products-block__heart-icon-svg {
  width: 20px;                 /* Typical Figma heart size */
  height: 20px;
  display: block;
}

.missed-tv-products-block__badge-layer {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 3;
  pointer-events: none;
}

.missed-tv-products-block__details {
    width: 256.23px;              /* Figma width */
    height: 176.81px;             /* Figma height */

    display: flex;
    flex-direction: column;       /* Vertical flow */
    gap: 6.96px;                  /* Figma gap */

    box-sizing: border-box;
}


  .missed-tv-products-block__product-name {
  width: 250.92px;
  min-height: 42px; /* Ensure space for 2 lines even if 1 line */
  max-height: 42px; 

  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;            /* Changed to Bold to match first image */
  font-size: 14px;
  line-height: 150%;           /* ≈21px */
  letter-spacing: 0;

  color: rgba(25, 25, 25, 1);
  margin: 0;
  overflow: hidden;
}

/* Link inside title handles the truncation */
.missed-tv-products-block__product-name a {
  color: rgba(25, 25, 25, 1);
  text-decoration: none;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

/* Hover behavior (only if Figma shows underline on hover) */
.missed-tv-products-block__product-name a:hover {
  text-decoration: underline;
}

 .missed-tv-products-block__pricing {
  display: flex;                  /* Flow: Horizontal */
  align-items: center;            /* Vertical center within 24px height */
  gap: 6px;                       /* Figma gap */

  width: 256.23px;                /* Exact Figma width */
  height: 24px;                   /* Exact Figma height */

  opacity: 1;

  flex-wrap: nowrap;              /* Prevent line wrapping */
  box-sizing: border-box;
}


 .missed-tv-products-block__current-price {
  width: 62px;
  height: 24px;

  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;           /* Bold */
  font-size: 16px;
  line-height: 150%;          /* 24px */
  letter-spacing: 0;

  color: var(--Greys-Black-1, rgba(25, 25, 25, 1));

  display: flex;              /* for vertical-align middle */
  align-items: center;

  opacity: 1;
}


.missed-tv-products-block__original-price {
  width: 54px;
  height: 21px;

  font-family: 'Nunito Sans', sans-serif;
  font-weight: 400;          /* Regular */
  font-size: 14px;
  line-height: 150%;         /* 21px */
  letter-spacing: 0;

  color: var(--Body-Dark-grey, rgba(115, 115, 115, 1));
  text-decoration: line-through;

  display: flex;             /* vertical-align middle equivalent */
  align-items: center;

  opacity: 1;
}

.missed-tv-products-block__discount {
  width: 47px;
  height: 21px;

  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;          /* Bold */
  font-size: 14px;
  line-height: 150%;         /* 21px */
  letter-spacing: 0;

  color: #ffffff;
  background: var(--Warning-Sale-Red, rgba(174, 4, 19, 1));

  display: flex;             /* vertical-align middle */
  align-items: center;
  justify-content: center;

  opacity: 1;
}


.missed-tv-products-block__options {
  display: flex;
  flex-direction: row;        /* Flow: Horizontal */
  gap: 9px;                   /* Figma gap */

  width: 256.23px;            /* Exact Figma width */
  height: 41px;               /* Exact Figma height */

  opacity: 1;
  box-sizing: border-box;
}

.missed-tv-products-block__select {
  /* Size */
  width: 123.62px;
  height: 41px;

  /* Padding */
  padding: 10px 15px;

  /* Background */
  background-color: #ffffff;

  /* Border */
  border: 1.08px solid rgba(221, 221, 221, 1);
  border-radius: 5.39px;

  /* Typography */
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  line-height: 150%;

  /* IMPORTANT: keep native arrow */
  appearance: auto;
  -webkit-appearance: auto;
  -moz-appearance: auto;

  box-sizing: border-box;
  cursor: pointer;
}




.missed-tv-products-block__quantity {
  /* Layout */
  display: flex;
  flex-direction: row;          /* Flow: Horizontal */
  align-items: center;
  justify-content: space-between; /* Ensure spacing between items */

  /* Size */
  width: 100%;                  /* Use full width of detail wrapper */
  max-width: 256.23px;          /* But cap at Figma width */
  height: 42px;                 /* Exact Figma height */

  /* Spacing */
  gap: 10px;                    /* Gap between quantity control and button */

  /* Visual */
  opacity: 1;

  /* Box model */
  box-sizing: border-box;
}

.missed-tv-products__buttons {
  /* Layout */
  display: flex;
  flex-direction: row;          /* Flow: Horizontal */
  align-items: center;
  justify-content: space-between;

  /* Size */
  width: 106px;
  height: 42px;

  /* Border */
  border: 0.88px solid rgba(221, 221, 221, 1);
  border-radius: 4.38px;

  /* Visual */
  background: transparent;
  opacity: 1;

  /* Important */
  box-sizing: border-box;
  overflow: hidden;             /* Clips inner buttons to radius */
}


 .missed-tv-products-block__quantity-btn {
  /* Layout */
  display: flex;
  align-items: center;
  justify-content: center;

  /* Size */
  width: 34px;
  height: 42px;

  /* Padding */
  padding: 0;

  /* Background */
  background: rgba(241, 241, 241, 1);

  /* Border */
  border: none;

  /* Typography (for + / −) */
  font-size: 16px;
  line-height: 1;
  color: rgba(25, 25, 25, 1);

  /* Misc */
  opacity: 1;
  cursor: pointer;
  box-sizing: border-box;
  flex-shrink: 0;
}


.missed-tv-products-block__quantity-btn--right {
  border-radius: 0;
}

 .missed-tv-products-block__quantity-input {
  /* Layout */
  display: flex;
  align-items: center;
  justify-content: center;

  /* Size */
  width: 38px;
  height: 42px;

  /* Padding */
  padding: 0;

  /* Background */
  background: rgba(255, 255, 255, 1);

  /* Border */
  border: none;                 /* Figma shows no border */
  border-radius: 0;             /* Middle element → no rounding */

  /* Typography */
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  line-height: 42px;
  text-align: center;
  color: rgba(25, 25, 25, 1);

  /* Remove number spinners */
  -moz-appearance: textfield;
  flex-grow: 1;
  min-width: 0;
}

.missed-tv-products-block__quantity-input::-webkit-outer-spin-button,
.missed-tv-products-block__quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}


.missed-tv-products-block__add-to-cart {
  /* Layout */
  display: flex;
  flex-direction: row;              /* Flow: Horizontal */
  align-items: center;              /* Vertical align: middle */
  justify-content: center;           /* Text centered */
  gap: 8.77px;                       /* Exact Figma gap */

  /* Size */
  width: 140px;                      /* Exact Figma width */
  height: 42px;                      /* Exact Figma height */

  /* Padding */
  padding: 0 10px;                   /* Adjusted padding to prevent wrap */

  /* Background */
  background: rgba(255, 211, 52, 1); /* CTA Yellow */

  /* Border */
  border: none;
  border-bottom: 1.88px solid rgba(242, 196, 44, 1);
  border-radius: 4.38px;

  /* Typography */
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700;                 /* Changed to Bold for better visibility */
  font-size: 13px;                  /* Slightly reduced to ensure single line */
  line-height: 1.2;
  letter-spacing: 0;
  color: rgba(25, 25, 25, 1);        /* Greys-Black-1 */
  text-align: center;
  white-space: nowrap;              /* Force single line */

  /* Misc */
  opacity: 1;
  cursor: pointer;
  box-sizing: border-box;
  flex-shrink: 0;
}

/* Desktop: show text, hide icon+plus */
.missed-tv-products-block__add-to-cart-icon-wrap {
  display: none;
}

.missed-tv-products-block__add-to-cart-text {
  display: inline;
}


.missed-tv-products-block__pagination {
  /* Layout */
  display: flex;                 /* Horizontal flow */
  flex-direction: row;
  align-items: center;
  justify-content: center;

  /* Size */
  width: 85px;
  height: 10px;

  /* Spacing */
  gap: 15px;

  /* Visual */
  opacity: 1;

  /* Positioning */
  margin: 0 auto;                /* center horizontally */
  box-sizing: border-box;
}


  .missed-tv-products-block__dot {
  width: 10px;
  height: 10px;

  background: rgba(193, 193, 193, 1);
  border-radius: 50%;
  border: none;

  opacity: 1;
  cursor: pointer;
}


  .missed-tv-products-block__dot--active {
  width: 10px;
  height: 10px;

  background: rgba(110, 110, 110, 1);
  border-radius: 50%;

  opacity: 1;
}


  .missed-tv-products-block__empty {
    padding: 40px;
    text-align: center;
    color: #666666;
  }

  .missed-tv-products-block__title-row {
    display: flex;                 /* Flow: Horizontal */
    justify-content: space-between;/* Figma: space-between */
    align-items: center;

    width: 100%;                 /* Fill (1368px) */
    padding-top: 5px;              /* Figma padding */
    padding-bottom: 5px;

    height: auto;                  /* Hug (46px) */
    box-sizing: border-box;
}

.missed-tv-products-block__view-all {
  width: 93px;
  height: 21px;

  font-family: 'Nunito Sans', sans-serif;
  font-weight: 500;          /* Medium */
  font-size: 14px;
  line-height: 150%;         /* 21px */
  letter-spacing: 0;

  color: rgba(30, 53, 177, 1);

  text-decoration: underline;
  text-decoration-style: solid;
  text-decoration-offset: 0;
  text-decoration-thickness: auto;
  text-decoration-skip-ink: auto;

  display: flex;             /* vertical-align middle */
  align-items: center;

  opacity: 1;
  cursor: pointer;
}

/* ========== Mobile (Verpasste TV Produkte) ========== */
@media screen and (max-width: 749px) {
  /* 1. Hide carousel arrows on mobile only */
  .missed-tv-products-block__arrow {
    display: none !important;
  }

  .missed-tv-products-block__carousel {
    width: 100%;
    gap: 0;
  }

  /* 2. Single-column card layout with proper vertical spacing */
  .missed-tv-products-block__products {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 12px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }

  .missed-tv-products-block__products::-webkit-scrollbar {
    display: none;
  }

  .missed-tv-products-block__product-card {
    flex: 0 0 100%;
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    gap: 10px;
    padding: 12px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    box-sizing: border-box;
    overflow: visible; /* allow native select dropdown to align correctly */
  }

  .missed-tv-products-block__image-wrapper {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .missed-tv-products-block__details {
    width: 100%;
    max-width: 100%;
    height: auto;
    min-height: 0;
    gap: 8px;
    flex: 1;
    overflow: visible; /* avoid clipping native select dropdown */
  }

  .missed-tv-products-block__product-name {
    width: 100%;
    max-width: 100%;
    max-height: none;
    min-height: 0;
  }

  .missed-tv-products-block__pricing {
    width: 100%;
    max-width: 100%;
  }

  /* 3. Size and color dropdowns in two separate rows on mobile; stacking so dropdown doesn't sit under image */
  .missed-tv-products-block__options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    width: 100%;
    max-width: 100%;
    height: auto;
    position: relative;
    z-index: 2;
  }

  .missed-tv-products-block__select {
    width: 100%;
    min-width: 0;
    max-width: none;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
  }

  /* 4 & 5. CTA: cart icon + "+" on mobile; optimize padding and width */
  .missed-tv-products-block__add-to-cart-icon-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
  }

  .missed-tv-products-block__add-to-cart-icon {
    width: 20px;
    height: 24px;
    object-fit: contain;
    display: block;
  }

  .missed-tv-products-block__add-to-cart-plus {
    font-size: 16px;
    font-weight: 700;
    line-height: 1;
  }

  .missed-tv-products-block__add-to-cart-text {
    display: none;
  }

  .missed-tv-products-block__add-to-cart {
    width: auto;
    min-width: 44px;
    height: 42px;
    padding: 0 12px;
    flex-shrink: 0;
  }

  /* Quantity selector and CTA aligned in one row on mobile */
  .missed-tv-products-block__quantity {
    max-width: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    flex-wrap: nowrap;
  }

  /* 6 & 7. Headline smaller; "Mehr anzeigen" visible and aligned */
  .missed-tv-products-block__title {
    font-size: 16px;
    line-height: 1.4;
    width: auto;
    max-width: none;
    height: auto;
  }

  .missed-tv-products-block__title-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 8px;
    width: 100%;
    flex-wrap: nowrap;
  }

  .missed-tv-products-block__view-all {
    flex-shrink: 0;
    width: auto;
    height: auto;
    font-size: 14px;
  }

  /* Hide carousel indicators (dots) on mobile only; desktop keeps them */
  .missed-tv-products-block__pagination {
    display: none !important;
  }

  .missed-tv-products-block__heart-icon {
    left: auto;
    right: 8px;
  }
}
/* END_SNIPPET:missed-tv-products-block */

/* START_SNIPPET:overlay (INDEX:297) */
.overlay {
    position: absolute;
    inset: 0;
    z-index: var(--overlay-layer);
    pointer-events: none;
    border-radius: var(--overlay-border-radius, 0);
  }

  .overlay--solid {
    background: var(--overlay-color);
  }

  .overlay--gradient {
    background: linear-gradient(var(--overlay-direction), var(--overlay-color), var(--overlay-color--end));
  }
/* END_SNIPPET:overlay */

/* START_SNIPPET:pagination-controls-figma (INDEX:298) */
/* Figma Design Pagination - Based on Frame 1410102305 */
  
  /* Pagination wrapper - spans full width below both filters and products */
  .pagination-full-width-wrapper {
    grid-column: 1 / -1;
    width: 100%;
    margin-top: var(--padding-xl, 32px);
  }

  /* Ensure pagination container spans full width */
  .pagination-full-width-wrapper .pagination-figma-container {
    margin-top: 0;
  }
  
  .pagination-figma-container {
    display: block;
    width: 100%;
    max-width: 1728px;
    margin: 0 auto;
    margin-top: var(--padding-xl, 32px);
    border-top: 1px solid #EEEEEE;
    padding-top: 20px;
    padding-bottom: 20px;
    clear: both;
    position: relative;
  }

  /* Desktop Layout */
  .pagination-figma-desktop {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 0;
    width: 100%;
    flex-wrap: wrap;
  }

  /* Ensure pagination doesn't appear beside products */
  .collection-products-area .pagination-figma-container {
    flex: 1 1 100%;
    width: 100%;
  }

  /* Left: Products Per Page */
  .pagination-figma__products-per-page {
    display: flex;
    align-items: center;
    gap: 0;
    height: 48px;
  }

  .pagination-figma__label-wrapper {
    padding: 0 5px 0 0;
    height: 48px;
    display: flex;
    align-items: center;
  }

  .pagination-figma__label {
    font-family: var(--font-body-family);
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5;
    color: #000000;
    white-space: nowrap;
  }

  .pagination-figma__selector {
    height: 48px;
    position: relative;
  }

  .pagination-figma__selector-select {
    width: 100%;
    height: 48px;
    padding: 10px 35px 10px 15px;
    background: #FFFFFF;
    border: 1px solid #BBBBBB;
    border-radius: 5px;
    font-family: var(--font-body-family);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #1E35B1;
    appearance: none;
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M4 6L8 10L12 6' stroke='%231E35B1' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px 16px;
    padding-right: 40px;
  }

  .pagination-figma__selector-select:hover {
    border-color: #1E35B1;
  }

  .pagination-figma__selector-select:focus {
    outline: none;
    border-color: #1E35B1;
    box-shadow: 0 0 0 2px rgba(30, 53, 177, 0.1);
  }

  /* Right: Pagination Controls */
  .pagination-figma__controls {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-end;
  }

  .pagination-figma__top-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
  }

  .pagination-figma__showing {
  width: auto;
  min-width: 202px;
  height: 21px;
  text-align: start; /* or left */
}

.pagination-figma__showing-text {
  font-family: var(--font-body-family);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #191919;
  white-space: nowrap;
}


  .pagination-figma__buttons {
    display: flex;
    align-items: center;
  }

  .pagination-figma__buttons-container {
    display: flex;
    align-items: center;
    gap: 0;
    height: 48px;
    padding: 0;
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 5px;
    padding: 0 8px;
  }

  /* Previous/Next Buttons */
  .pagination-figma__button {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 12px;
    background: transparent;
    border: none;
    font-family: var(--font-body-family);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
    color: #191919;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s;
  }

  .pagination-figma__button--previous {
    padding-right: 8px;
  }

  .pagination-figma__button--next {
    padding-left: 8px;
  }

  .pagination-figma__button--active:hover {
    opacity: 0.7;
  }

  .pagination-figma__button--disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
  }

  .pagination-figma__button-text {
    white-space: nowrap;
  }

  .pagination-figma__button-text:hover {
    color: #1e35b1;
  }

  /* Page Numbers */
  .pagination-figma__page-numbers {
    display: flex;
    align-items: center;
    gap: 0;
    height: 48px;
  }

  .pagination-figma__page-number {
    min-width: 40px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    font-family: var(--font-body-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #191919;
    text-decoration: none;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: background-color 0.2s;
  }

  .pagination-figma__page-number--current {
    background-color: #1E35B1;
    color: #FFFFFF;
    font-weight: 500;
    cursor: default;
    border-radius: 4px;
  }

  /* Ellipsis */
  .pagination-figma__ellipsis {
    min-width: 40px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    font-family: var(--font-body-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #191919;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  .pagination-figma__ellipsis:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }

  /* Go To Input */
  .pagination-figma__go-to {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 48px;
  }

  .pagination-figma__go-to-container {
    display: flex;
    align-items: center;
    gap: 0;
    height: 48px;
  }

  .pagination-figma__go-to-label {
    width: auto;
    min-width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 8px;
    background: transparent;
    border: none;
    font-family: var(--font-body-family);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    color: #191919;
  }

  .pagination-figma__go-to-input-wrapper {
    width: 60px;
    height: 48px;
  }

  .pagination-figma__go-to-input {
    width: 100%;
    height: 100%;
    padding: 10px;
    background: #FFFFFF;
    border: 1px solid #BBBBBB;
    border-radius: 5px;
    font-family: var(--font-body-family);
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    color: #191919;
    text-align: center;
  }

  .pagination-figma__go-to-button {
    height: 48px;
    padding: 0 16px;
    background: #1E35B1;
    color: #FFFFFF;
    border: none;
    border-radius: 5px;
    font-family: var(--font-body-family);
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    margin-left: 8px;
    flex-shrink: 0;
    min-width: max-content;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pagination-figma__go-to-button:hover {
    background-color: #162a8c;
  }

  /* Mobile Layout */
  .pagination-figma-mobile {
    display: none;
  }

  @media screen and (max-width: 749px) {
    .pagination-figma-desktop {
      display: none;
    }

    .pagination-figma-mobile {
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding: 0 var(--page-margin);
    }

    .pagination-figma-mobile__showing {
      text-align: center;
    }

    .pagination-figma-mobile__showing-text {
      font-family: var(--font-body-family);
      font-size: 14px;
      font-weight: 400;
      line-height: 1.5;
      color: #191919;
    }

    .pagination-figma-mobile__buttons {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
    }

    .pagination-figma-mobile__button {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      padding: 12px 20px;
      background: #FFFFFF;
      border: 1px solid #BBBBBB;
      border-radius: 5px;
      font-family: var(--font-body-family);
      font-size: 16px;
      font-weight: 500;
      line-height: 1.5;
      color: #191919;
      text-decoration: none;
      cursor: pointer;
      transition: opacity 0.2s;
    }

    .pagination-figma-mobile__button--active:hover {
      opacity: 0.7;
    }

    .pagination-figma-mobile__button--disabled {
      opacity: 0.3;
      cursor: not-allowed;
      pointer-events: none;
    }

    .pagination-figma-mobile__button-icon {
      width: 20px;
      height: 20px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .pagination-figma-mobile__button-icon svg {
      width: 16px;
      height: 16px;
    }
  }
/* END_SNIPPET:pagination-controls-figma */

/* START_SNIPPET:pagination-controls (INDEX:299) */
.pagination {
    --pagination-size: 36px;
    --pagination-inset: 2px;
    --pagination-radius: 6;
    display: flex;
    justify-content: center;
    padding: var(--padding-xl) var(--padding-sm);
    margin-top: var(--padding-xl);
    position: relative;
  }

  .pagination__list {
    display: flex;
    gap: 0;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    position: relative;
  }

  .pagination__item {
    width: var(--pagination-size);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
  }

  .pagination__link {
    display: grid;
    place-items: center;
    color: var(--color-foreground);
    text-decoration: none;
    width: 100%;
    height: 100%;
    user-select: none;
    position: relative;
    outline-color: var(--color-foreground);
    -webkit-tap-highlight-color: transparent;
    font-size: var(--font-size--md);
    font-weight: var(--font-weight-normal);
    border-radius: calc(var(--pagination-radius) * 1px);
    transition: color var(--hover-transition-duration) var(--hover-transition-timing),
      opacity var(--hover-transition-duration) var(--hover-transition-timing);
  }

  .pagination__link:focus-visible {
    outline: 2px solid var(--color-foreground);
    outline-offset: 2px;
  }

  .pagination__link--current {
    color: var(--color-background);
    font-weight: var(--font-weight-medium);
    cursor: default;
  }

  .pagination__link--gap {
    cursor: default;
    pointer-events: none;
  }

  .pagination__link--arrow {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .pagination__link--disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
  }

  .pagination__link svg {
    width: 0.5rem;
    height: 0.75rem;
    flex-shrink: 0;
  }

  .pagination__item--mobile-only {
    display: none;
  }

  /* Fallback for browsers without anchor positioning support */
  @supports not (anchor-name: --pagination-active) {
    .pagination__link:not(.pagination__link--gap)::before {
      content: '';
      position: absolute;
      inset: var(--pagination-inset);
      border-radius: calc(var(--pagination-radius) * 1px);
      background: rgb(var(--color-foreground-rgb) / var(--opacity-10));
      z-index: -1;
      opacity: 0;
      transition: background var(--hover-transition-duration) var(--hover-transition-timing),
        opacity var(--hover-transition-duration) var(--hover-transition-timing);
    }

    .pagination__link[aria-current='page']::before {
      background: var(--color-foreground);
      opacity: 1;
    }

    .pagination__link:hover:not([aria-current='page']):not(.pagination__link--gap):not(
        .pagination__link--disabled
      )::before {
      opacity: 1;
    }
  }

  /* Modern approach with anchor positioning */
  @supports (anchor-name: --pagination-active) {
    .pagination__list::before {
      content: '';
      z-index: -1;
      position: absolute;
      width: calc(var(--pagination-size) - (2 * var(--pagination-inset)));
      aspect-ratio: 1;
      pointer-events: none;
      opacity: 0;
      border-radius: calc(var(--pagination-radius) * 1px);
      background: rgb(var(--color-foreground-rgb) / var(--opacity-10));
      transition: left var(--hover-transition-duration) var(--hover-transition-timing),
        top var(--hover-transition-duration) var(--hover-transition-timing);
    }

    /* Hide hover indicator on touch devices */
    @media (hover: none) and (pointer: coarse) {
      .pagination__list::before {
        content: unset;
      }
    }

    .pagination__list:has(
        .pagination__link:is(:hover, :focus-visible):not(.pagination__link--gap):not(.pagination__link--disabled)
      )::before {
      opacity: 1;
    }

    /* Style current page directly */
    .pagination__link[aria-current='page']::before {
      content: '';
      position: absolute;
      inset: var(--pagination-inset);
      border-radius: calc(var(--pagination-radius) * 1px);
      background: var(--color-foreground);
      z-index: -1;
    }

    .pagination__list
      .pagination__item:has(
        .pagination__link:is(:hover, :focus-visible):not(.pagination__link--gap):not(.pagination__link--disabled)
      ) {
      anchor-name: --pagination-hover;
    }

    /* Position hover indicator using anchor */
    .pagination__list::before {
      position-anchor: --pagination-hover;
      left: calc(anchor(left) + var(--pagination-inset));
      top: calc(anchor(top) + var(--pagination-inset));
    }

    .pagination__item:has(+ .pagination__item--gap) .pagination__link::after,
    .pagination__item--gap + .pagination__item .pagination__link::after {
      position: absolute;
      content: '';
      pointer-events: auto;
    }

    .pagination__item:has(+ .pagination__item--gap) .pagination__link::after {
      inset: 0 -50% 0 100%;
    }

    .pagination__item--gap + .pagination__item .pagination__link::after {
      inset: 0 100% 0 -50%;
    }
  }

  @media screen and (max-width: 749px) {
    .pagination {
      --pagination-size: 44px;
      --pagination-inset: 5px;
      padding: var(--padding-lg) var(--padding-sm);
    }

    .pagination__link {
      font-size: var(--font-size--sm);
    }

    .pagination__item--mobile-hide {
      display: none;
    }

    .pagination__item--mobile-only {
      display: grid;
    }

    .pagination__item:has(.pagination__link--gap) {
      width: calc(var(--pagination-size) * 0.5);
    }
  }
/* END_SNIPPET:pagination-controls */

/* START_SNIPPET:pdp-reverse-price-timer (INDEX:308) */
.pdp-reverse-timer {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-block: 8px;
    padding: 8px 16px;
    border-radius: 999px;
    background-color: #3B3B3B;
    color: #FFFFFF;
    font-family: "Nunito Sans", sans-serif;
    font-size: 14px;
    line-height: 1;
    white-space: nowrap;
  }

  .pdp-reverse-timer__icon {
    display: inline-flex;
    align-items: center;
    line-height: 0;
  }

  .pdp-reverse-timer__icon svg {
    display: block;
    width: 16px;
    height: 16px;
  }

  .pdp-reverse-timer__label {
    font-weight: 500;
  }

  .pdp-reverse-timer__value {
    font-weight: 700;
    font-variant-numeric: tabular-nums;
  }

  @media screen and (max-width: 480px) {
    .pdp-reverse-timer {
      width: 100%;
      justify-content: flex-start;
      font-size: 13px;
      padding: 8px 14px;
    }
  }
/* END_SNIPPET:pdp-reverse-price-timer */

/* START_SNIPPET:predictive-search-products-list (INDEX:310) */
.predictive-search-results__products {
    padding-inline: var(--padding-xl);
  }

  .recently-viewed-wrapper {
    display: grid;
    grid-template-rows: auto auto;
    max-height: 1000px;
    opacity: 1;
    overflow: visible;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    transform-origin: top center;
    transform: translateY(0);
  }

  .recently-viewed-wrapper.removing {
    max-height: 0;
    opacity: 0;
    transform: translateY(-10px);
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1),
      transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
  }

  .predictive-search-results__clear.button-unstyled {
    color: var(--color-foreground);
    opacity: 0.68;
    transition: opacity var(--animation-speed-medium) var(--animation-easing);
    padding: 0;
    margin-left: var(--margin-sm);

    &:hover {
      opacity: 1;
    }
  }

  .recently-viewed-wrapper.removing .predictive-search-results__card {
    transition: none;
    transform: none;
    opacity: 1;
  }

  .recently-viewed-wrapper > * {
    transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .predictive-search-results__wrapper-products .predictive-search-results__card:nth-child(1) {
    animation-delay: 30ms;
  }

  .predictive-search-results__wrapper-products .predictive-search-results__card:nth-child(2) {
    animation-delay: 60ms;
  }

  .predictive-search-results__wrapper-products .predictive-search-results__card:nth-child(3) {
    animation-delay: 90ms;
  }

  .predictive-search-results__wrapper-products .predictive-search-results__card:nth-child(4) {
    animation-delay: 120ms;
  }

  .predictive-search-results__wrapper-products .predictive-search-results__card:nth-child(n + 5) {
    animation-delay: 150ms;
  }

  .predictive-search-results__wrapper-products {
    animation-delay: 50ms;
  }
/* END_SNIPPET:predictive-search-products-list */

/* START_SNIPPET:predictive-search-resource-carousel (INDEX:311) */
.predictive-search-results__wrapper {
    display: flex;
    overflow-x: auto;
    overflow-y: hidden;
    padding-block-end: var(--padding-sm);
    padding-inline: 0;
    scroll-snap-type: x mandatory;
    scroll-padding: 0 var(--padding-xl);
    scrollbar-width: none;
    -ms-overflow-style: none;

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

  .predictive-search-results__wrapper slideshow-slides {
    --gutter-slide-width: var(--padding-xl);

    /* Add padding to prevent hover animations from being clipped in slideshow
       15px accommodates:
       - Scale effect (9px on each side from 1.03 scale)
       - Lift effect (4px upward movement)
       - Shadow (15px spread with -5px offset)
       Using 16px for better alignment with our spacing scale */
    padding-block: var(--padding-xl);
    margin-block: calc(-1 * var(--padding-xl));
    gap: var(--gap-md);
  }

  .predictive-search-results__resource-header {
    display: flex;
    padding-inline: var(--padding-xl);
    justify-content: space-between;
    align-items: center;
    height: 32px;
  }

  .predictive-search-results__resource-header .svg-wrapper {
    width: var(--icon-size-xs);
  }

  .predictive-search-results__wrapper-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    padding-block-end: var(--padding-sm);
    gap: var(--gap-md);
    transition: height var(--animation-speed-medium) var(--animation-easing);

    @container (min-width: 550px) {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  .predictive-search-results__wrapper-products:last-child {
    padding-block-end: var(--padding-lg);

    @media screen and (min-width: 750px) {
      padding-block-end: var(--padding-sm);
    }
  }

  .predictive-search-results__resource-header .predictive-search-results__title {
    margin-block-end: 0;
  }

  .predictive-search-results__resource-header:has(slideshow-controls) .predictive-search-results__title {
    margin-block-end: 0;
  }

  .predictive-search-results__resource-header slideshow-controls {
    @media screen and (max-width: 749px) {
      display: none;
    }
  }
/* END_SNIPPET:predictive-search-resource-carousel */

/* START_SNIPPET:predictive-search (INDEX:312) */
predictive-search-component {
    --resource-card-corner-radius: var(--product-corner-radius);

    display: flex;
    width: 100%;
    position: relative;
    margin-inline: auto;
    align-items: center;
    background-color: var(--color-background);
    z-index: var(--layer-heightened);
  }

  .predictive-search-form__footer {
    display: none;
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;

    @media screen and (min-width: 750px) {
      --to-top-gradient-background: linear-gradient(
        to top,
        rgb(var(--color-background-rgb) / var(--opacity-90)),
        rgb(var(--color-background-rgb) / var(--opacity-80)),
        rgb(var(--color-background-rgb) / var(--opacity-40)),
        transparent
      );

      padding-block: var(--padding-xs) var(--padding-lg);
      background-image: var(--to-top-gradient-background);
    }
  }

  predictive-search-component:has([data-search-results]):not(:has(.predictive-search-results__no-results))
    .predictive-search-form__footer {
    display: block;
  }

  .predictive-search-form {
    position: relative;
    width: 100%;
    align-self: flex-start;
  }

  .predictive-search-form__content {
    max-height: 50dvh;
    overflow-y: auto;
    background-color: var(--color-background);

    /* Firefox */
    scrollbar-width: none;

    /* Webkit browsers */
    &::-webkit-scrollbar {
      display: none;
    }
  }

  .predictive-search-form__content-wrapper {
    position: absolute;
    top: 100%;
    width: 100%;
    left: 0;
    z-index: var(--layer-raised);
    display: flex;
    flex-direction: column;
    border-radius: 0 0 var(--search-border-radius) var(--search-border-radius);
    transition: box-shadow var(--animation-speed) var(--animation-easing);
    transform: translateZ(0);
    will-change: transform, opacity;
    overflow: hidden;

    @media screen and (max-width: 749px) {
      border-radius: 0;
    }

    @media screen and (min-width: 750px) {
      max-height: var(--modal-max-height);
    }
  }

  /* Add new rule to apply bottom padding only when search button exists */
  .predictive-search-form__content-wrapper:has([data-search-results]):not(:has(.predictive-search-results__no-results))
    > .predictive-search-form__content {
    padding-block-end: var(--padding-6xl);
  }

  .predictive-search-form__header-inner {
    background: var(--color-background);
    border: var(--search-border-width) solid var(--color-border);
    color: var(--color-foreground);
    border-radius: var(--style-border-radius-popover);
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;

    @media screen and (max-width: 749px) {
      border-radius: var(--style-border-radius-inputs);
      border: none;
    }
  }

  .predictive-search-form__header-inner:focus-within {
    outline-offset: var(--focus-outline-offset);

    @media screen and (min-width: 750px) {
      outline: var(--focus-outline-width) solid var(--color-primary);
    }
  }

  .predictive-search-form__header {
    display: flex;
    position: sticky;
    top: 0;
    z-index: var(--layer-heightened);
    width: 100%;
    align-items: center;
    background-color: var(--color-input-background);
    border: var(--search-border-width) solid var(--color-border);
    border-radius: var(--style-border-radius-inputs);

    @media screen and (max-width: 749px) {
      padding: var(--padding-2xs) var(--padding-sm);
    }
  }

  .predictive-search-form__header:focus-within,
  .predictive-search-form__header-inner:focus-within,
  .predictive-search-form__header-inner:has(.search-input:is(:focus, :focus-visible)) {
    outline: none;
    box-shadow: none;
    /* stylelint-disable-next-line declaration-no-important */
    border-color: var(--color-border) !important;
  }

  .predictive-search-results__inner {
    --title-font-size: var(--font-size--md);
    --title-margin-block: var(--margin-xs);
    --list-item-padding-block: var(--padding-sm);

    flex-grow: 1;
    overflow-y: auto;
    padding-block: var(--padding-lg);
    container-type: inline-size;
    color: var(--color-foreground);
  }

  .search-input {
    border-radius: var(--style-border-radius-inputs);
    padding-block: var(--padding-sm);
    font-size: var(--font-size--md);
    width: 100%;
    color: var(--color-foreground);
    padding-inline: calc(var(--margin-lg) + var(--icon-size-lg)) 0;
    background: transparent;
    text-overflow: ellipsis;
    overflow: hidden;
    outline: none;
    border: 0;
  }

  .search-input::placeholder {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .search-input,
  .search-input:is(:focus, :focus-visible, :focus-within),
  .predictive-search-form__header *:is(:focus, :focus-visible) {
    outline: none;
    box-shadow: none;
  }

  .search-input:hover {
    background-color: transparent;
  }

  .predictive-search__icon {
    position: absolute;
    left: var(--margin-xl);
    top: auto;
    width: var(--icon-size-lg);
    height: var(--icon-size-lg);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-60));

    @media screen and (min-width: 750px) {
      left: var(--margin-md);
    }
  }

  .predictive-search__icon > svg {
    width: var(--icon-size-md);
    height: var(--icon-size-md);
  }

  .predictive-search__reset-button {
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: var(--minimum-touch-target);
    height: var(--minimum-touch-target);
    padding: 0;
    margin-inline-end: var(--margin-md);
    background: transparent;
    color: var(--color-foreground);
    opacity: 0.68;
    transition: opacity var(--animation-speed-medium) var(--animation-timing-fade-out),
      visibility var(--animation-speed-medium) var(--animation-timing-fade-out);

    &:hover {
      color: var(--color-foreground);
    }

    &:active {
      transform: scale(0.9);
      transition: transform 100ms var(--animation-timing-active);
    }

    @media screen and (min-width: 750px) {
      margin-inline-end: var(--margin-2xs);
    }
  }

  .predictive-search__reset-button[hidden] {
    opacity: 0;
    pointer-events: none;
    visibility: hidden;
  }

  .predictive-search__reset-button-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: var(--icon-size-lg);
    height: var(--icon-size-lg);
    transition: background-color var(--animation-speed-medium) ease-in-out,
      transform var(--animation-speed-medium) var(--animation-timing-bounce);
    border-radius: 50%;

    &:hover {
      background-color: rgb(var(--color-primary-hover-rgb) / var(--opacity-8));
    }
  }

  .predictive-search__reset-button:active .predictive-search__reset-button-icon {
    transform: scale(0.85);
    transition-timing-function: var(--animation-timing-active);
    transition-duration: 100ms;
  }

  .predictive-search__reset-button svg {
    width: var(--icon-size-md);
    height: var(--icon-size-md);
  }

  .predictive-search__reset-button-text {
    display: none;
  }

  .predictive-search__search-button {
    margin: auto;
    z-index: var(--layer-raised);
    transition: transform var(--animation-speed-medium) var(--animation-timing-bounce),
      box-shadow var(--animation-speed-medium) var(--animation-timing-hover);
    transform-origin: center;

    &:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgb(0 0 0 / var(--opacity-5));
    }

    &:active {
      transform: scale(0.97);
      transition: transform 100ms var(--animation-timing-active);
      box-shadow: none;
    }
  }

  .predictive-search__close-modal-button {
    --button-color: var(--color-foreground);
    --button-background-color: transparent;

    display: flex;
    justify-content: center;
    align-items: center;
    width: var(--minimum-touch-target);
    height: var(--minimum-touch-target);
    margin-inline-start: var(--margin-sm);
    padding: 0;
    box-shadow: none;

    &:active {
      transform: scale(0.8);
      transition: transform 100ms var(--animation-timing-active);
    }

    .svg-wrapper,
    svg {
      width: var(--icon-size-xs);
      height: var(--icon-size-xs);
    }
  }

  .predictive-search__close-modal-button:hover {
    --button-color: var(--color-foreground);
    --button-background-color: transparent;
  }
/* END_SNIPPET:predictive-search */

/* START_SNIPPET:price-filter (INDEX:313) */
/* Price filter */
  .price-facet {
    container-type: inline-size;
    display: flex;
    flex-direction: column;
    gap: var(--padding-sm);
  }

  .facets__inputs-wrapper.price-facet__inputs-wrapper {
    flex-wrap: nowrap;
  }

  .price-facet__field {
    width: 50%;
    flex-grow: 0;
  }

  @container (max-width: 199px) {
    .facets__inputs-wrapper.price-facet__inputs-wrapper {
      flex-wrap: wrap;
      width: 100%;
    }

    .price-facet__inputs-wrapper .price-facet__field {
      width: 100%;
    }
  }

  .facets .facets__inputs-wrapper.price-facet__inputs-wrapper {
    padding: var(--style-border-width-inputs);
    gap: 0;
  }

  .facets--horizontal .facets__panel-content:has(.price-facet) {
    min-width: 360px;
  }

  .facets--horizontal .facets__inputs-wrapper.price-facet__inputs-wrapper {
    @media screen and (min-width: 750px) {
      padding: calc(var(--padding-md) + var(--style-border-width-inputs));
    }
  }

  .price-facet__input {
    width: 100%;
    text-align: start;
    padding-inline: 10px;
    padding-block: var(--padding-2xs);
    border-radius: var(--style-border-radius-inputs);
  }

  .price-facet__input::placeholder {
    color: var(--facets-input-label-color);
  }

  .price-facet__separator {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: var(--font-paragraph--size);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-60));
    padding-inline: var(--padding-2xs);
  }

  .field__label.price-facet__label.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;
  }

  /* Dual-thumb range */
  .price-facet__range {
    display: flex;
    flex-direction: column;
    gap: var(--padding-2xs);
    padding-block: var(--padding-xs) 40px;
  }

  .price-facet__range-labels {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: var(--font-paragraph--size);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-70));
  }

  .price-facet__range-track {
    position: relative;
    height: 28px;
    margin-block: var(--padding-2xs);
  }

  .price-facet__range-track::before {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 4px;
    margin-top: -2px;
    border-radius: 2px;
    background: #E5E5E5;
    z-index: 0;
  }

  .price-facet__range-fill {
    position: absolute;
    left: 0;
    top: 50%;
    height: 4px;
    margin-top: -2px;
    border-radius: 2px;
    background-color: #1E35B1 !important;
    width: 0;
    pointer-events: none;
    z-index: 2;
    display: block !important;
    opacity: 1 !important;
  }

  .price-facet__range-input {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    margin: 0;
    height: 0;
    background: none;
    pointer-events: none;
    -webkit-appearance: none;
    appearance: none;
    z-index: 1;
  }

  .price-facet__range-input--max {
    z-index: 2;
  }

  .price-facet__range-input::-webkit-slider-runnable-track {
    height: 4px;
    background: transparent;
    border: none;
  }

  /* Scale dots and labels */
  .price-facet__range-scale {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 0;
    z-index: 1;
  }

  .price-facet__scale-item {
    position: absolute;
    top: 0;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .price-facet__scale-item:first-child {
    transform: translate(0, -50%);
  }

  .price-facet__scale-item:last-child {
    transform: translate(-100%, -50%);
  }

  .price-facet__scale-dot {
    width: 6px;
    height: 6px;
    background: #1E35B1;
    border-radius: 50%;
  }

  .price-facet__scale-label {
    position: absolute;
    top: 24px;
    font-size: 11px;
    color: #191919;
    white-space: nowrap;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
  }

  .price-facet__thumb-label {
    position: absolute;
    top: 24px;
    font-size: 11px;
    color: #191919;
    white-space: nowrap;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    transform: translateX(-50%);
    pointer-events: none;
    z-index: 3;
    background: #fff;
    padding-inline: 2px;
  }

  .price-facet__scale-item:first-child .price-facet__scale-label {
    left: 0;
    transform: translateX(-25%);
  }

  .price-facet__scale-item:last-child .price-facet__scale-label {
    right: 0;
    left: auto;
    transform: translateX(25%);
  }

  .price-facet__separator {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 16px;
    color: #191919;
    padding-inline: 10px;
  }

  .price-facet__input {
    border: 1px solid #E5E5E5;
    background: #F9F9F9;
    color: #191919;
    font-weight: 400;
    font-size: 14px;
    height: 44px;
    border-radius: 4px;
  }

  .price-facet__input::placeholder {
    color: #999999;
  }

  .price-facet__range-input::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 14px;
    height: 14px;
    margin-top: -5px;
    border-radius: 50%;
    background: #1E35B1;
    border: none;
    pointer-events: auto;
    cursor: pointer;
  }

  .price-facet__range-input::-moz-range-track {
    height: 4px;
    background: transparent;
    border: none;
  }

  .price-facet__range-input::-moz-range-thumb {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #1E35B1;
    border: none;
    pointer-events: auto;
    cursor: pointer;
  }

  .checkbox__input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
  }
/* END_SNIPPET:price-filter */

/* START_SNIPPET:price (INDEX:314) */
.shoplc-percentage-discount {
    color: #AE0413;
    font-size: 14px;
    font-weight: 700;
  }

  .shoplc-estimated-price,
  .compare-at-price {
    font-size: 14px;
    font-weight: 600;
    color: #626161;
    text-decoration: line-through;
    opacity: 1;

    @media screen and (max-width: 749px) {
      font-size: 12px;
    }
  }

  .plp-promo-strip__label {
    font-size: 12px;
    font-weight: 600;
  }

  .plp-promo-strip__label-prefix {
    color: #191919;
  }

  .plp-promo-strip__label-main {
    color: #AE0413;
  }

  /* PLP promo strip — mirrors quick-add-drawer__promo styles */
  .plp-promo-strip {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    flex-shrink: 0;
    gap: 0.3125rem;
    padding: 0.375rem 0.3125rem;
    border-radius: 3px;
    background: linear-gradient(90deg, rgba(255, 239, 239, 1) 0%, #ffffff 100%);
    font-size: 0.75rem;
    font-weight: 600;
    line-height: 1.5;
    color: #191919;
    margin: 10px;

    @media screen and (max-width: 749px) {
      margin: 10px 0;
    }
  }

  .plp-promo-strip__icon,
  .plp-promo-strip .quick-add-drawer__promo-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    width: 16px;
    height: 16px;
  }

  .plp-promo-strip__icon svg,
  .plp-promo-strip__icon img,
  .plp-promo-strip .quick-add-drawer__promo-icon svg,
  .plp-promo-strip .quick-add-drawer__promo-icon img {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    display: block;
  }

  .plp-promo-strip__code {
    font-size: 12px;
    color: #191919;
    font-weight: 500;
  }

  .plp-promo-strip__code-value {
    color: #AE0413;
    font-weight: 700;
  }
/* END_SNIPPET:price */

/* START_SNIPPET:product-card-badges (INDEX:316) */
.product-badges {
    --badge-inset: max(var(--padding-xs), calc((var(--border-radius) + var(--padding-xs)) * (1 - cos(45deg))));

    position: absolute;
    z-index: var(--layer-flat);
  }

  .product-badges--bottom-left {
    bottom: calc(var(--badge-inset) + var(--padding-block-start));
    left: calc(var(--badge-inset) + var(--padding-inline-start));
  }

  .product-badges--top-left {
    top: calc(var(--badge-inset) + var(--padding-block-start));
    left: calc(var(--badge-inset) + var(--padding-inline-start));
  }

  .product-badges--top-right {
    top: calc(var(--badge-inset) + var(--padding-block-start));
    right: calc(var(--badge-inset) + var(--padding-inline-start));
  }

  .product-badges__badge {
    --badge-font-size: var(--font-size--xs);

    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--color-foreground);
    background: var(--color-background);
    font-size: var(--badge-font-size);
    font-family: var(--badge-font-family);
    font-weight: var(--badge-font-weight);
    text-transform: var(--badge-text-transform);
    border-radius: var(--badge-border-radius);
  }

  .product-badges__badge--rectangle {
    padding-block: var(--badge-rectangle-padding-block);
    padding-inline: var(--badge-rectangle-padding-inline);
  }
/* END_SNIPPET:product-card-badges */

/* START_SNIPPET:product-card (INDEX:318) */
product-card-link,
  :not(product-card-link) product-card {
    width: 100%;
  }

  .product-card__placeholder-image svg {
    height: 100%;
  }

  @media screen and (max-width: 749px) {
    .product-card slideshow-arrows .slideshow-control {
      display: none;
    }
  }

  /* Hide the variant swatches for product cards that show a swatches variant picker */
  :is(.product-card):has(swatches-variant-picker-component) .quick-add .variant-option--swatches {
    display: none;
  }

  /* Hide "Add" button for single option product cards that show a swatches variant picker */
  :is(.product-card:not([data-no-swatch-selected])):has(.quick-add__product-form-component--single-option):has(
      swatches-variant-picker-component
    )
    .quick-add__button--choose {
    display: none;
  }

  /* Hide "Add" button for single option product cards that show a swatches variant picker */
  :is(.product-card[data-no-swatch-selected]):has(.quick-add__product-form-component--single-option):has(
      swatches-variant-picker-component
    )
    add-to-cart-component {
    display: none;
  }

  /* Hide "add" button for multi-variant product cards that don't show a swatches variant picker */
  :is(.product-card):has(.quick-add__product-form-component--multi-variant):not(:has(swatches-variant-picker-component))
    .quick-add__button--add {
    display: none;
  }

  /* Hover effect for single variant product cards and product blocks */

  /* stylelint-disable selector-max-specificity */
  :is(.product-card):has(.quick-add__product-form-component--single-variant) .card-gallery:hover {
    & .quick-add__button--choose {
      display: none;
    }

    & .quick-add__button--add {
      display: grid;
      margin-bottom: 25px;
    }
  }

  .product-card[data-no-swatch-selected] slideshow-component[data-generic-media-size='1'] slideshow-arrows {
    display: none;
  }

  .product-card[data-no-swatch-selected]
    slideshow-component[data-generic-media-size='1']
    slideshow-arrows:has(+ slideshow-slides slideshow-slide[variant-image]:not([hidden])) {
    display: flex;
  }

  .product-card .variant-option__swatch svg {
    display: none;
  }

  .product-card [data-available-count='0'] ~ svg {
    display: block;
  }
/* END_SNIPPET:product-card */

/* START_SNIPPET:product-default-badges (INDEX:319) */
.product-default-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 10;
  }

  .product-default-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 7px 10px;
    border-radius: 2px;
    font-family: "Nunito Sans", sans-serif;
    font-size: 10px;
    font-weight: 600;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
  }

  .product-default-badge__text {
    display: block;
  }
/* END_SNIPPET:product-default-badges */

/* START_SNIPPET:product-details-block (INDEX:320) */
.product-details-block {
    width: 585px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background-color: #ffffff;
    padding: 16px 20px;
    border-radius: 5px;
    box-sizing: border-box;
  }

  .product-details-block__top {
    width: 570px;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    box-sizing: border-box;
  }

  .product-details-block__top-row {
    display: flex;
    flex-direction: row;
    gap: 12px;
    width: 100%;
    align-items: flex-start;
    min-height: 216px;
  }

  .product-details-block__left {
    flex: 0 0 216px;
    width: 216px;
    height: 216px;
  }

  .product-details-block__right {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-start;
    min-width: 0;
  }
  
  .product-details-block__header {
    display: flex;
    align-items: center;
    gap: 11px;
  }

  .product-details-block__header-text {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 20px;
    font-weight: 700;
    line-height: 19.2px;
    letter-spacing: 0;
    display: flex;
    align-items: center; /* Vertical alignment: Middle */
  }
  
  .product-details-block__live-badge {
     display: block;
     width: 56px;     /* adjust to Figma size */
     height: auto;
  }

  .product-details-block__image-wrapper {
    position: relative;
    width: 216px;
    height: 216px;
  }

  .product-details-block__sales {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 100%;
  }


  .product-details-block__image {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 5px;
     display: block;;
  }

  .product-details-block__heart-icon,
  .product-details-block__zoom-icon {
    position: absolute;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 16px;
  }

  .product-details-block__heart-icon {
    top: 12px;
    right: 12px;
  }

  .product-details-block__zoom-icon {
    bottom: 12px;
    right: 12px;
  }

  .product-details-block__sales-indicator {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 6px;            /* tighter like Figma */
    font-size: 14px;
    font-weight: 500;   /* Figma looks medium, not bold */
    color: #000;
  }

  .sales-icon {
    font-size: 18px;
  }

  .product-details-block__rating {
    display: flex;
    align-items: center;
    gap: 4px;
  }

  .star {
    color: #FFD700;
    font-size: 18px;
  }

  .star--empty {
    color: #CCCCCC;
  }

  .rating-count {
    margin-left: 4px;
    font-size: 14px;
    color: #666666;
  }

  .product-details-block__product-id {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 150%;
    letter-spacing: 0;
    color: #666666;
    display: inline-flex;
    align-items: center;
  }


  .product-details-block__description {
    font-size: 14px;
    line-height: 1.5;
    width: 100%;
  }

  .product-details-block__pricing {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-top: 0;
  }

  .product-details-block__current-price {
    font-size: 24px;
    font-weight: 700;
    color: #FF0000;
  }

  .product-details-block__original-price {
    font-size: 18px;
    text-decoration: line-through;
    color: #999999;
  }

  .product-details-block__payment-plan {
    display: flex;
    flex-direction: row;
    gap: 6px;
    align-items: center;
    font-size: 16px;
    flex-wrap: wrap;}

  .product-details-block__payment-plan .product-details-block__payment-amount {
    display: inline-block;
  }

  .product-details-block__ratepay-group {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap; /* prevent the 'mit Ratepay' + logo from wrapping */
  }

  .product-details-block__ratepay-text {
    display: inline-block;
  }

  .product-details-block__ratepay-logo {
    height: 20px;
    width: auto;
    display: inline-block;
  }

  
  /* Full-width points row below price – compact, visually grouped with price */
.product-details-block__points-row {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0;
    padding: 8px 10px;
    background: rgba(255, 245, 204, 1);
    border-radius: 5px;
    box-sizing: border-box;
}
  
  .product-details-block__points {
    display: flex;
    flex-direction: row; 
    align-items: center;
    width: 100%;
    max-width: 100%;
    gap: 8px;
    font-size: 14px;
    box-sizing: border-box;
  }

  .points-icon {
    width: 25px;    /* adjust per Figma */
    height: 25px;
    display: inline-block;
    flex-shrink: 0;
  }

  .product-details-block__option {
    position: relative;
    flex: 1 1 0;
    min-width: 0;
    max-width: 258px;
    height: 40px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 10px 15px;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    border-radius: 5px;
    box-sizing: border-box;
  }

  .product-details-block__option-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    width: 100%;
    height: 100%;

    border: none;
    background: transparent;
    outline: none;

    padding-right: 25px; /* space so text doesn't overlap arrow */
  }

  .product-details-block__select-arrow {
    position: absolute;
    right: 15px;               /* matches padding-right */
    top: 50%;
    transform: translateY(-50%);

    width: 13.49px;            /* Figma width */
    height: 7.37px;            /* Figma height */

    pointer-events: none; 
}

  

  .product-details-block__add-to-cart {
    width: 100%;
    padding: 16px;
    background-color: #FFD700;
    color: #000000;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
  flex: 1;
  min-width: 0;
  }

  .cart-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    display: block;
  }

  .product-details-block__bottom {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 536px;
    max-width: 100%;
    margin-top: 12px;
  }

 .product-details-block__bottom-row--icons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 536px;
    min-height: 122px;
    padding: 16px;
    background: linear-gradient(180deg, #E8F0FF 0%, #F0F6FF 50%, #F8FBFF 100%);
    border-radius: 8px;
    box-sizing: border-box;
}

.bottom-icons-row {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;       /* Vertically center all icons in one row */
  width: 100%;
  max-width: 525px;
  gap: 12px;
}

.bottom-icons-row-left,
.bottom-icons-row-center,
.bottom-icons-row-right {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 0;
}

.bottom-icons-row-left__icon,
.bottom-icons-row-center__icon,
.bottom-icons-row-right__icon {
  width: 32px;
  height: 32px;             /* Uniform height so all icons align on same baseline */
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  flex-shrink: 0;
}


.bottom-icons-row-left__icon img,
.bottom-icons-row-center__icon img,
.bottom-icons-row-right__icon img {
  width: 24px;
  height: 24px;
  object-fit: contain;
  display: block;
}

.bottom-icons-row-left__text,
.bottom-icons-row-center__text,
.bottom-icons-row-right__text {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: 0;
  text-align: center;
  color: var(--Greys-Black-1, rgba(25, 25, 25, 1));
}

/* Only "60€+" in first item is bold via <strong>; other text remains normal */


  .product-details-block__tabs {
    display: flex;
    flex-direction: row;
    gap: 0;

    padding: 0;          /* ONLY horizontal padding */
    margin: 0;

    height: 41px;             /* Same as tab height */
    align-items: flex-end;

    background: transparent; /* IMPORTANT */
    border-bottom: 1px solid rgba(205, 224, 255, 1);
    width: 100%;
}

 
  .product-details-block__tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 41px;
    padding: 0 23px;
    cursor: pointer;
    white-space: nowrap;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 150%;
    color: #191919;
    border: none;
    transition: all 0.2s ease;
  }

  .product-details-block__tabs .product-details-block__tab:last-child {
    flex-grow: 1;              /* 🔥 expands the second tab */
    justify-content: flex-start;
}

  .product-details-block__tab--active {
    background: #ffffff;
    border-radius: 5px 5px 0 0;

    border: 1px solid rgba(205, 224, 255, 1);
    border-bottom: none;      /* IMPORTANT */

    height: 41px;
    margin-bottom: -1px;     /* pulls tab into container */

    z-index: 2;
}
  
.product-details-block__tab:not(.product-details-block__tab--active) {
    background: #f1f1f1; /* inactive grey */
    border-radius: 5px 5px 0 0;

    box-shadow: -1px 0px 4px 0px rgba(0, 0, 0, 0.08); /* EXACT Figma */
    border: 1px solid transparent;

    height: 41px;
    margin-bottom: 0;

    z-index: 1;
    color: #191919;
}

.product-details-block__new-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 2px 6px;
    margin-left: 6px;

    background: rgba(177, 2, 12, 1); /* EXACT Figma color */
    color: #ffffff;

    font-family: 'Nunito Sans', sans-serif;
    font-size: 10px;
    font-weight: 700;
    line-height: 1;

    border-radius: 3px;
}

  .product-details-block__info-row {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 536px;
    max-width: 100%;
    min-height: 270px;
    padding: 0;
    background: #ffffff;
    border: 1px solid rgba(205, 224, 255, 1);
    border-radius: 5px;
    box-sizing: border-box;
    overflow: hidden;
  }

  .product-details-block__tab-content {
    background: #ffffff;
    padding: 20px 16px;
    font-size: 14px;
    line-height: 1.6;

    max-height: 162px;     /* FIXED height from Figma */
    overflow-y: auto;     /* ENABLE vertical scroll */
    overflow-x: hidden;

    border-top: none;
    width: 536px;
}


  .product-details-block__product-code {
    font-weight: 600;
    margin-bottom: 12px;
  }

  .product-details-block__detailed-description {
    color: #666666;
  }

  /* Remove default margins from rich text */
  .product-details-block__description p {
    margin: 0;
  }
  
  .product-details-block__description br {
  display: none;
  }
  
  .product-details-block__view-more {
  
  margin-top: 15px;
  display: inline-flex;              /* Horizontal flow */
  align-items: center;
  justify-content: center;

  width: 216px;                      /* Fixed width */
  padding: 5px 10px;                 /* Top/Bottom 5px, Left/Right 10px */
  gap: 10px;

  border-radius: 5px;

  font-size: 14px;
  font-weight: 500;
  color: #0066cc;
  text-decoration: underline;

  cursor: pointer;
  
  background-color: rgba(241, 241, 241, 1);
}

.product-details-block__points-text {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;   /* 21px */
  letter-spacing: 0;
  color: #cc8a00;
}

.product-details-block__points-link {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 14px;
  font-weight: 700;    /* Bold */
  line-height: 150%;   /* 21px */
  letter-spacing: 0;

  color: #cc8a00;
  text-decoration: underline;
}

.product-details-block__options-row {
  display: flex;
  flex-direction: row;
  gap: 10px;
  width: 100%;
  max-width: 100%;
  margin-bottom: 8px;
  box-sizing: border-box;
}

.product-details-block__cta-row {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  gap: 12px;
  flex-wrap: nowrap;
  box-sizing: border-box;
}

 /* Container */
.product-details-block__quantity {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  flex-wrap: nowrap;
  box-sizing: border-box;
  width: 127px;
  height: 45px;
  border: 1px solid var(--Greys-Stroke-grey-1, rgba(221, 221, 221, 1));
  border-radius: 5px;
  overflow: hidden;
  background: var(--Greys-BG-grey, rgba(241, 241, 241, 1));
}

/* Buttons (shared styles) */
.product-details-block__quantity-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 45px;
  background: var(--Greys-BG-grey, rgba(241, 241, 241, 1));
  border: none;
  cursor: pointer;
  position: relative;
  flex-shrink: 0;
}

/* Minus button (left side rounded) */
.product-details-block__quantity-btn.minus {
  border-radius: 5px 0 0 5px;
}

/* Minus symbol drawn as a line */
.product-details-block__quantity-btn.minus::before {
  content: "";
  position: absolute;
  background: #000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 11px;                 /* Figma width */
  height: 2px;                 /* Figma height */
}

/* Plus button (right side rounded) */
.product-details-block__quantity-btn.plus {
  border-radius: 0 5px 5px 0;
}

/* Plus symbol drawn with two lines */
.product-details-block__quantity-btn.plus::before,
.product-details-block__quantity-btn.plus::after {
  content: "";
  position: absolute;
  background: #000;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.product-details-block__quantity-btn.plus::before {
  width: 11px;
  height: 2px;   /* horizontal line */
}

.product-details-block__quantity-btn.plus::after {
  width: 2px;
  height: 11px;  /* vertical line */
}

/* Input field */
.product-details-block__quantity-input {
  flex: 1;
  width: 47px; /* 127 - 40 - 40 */
  text-align: center;
  border: none;
  outline: none;
  font-size: 14px;
  background: #ffffff;
  height: 100%;
  padding: 0;
  margin: 0;
  -moz-appearance: textfield;
}

.product-details-block__quantity-input::-webkit-outer-spin-button,
.product-details-block__quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

@media screen and (max-width: 989px) {
  .product-details-block {
    width: 100%;
    max-width: 100%;
    padding: 10px 12px;
    gap: 8px;
    box-sizing: border-box;
    overflow-x: hidden;
  }

  .product-details-block__top {
    width: 100%;
    max-width: 100%;
    gap: 8px;
  }

  /* Two-column layout: image left, name/rating/price right; align to top */
  .product-details-block__top-row {
    flex-direction: row;
    align-items: flex-start;
    min-height: 0;
    gap: 10px;
  }

  .product-details-block__left {
    flex: 0 0 100px;
    min-width: 100px;
    max-width: 42%;
    width: 100px;
    height: auto;
    overflow: visible;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }

  .product-details-block__image-wrapper {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1;
    height: auto;
    min-height: 0;
  }

  .product-details-block__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  /* Mehr anzeigen directly under image, always visible */
  .product-details-block__view-more {
    margin-top: 0;
    width: 100%;
    max-width: 100%;
    display: inline-flex;
    justify-content: flex-start;
    font-size: 13px;
    padding: 4px 0;
  }

  .product-details-block__right {
    flex: 1 1 auto;
    min-width: 0;
    align-items: flex-start;
    text-align: left;
    gap: 6px;
  }

  /* Badge in its own row – no overlap with title */
  .product-details-block__sales {
    width: 100%;
    margin: 0 0 6px 0;
    padding: 0;
  }

  .product-details-block__sales-indicator {
    flex-wrap: wrap;
  }

  .product-details-block__sales,
  .product-details-block__rating,
  .product-details-block__description {
    justify-content: flex-start;
  }

  .product-details-block__product-id {
    width: auto;
  }

  .product-details-block__points-row {
    width: 100%;
    max-width: 100%;
  }

  .product-details-block__points {
    width: 100%;
    max-width: 100%;
  }

  /* Größe & Farbe side-by-side, 50% each */
  .product-details-block__options-row {
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
    margin-bottom: 8px;
    gap: 8px;
  }

  .product-details-block__option {
    flex: 1 1 50%;
    min-width: 0;
    max-width: none;
    width: auto;
  }

  .product-details-block__cta-row {
    width: 100%;
    max-width: 100%;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 8px;
  }

  .product-details-block__quantity {
    flex-shrink: 0;
  }

  .product-details-block__add-to-cart {
    flex: 1;
    min-width: 0;
  }

  .product-details-block__bottom {
    margin-top: 8px;
    gap: 8px;
  }

  .product-details-block__bottom-row--icons {
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
  }

  .bottom-icons-row {
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
  }

  .bottom-icons-row-left,
  .bottom-icons-row-center,
  .bottom-icons-row-right {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 8px;
    padding: 4px 0;
  }

  .bottom-icons-row-left__icon,
  .bottom-icons-row-center__icon,
  .bottom-icons-row-right__icon {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .bottom-icons-row-left__icon img,
  .bottom-icons-row-center__icon img,
  .bottom-icons-row-right__icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
  }

  .bottom-icons-row-left__text,
  .bottom-icons-row-center__text,
  .bottom-icons-row-right__text {
    text-align: center;
    line-height: 150%;
    font-size: 12px;
  }

  .product-details-block__info-row {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    border-radius: 8px;
  }

  /* Tab layout: both tabs fully visible, no horizontal scroll */
  .product-details-block__tabs {
    width: 100%;
    min-width: 0;
    overflow: hidden;
    display: flex;
    flex-direction: row;
    gap: 0;
  }

  .product-details-block__tab {
    flex: 1;
    min-width: 0;
    padding: 10px 8px;
    font-size: 12px;
    white-space: normal;
    line-height: 1.3;
    text-align: center;
 
  }

  .product-details-block__tabs .product-details-block__tab:last-child {
    flex: 1;
    justify-content: center;
  }

  /* Clear active/inactive separation on mobile */
  .product-details-block__tab--active {
    background: #ffffff;
    border: 1px solid #EAEAEA;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    box-shadow: 0 -1px 0 0 #ffffff;
  }

  .product-details-block__tab:not(.product-details-block__tab--active) {
    background: #EEEEEE;
    border: 1px solid #E0E0E0;
    border-bottom: none;
    border-radius: 8px 8px 0 0;
    border-left: none;
  }

  .product-details-block__tab-content {
    width: 100%;
    max-width: 100%;
    padding: 16px 12px;
    overflow-y: auto;
    overflow-x: hidden;
    box-sizing: border-box;
    border-radius: 0 0 8px 8px;
  
    border-top: 1px solid #EAEAEA;
  }

  .product-details-block__product-code,
  .product-details-block__detailed-description {
    padding: 0;
    text-align: left;
  }
}
/* END_SNIPPET:product-details-block */

/* START_SNIPPET:product-grid (INDEX:321) */
.product-grid {
    --product-grid-gap: var(--product-grid-gap-mobile);
    --mobile-columns: 2; /* Default value */

    isolation: isolate;

    @media screen and (min-width: 750px) {
      --product-grid-gap: var(--product-grid-gap-desktop);
    }
  }

  .product-grid slideshow-arrows .slideshow-control {
    display: none;

    @media screen and (min-width: 750px) {
      display: grid;
    }
  }

  /* This triggers iOS < 16.4 */
  @supports not (background-color: rgb(from red 150 g b / alpha)) {
    /* Force aspect ratio to auto for iOS < 16.4 since it's not compatible with the infinite pagination */
    .product-grid .product-media,
    .product-grid .product-media-container {
      aspect-ratio: auto;
    }
  }

  .main-collection-grid {
    padding: var(--grid--margin--mobile);

    @media screen and (min-width: 750px) {
      padding: var(--padding-block-start) var(--padding-inline-end) var(--padding-block-end) var(--padding-inline-start);
    }
  }

  .main-collection-grid__empty {
    padding-block: var(--padding-6xl);
    padding-inline: var(--page-margin);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: var(--padding-sm);
  }

  .main-collection-grid__empty-title {
    margin: 0;
  }

  .collection-wrapper--full-width .main-collection-grid__title {
    margin-left: var(--page-margin);
  }

  .collection-wrapper--full-width-on-mobile .main-collection-grid__title {
    @media screen and (max-width: 749px) {
      margin-left: var(--page-margin);
    }
  }

  /* Figma Design - Top Filter Bar inside Product Grid Area */
  .product-grid-top-bar {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: var(--margin-lg);
    width: 100%;
    padding-block: var(--padding-sm);
    margin-bottom: var(--margin-md);
  }

  .product-grid-top-bar__filter-btn {
    display: flex;
    align-items: center;
    gap: var(--gap-xs);
    padding: var(--padding-2xs) var(--padding-sm);
    font-size: var(--font-paragraph--size);
    color: var(--color-foreground);
    white-space: nowrap;
    transition: opacity var(--animation-speed) var(--animation-easing);
  }

  .product-grid-top-bar__filter-btn:hover {
    opacity: var(--opacity-75);
  }

  .product-grid-top-bar__filter-btn .svg-wrapper {
    width: var(--icon-size-sm);
    height: var(--icon-size-sm);
    flex-shrink: 0;
  }

  .product-grid-top-bar__count {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
  }

  .product-grid-top-bar__count span {
    font-size: var(--font-paragraph--size);
    color: var(--color-foreground);
  }

  .product-grid-top-bar__sort {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    justify-content: flex-end;
  }

  /* Keep Filter button visible on desktop (matches Figma / Screenshot 1) */
/* END_SNIPPET:product-grid */

/* START_SNIPPET:product-information-content (INDEX:323) */
.product-information {
    gap: var(--gap) 0;
  }

  /* Base grid layout */
  .product-information__grid {
    display: grid;
    grid-template-columns: subgrid;
    grid-column: 1 / -1;
  }

  /* Default column positions */
  .product-details {
    order: 1;
  }

  .product-information__media {
    order: 0;
    width: 0;
    min-width: 100%;
  }

  .product-information__media .placeholder-image {
    width: 100%;
    height: 100%;
  }

  /* Mobile styles */
  @media screen and (max-width: 749px) {
    .product-information__media {
      grid-column: 1 / -1;
    }

    .product-details {
      grid-column: 2 / 3;
    }
  }

  /* Desktop styles */
  @media screen and (min-width: 750px) {
    .product-information__grid {
      grid-column: 2;
    }

    /* Position when there is no media */
    .product-information__grid.product-information--media-none {
      .product-details {
        width: var(--narrow-content-width);
        margin: 0 auto;
      }
    }

    /* Position when there is media */
    .product-information__grid:not(.product-information--media-none) {
      /* Media on the left side */
      &.product-information--media-left {
        grid-template-columns: 1fr min(50vw, var(--sidebar-width));

        .product-information__media {
          padding-right: calc(var(--gap, 0) / 2);
        }

        .product-details {
          padding-left: calc(var(--gap, 0) / 2);
        }

        &:has(.media-gallery--extend) {
          grid-column: 1 / 3;
        }
      }

      /* Media on the right side */
      &.product-information--media-right {
        grid-template-columns: min(50vw, var(--sidebar-width)) 1fr;

        .product-information__media {
          padding-left: calc(var(--gap, 0) / 2);
          order: 1;
        }

        .product-details {
          padding-right: calc(var(--gap, 0) / 2);
          order: 0;
        }

        &:has(.media-gallery--extend) {
          grid-column: 2 / -1;
        }
      }

      /* Equal width columns */
      &.product-information__grid--half,
      &.product-information__grid--half:has(.media-gallery--extend) {
        grid-column: 1 / -1;
        grid-template-columns:
          var(--full-page-grid-margin) calc(var(--full-page-grid-central-column-width) / 2) calc(
            var(--full-page-grid-central-column-width) / 2
          )
          var(--full-page-grid-margin);

        &.product-information--media-left {
          .product-information__media {
            grid-column: 2 / 3;

            &:has(.media-gallery--extend) {
              grid-column: 1 / 3;
            }
          }

          .product-details {
            grid-column: 3 / 4;
          }
        }

        &.product-information--media-right {
          .product-information__media {
            grid-column: 3 / 4;

            &:has(.media-gallery--extend) {
              grid-column: 3 / -1;
            }
          }

          .product-details {
            grid-column: 2 / 3;
          }
        }
      }
    }

    /* Handle full width section */
    .section--full-width {
      .product-information__grid:not(.product-information--media-none) {
        &.product-information--media-left,
        &.product-information--media-right {
          grid-column: 1 / -1;
        }

        &.product-information--media-left .product-details {
          padding-inline-end: var(--padding-lg);
        }

        &.product-information--media-right .product-details {
          padding-inline-start: var(--padding-lg);
        }

        &.product-information__grid--half.product-information--media-left {
          .product-information__media {
            grid-column: 1 / 3;
          }

          .product-details {
            grid-column: 3 / -1;
          }
        }

        &.product-information__grid--half.product-information--media-right {
          .product-information__media {
            grid-column: 3 / -1;
          }

          .product-details {
            grid-column: 1 / 3;
          }
        }
      }
    }
  }

  /* Wider sidebar for large screens */
  @media screen and (min-width: 1200px) {
    .product-information__grid:not(
        .product-information__grid--half,
        .product-information--media-none
      ).product-information--media-left {
      grid-template-columns: 2fr 1fr;
    }

    .product-information__grid:not(
        .product-information__grid--half,
        .product-information--media-none
      ).product-information--media-right {
      grid-template-columns: 1fr 2fr;
    }
  }

  .product-information__grid--limit-details .product-details > .group-block {
    max-width: var(--sidebar-width);
  }

  /* If the header is sticky, make product details content stick underneath the header */
  body:has(#header-group #header-component[data-sticky-state='active']) .product-details.sticky-content--desktop {
    --sticky-header-offset: var(--header-height);
  }
/* END_SNIPPET:product-information-content */

/* START_SNIPPET:product-media-gallery-content (INDEX:324) */
.dialog--preloading {
    opacity: 0;
  }

  .product-media__drag-zoom-wrapper {
    aspect-ratio: inherit;
    min-height: inherit;
    min-width: inherit;
    display: inherit;
    flex: inherit;
  }

  @media screen and (max-width: 749px) {
    .dialog-zoomed-gallery {
      /* Prevent scroll wheel or swipe scrolling */
      overscroll-behavior: none;
      scrollbar-width: none;
      display: flex;
      scroll-snap-type: x mandatory;
      overflow-x: hidden;
      scroll-behavior: smooth;
      height: 100%;

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

    .dialog-zoomed-gallery .product-media-container {
      flex: 0 0 100%;
      scroll-snap-align: start;
      position: relative;
    }

    .dialog-zoomed-gallery .product-media-container--image .product-media {
      aspect-ratio: auto;
      height: 100%;
      width: 100%;
      overflow: hidden;
    }

    .dialog-zoomed-gallery .product-media-container--video,
    .dialog-zoomed-gallery .product-media-container--external_video {
      align-content: center;
    }

    .dialog-zoomed-gallery
      :is(.product-media-container--video, .product-media-container--external_video, .product-media-container--model)
      .product-media {
      aspect-ratio: auto;
      align-items: center;
      height: 100%;

      .product-media__image {
        height: 100%;
      }
    }

    .product-media__drag-zoom-wrapper {
      display: flex;
      aspect-ratio: auto;
      height: 100%;
      width: 100%;
      overflow: scroll;
      scrollbar-width: none;
      justify-content: center;

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

    .product-media__drag-zoom-wrapper .product-media__image {
      --product-media-fit: contain;

      object-fit: var(--product-media-fit);
      overflow: hidden;
      transform: scale(var(--drag-zoom-scale))
        translate(var(--drag-zoom-translate-x, 0), var(--drag-zoom-translate-y, 0));
    }

    .media-gallery--hint {
      --slideshow-gap: var(--gap-2xs);

      :not(.dialog-zoomed-gallery) > .product-media-container:not(:only-child) {
        width: 90%;

        .product-media img {
          object-fit: cover;
        }
      }
    }
  }

  .dialog-zoomed-gallery__close-button {
    color: #fff;
    mix-blend-mode: difference;
    z-index: var(--layer-raised);
  }

  .media-gallery__mobile-controls {
    grid-area: auto;
  }

  /* Mobile thumbnails styling */
  @media screen and (max-width: 749px) {
    .media-gallery__mobile-controls[thumbnails] {
      --thumbnail-width: 66px;
    }

    .media-gallery__mobile-controls[thumbnails] .slideshow-controls__thumbnail {
      width: var(--thumbnail-width);
      height: auto;
    }
  }

  .dialog-zoomed-gallery .product-media-container--video deferred-media,
  .dialog-zoomed-gallery .product-media-container--external_video deferred-media {
    height: auto;
    aspect-ratio: var(--ratio);
  }

  .dialog-zoomed-gallery .product-media-container--model .product-media__image {
    /* Make the height match the height of the model-viewer */
    height: 100vh;
  }

    /* Inline magnifier (hover scale) */
  .product-media-container--magnifier {
    position: relative;
    overflow: hidden;
  }

  .product-media-container--magnifier .product-media__image {
    transition: transform 140ms ease-out;
    will-change: transform, transform-origin;
  }

  .product-media-container--magnifier.is-magnifying .product-media__image {
    transform: scale(var(--magnifier-scale, 2.5));
  }
/* END_SNIPPET:product-media-gallery-content */

/* START_SNIPPET:product-media (INDEX:325) */
.product-media {
    aspect-ratio: var(--gallery-aspect-ratio, var(--ratio));
    min-height: 0;
    min-width: 0;
    position: relative;
  }

  .product-media::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #000;
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
  }

  .product-media__image {
    object-position: var(--focal-point, center center);
  }

  /*** Media border-radius feature ****/
  @media screen and (min-width: 750px) {
    .media-gallery--carousel slideshow-container,
    .media-gallery--grid .product-media > * {
      overflow: hidden;
    }

    /* When the CAROUSEL is on the LEFT side */
    .product-information:not(.product-information--media-right)
      .media-gallery--carousel.media-gallery--extend
      slideshow-container {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
    }

    /* When the CAROUSEL is on the RIGHT side */
    .product-information.product-information--media-right
      .media-gallery--carousel.media-gallery--extend
      slideshow-container {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
    }

    /* When the GRID is on the LEFT side */
    .product-information:not(.product-information--media-right) {
      /* One column */
      .media-gallery--grid.media-gallery--extend:not(.media-gallery--two-column) .product-media > *,
      /* Two column, small first image */
      .media-gallery--grid.media-gallery--extend.media-gallery--two-column:not(.media-gallery--large-first-image)
        .product-media-container:nth-of-type(odd)
        .product-media
        > *,
      /* Two column, large first image */
      .media-gallery--grid.media-gallery--extend.media-gallery--two-column.media-gallery--large-first-image
        .product-media-container:is(:first-of-type, :nth-of-type(even))
        .product-media
        > * {
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
      }
    }

    /* When the GRID is on the RIGHT side */
    .product-information.product-information--media-right {
      /* One column */
      .media-gallery--grid.media-gallery--extend:not(.media-gallery--two-column) .product-media > *,
      /* Two column, small first image */
      .media-gallery--grid.media-gallery--extend.media-gallery--two-column:not(.media-gallery--large-first-image)
        .product-media-container:nth-of-type(even)
        .product-media
        > *,
      /* Two column, large first image */
      .media-gallery--grid.media-gallery--extend.media-gallery--two-column.media-gallery--large-first-image
        .product-media-container:is(:first-of-type, :nth-of-type(odd))
        .product-media
        > * {
        border-top-right-radius: 0;
        border-bottom-right-radius: 0;
      }
    }
  }

  ::view-transition-old(gallery-item),
  ::view-transition-new(gallery-item) {
    animation-duration: 0ms;
  }
/* END_SNIPPET:product-media */

/* START_SNIPPET:product-tv-tag (INDEX:326) */
.product-tv-tag {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    pointer-events: none;
  }

  .product-tv-tag svg {
    display: block;
    height: auto;
    max-width: 100%;
  }

  .product-tv-tag--card svg {
    width: 104px;
  }

  .product-tv-tag--pdp {
    width: 104px;
  }
/* END_SNIPPET:product-tv-tag */

/* START_SNIPPET:quick-add-drawer-color-swatches (INDEX:328) */
.quick-add-drawer__color-swatches .variant-option__button-label--has-swatch.swatch-rounded {
    background: var(--Greys-BG-White, #F6F6F6);
  }

  /* Figma: Frame 1261156506/07 — Color swatch sizing & layout */

  .quick-add-drawer__color-swatches {
    gap: 10px;
  }

  .quick-add-drawer__color-swatches > legend {
    width: 100%;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5em;
    color: #191919;
    padding: 5px 0;
    margin-block-end: -5px;
  }

  .quick-add-drawer__color-swatches .variant-option__swatches-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .quick-add-drawer__color-swatches .variant-option__button-label--has-swatch {
    width: 70px;
    height: 70px;
    border-radius: 5px;
    padding: 0;
    overflow: visible;
    display: block;
    flex: 0 0 auto;
    border: none;
    background: #F7F7F7;
  }

  .quick-add-drawer__color-swatches .variant-option__button-label--has-swatch .swatch,
  .quick-add-drawer__color-swatches .variant-option__button-label--has-swatch .swatch-image {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    object-fit: cover;
    display: block;
    clip-path: inset(0 round 5px);
  }

  .quick-add-drawer__color-swatches .variant-option__button-label--has-swatch:has(:checked) {
    outline: 1px solid #1E35B1;
    outline-offset: 0px;
    border-radius: 5px;
  }

  .quick-add-drawer__color-swatches .variant-option__button-label--has-swatch:hover {
    outline: 1px solid rgba(30, 53, 177, 0.4);
    outline-offset: 0px;
  }

  @media (min-width: 990px) {
    .quick-add-drawer__color-swatches > legend {
      padding: 0;
      margin-block-end: 0;
      font-weight: 500;
    }
  }
/* END_SNIPPET:quick-add-drawer-color-swatches */

/* START_SNIPPET:quick-add-drawer (INDEX:333) */
/* ================================================================
     Quick Add Drawer — Mobile-first responsive CSS
     Figma spec: .cursor 4/cache/figma-specs-quick-add-modal.md
     ================================================================ */

  /* --- Dialog reset --- */
  .quick-add-drawer {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    padding: 0;
    background: transparent;
    z-index: 1000;
    overflow: hidden;
  }

  .quick-add-drawer:modal {
    max-height: 100dvh;
    max-width: 100vw;
  }

  .quick-add-drawer::backdrop {
    display: none;
  }

  .quick-add-drawer:not([open]) {
    display: none;
  }

  .quick-add-drawer .plp-promo-strip {
    display: none;
  }

  /* --- Backdrop overlay (Figma: rgba(0,0,0,0.6) + blur(4px)) --- */
  .quick-add-drawer__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
  }

  /* --- Panel — mobile: bottom-sheet anchored to bottom (Figma: 604px max) --- */
  .quick-add-drawer__panel {
    position: absolute;
    inset-inline-end: 0;
    inset-inline-start: 0;
    inset-block-end: 0;
    inset-block-start: auto;
    width: 100%;
    max-width: 100%;
    height: 604px;
    max-height: calc(100dvh - 80px);
    display: flex;
    flex-direction: column;
    overflow: visible;
    background: #ffffff;
    box-shadow: none;
  }

  /* --- Close button — mobile: pill centered above panel --- */
  .quick-add-drawer__close {
    position: absolute;
    z-index: 2;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    inset-block-end: calc(min(604px, 100dvh - 80px) + 10px);
    inset-inline-start: 50%;
    transform: translateX(-50%);
    width: 52px;
    height: 52px;
    border-radius: 71px;
    background: #F0F0F0;
    box-shadow: none;
    padding: 10px;
  }

  .quick-add-drawer__close svg {
    width: 29px;
    height: 29px;
    color: #191919;

    @media (max-width: 750px) {
      width: 20px;
      height: 20px;
    }
  }

  .quick-add-drawer__close:focus-visible {
    outline: 2px solid rgb(var(--color-foreground));
    outline-offset: 2px;
  }

  .quick-add-drawer__close:hover {
    background: #F0F0F0;
    opacity: 1;
    color: inherit;
    border: none;
    box-shadow: none;
  }

  @media (min-width: 990px) {
    .quick-add-drawer__close:hover {
      background: #ffffff;
    }
  }

  /* --- Header bar — hidden on mobile (Figma: no header on mobile screenshot) --- */
  .quick-add-drawer__header {
    display: none;
    height: 3.125rem;
    background: #ebebeb;
    align-items: center;
    justify-content: center;
    padding-inline: 1.125rem;
    border-block-end: 1px solid #dddddd;
    flex-shrink: 0;
  }

  .quick-add-drawer__header-title {
    font-size: 1.0625rem;
    font-weight: 600;
    line-height: 1.29;
    text-transform: uppercase;
    color: #191919;
  }

  /* --- Scrollable body --- */
  .quick-add-drawer__body {
    flex: 1;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    padding: 0.9375rem 0.9375rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.9375rem;
    background: #ffffff;
    min-height: 0;
  }

  /* --- Promo strip — Figma: gradient, 14px 600 --- */
  .quick-add-drawer__promo {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    gap: 0.3125rem;
    padding: 0.625rem 0.3125rem;
    border-radius: 3px;
    background: linear-gradient(90deg, rgba(255, 239, 239, 1) 0%, #ffffff 100%);
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.5;
    color: #191919;
  }

  .quick-add-drawer__promo-icon svg {
    width: 1rem;
    height: 0.96rem;
    flex-shrink: 0;
  }

  .quick-add-drawer__promo-label-main {
    color: #ae0413;
  }

  .quick-add-drawer__promo-code-value {
    color: #ae0413;
  }

  /* --- Content area (JS-injected PDP content) --- */
  .quick-add-drawer__content {
    display: block;
    min-height: 0;
  }

  /* --- Footer — sticky at bottom --- */
  .quick-add-drawer__footer {
    flex-shrink: 0;
    background: #ffffff;
    box-shadow: 0 -6px 15px 0 rgb(0 0 0 / 0.05);
  }

  .quick-add-drawer__footer:empty {
    display: none;
  }

  /* --- Wishlist source (visually hidden) --- */
  .quick-add-drawer__wishlist-source {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  /* ================================================================
     Desktop (≥990px) — Figma: 516px side panel, right-aligned
     ================================================================ */
  @media (min-width: 990px) {
    .quick-add-drawer__backdrop {
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      background: rgb(0 0 0 / 0.45);
    }

    .quick-add-drawer__panel {
      inset-block-start: 0;
      inset-block-end: 0;
      inset-inline-end: 0;
      inset-inline-start: auto;
      width: 516px;
      height: 100%;
      max-height: 100%;
      overflow: hidden;
      background: #f1f1f1;
      box-shadow: var(--shadow-popover, -4px 0 24px rgb(0 0 0 / 0.12));
    }

    /* Close button — own div to the LEFT of the panel */
    .quick-add-drawer__close {
      position: fixed;
      inset-block-start: 0;
      inset-block-end: auto;
      inset-inline-end: 516px;
      inset-inline-start: auto;
      transform: none;
      width: 50px;
      height: 3.125rem;
      border-radius: 0;
      background: #ffffff;
      box-shadow: none;
      padding: 0;
    }

    .quick-add-drawer__close svg {
      width: 1.525rem;
      height: 1.525rem;
      color: #191919;
    }

    /* Header — visible on desktop, full panel width, centered title */
    .quick-add-drawer__header {
      display: flex;
      width: 100%;
    }

    /* Body — desktop padding and background, full panel width */
    .quick-add-drawer__body {
      width: 100%;
      background: #ffffff;
    }

    /* Promo — desktop gradient (Figma: rgba(255,231,231,0.7)) */
    .quick-add-drawer__promo {
      background: linear-gradient(90deg, rgba(255, 231, 231, 0.7) 0%, #ffffff 100%);
    }

    /* Footer — heavier shadow on desktop */
    .quick-add-drawer__footer {
      box-shadow: 0 -3px 16.7px 0 rgb(0 0 0 / 0.21);
    }
  }

  /* ================================================================
     Injected PDP content overrides
     All selectors use #quick-add-drawer-content (id survives morph)
     Figma: desktop 516px panel, content 476px (20px padding each side)
     Image gallery 3/7 cols, details 4/7 cols on ≥750px
     ================================================================ */

  /* Elsklip coupon app: hide in quick-add drawer only (PDP unchanged). */
  #quick-add-drawer .elsklip-coupon__widget {
    display: none !important;
  }

  /* --- Content wrapper — mobile: flex-wrap so image + header sit side-by-side --- */
  #quick-add-drawer-content {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    position: relative;
    padding-block-end: 5rem;
  }

  #quick-add-drawer-content > .product-information__media {
    flex: 0 0 86px;
  }

  #quick-add-drawer-content > .product-header,
  #quick-add-drawer-content > .pdp-figma {
    flex: 1;
    min-width: 0;
  }

  #quick-add-drawer-content > .quick-add-top-grid,
  #quick-add-drawer-content > .quick-add-rows,
  #quick-add-drawer-content > variant-picker,
  #quick-add-drawer-content > product-form-component,
  #quick-add-drawer-content > .product-details {
    flex-basis: 100%;
  }

  @media (min-width: 990px) {
    #quick-add-drawer-content {
      flex: 1;
      min-height: 0;
      flex-wrap: nowrap;
      flex-direction: column;
      gap: 0;
    }

    #quick-add-drawer-content > .quick-add-top-grid,
    #quick-add-drawer-content > .quick-add-rows,
    #quick-add-drawer-content > variant-picker,
    #quick-add-drawer-content > product-form-component,
    #quick-add-drawer-content > .product-details {
      flex-basis: auto;
    }
  }

  #quick-add-drawer-content .quick-add-top-grid {
    display: grid !important;
    grid-template-columns: 110px 1fr !important;
    column-gap: 12px !important;
    align-items: start;
    flex-direction: unset !important;
  }

  @media (min-width: 990px) {
    #quick-add-drawer-content .quick-add-top-grid {
      margin-bottom: 10px;
    }
  }

  #quick-add-drawer-content .quick-add-top-grid > .product-information__media {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }

  #quick-add-drawer-content .quick-add-top-grid > .product-header,
  #quick-add-drawer-content .quick-add-top-grid > .quick-add-top-details {
    grid-column: 2 !important;
    grid-row: 1 !important;
    min-width: 0;
  }

  /* --- SECTION 2: Full-width rows (qty, color, size) --- */
  .quick-add-rows {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* --- Product header (mobile layout, built by JS) — Figma: column, gap 10px --- */
  #quick-add-drawer-content .product-header {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
  }

  @media (min-width: 990px) {
    #quick-add-drawer-content .product-header {
      padding-inline-end: 0;
    }
  }

  #quick-add-drawer-content .product-header a:not(product-price *) {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5em;
    color: #191919;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    text-decoration: none;
  }

  /* --- Price row inside product-header — Figma: sale price #AE0413 red --- */
  #quick-add-drawer-content .shoplc-price-row {
    display: flex;
    align-items: flex-start;
    gap: 2px;
    flex-wrap: wrap;
    padding: 0;
  }

  #quick-add-drawer-content .shoplc-price-row .price,
  #quick-add-drawer-content product-price .price {
    color: #AE0413 !important;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5em;

    @media (max-width: 750px) {
      font-weight: 700;
    }
  }

  #quick-add-drawer-content .shoplc-price-row .compare-at-price,
  #quick-add-drawer-content .shoplc-price-row .shoplc-estimated-price {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5em;
    color: #626161;
    text-decoration: line-through;
  }

  #quick-add-drawer-content .shoplc-price-row .shoplc-percentage-discount {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5em;
    color: #AE0413;
  }

  /* --- BudgetPay installment row (mobile, cloned from product card) --- */
  #quick-add-drawer-content .quick-add-drawer__payment-row {
    display: none;
    align-items: center;
    gap: 0;
    margin: 0;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12px;
    line-height: 150%;
    color: #1f1f1f;
  }

  #quick-add-drawer-content .quick-add-drawer__payment-row .payment-or,
  #quick-add-drawer-content .quick-add-drawer__payment-row .payment-text {
    font-weight: 500;
    color: #626161;
  }

  #quick-add-drawer-content .quick-add-drawer__payment-row img {
    display: inline-block;
    vertical-align: bottom;
    height: 1em;
    width: auto;
  }

  /* --- Variant pickers and form — full width inside .quick-add-rows --- */
  #quick-add-drawer-content variant-picker,
  #quick-add-drawer-content product-form-component {
    width: 100%;
  }

  #quick-add-drawer-content .variant-picker__form {
    display: block;
  }

  #quick-add-drawer-content .variant-option + .variant-option {
    margin-block-start: 0;
  }

  /* --- Media gallery — mobile: 86×86 (Figma Frame 1261156961), desktop: 110×110 --- */
  #quick-add-drawer-content .product-information__media {
    width: 110px;
    height: 110px;
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    align-self: start;
  }

  #quick-add-drawer-content .product-information__media::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #000;
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
  }

  /* --- Product badge inside media thumbnail --- */
  #quick-add-drawer-content .product-information__media .product-default-badges {
    display: none;
  }

  #quick-add-drawer-content .product-information__media .product-default-badge {
    padding: 3px 6px;
    font-size: 8px;
    line-height: 1.4;
    border-radius: 2px;
  }

  @media (min-width: 990px) {
    #quick-add-drawer-content .product-information__media .product-default-badge {
      padding: 4px 8px;
      font-size: 9px;
    }
  }

  @media (min-width: 990px) {
    #quick-add-drawer-content .product-information__media {
      width: 110px;
      min-width: 110px;
      height: 110px;
      position: relative;
    }

    #quick-add-drawer-content .product-information__media::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      bottom: 0;
      right: 0;
      background: #000;
      opacity: 0.03;
      pointer-events: none;
      z-index: 1;
    }
  }

  #quick-add-drawer-content .product-information__media media-gallery {
    pointer-events: none;
    padding: 0;
  }

  @media (min-width: 750px) {
    #quick-add-drawer-content .product-information__media media-gallery {
      position: relative;
      inset: auto;
    }
  }

  #quick-add-drawer-content .product-information__media img {
    width: 110px;
    height: 110px;
    object-fit: cover;
    display: block;
  }

  #quick-add-drawer-content .product-information__media img.quick-add-drawer__placeholder-image {
    object-fit: contain;
    padding: 15%;
    background: #f5f5f5;
    border-radius: 4px;
  }

  #quick-add-drawer-content .product-information__media slideshow-arrows,
  #quick-add-drawer-content .product-information__media slideshow-controls {
    display: none;
  }

  #quick-add-drawer-content .product-information__media slideshow-container {
    display: block;
  }

  #quick-add-drawer-content .product-information__media slideshow-slides {
    display: flex;
    flex-direction: column;
    gap: var(--gap-2xs, 0.25rem);
    overflow: visible;
    scroll-snap-type: none;
  }

  #quick-add-drawer-content .product-information__media slideshow-slide {
    width: 100%;
    flex: none;
    scroll-snap-align: unset;
    position: relative;
    transform: none;
    opacity: 1;
    visibility: visible;
  }

  #quick-add-drawer-content .product-information__media slideshow-slide ~ slideshow-slide {
    display: none !important;
  }

  #quick-add-drawer-content .product-media-container__zoom-button {
    cursor: default;
  }

  /* --- Grid gallery overrides --- */
  #quick-add-drawer-content .media-gallery--grid .media-gallery__grid {
    grid-template-columns: 1fr;
  }

  #quick-add-drawer-content .media-gallery--grid.media-gallery--two-column .product-media-container:first-child {
    grid-column: auto;
  }

  #quick-add-drawer-content .product-breadcrumb {
    display: none !important;
  }

  .quick-add-rows .pdp-sold-pieces {
    display: none;
  }

  /* --- Product details (right column inside .quick-add-top-grid) --- */
  .quick-add-top-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
    text-align: left;
    min-height: 0;
  }

  .quick-add-top-details .group-block {
    padding: 0;
  }

  .quick-add-top-details .group-block-content {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    align-items: stretch;
    text-align: left;
  }

  /* .pdp-figma__legacy is now inside .quick-add-rows, outside the grid */
  .quick-add-rows .pdp-figma__legacy {
    display: flex !important;
    flex-direction: column;
    gap: 0;
  }

  .quick-add-rows .pdp-figma__legacy .buy-buttons-block {
    order: 1;
  }

  .quick-add-rows .pdp-figma__legacy variant-picker {
    order: 2;
  }

  #quick-add-drawer-content .variant-picker {
    --product-swatches-padding-block-end: 0px;
    flex: 1 1 auto;
    overflow-y: auto;
    min-height: 0;
    padding-inline: 4px;
    padding-block-end: calc(
      var(--product-swatches-padding-block-end) + var(--focus-outline-offset, 2px) + var(--focus-outline-width, 2px)
    );
  }

  #quick-add-drawer-content .variant-option--swatches {
    padding-inline-start: 0;
  }

  #quick-add-drawer-content .variant-option--swatches legend {
    margin-inline-start: 0;
  }

  /* --- Variant button labels — base (needed when variant-picker.css isn't loaded) --- */
  #quick-add-drawer-content .variant-option--buttons {
    display: flex;
    flex-wrap: wrap;
    gap: var(--gap-sm, 8px);
    margin: 0;
    padding: 0;
    border: none;
  }

  #quick-add-drawer-content .variant-option--buttons legend {
    padding: 0;
    margin-block-end: var(--margin-xs, 4px);
  }

  #quick-add-drawer-content .variant-option__button-label {
    position: relative;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #quick-add-drawer-content .variant-option__button-label input {
    position: absolute;
    inset: 0;
    opacity: 0;
    margin: 0;
    cursor: pointer;
    width: 100%;
    height: 100%;
  }

  #quick-add-drawer-content .variant-option__button-label__text {
    pointer-events: none;
    z-index: 2;
  }

  /* --- Legend row — flex with space-between --- */
  #quick-add-drawer-content .variant-option__legend-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0;
    margin-block-end: 5px;
  }

  #quick-add-drawer-content .variant-option__legend-label {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5em;
    color: #191919;
  }

  #quick-add-drawer-content .variant-option__legend-selected {
    font-weight: 700;
    padding-left: 5px;
  }

  #quick-add-drawer-content .variant-option__legend-low-stock {
    font-weight: 600;
    color: #8b2942;
    white-space: nowrap;

    @media (max-width: 750px) {
      font-size: 12px;
    }
  }

  /* Drawer only: in-stock legend (Auf Lager) — green text, no fill; PDP unchanged */
  #quick-add-drawer-content .variant-option__legend-low-stock[data-stock-legend-state='available'] {
    background: none;
    color: var(--Success-green-2, #00703a);
  }

  /* --- Color swatch thumbnails — 70×70 (mirrors variant-main-picker.liquid) --- */
  #quick-add-drawer-content .variant-option--color-swatches {
    gap: 10px;
    padding: 12px 0;
  }

  #quick-add-drawer-content .variant-option--color-swatches .variant-option__legend-row {
    padding: 5px 0;
    margin-block-end: -5px;
  }

  #quick-add-drawer-content .variant-option--color-swatches .variant-option__legend-label {
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5em;
    color: #191919;
  }

  #quick-add-drawer-content .variant-option--color-swatches .variant-option__legend-selected {
    font-weight: 700;
    padding-left: 5px;
    color: var(--Blues-Primary-Blue, #1E35B1);
  }

  #quick-add-drawer-content .variant-option--color-swatches .variant-option__button-label--has-swatch {
    width: 70px;
    height: 70px;
    border-radius: 5px;
    padding: 0;
    overflow: visible;
    flex: 0 0 auto;
    min-height: auto;
    border: none;
    position: relative;
  }

  #quick-add-drawer-content .variant-option--color-swatches .variant-option__button-label--has-swatch::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: #000;
    opacity: 0.03;
    pointer-events: none;
    z-index: 1;
  }

  #quick-add-drawer-content .variant-option--color-swatches .variant-option__button-label--has-swatch .swatch,
  #quick-add-drawer-content .variant-option--color-swatches .variant-option__button-label--has-swatch .variant-option__color-img {
    --swatch-width: 100%;
    --swatch-height: 100%;
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background-size: cover;
    object-fit: cover;
    display: block;
    clip-path: inset(0 round 5px);
  }

  #quick-add-drawer-content .variant-option--color-swatches .variant-option__color-fallback {
    width: 100%;
    height: 100%;
    border-radius: 5px;
    background: #F7F7F7;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #191919;
  }

  #quick-add-drawer-content .variant-option--color-swatches .variant-option__button-label--has-swatch:has(:checked) {
    --focus-outline: 1px solid #1E35B1;
    outline: 1px solid #1E35B1;
    outline-offset: 0px;
    border-radius: 5px;
  }

  #quick-add-drawer-content .variant-option--color-swatches .variant-option__button-label--has-swatch:hover {
    outline: 1px solid rgba(30, 53, 177, 0.4);
    outline-offset: 0px;
  }

  @media (min-width: 990px) {
    #quick-add-drawer-content .variant-option--color-swatches .variant-option__legend-row {
      padding: 0;
      margin-block-end: 0;
    }

    #quick-add-drawer-content .variant-option--color-swatches .variant-option__legend-label {
      font-weight: 500;
    }
  }

  /* --- Size pills — mirrors variant-main-picker.liquid --- */
  #quick-add-drawer-content .variant-option--size-pills {
    gap: 13px;
  }

  #quick-add-drawer-content .variant-option--size-pills .variant-option__button-label--size {
    width: 56px;
    height: 56px;
    border-radius: 5px;
    background: var(--Greys-BG-White, #F6F6F6);
    border: none;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5em;
    color: #191919;
    padding: 16px 23px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: visible;
    flex: 0 0 auto;
  }

  #quick-add-drawer-content .variant-option--size-pills .variant-option__button-label--size::before,
  #quick-add-drawer-content .variant-option--size-pills .variant-option__button-label--size::after {
    display: none !important;
  }

  #quick-add-drawer-content .variant-option--size-pills .variant-option__button-label--size .variant-option__button-label__pill {
    display: none !important;
  }

  #quick-add-drawer-content .variant-option--size-pills .variant-option__button-label--size:has(:checked) {
    background: var(--Greys-BG-White, #F6F6F6) !important;
    border: 2px solid var(--Blues-Primary-Blue, #1E35B1) !important;
    color: #1E35B1 !important;
  }

  #quick-add-drawer-content .variant-option--size-pills .variant-option__button-label--size:hover {
    background: #EBEBEB;
  }

  #quick-add-drawer-content .variant-option--size-pills:has(.variant-option__button-label--size:hover) .variant-option__legend-selected {
    color: var(--Blues-Primary-Blue, #1E35B1);
  }

  #quick-add-drawer-content .variant-option--size-pills .variant-option__button-label--size:has([data-option-available='false']) {
    background: #F6F6F6;
    border: 1px solid #DDDDDD;
    color: #919191;
  }

  #quick-add-drawer-content .variant-option--size-pills .variant-option__button-label--size:has([data-option-available='false']) .variant-option__button-label__text {
    color: #919191;
  }

  #quick-add-drawer-content .variant-option--size-pills .variant-option__button-label--size:has([data-option-available='false']) svg:not(.variant-option__oos-bell svg) {
    display: none;
  }

  #quick-add-drawer-content .variant-option__button-label__text--size .type-2 {
    display: none;
  }

  #quick-add-drawer-content .variant-option[data-is-size-option="true"].is-diameter-mode .variant-option__button-label__text--size .type-1 {
    display: none;
  }

  #quick-add-drawer-content .variant-option[data-is-size-option="true"].is-diameter-mode .variant-option__button-label__text--size .type-2 {
    display: inline;
  }

  /* OOS bell icon */
  #quick-add-drawer-content .variant-option__oos-bell {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #FFFFFF;
    border: 1px solid #F1F1F1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    color: #191919;
    pointer-events: none;
  }

  #quick-add-drawer-content .variant-option__oos-bell svg {
    width: 14px;
    height: 14px;
  }

  /* Innendurchmesser toggle */
  #quick-add-drawer-content .variant-option__diameter-toggle {
    display: flex;
    align-items: center;
    gap: 7px;
    width: 100%;
    margin-block-end: 10px;
  }

  #quick-add-drawer-content .variant-option__diameter-label {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5em;
    color: #191919;
  }

  #quick-add-drawer-content .variant-option__toggle {
    position: relative;
    display: inline-block;
    width: 37px;
    height: 20px;
    flex-shrink: 0;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
  }

  #quick-add-drawer-content .variant-option__toggle-slider {
    position: absolute;
    inset: 0;
    background: #C7C7C7;
    border-radius: 10px;
    transition: background-color 0.2s ease;
    pointer-events: none;
  }

  #quick-add-drawer-content .variant-option__toggle-slider::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 3px;
    width: 14px;
    height: 14px;
    background: #FFFFFF;
    border-radius: 50%;
    transition: transform 0.2s ease;
  }

  #quick-add-drawer-content .variant-option__toggle[aria-checked='true'] .variant-option__toggle-slider {
    background: var(--Blues-Primary-Blue, #1E35B1);
  }

  #quick-add-drawer-content .variant-option__toggle[aria-checked='true'] .variant-option__toggle-slider::after {
    transform: translateX(17px);
  }

  /* Größentabelle link */
  #quick-add-drawer-content .variant-option__size-chart-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5em;
    color: #1E35B1;
    text-decoration: none;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;

    @media (max-width: 750px) {
      font-size: 12px;
    }
  }

  #quick-add-drawer-content .variant-option__ruler-icon {
    width: 26px;
    height: 22px;
    flex-shrink: 0;
    object-fit: contain;

    @media (max-width: 750px) {
      width: 20px;
      height: 18px;
    }
  }

  /* Variant option divider lines — hidden on mobile to avoid double line with .variant-option border-top */
  #quick-add-drawer-content .variant-option__divider {
    display: none;
    width: 100%;
    height: 1px;
    background: #E0E0E0;
    margin-bottom: 12px;
  }

  @media (min-width: 990px) {
    #quick-add-drawer-content .variant-option__divider {
      display: block;
    }
  }

  /* --- Variant-option dividers (between color/size sections) --- */
  #quick-add-drawer-content .variant-option {
    padding-block: 12px;
    border-top: 1px solid #E5E5E5;
    margin-block-start: 0;
  }

  #quick-add-drawer-content .variant-option legend {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #191919;
    padding: 0;
    margin-block-end: 10px;
  }

  /* Size pills — Figma: rounded rect, 48px height, 8px radius */
  #quick-add-drawer-content .variant-option--buttons:not(.variant-option--swatches) {
    gap: 10px;
  }

  #quick-add-drawer-content .variant-option--buttons:not(.variant-option--swatches) .variant-option__button-label {
    width: 56px;
    height: 56px;
    border-radius: 5px;
    border: 1px solid #E0E0E0;
    background: #f6f6f6;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #191919;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;

    @media (max-width: 750px) { 
      width: 42px;
      height: 42px;
      padding: 10px 16px;
    }
  }

  #quick-add-drawer-content .variant-option--buttons:not(.variant-option--swatches) .variant-option__button-label:has(input:checked) {
    border-color: #191919;
    background: #191919;
    color: #FFFFFF;
  }

  /* --- Hide Shopify title — use pdp-figma__title instead --- */
  #quick-add-drawer-content .view-product-title {
    display: none !important;
  }

  /* --- Hide legacy view-more-details (replaced by .pdp-figma__mehr-anzeigen) --- */
  #quick-add-drawer-content .view-more-details__wrapper {
    display: none !important;
  }

  /* --- View more details link --- */
  #quick-add-drawer-content .view-more-details__wrapper {
    display: none;
  }

  @media (min-width: 750px) {
    #quick-add-drawer-content .view-more-details__wrapper {
      display: flex;
      justify-content: flex-start;
      width: 100%;
    }
  }

  /* --- Hide non-essential PDP blocks --- */
  #quick-add-drawer-content .pdp-figma__rating-row,
  #quick-add-drawer-content .pdp-figma__title-actions,
  #quick-add-drawer-content .pdp-figma__discount-row,
  #quick-add-drawer-content .pdp-figma__points,
  #quick-add-drawer-content .pdp-figma__coupon,
  #quick-add-drawer-content .pdp-figma__bottom-links,
  #quick-add-drawer-content .pdp-buybox__price,
  #quick-add-drawer-content .quantity-rules,
  #quick-add-drawer-content .pdp-buybox__divider,
  #quick-add-drawer-content .divider__line,
  #quick-add-drawer-content .pdp-payment-mode,
  #quick-add-drawer-content .pdp-accordion,
  #quick-add-drawer-content .pdp-rec,
  #quick-add-drawer-content .pdp-bmpl,
  #quick-add-drawer-content .bmsm,
  #quick-add-drawer-content buy-more-save-more-component,
  #quick-add-drawer-content .pdp-bulk-deals,
  #quick-add-drawer-content .pdp-why-shoplc,
  #quick-add-drawer-content [ref="addToCartTextError"] {
    display: none !important;
  }

  #quick-add-drawer-content .text-block.rte:not(product-price) {
    display: none;
  }

  /* --- PDP figma content overrides — Figma spacing --- */
  #quick-add-drawer-content .pdp-figma__title-row {
    display: block;
    margin-bottom: 6px;
  }

  #quick-add-drawer-content .pdp-figma__title {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5em;
    color: #191919;
    margin: 0;
    height: 43px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  #quick-add-drawer-content .pdp-figma__price-row {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: 0;
    margin-bottom: 5px;
  }

  #quick-add-drawer-content .pdp-figma__price-current {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5em;
    color: #AE0413;
    letter-spacing: normal;
  }

  #quick-add-drawer-content .pdp-figma__price-compare {
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.5em;
    color: #626161;
    text-decoration: line-through;
    opacity: 1;
  }

  #quick-add-drawer-content .pdp-figma__vat {
    display: none !important;
  }

  /* --- Discount badge inline (-20%) — Figma: 14px 600 #AE0413 --- */
  #quick-add-drawer-content .pdp-figma__price-discount {
    display: inline !important;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5em;
    color: #AE0413;
  }

  /* --- Installment row (BudgetPay) — compact "Or X × [BP] Payments" --- */
  #quick-add-drawer-content .pdp-figma__budgetpay {
    display: flex;
    align-items: center;
    gap: 4px;
    height: 15px;
    margin-top: 0;
    margin-bottom: 5px;
    padding: 0;
    border-radius: 0;
    background: transparent;
  }

  #quick-add-drawer-content .pdp-figma__budgetpay-badge,
  #quick-add-drawer-content .pdp-figma__budgetpay-text,
  #quick-add-drawer-content .pdp-figma__budgetpay-link {
    display: none !important;
  }

  #quick-add-drawer-content .pdp-figma__budgetpay-compact {
    display: inline-flex !important;
    align-items: center;
    gap: 4px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: 1.364em;
    color: #191919;
  }

  #quick-add-drawer-content .pdp-figma__bp-icon {
    width: 21px;
    height: 10px;
    vertical-align: middle;
    flex-shrink: 0;
  }

  /* --- "Mehr anzeigen" link — navigates to product page --- */
  #quick-add-drawer-content .pdp-figma__mehr-anzeigen,
  #quick-add-drawer-content .quick-add-drawer__mehr-anzeigen,
  #quick-add-drawer-content .product-header a.quick-add-drawer__mehr-anzeigen {
    display: inline-block !important;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5em;
    color: #1E35B1 !important;
    text-decoration: underline !important;
    text-align: left;
    -webkit-line-clamp: unset;
    -webkit-box-orient: unset;
    overflow: visible;
  }

  #quick-add-drawer-content .buy-buttons-block,
  #quick-add-drawer-content variant-picker {
    flex: 0 0 auto;
  }

  /* --- Buy-box form layout --- */
  #quick-add-drawer-content .product-form-buttons.pdp-buybox {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  #quick-add-drawer-content .product-form-buttons--stacked .pdp-buybox__actions {
    flex-basis: auto !important;
   
  }

  /* --- Quantity row — left-aligned flex row, divider below --- */
  #quick-add-drawer-content .pdp-buybox__row {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    grid-template-columns: unset !important;
    min-height: auto;
    width: 100%;
    padding: 0 0 12px;
    margin: 0;
    border: none !important;
    border-bottom: 1px solid #E5E5E5 !important;
  }

  /* Figma Frame 1410102109: qty + stock in a row, 12px gap */
  #quick-add-drawer-content .pdp-buybox__quantity-block {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 12px;
  }

  #quick-add-drawer-content .pdp-buybox__top {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  /* Quantity selector — Figma: 127×48 total, three segments */
  #quick-add-drawer-content .pdp-buybox__qty .quantity-selector,
  #quick-add-drawer-content .quantity-selector {
    display: inline-flex !important;
    align-items: center;
    width: 126px;
    height: 42px;
    border: none;
    border-radius: 5px;
    background: #F1F1F1;
    overflow: hidden;
  }

  #quick-add-drawer-content .quantity-selector .quantity-minus {
    width: 42px;
    height: 42px;
    background: #F1F1F1;
    border: none;
    border-radius: 5px 0 0 5px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #191919;
    padding: 0;
  }

  #quick-add-drawer-content .quantity-selector input[type='number'] {
    width: 42px;
    height: 42px;
    background: #FFFFFF;
    border: 1px solid #F1F1F1;
    border-radius: 0;
    text-align: center;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #191919;
    -moz-appearance: textfield;
    padding: 0;
    margin: 0;
  }

  #quick-add-drawer-content .quantity-selector input[type='number']::-webkit-inner-spin-button,
  #quick-add-drawer-content .quantity-selector input[type='number']::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
  }

  #quick-add-drawer-content .quantity-selector .quantity-plus {
    width: 42px;
    height: 42px;
    background: #F1F1F1;
    border: none;
    border-radius: 0 5px 5px 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    color: #191919;
    padding: 0;
  }

  /* PDP buybox stock line — hide in drawer only; legend uses .variant-option__legend-low-stock */
  #quick-add-drawer-content .pdp-buybox__stock,
  #quick-add-drawer-content .pdp-buybox__stock--out,
  #quick-add-drawer-content .pdp-buybox__stock--low,
  #quick-add-drawer-content .pdp-buybox__stock--available {
    display: none !important;
  }

  /* “X+ verkauft” block — PDP only; drawer removes in JS, hide here as backup */
  #quick-add-drawer-content .pdp-sold-pieces,
  #quick-add-drawer-content [data-pdp-sold-pieces] {
    display: none !important;
  }

  /* --- Buy-box actions row — mobile: Figma Frame 1171275189 --- */
  #quick-add-drawer-content .pdp-buybox__actions {
    position: fixed;
    inset-block-end: 0;
    inset-inline-end: 0;
    width: 100%;
    z-index: 2;
    display: flex !important;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin: 0;
    padding: 15px;
    background: #FFFFFF;
    box-shadow: 0 -6px 15px 0 rgba(0, 0, 0, 0.05);
    grid-template-columns: unset;
  }

  @media (min-width: 990px) {
    #quick-add-drawer-content .pdp-buybox__actions {
      width: 516px;
      gap: 10px;
      justify-content: center;
      box-shadow: 0 -3px 16.7px 0 rgba(0, 0, 0, 0.21);
    }
  }

  /* --- Wishlist button — mobile Figma: 40×40, desktop 50×50 --- */
  #quick-add-drawer-content .pdp-buybox__actions .quick-add-drawer__wishlist {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    min-width: 40px;
    min-height: 40px;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 3px;
  }

  @media (min-width: 990px) {
    #quick-add-drawer-content .pdp-buybox__actions .quick-add-drawer__wishlist {
      width: 50px;
      height: 50px;
      min-width: 50px;
      min-height: 50px;
      border-radius: 5px;
    }
  }

  #quick-add-drawer-content .pdp-buybox__actions .quick-add-drawer__wishlist svg {
    width: 16px;
    height: 14px;
    color: #191919;
  }

  @media (min-width: 990px) {
    #quick-add-drawer-content .pdp-buybox__actions .quick-add-drawer__wishlist svg {
      width: 22px;
      height: 20px;
    }
  }

  /* --- Add to Cart button — Figma: #FFD334, 50px height, 5px radius, cart icon + text --- */
  #quick-add-drawer-content .pdp-buybox__actions .pdp-buybox__atc {
    flex: 1;
    min-width: 0;
  }

  /* Hide accelerated checkout (Shop Pay) in the drawer — only ATC button needed */
  #quick-add-drawer-content .pdp-buybox__actions .pdp-buybox__accelerated {
    display: none !important;
  }

  #quick-add-drawer-content .pdp-buybox__actions .add-to-cart-button {
    flex: 1;
    min-width: 0;
    width: 100%;
    height: 40px;
    min-height: 40px;
    background-color: #FFD334 !important;
    color: #191919 !important;
    border: 1px solid #FFD334 !important;
    border-radius: 5px;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.364;
    text-transform: capitalize;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
  }

  @media (min-width: 990px) {
    #quick-add-drawer-content .pdp-buybox__actions .add-to-cart-button {
      height: 50px;
      min-height: 50px;
      font-weight: 600;
    }
  }

  /* Added state: keep yellow control (no PDP green fill on the button) */
  #quick-add-drawer-content .pdp-buybox__actions .add-to-cart-button.atc-added,
  #quick-add-drawer-content .pdp-buybox__actions .add-to-cart-button.is-added {
    background-color: #ffd334 !important;
    border-color: #ffd334 !important;
    color: #191919 !important;
  }

  /* Hide the original inline SVG icon — ::before pseudo provides the cart icon */
  #quick-add-drawer-content .pdp-buybox__actions .add-to-cart-button .add-to-cart-icon {
    display: none !important;
  }

  #quick-add-drawer-content .pdp-buybox__actions .add-to-cart-button::before {
    content: '';
    display: inline-block;
    width: 19px;
    height: 19px;
    flex-shrink: 0;
    z-index: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='17' height='17' viewBox='0 0 17 17' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.98081 15.9887C7.80996 15.9887 8.48212 15.3166 8.48212 14.4874C8.48212 13.6582 7.80996 12.9861 6.98081 12.9861C6.15165 12.9861 5.47949 13.6582 5.47949 14.4874C5.47949 15.3166 6.15165 15.9887 6.98081 15.9887Z' stroke='black' stroke-width='1.2'/%3E%3Cpath d='M13.7367 15.9887C14.5658 15.9887 15.238 15.3166 15.238 14.4874C15.238 13.6582 14.5658 12.9861 13.7367 12.9861C12.9075 12.9861 12.2354 13.6582 12.2354 14.4874C12.2354 15.3166 12.9075 15.9887 13.7367 15.9887Z' stroke='black' stroke-width='1.2'/%3E%3Cpath d='M0.600098 0.600098H2.59451L6.08871 11.1095H14.0623' stroke='black' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M5.31071 8.72092L3.39209 2.98853H15.8641C15.9432 2.98843 16.0211 3.00635 16.0915 3.04079C16.1619 3.07523 16.2227 3.12522 16.269 3.18662C16.3153 3.24803 16.3456 3.31909 16.3576 3.39395C16.3696 3.46881 16.3628 3.54533 16.3378 3.61718L14.6755 8.39418C14.6424 8.48926 14.579 8.57198 14.4941 8.63062C14.4093 8.68925 14.3074 8.72085 14.2028 8.72092H5.31071Z' stroke='black' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  /* “Hinzugefügt” layer: PDP uses buy-buttons `.is-added` + buybox; drawer often uses product-form only — mirror visibility + stacking */
  #quick-add-drawer-content .pdp-buybox__actions .add-to-cart-button {
    position: relative;
  }

  #quick-add-drawer-content .pdp-buybox__actions .add-to-cart-button .add-to-cart-text--added {
    z-index: 2;
  }

  #quick-add-drawer-content .pdp-buybox__actions .add-to-cart-button.atc-added .add-to-cart-text,
  #quick-add-drawer-content .pdp-buybox__actions .add-to-cart-button.is-added .add-to-cart-text {
    opacity: 0;
    visibility: hidden;
  }

  #quick-add-drawer-content .pdp-buybox__actions .add-to-cart-button.atc-added .add-to-cart-text--added,
  #quick-add-drawer-content .pdp-buybox__actions .add-to-cart-button.is-added .add-to-cart-text--added {
    opacity: 1;
    visibility: visible;
  }

  /* “Hinzugefügt” row: same yellow as ATC button — no green chip; text stays readable */
  #quick-add-drawer-content .pdp-buybox__actions .add-to-cart-button .add-to-cart-text--added {
    background-color: #ffd334;
    font-size: 14px;
    border-radius: 5px;
  }

  #quick-add-drawer-content .pdp-buybox__actions .add-to-cart-button .add-to-cart-text--added span {
    color: #191919;
  }

  #quick-add-drawer-content .pdp-buybox__actions .add-to-cart-button .add-to-cart-icon--added,
  #quick-add-drawer-content .pdp-buybox__actions .add-to-cart-button .svg-wrapper.add-to-cart-icon--added {
    display: none !important;
  }

  /* --- Grid gallery block overrides --- */
  @media (min-width: 750px) {
    #quick-add-drawer-content .group-block-content {
      gap: min(var(--gap-2xl, 2rem), var(--gap, 1rem));
    }

    #quick-add-drawer-content .media-gallery__grid {
      gap: min(var(--gap-2xs, 0.25rem), var(--image-gap, 0.25rem));
      border-radius: var(--style-border-radius-popover, 0);
    }

    #quick-add-drawer-content .media-gallery--grid .product-media img {
      border-radius: 0;
    }
  }

  /* --- Sticky content reset --- */
  #quick-add-drawer-content .sticky-content,
  #quick-add-drawer-content .sticky-content--desktop {
    inset-block-start: 0;
  }

  @media (prefers-reduced-motion: reduce) {
    .quick-add-drawer__panel,
    .quick-add-drawer__backdrop {
      transition: none;
    }
  }

  /* ---- Größentabelle button reset (was <a>, now <button>) ---- */
  button.quick-add-drawer__size-chart-link {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    font: inherit;
    color: inherit;
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }

  /* ---- Size Guide Panel ---- */
  .quick-add-drawer__size-guide {
    display: none;
    flex-direction: column;
    overflow-y: auto;
    flex: 1 1 auto;
    padding: 0 1.125rem 1.5rem;
  }

  .quick-add-drawer__size-guide[hidden] {
    display: none !important;
  }

  .quick-add-drawer__size-guide.is-visible {
    display: flex;
  }

  .quick-add-drawer__size-guide-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 0;
    margin-bottom: 1rem;
    position: sticky;
    top: 0;
    background: #fff;
    z-index: 1;
  }

  .quick-add-drawer__size-guide-back {
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    color: #191919;
    display: flex;
    align-items: center;
  }

  .quick-add-drawer__size-guide-title {
    font-size: 1.0625rem;
    font-weight: 700;
    color: #191919;
  }

  .quick-add-drawer__size-guide-body {
    display: flex;
    flex-direction: column;
  }

  .size-guide-static-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    border: 1px solid #E0E0E0;
    border-radius: 10px;
    overflow: hidden;
    text-align: center;
    font-size: 14px;
    color: #191919;
  }

  .size-guide-static-table th,
  .size-guide-static-table td {
    padding: 14px 16px;
  }

  .size-guide-static-table thead tr {
    background: #f4f4f8;
  }

  .size-guide-static-table th {
    font-weight: 700;
    border-bottom: 1px solid #E0E0E0;
  }

  .size-guide-static-table tbody tr:nth-child(odd) {
    background: #F8F8FF;
  }

  .size-guide-static-table tbody tr:nth-child(even) {
    background: #FFFFFF;
  }

  .size-guide-static-table td {
    font-weight: 700;
  }

  .quick-add-drawer__size-guide-divider {
    display: block;
    width: 100%;
    height: 1px;
    background: #E0E0E0;
    margin: 1.25rem 0;
  }

  .quick-add-drawer__size-guide-download {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #9399E5;
    font-weight: 600;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-decoration: none;
    font-family: inherit;
  }

  .quick-add-drawer__size-guide-download:hover {
    text-decoration: underline;
  }

  #quick-add-drawer-content .pdp-buybox__actions wishlist-product-icon.quick-add-drawer__wishlist {
    position: static !important;
    pointer-events: auto;
    margin: 0;
  }

  #quick-add-drawer-content .pdp-buybox__actions wishlist-product-icon.quick-add-drawer__wishlist .wishlist-product-icon__button {
    width: 100%;
    height: 100%;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: inherit;
    box-shadow: none;
    backdrop-filter: none;
  }

  #quick-add-drawer-content .pdp-buybox__actions wishlist-product-icon.quick-add-drawer__wishlist .wishlist-product-icon__button:hover {
    background: transparent;
    box-shadow: none;
  }
/* END_SNIPPET:quick-add-drawer */

/* START_SNIPPET:quick-add-modal (INDEX:334) */
.quick-add-modal__loader {
    position: fixed;
    inset: 0;
    background-color: rgb(var(--color-background) / 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10001;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }

  .quick-add-modal__loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }

  .quick-add-modal__loader-spinner {
    width: 40px;
    height: 40px;
    border: 3px solid rgb(0 0 0 / 0.12);
    border-top-color: #212529;
    border-radius: 50%;
    animation: quick-add-modal-spinner 0.8s linear infinite;
  }

  @keyframes quick-add-modal-spinner {
    to {
      transform: rotate(360deg);
    }
  }

  @media (prefers-reduced-motion: reduce) {
    .quick-add-modal__loader-spinner {
      animation: none;
      border-color: #212529;
      border-top-color: transparent;
    }
  }

  .quick-add-modal.drawer__dialog:not([open]) {
    display: none !important;
  }

  .quick-add-modal.drawer__dialog {
    margin: 0;
    padding: 0;
    border: none;
    border-left: var(--style-border-popover);
    box-shadow: var(--shadow-popover);
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: 100%;
    height: 100%;
    max-height: 100vh;
    border-radius: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: rgb(var(--color-background));
    transform: translateZ(0);
  }

  @media screen and (min-width: 750px) {
    .quick-add-modal.drawer__dialog {
      width: 32rem;
      max-width: 100%;
    }
  }

  /* Drawer topbar: flex row with header + close button side by side */
  .quick-add-modal .drawer__topbar {
    display: flex;
    flex-shrink: 0;
  }

  .quick-add-modal .drawer__header {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-width: 0;
    padding: 1.0675rem 1.14375rem;
    min-height: 3.125rem;
    height: 3.125rem;
    background: #EBEBEB;
    border-block-end: var(--style-border-width) solid rgb(var(--color-border));
  }

  .quick-add-modal .drawer__title {
    font-size: 1.0675rem;
    font-weight: 600;
    line-height: 1.2857;
    text-transform: uppercase;
    text-align: left;
    color: #191919;
    margin: 0;
  }

  .quick-add-modal .drawer__close {
    flex-shrink: 0;
    min-width: 3.125rem;
    min-height: 3.125rem;
    padding: 0;
    transition: transform 0.15s var(--animation-timing-bounce);
    border-radius: 0;
    background: #EBEBEB;
    box-shadow: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-inline-start: 1px solid #dddddd;
    border-block-end: var(--style-border-width) solid rgb(var(--color-border));
  }

  .quick-add-modal .drawer__close svg {
    width: 1.525rem;
    height: 1.525rem;
  }

  .quick-add-modal .drawer__close:hover {
    background: #EBEBEB;
    opacity: 1;
    color: inherit;
    box-shadow: none;
    transform: none;
  }

  .quick-add-modal .drawer__close:focus-visible {
    outline: 2px solid rgb(var(--color-foreground));
    outline-offset: 2px;
  }

  .quick-add-modal .drawer__close:active {
    transform: scale(0.8);
  }

  .quick-add-modal .drawer__content {
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    background: #F1F1F1;
  }

  /* Footer slot – reference drawer pattern: fixed at bottom, outside scrollable area */
  .quick-add-modal .drawer__footer {
    flex-shrink: 0;
    background-color: rgb(var(--color-background));
    position: sticky;
    bottom: 0;
    width: 100%;
    z-index: 1;
  }

  .quick-add-modal .drawer__footer:empty {
    display: none;
  }

  @media screen and (max-width: 1199px) {
    .quick-add-modal .drawer__footer:not(:empty) {
      position: sticky;
      bottom: 0;
      z-index: 9;
    }
  }

  .quick-add-modal__wishlist-source-wrapper {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .quick-add-modal .view-more-details__wrapper {
    display: none;
  }

  @media screen and (min-width: 750px) {
    .quick-add-modal .view-more-details__wrapper {
      display: flex;
    }
  }

  .quick-add-modal__content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    position: relative;
    padding-inline: var(--padding-xl);
    padding-block: var(--padding-xl);
    padding-bottom: 0;
    gap: var(--gap-lg);
    flex: 1;
    min-height: 0;
    height: auto;
    max-height: 100%;
    padding-bottom: 5rem;
  }

  @media screen and (min-width: 750px) {
    .quick-add-modal__content {
      grid-template-columns: repeat(7, 1fr);
      grid-template-rows: 100% 1fr;
      max-width: var(--wide-content-width);
    }
  }

  .quick-add-modal__content .media-gallery--grid .media-gallery__grid {
    grid-template-columns: 1fr;
  }

  .quick-add-modal__content .media-gallery--grid.media-gallery--two-column .product-media-container:first-child {
    grid-column: auto;
  }

  .quick-add-modal__content {
    .media-gallery--grid:not(.media-gallery--two-column) .product-media > *,
    .media-gallery--grid.media-gallery--two-column:not(.media-gallery--large-first-image)
      .product-media-container:nth-of-type(odd)
      .product-media > *,
    .media-gallery--grid.media-gallery--two-column.media-gallery--large-first-image
      .product-media-container:is(:first-of-type, :nth-of-type(even))
      .product-media > *,
    .media-gallery--carousel slideshow-container {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
    }
  }

  .quick-add-modal__content .view-more-details__wrapper {
    display: flex;
    justify-content: flex-start;
    width: 100%;
  }

  .view-more-details__wrapper .view-more-details {
    display: flex;
    align-items: center;
    width: fit-content;
  }

  .quick-add-modal__content .product-header {
    display: flex;
    flex-direction: column;
    grid-column: 2 / -1;
    grid-row: 1;
    padding-right: var(--padding-2xl);
  }

  @media screen and (min-width: 750px) {
    .quick-add-modal__content .product-header {
      padding-right: 0;
    }
  }

  .quick-add-modal__content .product-header a:not(product-price *) {
    font-size: var(--font-size--md);
    font-weight: 500;
    color: inherit;
    width: fit-content;
  }

  @media screen and (min-width: 750px) {
    .quick-add-modal__content .product-header a:not(product-price *) {
      font-size: inherit;
      font-weight: inherit;
      color: inherit;
    }
  }

  .quick-add-modal__content variant-picker,
  .quick-add-modal__content product-form-component {
    grid-column: 1 / -1;
  }

  @media screen and (min-width: 750px) {
    .quick-add-modal__content variant-picker,
    .quick-add-modal__content product-form-component {
      grid-column: auto;
    }
  }

  .quick-add-modal__content .variant-picker__form {
    display: block;
  }

  .quick-add-modal__content .variant-option + .variant-option {
    margin-top: var(--padding-lg);
  }

  .quick-add-modal__content .product-media-container__zoom-button {
    cursor: default;
  }

  .quick-add-modal__content .product-details {
    grid-column: 2 / span 2;
    grid-row: span 1;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 0;
    overflow-y: auto;
    max-height: 100%;

    dialog[open] & {
      animation: fadeSlideIn 0.3s var(--animation-timing-fade-in) both;
      animation-delay: 0.1s;
    }
  }

  @media screen and (min-width: 750px) {
    .quick-add-modal__content .product-details {
      grid-column: 4 / -1;
      grid-row: 1 / span 2;
    }
  }

  .quick-add-modal__content > * {
    min-height: 0;
  }

  .quick-add-modal__content .product-details :is(.view-product-title, .buy-buttons-block) {
    flex: 0 0 auto;
  }

  .quick-add-modal__content .product-details .variant-picker {
    --product-swatches-padding-block-end: 0px;

    flex: 1 1 auto;
    overflow-y: auto;
    min-height: 0;
    padding-block-end: calc(
      var(--product-swatches-padding-block-end) + var(--focus-outline-offset) + var(--focus-outline-width)
    );
  }

  .quick-add-modal__content .variant-option--swatches {
    padding-inline-start: var(--padding-2xs);
  }

  .quick-add-modal__content .variant-option--swatches legend {
    margin-inline-start: calc(-1 * var(--padding-2xs));
  }

  .quick-add-modal__content:not(:has(.product-information__media)) .product-details {
    grid-column: 1 / -1;
  }

  .quick-add-modal__content .view-product-title {
    display: flex;
    padding-block: 0;
    padding-inline: 0 calc(var(--minimum-touch-target) / 2);
  }

  .quick-add-modal__content .view-product-title a {
    color: inherit;
    text-decoration: none;
    text-align: left;
    font-size: var(--font-size--2xl);
    font-weight: 600;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: color 0.2s var(--animation-easing);
  }

  .quick-add-modal__content .view-product-title {
    display: flex;
  }

  .quick-add-modal__content
    .product-details
    *:not(
      .group-block,
      .group-block-content,
      .pdp-figma,
      .pdp-figma *,
      .pdp-figma__legacy,
      .pdp-figma__legacy *,
      .buy-buttons-block,
      .buy-buttons-block *,
      .view-product-title,
      .view-product-title *,
      variant-picker,
      variant-picker *,
      product-price,
      product-price *,
      product-inventory,
      product-inventory *,
      .view-more-details__wrapper,
      .view-more-details__wrapper *
    ) {
    @media screen and (min-width: 750px) {
      /* stylelint-disable-next-line declaration-no-important */
      display: none !important;
    }
  }

  .quick-add-modal__content
    .group-block:not(
      :has(
          .pdp-figma,
          .pdp-figma *,
          .pdp-figma__legacy,
          .pdp-figma__legacy *,
          .buy-buttons-block,
          .buy-buttons-block *,
          .view-product-title,
          .view-product-title *,
          variant-picker,
          variant-picker *,
          product-price,
          product-price *,
          product-inventory,
          product-inventory *,
          .view-more-details__wrapper,
          .view-more-details__wrapper *
        ),
      .buy-buttons-block
    ) {
    display: none;
  }

  @media screen and (min-width: 750px) {
    .quick-add-modal__content .group-block-content {
      gap: min(var(--gap-2xl), var(--gap));
    }

    .quick-add-modal__content .media-gallery__grid {
      gap: min(var(--gap-2xs), var(--image-gap));
      border-radius: var(--style-border-radius-popover, 0);
    }

    .quick-add-modal__content .media-gallery--grid .product-media img {
      border-radius: 0;
    }

    .quick-add-modal__content .media-gallery--grid .product-media-container:first-child {
      border-top-right-radius: var(--style-border-radius-popover, 0);
    }

    .quick-add-modal__content .media-gallery--grid .product-media-container:last-child {
      border-bottom-right-radius: var(--style-border-radius-popover, 0);
    }
  }

  .quick-add-modal__content .product-details > .group-block {
    padding: var(--padding-2xl);
    padding-bottom: 0;
    max-height: 100%;
  }

  .quick-add-modal__content .product-details .group-block-content {
    display: flex;
    flex-direction: column;
    gap: var(--padding-lg);
    align-items: stretch;
    text-align: left;
  }

  .quick-add-modal__content .product-details .pdp-figma {
    display: flex;
    flex-direction: column;
    gap: var(--padding-md);
  }

  .quick-add-modal__content .product-details .pdp-figma__rating-row,
  .quick-add-modal__content .product-details .pdp-figma__title-actions,
  .quick-add-modal__content .product-details .pdp-figma__discount-row,
  .quick-add-modal__content .product-details .pdp-figma__budgetpay,
  .quick-add-modal__content .product-details .pdp-figma__points,
  .quick-add-modal__content .product-details .pdp-figma__coupon,
  .quick-add-modal__content .product-details .pdp-figma__bottom-links {
    display: none !important;
  }

  .quick-add-modal__content .product-details .pdp-figma__title {
    font-size: var(--font-size--2xl, 1.5rem);
    font-weight: 700;
    line-height: 1.2;
    color: rgb(var(--color-foreground-rgb));
    margin: 0;
  }

  .quick-add-modal__content .product-details .pdp-figma__price-row {
    font-size: inherit;
    color: rgb(var(--color-foreground-rgb));
  }

  .quick-add-modal__content .product-details .pdp-figma__legacy {
    display: flex;
    flex-direction: column;
    gap: var(--padding-md);
  }

  .quick-add-modal__content .product-details .buy-buttons-block,
  .quick-add-modal__content .product-details variant-picker {
    flex: 0 0 auto;
  }

  .quick-add-modal__content .product-details .pdp-why-shoplc {
    display: none !important;
  }

  .quick-add-modal__content .product-details .pdp-buybox__stock,
  .quick-add-modal__content .product-details .pdp-buybox__price,
  .quick-add-modal__content .product-details .quantity-rules,
  .quick-add-modal__content .product-details .pdp-buybox__divider,
  .quick-add-modal__content .product-details .pdp-payment-mode,
  .quick-add-modal__content .product-details .pdp-accordion,
  .quick-add-modal__content .product-details .pdp-rec,
  .quick-add-modal__content .product-details .pdp-bmpl,
  .quick-add-modal__content .product-details .pdp-bulk-deals,
  .quick-add-modal__content .product-details [ref="addToCartTextError"] {
    display: none !important;
  }

  /* pdp-buybox__row (qty, stock, price) stays in scrollable content; only actions row is sticky footer */
  .quick-add-modal__content .product-details .product-form-buttons.pdp-buybox {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  /* Full-width footer fixed to dialog bottom – overrides buy-buttons grid/stacked so one row */
  .quick-add-modal__content .product-details .product-form-buttons--stacked .pdp-buybox__actions {
    flex-basis: auto !important;
    width: auto !important;
  }

  .quick-add-modal__content .product-details .pdp-buybox__actions {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 2;
    display: flex !important;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.625rem;
    margin: 0;
    padding: 0.9375rem var(--padding-xl, 1.5rem);
    padding-bottom: 0;
    background: #FFFFFF;
    box-shadow: 0 -3px 16.7px 0 rgb(0 0 0 / 0.21);
    grid-template-columns: unset;
  }

  @media screen and (min-width: 750px) {
    .quick-add-modal__content .product-details .pdp-buybox__actions {
      padding: 0.9375rem var(--padding-xl);
      padding-bottom: 0;
    }
  }

  /* Wishlist button: Figma Component 10 – 50×50, border #DDDDDD, radius 5px */
  .quick-add-modal__content .product-details .pdp-buybox__actions .quick-add-modal__wishlist {
    flex-shrink: 0;
    width: 3.125rem;
    height: 3.125rem;
    min-width: 3.125rem;
    min-height: 3.125rem;
    padding: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #FFFFFF;
    border: 1px solid #DDDDDD;
    border-radius: 5px;
    transition: border-color 0.2s ease, background 0.2s ease;
  }

  .quick-add-modal__content .product-details .pdp-buybox__actions .quick-add-modal__wishlist:hover {
    border-color: rgb(var(--color-foreground) / 0.2);
    background: rgb(var(--color-foreground) / 0.04);
  }

  .quick-add-modal__content .product-details .pdp-buybox__actions .quick-add-modal__wishlist svg {
    width: 1.25rem;
    height: 1.25rem;
  }



  .quick-add-modal__content .product-details .pdp-buybox__actions .pdp-buybox__atc {
    flex: 1;
    min-width: 0;
  }

  /* Figma Frame 1171275432: CTA #FFD334, 16px 600, min-height 50px; stretch to remaining width */
  .quick-add-modal__content .product-details .pdp-buybox__actions .add-to-cart-button.button,
  .quick-add-modal__content .product-details .pdp-buybox__actions .shopify-payment-button__button,
  .quick-add-modal__content .product-details .pdp-buybox__actions .shopify-payment-button {
    flex: 1;
    min-width: 0;
    width: 100%;
  }

  .quick-add-modal__content .product-details .pdp-buybox__actions .add-to-cart-button.button,
  .quick-add-modal__content .product-details .pdp-buybox__actions .shopify-payment-button__button {
    min-height: 3.125rem;
    background-color: #FFD334 !important;
    color: #191919 !important;
    border-color: #FFD334 !important;
    font-weight: 600;
    font-size: 1rem;
    line-height: 1.364;
  }

  .quick-add-modal__content .product-details .pdp-buybox__actions .add-to-cart-button.button:hover,
  .quick-add-modal__content .product-details .pdp-buybox__actions .shopify-payment-button__button:hover {
    background-color: #f0c030 !important;
    color: #191919 !important;
    border-color: #f0c030 !important;
  }

  .quick-add-modal__content slideshow-slide:not([aria-hidden='false']) {
    content-visibility: auto;
  }

  .quick-add-modal__content .product-information__media {
    width: 100%;
    grid-column: 1 / span 1;
    grid-row: 1;
    position: relative;
    top: 0;
    animation: fadeIn 0.4s var(--animation-timing-fade-in) both;

    @media screen and (min-width: 750px) {
      position: sticky;
      grid-column: 1 / 4;
      overflow-y: auto;
      -ms-overflow-style: none;
      scrollbar-width: none;
    }

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

  .quick-add-modal__content .product-information__media media-gallery {
    pointer-events: none;

    @media screen and (min-width: 750px) {
      position: absolute;
      inset: 0;
    }
  }

  .quick-add-modal media-gallery {
    padding: 0;
  }

  .quick-add-modal__content .product-information__media slideshow-arrows {
    display: none;
  }

  .quick-add-modal__content .product-information__media slideshow-container {
    display: block;
  }

  .quick-add-modal__content .product-information__media slideshow-slides {
    display: flex;
    flex-direction: column;
    gap: var(--gap-2xs);
    overflow: visible;
    scroll-snap-type: none;
  }

  .quick-add-modal__content .product-information__media slideshow-slide {
    width: 100%;
    flex: none;
    scroll-snap-align: unset;
    position: relative;
    transform: none;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.3s var(--animation-easing);
  }

  .quick-add-modal__content .product-information__media slideshow-slide[aria-hidden='true'] {
    display: none;
  }

  @media screen and (min-width: 750px) {
    .quick-add-modal__content .product-information__media slideshow-slide[aria-hidden='true'] {
      display: block;
    }
  }

  .quick-add-modal__content .product-information__media slideshow-slide:nth-child(1) {
    animation: fadeSlideIn 0.3s var(--animation-timing-fade-in) both;

  }

  .quick-add-modal__content .product-information__media slideshow-slide:nth-child(2) {
    animation: fadeSlideIn 0.3s var(--animation-timing-fade-in) both;
    animation-delay: 0.05s;
  }

  .quick-add-modal__content .product-information__media slideshow-slide:nth-child(3) {
    animation: fadeSlideIn 0.3s var(--animation-timing-fade-in) both;
    animation-delay: 0.1s;
  }

  .quick-add-modal__content .product-information__media slideshow-controls {
    display: none;
  }

  .quick-add-modal__content .sticky-content,
  .quick-add-modal__content .sticky-content--desktop {
    top: 0;
  }

  .quick-add-modal__content .text-block.rte:not(product-price),
  .quick-add-modal__content .view-more-details__wrapper {
    display: none;
  }

  @keyframes fadeSlideIn {
    from {
      opacity: 0;
      transform: translateY(10px);
    }

    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
/* END_SNIPPET:quick-add-modal */

/* START_SNIPPET:quick-add (INDEX:335) */
/* Quick Add */
  .quick-add {
    --quick-add-offset: var(--padding-sm);
    --quick-add-top: calc(var(--quick-add-offset) + var(--padding-block-start));
    --quick-add-right: calc(var(--quick-add-offset) + var(--padding-inline-end));
    --quick-add-bottom: calc(var(--quick-add-offset) + var(--padding-block-end));
    --quick-add-left: calc(var(--quick-add-offset) + var(--padding-inline-end));

    position: absolute;
    display: var(--quick-add-mobile-display, none);
    flex-direction: column;
    justify-content: flex-end;
    inset: max(var(--quick-add-top), calc((var(--border-radius) + var(--quick-add-top)) * (1 - cos(45deg))))
      max(var(--quick-add-right), calc((var(--border-radius) + var(--quick-add-right)) * (1 - cos(45deg))))
      max(var(--quick-add-bottom), calc((var(--border-radius) + var(--quick-add-bottom)) * (1 - cos(45deg))))
      max(var(--quick-add-left), calc((var(--border-radius) + var(--quick-add-left)) * (1 - cos(45deg))));
    width: auto;
    height: auto;
    z-index: var(--layer-raised);
    cursor: default;
    pointer-events: none;
    bottom: 10px;

    @media screen and (min-width: 750px) {
      --quick-add-offset: var(--padding-md);

      display: var(--quick-add-display, flex);
    }
  }

  .quick-add .variant-option__button-label input[data-option-available='false'] {
    cursor: not-allowed;
  }

  .quick-add[class*='color-scheme-'] {
    background-color: transparent;
  }

  .quick-add__button {
    display: grid;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 307px;
    min-height: 33px;
    padding: 6px 78px;
    gap: 10px;
    background-color: #1f1f1f;
    color: #fff;
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    box-shadow: none;
    pointer-events: all;
    position: relative;
    overflow: hidden;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    white-space: nowrap;

    @media screen and (min-width: 750px) {
      display: none;
      padding: 6px 78px;
    }

    @media screen and (max-width: 400px) {
      padding: 6px 24px;
    }

    .quick-add[stay-visible] & {
      display: grid;
    }
  }

  .quick-add__button .add-to-cart-text {
    gap: 10px;
    white-space: nowrap;
  }

  .quick-add__button .add-to-cart-text__content {
    white-space: nowrap;
  }

  .quick-add__button .add-to-cart-text {
    gap: 0;
    line-height: 1;
    grid-row: 1 / span 1;
    grid-column: 1 / span 1;
    animation: none;

    @media screen and (min-width: 750px) {
      /* offset button padding to show a round button in a collapsed state */
      margin-inline: calc(var(--padding-sm) * -1);
      padding-inline: var(--padding-xs);
    }
  }

  .quick-add__button .add-to-cart-text--added {
    position: relative;
    grid-row: 1 / span 1;
    grid-column: 1 / span 1;
    justify-self: end;
    line-height: 1;

    @media screen and (min-width: 750px) {
      width: 0;
    }
  }

  /* Always show "JETZT HINZUFÜGEN" text (icon + text visible on all screens) */
  .quick-add__button .add-to-cart-text {
    gap: 10px;
  }

  .quick-add__button .add-to-cart-text__content {
    width: fit-content;
    opacity: 1;
    transform: translateX(0);
  }

  @container (min-width: 99px) {
    .quick-add[stay-visible] .add-to-cart-text,
    .quick-add__button:is(:focus, :hover) .add-to-cart-text {
      gap: 10px;

      @media screen and (min-width: 750px) {
        margin-inline: 0;
        padding-inline: 0;
      }
    }

    .quick-add[stay-visible] .add-to-cart-text__content,
    .quick-add__button:is(:focus, :hover) .add-to-cart-text__content {
      width: fit-content;
      opacity: 1;
      transform: translateX(0);
      bottom: 10px;
    }
  }

  .quick-add__button.atc-added .add-to-cart-text {
    opacity: 0;
  }

  .quick-add__button.atc-added .add-to-cart-text--added {
    opacity: 1;
    width: auto;

    @supports (width: calc-size(auto, size)) {
      width: calc-size(auto, size);
    }
  }

  .quick-add__button.atc-added .add-to-cart-text {
    animation-name: atc-fade-out;
  }

  .quick-add__button.atc-added .add-to-cart-text--added {
    animation-name: atc-fade-in;
  }

  .quick-add__product-form-component {
    height: 100%;
  }

  .quick-add__product-form-component .shopify-product-form {
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    container-type: inline-size;
    height: 100%;
  }

  .quick-add-modal .product-media {
    width: 100%;
    height: 100%;
  }

  .quick-add-modal deferred-media {
    display: none;
  }

  .quick-add-modal .media-gallery--carousel slideshow-component {
    --cursor: default;
  }

  @keyframes atc-fade-in {
    from {
      opacity: 0;
      transform: translateX(1em);
      position: absolute;
    }

    to {
      opacity: 1;
      transform: translateX(0);
      position: inherit;
    }
  }

  @keyframes atc-fade-out {
    from {
      opacity: 1;
      transform: translateX(0);
      position: inherit;
    }

    to {
      opacity: 0;
      transform: translateX(-1em);
      position: absolute;
    }
  }
/* END_SNIPPET:quick-add */

/* START_SNIPPET:resource-card (INDEX:339) */
.resource-card {
    --resource-card-secondary-image-opacity: 0;
    --resource-card-primary-image-opacity: calc(1 - var(--resource-card-secondary-image-opacity));

    display: flex;
    flex-direction: column;
    row-gap: var(--padding-xs);
    position: relative;
    text-decoration: none;
    height: 100%;
    opacity: 0;
    animation: fadeIn var(--animation-speed-medium) var(--animation-timing-fade-in) forwards;
  }

  .resource-card__link {
    position: absolute;
    inset: 0;
    z-index: 1;
  }

  .resource-card__content {
    display: flex;
    flex-direction: column;
    color: var(--color-foreground);
    gap: var(--padding-3xs);

    .price {
      font-weight: 500;
    }
  }

  .resource-card[data-resource-type='article'] .resource-card__content,
  .resource-card[data-resource-type='page'] .resource-card__content {
    gap: var(--padding-xs);
  }

  .resource-card__image {
    aspect-ratio: var(--resource-card-aspect-ratio, auto);
    object-fit: cover;
    border-radius: var(--resource-card-corner-radius);
    opacity: var(--resource-card-primary-image-opacity);
  }

  .resource-card__image--secondary {
    position: absolute;
    top: 0;
    opacity: var(--resource-card-secondary-image-opacity);
    border-radius: var(--resource-card-corner-radius);
  }

  .resource-card__media:empty {
    display: none;
  }

  .resource-card__image-placeholder {
    padding: var(--padding-sm);
    font-size: var(--font-size--lg);
    line-height: var(--line-height--display-loose);
    word-break: break-word;
    background-color: rgb(var(--color-foreground-rgb) / var(--opacity-5));
    aspect-ratio: var(--resource-card-aspect-ratio, auto);
    border-radius: var(--resource-card-corner-radius);
    color: var(--color-foreground);
  }

  .resource-card__title {
    margin-block: 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    line-height: 1.3;
  }

  .resource-card__title.paragraph {
    line-height: 1.3;
  }

  .resource-card--overlay {
    height: 100%;

    &::before {
      content: '';
      position: absolute;
      inset: 50% 0 0;
      background: var(--gradient-image-overlay);
      border-radius: var(--resource-card-corner-radius);
      pointer-events: none;
      z-index: var(--layer-flat);
    }
  }

  .resource-card--overlay .resource-card__image {
    height: 100%;
  }

  .resource-card--overlay .resource-card__content {
    position: absolute;
    inset: auto 0 0;
    padding: var(--padding-lg) var(--padding-lg) var(--padding-sm);
    z-index: var(--layer-raised);
  }

  .resource-card--overlay .resource-card__title {
    color: var(--color-white);
  }

  /* Collection images */
  .resource-card__image-wrapper {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--gap-2xs);
  }

  .resource-card__collection-image {
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: calc(var(--card-corner-radius) - (var(--padding-xs) / 2));
  }

  .resource-card__subtext {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
    margin-block-start: 0;
  }

  .resource-card__subtext.paragraph {
    font-size: var(--font-size--body-sm);
    line-height: var(--line-height--body-tight);
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .resource-card:has(.resource-card__image--secondary) {
    &:hover,
    &:focus {
      --resource-card-secondary-image-opacity: 1;
    }
  }
/* END_SNIPPET:resource-card */

/* START_SNIPPET:resource-image (INDEX:340) */
.resource-image {
    position: relative;
    display: flex;
    width: 100%;
    height: 100%;
    z-index: var(--layer-base);
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
    aspect-ratio: var(--ratio);
  }

  .resource-image .image-block__image {
    object-fit: cover;
    width: 100%;
    height: 100%;
  }

  .resource-image--placeholder {
    width: 100%;
    height: 100%;
  }
/* END_SNIPPET:resource-image */

/* START_SNIPPET:search-modal (INDEX:346) */
/* Search modal style */
  .search-modal {
    --search-border-radius: var(--style-border-radius-popover);
    --search-border-width: var(--style-border-width);
  }

  .search-modal__button {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .search-modal__content {
    /* Approx set the top so when the content is at max height, the modal is centered */
    --modal-top-margin: calc(50dvh - var(--modal-max-height) / 2 - 2rem);
    --modal-width: 66dvw;

    padding: 0;
    border: var(--style-border-popover);

    @media screen and (min-width: 750px) {
      width: var(--modal-width);
      margin-block-start: var(--modal-top-margin);
      overflow: hidden;
    }

    @media screen and (min-width: 833px) {
      max-width: unset;
    }

    @media screen and (min-width: 833px) and (max-width: 1000px) {
      --modal-width: 800px;
    }

    @media screen and (min-width: 1000px) {
      --modal-width: 900px;
    }
  }

  /* Hide the default dialog backdrop on small screens */
  @media screen and (max-width: 749px) {
    .search-modal__content::backdrop {
      display: none;
    }
  }

  .dialog-modal[open].search-modal__content {
    transform-origin: bottom center;
    animation: search-element-slide-in-bottom 300ms var(--ease-out-quad) forwards;
    border-radius: var(--search-border-radius);
    box-shadow: var(--shadow-popover);

    @media screen and (max-width: 749px) {
      border-radius: 0;
    }
  }

  .dialog-modal.search-modal__content.dialog-closing {
    animation: search-element-slide-out-bottom 200ms var(--ease-out-quad) forwards;
  }

  .search-modal__content[open] {
    display: flex;
  }

  .search-modal__content :is(.predictive-search-dropdown, .predictive-search-form__content-wrapper) {
    position: relative;
  }

  .dialog-modal
    .predictive-search-form__header:has(
      .predictive-search__reset-button:not(.predictive-search__reset-button[hidden])
    )::before {
    content: '';
    position: absolute;
    right: calc(var(--padding-sm) + var(--minimum-touch-target));
    top: 0;
    bottom: 0;
    width: var(--border-width-sm);
    background-color: var(--color-border);
  }

  .dialog-modal
    .predictive-search-form__header:has(.predictive-search__reset-button:not(.predictive-search__reset-button[hidden]))
    > .predictive-search__close-modal-button {
    &::before {
      content: none;
    }
  }

  @media screen and (min-width: 750px) {
    .dialog-modal
      .predictive-search-form__header:has(
        .predictive-search__reset-button:not(.predictive-search__reset-button[hidden])
      )::before {
      right: calc(var(--padding-2xl) * 2);
    }
  }
/* END_SNIPPET:search-modal */

/* START_SNIPPET:search (INDEX:347) */
.search-action {
    --search-border-radius: var(--style-border-radius-inputs);
    --search-border-width: var(--style-border-width-inputs);

    display: flex;
  }

  .header__column--center .search-action {
    width: auto;
    flex-grow: 1;
  }

  :is(.header__column--left, .header__column--center) .search-action {
    @media screen and (min-width: 750px) {
      margin-inline: calc(var(--padding-lg) * -1);
    }
  }

  .header__column--right .search-action {
    @media screen and (min-width: 750px) {
      margin-inline: calc(var(--gap-md) * -1) calc(var(--gap-xs) * -1);
    }
  }
/* END_SNIPPET:search */

/* START_SNIPPET:section (INDEX:348) */
.section-wrapper {
    --section-height-offset: 0px;
  }

  .section[data-shopify-visual-preview] {
    min-height: var(--section-preview-height);
    padding-top: 0;
  }

  .section[data-shopify-visual-preview] .custom-section-background {
    display: none;
  }

  body:has(> #header-group > .header-section > #header-component[transparent]):not(
      :has(> #header-group > .header-section + .shopify-section)
    )
    > main
    > .section-wrapper:first-child {
    --section-height-offset: var(--header-group-height, 0);
  }

  .custom-section-background {
    grid-column: 1 / -1;
  }

  .custom-section-content {
    z-index: var(--layer-flat);
  }
/* END_SNIPPET:section */

/* START_SNIPPET:slideshow (INDEX:357) */
slideshow-slides {
    align-items: var(--slideshow-align-items, normal);
  }

  .slideshow--stretch-content slideshow-slides > * {
    height: auto;
  }

  @media screen and (max-width: 1023px) {
    slideshow-container {
      width: auto;
    }
    .product-information--three-column slideshow-container {
      margin: 0;
    }
  }
/* END_SNIPPET:slideshow */

/* START_SNIPPET:sorting (INDEX:359) */
.sorting-filter__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-inline: var(--drawer-padding) 0;
    padding-block: var(--padding-sm);
    margin-inline-end: var(--margin-md);
    position: relative;
    display: none;
  }

  .sorting-filter__container .facets__label {
    font-size: var(--font-h4--size);
  }

  .sorting-filter__select-wrapper {
    display: flex;
    position: relative;
    border-radius: var(--variant-picker-button-radius);
    align-items: center;
    overflow: clip;
    padding: var(--padding-2xs) var(--padding-xs);
  }

  .sorting-filter__select-wrapper:has(:focus-visible) {
    outline: var(--focus-outline-width) solid currentcolor;
    outline-offset: var(--focus-outline-offset);
  }

  .sorting-filter__select-wrapper:has(:focus-visible) .sorting-filter__select {
    outline: none;
  }

  .sorting-filter__container .sorting-filter__select {
    appearance: none;
    border: 0;
    margin: 0;
    cursor: pointer;
    width: 100%;
    padding-inline-end: var(--icon-size-2xs);
    text-align: right;

    /* Needed for Safari */
    text-align-last: right;
  }

  .sorting-filter__select .icon {
    position: absolute;
    right: var(--padding-md);
    top: 50%;
    transform: translateY(-50%);
    width: var(--icon-size-2xs);
    height: var(--icon-size-2xs);
    pointer-events: none;
  }

  .sorting-filter {
    @media screen and (min-width: 750px) {
      z-index: var(--facets-upper-z-index);
    }
  }

  .sorting-filter__options {
    display: flex;
    right: 0;
    flex-direction: column;
    gap: var(--margin-3xs);
    padding: calc(var(--drawer-padding) / 2);
    color: var(--Blues-Primary-Blue, #1E35B1);
    overflow-y: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;

    &::-webkit-scrollbar {
      display: none;
    }
  }

  .sorting-filter__option {
    cursor: pointer;
    display: grid;
    grid-template-columns: var(--icon-size-sm) 1fr;
    gap: var(--margin-2xs);
    min-width: 180px;
    padding: var(--padding-2xs) calc(var(--drawer-padding) / 2) var(--padding-2xs) var(--padding-2xs);

    &:hover {
      border-radius: calc(var(--style-border-radius-popover) / 2);
      background-color: rgb(var(--color-foreground-rgb) / var(--opacity-8));
    }

    &:focus {
      border-radius: calc(var(--style-border-radius-popover) / 2);
    }
  }

  .sorting-filter__input {
    display: none;

    &:checked + .sorting-filter__checkmark + .sorting-filter__label {
      font-weight: 500;
    }
  }

  .sorting-filter__checkmark {
    visibility: hidden;
  }

  *:checked ~ .sorting-filter__checkmark {
    visibility: visible;
  }

  .sorting-filter__label {
    color: var(--Blues-Primary-Blue, #1E35B1);
    cursor: pointer;
    pointer-events: none;
  }

  .facets-toggle--no-filters .sorting-filter__select-wrapper {
    @media screen and (max-width: 749px) {
      padding-inline-start: 0;
    }
  }

  .facets-mobile-wrapper .sorting-filter .facets__panel {
    padding-inline: 0;
    position: relative;
  }

  .facets-mobile-wrapper .sorting-filter .facets__status {
    display: none;
  }

  .facets-mobile-wrapper:has(> :nth-child(2)) .sorting-filter .sorting-filter__options {
    left: 0;
    right: unset;
  }

  .facets-mobile-wrapper .sorting-filter .facets__label {
    margin-inline-end: var(--margin-2xs);
    font-size: var(--font-paragraph--size);
    color: var(--Blues-Primary-Blue, #1E35B1);
  }

  .facets-mobile-wrapper .sorting-filter__options {
    border-radius: var(--style-border-radius-popover);
    position: absolute;
    top: 0;
    right: 0;
    width: max-content;
    min-width: var(--facets-panel-min-width);
    max-width: var(--facets-panel-width);
    max-height: var(--facets-panel-height);
    z-index: var(--facets-upper-z-index);
    box-shadow: var(--shadow-popover);
    border: var(--style-border-popover);
    background-color: var(--color-background);
    overflow-y: hidden;
    padding: var(--padding-sm);
    gap: var(--gap-sm);
  }

  .facets-toggle .sorting-filter__container {
    @media screen and (max-width: 749px) {
      padding: 0;
    }
  }

  .facets-toggle .sorting-filter__container .facets__label {
    @media screen and (max-width: 749px) {
      display: none;
    }
  }

  .facets-toggle .sorting-filter::before {
    @media screen and (max-width: 749px) {
      display: none;
    }
  }

  .facets--drawer .sorting-filter {
    @media screen and (min-width: 750px) {
      display: none;
    }
  }

  /* Collection PLP mobile: hide drawer sort row when sticky Sortieren bar is present (no duplicate UI). */
  @media screen and (max-width: 749px) {
    main[data-template='collection']:has([data-plp-mobile-sticky-actions]) #filters-drawer .sorting-filter__container {
      display: none !important;
    }
  }

  .sorting-filter__options {
    block-size: 0;
    overflow-y: clip;
    opacity: 0;
    interpolate-size: allow-keywords;
    transition: content-visibility var(--animation-speed-slow) allow-discrete,
      padding-block var(--animation-speed-slow) var(--animation-easing),
      opacity var(--animation-speed-slow) var(--animation-easing),
      block-size var(--animation-speed-slow) var(--animation-easing);
  }

  details[open] .sorting-filter__options {
    opacity: 1;
    block-size: auto;

    @starting-style {
      block-size: 0;
      opacity: 0;
      overflow-y: clip;
    }

    &:focus-within {
      overflow-y: visible;
    }
  }
/* END_SNIPPET:sorting */

/* START_SNIPPET:text (INDEX:368) */
:root {
    --text-align-default: left;
  }

  [style*='--horizontal-alignment: center'] .text-block {
    --text-align-default: center;
  }

  [style*='--horizontal-alignment: flex-end'] .text-block {
    --text-align-default: right;
  }

  [style*='--horizontal-alignment: flex-start'] > .text-block {
    --text-align-default: left;
  }

  [style*='--horizontal-alignment: center'] > .text-block {
    --text-align-default: center;
  }

  [style*='--horizontal-alignment: flex-end'] > .text-block {
    --text-align-default: right;
  }

  .text-block {
    width: var(--width);
    max-width: 100%;
    display: flex;
    flex-direction: column;
    align-items: var(--horizontal-alignment);
  }

  .text-block > * {
    width: var(--width);
    max-width: var(--max-width, 100%);
    text-align: var(--text-align, var(--text-align-default));
    text-wrap: var(--text-wrap);
  }

  .text-block:not(.text-block--full-width).rte,
  .text-block:not(.text-block--full-width).paragraph {
    /* Safari doesn't support pretty, so fallback to balance */
    text-wrap: balance;
    text-wrap: pretty;
  }

  .text-block:not(.text-block--full-width):is(.h1, .h2, .h3, .h4, .h5, .h6) {
    text-wrap: balance;
  }

  /* Hide underline unless text is using paragraph styles. */
  .text-block:is(.h1, .h2, .h3, .h4, .h5, .h6) a {
    text-decoration-color: transparent;
  }

  .text-block h1,
  .text-block.h1 > * {
    margin-block: var(--font-h1--spacing);
  }

  .text-block h2,
  .text-block.h2 > * {
    margin-block: var(--font-h2--spacing);
  }

  .text-block h3,
  .text-block.h3 > * {
    margin-block: var(--font-h3--spacing);
  }

  .text-block h4,
  .text-block.h4 > * {
    margin-block: var(--font-h4--spacing);
  }

  .text-block h5,
  .text-block.h5 > * {
    margin-block: var(--font-h5--spacing);
  }

  .text-block h6,
  .text-block.h6 > * {
    margin-block: var(--font-h6--spacing);
  }

  .text-block p,
  .text-block.p > * {
    margin-block: var(--font-paragraph--spacing);
  }

  .text-block > *:first-child {
    margin-block-start: 0;
  }

  .text-block > *:last-child {
    margin-block-end: 0;
  }

  .text-block--align-center,
  .text-block--align-center > * {
    margin-inline: auto;
  }

  .text-block--align-right,
  .text-block--align-right > * {
    margin-inline-start: auto;
  }

  .text-block--background {
    background-color: var(--text-background-color);
    border-radius: var(--text-corner-radius);

    /* To avoid text being cropped when using a border radius we add a minimum padding. */
    padding-block-start: max(var(--text-padding), var(--padding-block-start, 0));
    padding-block-end: max(var(--text-padding), var(--padding-block-end, 0));
    padding-inline-start: max(var(--text-padding), var(--padding-inline-start, 0));
    padding-inline-end: max(var(--text-padding), var(--padding-inline-end, 0));
  }

  .custom-color,
  .custom-color > :is(h1, h2, h3, h4, h5, h6, p, *) {
    color: var(--color);
  }
/* END_SNIPPET:text */

/* START_SNIPPET:video (INDEX:383) */
.video-interaction-hint {
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: var(--layer-flat);
  }

  .video-interaction-hint:hover {
    opacity: 1;
  }
/* END_SNIPPET:video */

/* START_SNIPPET:volume-pricing-info (INDEX:384) */
.volume-pricing-info {
    display: inline-flex;
  }

  .volume-pricing-info__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: var(--minimum-touch-target);
    height: var(--minimum-touch-target);
    color: var(--color-foreground-secondary);
    cursor: pointer;
    transition: color var(--animation-speed) var(--animation-easing);
    flex-shrink: 0;
  }

  .volume-pricing-info__button:hover {
    color: var(--color-foreground);
  }

  .volume-pricing-info__button .svg-wrapper {
    width: var(--icon-size-sm);
    height: var(--icon-size-sm);
  }

  .volume-pricing-info__button--with-label {
    width: auto;
    gap: var(--gap-sm);
  }

  .volume-pricing-info__popover {
    --volume-pricing-popover-max-width: 320px;
    --volume-pricing-popover-spacing: 8px;
    --volume-pricing-popover-viewport-margin: 16px;

    min-inline-size: 280px;
    max-inline-size: var(--volume-pricing-popover-max-width);
    background: var(--color-background);
    border: var(--style-border-popover);
    border-radius: var(--style-border-radius-popover, 0);
    box-shadow: var(--shadow-popover);
    overflow: hidden;
    padding: 0;
    margin: 0;
    transition-property: display, opacity, translate;
    transition-duration: 0.3s;
    transition-timing-function: var(--ease-out-quad);
    transition-behavior: allow-discrete;
    translate: 0 20px;
    opacity: 0;
  }

  /* Native anchor positioning for supported browsers */
  .volume-pricing-info__popover {
    inset: unset;
    top: calc(anchor(bottom) + var(--volume-pricing-popover-spacing));
    left: anchor(left);
  }

  @supports (position-try-fallbacks: --top-left) {
    .volume-pricing-info__popover {
      position-try-fallbacks: --top-left;
    }

    @position-try --top-left {
      top: calc(anchor(top) - var(--volume-pricing-popover-spacing));
      bottom: auto;
      transform: translateY(-100%);
    }
  }

  /* Fallback positioning using custom properties */
  @supports not (position-anchor: --volume-pricing-trigger) {
    .volume-pricing-info__popover {
      position: fixed;
      top: calc(var(--anchor-bottom) * 1px + var(--volume-pricing-popover-spacing));
      left: max(
        var(--volume-pricing-popover-viewport-margin),
        min(
          var(--anchor-left) * 1px,
          100vw - var(--volume-pricing-popover-max-width) - var(--volume-pricing-popover-viewport-margin)
        )
      );
    }
  }

  .volume-pricing-info__popover:popover-open {
    translate: 0 0;
    opacity: 1;
  }

  @starting-style {
    .volume-pricing-info__popover:popover-open {
      translate: 0 20px;
      opacity: 0;
    }
  }

  .volume-pricing-info__rules {
    display: flex;
    flex-direction: column;
    gap: var(--gap-2xs);
    padding: var(--padding-md);
    font-size: var(--font-size--xs);
  }

  .volume-pricing-info__rules,
  .volume-pricing-info__rules > span {
    color: rgb(var(--color-foreground-rgb) / var(--opacity-subdued-text));
  }

  .volume-pricing-info__table {
    display: flex;
    flex-direction: column;
  }

  .volume-pricing-info__row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: var(--padding-sm) var(--padding-md);
    font-size: var(--font-size--sm);
    background: var(--color-background);
    border-inline-start: 3px solid transparent;
    transition: border-color var(--animation-speed) var(--animation-easing);
  }

  .volume-pricing-info__row:nth-child(odd) {
    background: rgb(var(--color-foreground-rgb) / var(--opacity-5));
  }

  .volume-pricing-info__row--active {
    border-inline-start-color: var(--color-foreground);
    font-weight: var(--font-weight-medium);
  }

  .volume-pricing-info__quantity {
    color: var(--color-foreground);
  }

  .volume-pricing-info__price {
    display: flex;
    align-items: center;
    color: var(--color-foreground);
  }

  .volume-pricing-info__checkmark {
    display: none;
    width: var(--icon-size-sm);
    height: var(--icon-size-sm);
    color: var(--color-primary);
  }

  .volume-pricing-info__row--active .volume-pricing-info__checkmark {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
/* END_SNIPPET:volume-pricing-info */

/* START_SNIPPET:with-timer-card (INDEX:385) */
.with-timer-card {
    position: relative;
    background: rgb(var(--color-background-rgb));
    border-radius: var(--border-radius-sm);
    border: 1px solid rgb(var(--color-foreground-rgb) / var(--opacity-10));
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
  }

  .with-timer-card__link {
    position: absolute;
    inset: 0;
    z-index: var(--layer-flat);
  }

  .with-timer-card__media,
  .with-timer-card__content :is(button, a) {
    position: relative;
    z-index: var(--layer-raised);
  }

  .with-timer-card__media {
    position: relative;
    background: rgb(var(--color-foreground-rgb) / var(--opacity-5));
    aspect-ratio: 1 / 1;
    overflow: hidden;
  }

  .with-timer-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  .with-timer-card__image--placeholder {
    background: rgb(var(--color-foreground-rgb) / var(--opacity-10));
  }

  .with-timer-card__wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: var(--layer-raised);
    width: 32px;
    height: 32px;
    border-radius: 999px;
    border: 1px solid rgb(var(--color-foreground-rgb) / var(--opacity-10));
    background: rgb(var(--color-background-rgb));
    display: grid;
    place-items: center;
    padding: 0;
    cursor: pointer;
  }

  .with-timer-card__wishlist svg {
    width: 16px;
    height: 16px;
  }

  .with-timer-card__content {
    padding: var(--padding-sm);
    display: flex;
    flex-direction: column;
    gap: var(--gap-xs);
  }

  .with-timer-card__rating-overlay {
    position: absolute;
    left: 12px;
    bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: var(--gap-2xs);
    font-size: var(--font-size--xs);
    background: rgb(var(--color-background-rgb));
    border-radius: var(--border-radius-sm);
    padding: 6px 10px;
    box-shadow: 0 0 0 1px rgb(var(--color-foreground-rgb) / var(--opacity-10));
    font-variant-numeric: tabular-nums;
  }

  .with-timer-card__rating-value,
  .with-timer-card__rating-star {
    display: none;
  }

  .with-timer-card__stars {
    display: inline-flex;
    gap: 2px;
    line-height: 1;
  }

  .with-timer-card__star {
    font-size: 14px;
    color: rgb(var(--color-foreground-rgb) / var(--opacity-20));
  }

  .with-timer-card__star.is-filled {
    color: #f5a623;
  }

  .with-timer-card__title {
    font-family: var(--font-body--family);
    font-weight: 600;
    font-size: var(--font-size--sm);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: calc(2 * 1.4em);
  }

  .with-timer-card__price-row {
    display: flex;
    align-items: baseline;
    gap: var(--gap-2xs);
    flex-wrap: wrap;
  }

  .with-timer-card__price-row .price {
    font-weight: 700;
    font-size: var(--font-size--md);
  }

  .with-timer-card__price-row .compare-at-price {
    text-decoration: line-through;
    color: rgb(var(--color-foreground-rgb) / var(--opacity-60));
  }

  .with-timer-card__discount {
    color: #c4031b;
    font-weight: 600;
  }

  /* Mobile rating: compact value + star + count */
  @media screen and (max-width: 749px) {
    .with-timer-card__rating-overlay {
      left: 10px;
      bottom: 10px;
      padding: 4px 8px;
      gap: 6px;
    }

    .with-timer-card__stars {
      display: none;
    }

    .with-timer-card__rating-value,
    .with-timer-card__rating-star {
      display: inline;
      font-size: var(--font-size--xs);
      line-height: 1;
    }

    .with-timer-card__rating-star {
      color: #f5a623;
      margin-inline-start: -2px;
    }

    .with-timer-card__rating-count {
      margin-inline-start: 2px;
    }
  }
/* END_SNIPPET:with-timer-card */

/* START_SNIPPET:with-timer-list (INDEX:386) */
@media screen and (max-width: 749px) {
    .with-timer__mobile-grid-inner {
      justify-items: center;
    }

    .with-timer__mobile-grid-inner .resource-list__item {
      display: flex;
      justify-content: center;
      width: 100%;
    }

    .with-timer__mobile-grid-inner .category-panels-card {
      position: relative;
      z-index: 2;
    }
  }
/* END_SNIPPET:with-timer-list */