/** Shopify CDN: Minification failed

Line 528:10 Unexpected "{"
Line 528:19 Expected ":"
Line 529:14 Expected identifier but found whitespace
Line 529:16 Unexpected "{"
Line 529:25 Expected ":"
Line 529:76 Expected ":"
Line 530:17 Expected identifier but found whitespace
Line 530:19 Unexpected "{"
Line 530:28 Expected ":"
Line 530:82 Expected ":"
... and 61 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:collage-pic-products (INDEX:27) */
.collage-media-wrapper {
  position: relative;
  width: 100%;
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.collage-poster-img,
.collage-poster-video {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  top: 0;
  left: 0;
}


.see{font-size:1.1rem;}

  /* Mobile: vertical stacking - full width */
  .collage-layout {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
    width: 100%;
    max-width: 100%;
  }

  /* Desktop: side by side, equal column heights (right frame matches poster) */
  @media screen and (min-width: 750px) {
    .collage-layout {
      display: grid;
      /* Image ~40%, products ~60% (no hard min so the poster never dominates) */
      grid-template-columns: 1fr 1fr;
      gap: 1.5rem;
      align-items: stretch;
    }
  }

  @media screen and (min-width: 1440px) {
    .collage-layout {
      display: grid;
      /* Image ~40%, products ~60% (no hard min so the poster never dominates) */
      grid-template-columns: 4fr 6fr;
      gap: 1.5rem;
      align-items: stretch;
    }
  }

  .collage-poster {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 0rem;
    overflow: hidden;
    position: relative;
    display: block;
  }

  .collage-poster-link {
    display: block;
    width: 100%;
    height: 100%;
  }

  @media screen and (min-width: 750px) {
    .collage-poster {
      border-radius: 0rem;
    }
  }

  .collage-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
  }

  /* Fallback for browsers that don't support aspect-ratio */
  @supports not (aspect-ratio: 1 / 1) {
    .collage-poster {
      height: 0;
      padding-bottom: 100%;
    }

    .collage-poster::before {
      content: '';
      display: block;
      padding-top: 100%;
    }
  }

  @supports (aspect-ratio: 1 / 1) {
    .collage-poster::before {
      display: none;
    }
  }

  /* Collection column */
  .collage-collection {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    width: 100%;
    max-width: 100%;
    min-width: 0;
  }

  @media screen and (min-width: 750px) {
    .collage-collection {
      height: 100%;
      min-width: 0;
      /* Was overflow:hidden — clipped the card hover shadow. The Swiper itself
         still hides off-screen slides, so the column doesn't need to clip. */
      overflow: visible;
    }
  }

  .collage-collection-header {
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
  }

  @media screen and (min-width: 750px) {
    .collage-collection-header {
      font-size: 2.2rem;
    }
  }

  .collage-sliding-container {
    width: 100%;
    min-width: 0;
  }

  /* ===== Swiper slider frame ===== */
  .collage-slider-frame {
    position: relative;
    width: 100%;
    min-width: 0;
  }

  /* Native scroll-snap viewport (replaced Swiper). Horizontal panning is handled
     by the browser on the compositor thread, so dragging never blocks the main
     thread. No `touch-action: pan-y` here — that would block the native swipe. */
  .collage-swiper {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    overscroll-behavior-x: contain;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
  }

  .collage-swiper::-webkit-scrollbar {
    display: none;
  }

  /* Room for the card's resting shadow (reach ~3.9px), which a scroll container
     would otherwise clip flat. Bleed outward and cancel it with equal negative
     margins, expanding width by the same amount so the content box — and the
     computed card width — is unchanged. 8px stays inside .page-width's 1rem
     padding, so this can't cause horizontal page overflow.
     The desktop rule below replaces this with its own frame-aware values. */
  .collage-swiper {
    width: calc(100% + 16px);
    margin: -8px;
    padding: 8px;
    box-sizing: border-box;
    scroll-padding-left: 8px;
    scroll-padding-right: 8px;
    scroll-padding-inline: 8px;
  }

  /* While the mouse-drag shim is active, snapping and smooth-scroll must be off
     so scrollLeft can follow the cursor 1:1. */
  .collage-swiper.is-dragging {
    scroll-snap-type: none;
    scroll-behavior: auto;
    cursor: grabbing;
  }

  .collage-track {
    display: flex;
    align-items: stretch;
    box-sizing: border-box;
  }

  /* 2 cards up to 1440, 3 above — was JS breakpoints, now pure CSS.
     Spacing uses margin, NOT flexbox `gap`, on purpose: scroll-snap ships in
     Safari 11 but flex `gap` only in 14.1/iOS 14.5, and there is no reliable
     @supports query for it (those versions support grid gap, so the query
     lies). Margins work everywhere, so no polyfill and no runtime cost. */
  .collage-swiper .collage-swiper-slide {
    flex: 0 0 calc((100% - 8px) / 2);
    margin-right: 8px;
    scroll-snap-align: start;
  }
  .collage-swiper .collage-swiper-slide:last-child {
    margin-right: 0;
  }
  @media screen and (min-width: 750px) {
    .collage-swiper .collage-swiper-slide {
      flex-basis: calc((100% - 20px) / 2);
      margin-right: 20px;
    }
  }
  @media screen and (min-width: 1440px) {
    .collage-swiper .collage-swiper-slide {
      flex-basis: calc((100% - 8px) / 3);
      margin-right: 4px;
    }
  }

  /* Prevent native image/link dragging from swallowing the swipe gesture */
  .collage-swiper .collage-swiper-slide a,
  .collage-swiper .collage-swiper-slide img {
    -webkit-user-drag: none;
    user-select: none;
  }

  /* Each slide holds one product card and stretches to equal height */
  .collage-swiper .collage-swiper-slide {
    height: auto;
    display: flex;
    min-width: 0;
    box-sizing: border-box;
    position: relative;
  }

  /* Cards are spaced/individual (Top Products look), so no vertical
     separators between them. */

  .collage-swiper .collage-swiper-slide .product-card-5-container,
  .collage-swiper .collage-swiper-slide .product-card-5 {
    width: 100%;
    height: 100%;
    max-width: none;
    margin: 0;
    box-sizing: border-box;
  }

  /* ===== Slider controls (arrows + progress) ===== */
  /* Mobile: controls shown below the slider so it reads as swipeable */
  .collage-slider-container {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0 2px;
  }

  .collage-caret-left,
  .collage-caret-right {
    flex-shrink: 0;
    width: 1.375rem;
    height: 1.375rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .collage-caret-left:disabled,
  .collage-caret-right:disabled {
    opacity: 0.3;
    cursor: not-allowed;
  }

  .collage-progress-indicators-container {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .collage-progress-indicators {
    display: flex;
    flex-direction: row;
    gap: 0.25rem;
    align-items: center;
    justify-content: center;
    width: 100%;
  }

  .collage-progress-segment {
    flex: 1 0 0;
    height: 0.25rem;
    background: #C9CACA;
    border-radius: 0rem;
    transition: background-color 0.3s ease;
    cursor: pointer;
  }

  .collage-progress-segment.active {
    background: var(--brand-primary, #ff671b);
  }

  /* Desktop: bordered frame with arrows + progress bar pinned to the bottom */
  @media screen and (min-width: 750px) {
    /* Fill the stretched grid column so the frame height matches the poster */
    .collage-sliding-container {
      height: 100%;
      display: flex;
      flex-direction: column;
      min-height: 0;
    }

    .collage-slider-frame {
      flex: 1;
      min-height: 0;
      display: flex;
      flex-direction: column;
      /* Transparent frame — only the cards read as white (Top Products look). */
      border: 0;
      background: transparent;
      overflow: visible;
      padding-bottom: 46px; /* room for the controls bar */
    }

    /* Swiper grows to fill the frame; slides stretch to full height */
    .collage-swiper {
      flex: 1;
      min-height: 0;
    }

    .collage-swiper .collage-track {
      height: 100%;
    }

    .collage-swiper .collage-swiper-slide .product-card-5-container,
    .collage-swiper .collage-swiper-slide .product-card-5 {
      border: none;
      /* Keep each card's own soft shadow so cards read as individual white
         cards on the transparent frame. */
    }

    .collage-slider-container {
      display: flex;
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      height: 46px;
      align-items: center;
      gap: 10px;
      padding: 8px 0;
      background: transparent;
      border-top: 0;
      box-sizing: border-box;
    }

    .collage-progress-indicators-container {
      width: calc(100% - 72px);
      margin: 0 8px;
    }

    .collage-progress-segment {
      height: 4px;
    }
  }

  /* ===== See More / header ===== */
  /* Mobile header */
  .collage-section-header {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
    align-items: flex-start;
    margin-bottom: 8px;
    padding-bottom: 0;
    border-bottom: none;
    padding-top:0%;
  }

  .collage-section-header .section-header {
    font-size: 2.4rem;
    margin: 0;
    color: var(--text-and-icon-primary, #1B1717);
    font-family: Manrope, sans-serif;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.015rem;
  }

  /* Desktop header */
  @media screen and (min-width: 750px) {
    .collage-section-header {
      flex-direction: row;
      align-items: baseline;
      gap: 1rem;
    }

    .collage-section-header .section-header {
      font-size: 3vh;
      font-weight: 600;
    }
  }

  .collage-see-more {
    display: flex;
    align-items: center;
    font-size:24px;
  }

  /* Mobile see more link */
  .collage-see-more-link {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.25rem 0;
    text-decoration: none;
    color: var(--text-and-icon-primary, #1B1717);
    font-family: Manrope, sans-serif;
    font-size: 1.8rem;
    font-style: normal;
    font-weight: 700;
    line-height: 120%;
    letter-spacing: -0.01125rem;
    transition: color 0.3s ease;
  }

  .collage-see-more-link svg {
     width: 1.4rem!important;
    height: 1rem!important;
    color:black;
    transition: transform 0.3s ease;
  }
  svg.dot-separator {
     width: 0.4rem !important;
    height: 1rem !important;
    transition: transform 0.3s ease;
  }

  /* Desktop see more link */
  @media screen and (min-width: 750px) {
    .collage-see-more-link {
      font-size: 1.575rem;
      gap: 1rem;
    }

    .collage-see-more-link svg {
      width: 1.25rem;
      height: 1.25rem;
    }
  }

  .collage-see-more-link:hover {
    color: var(--brand-primary, #ff671b);
  }

  .collage-see-more-link:hover svg {
    transform: translateX(2px);
  }

@media (max-width: 750px){
  .dot-separator{ display: none !important; }
  .see{ font-size: 19px; }
}
.collage-see-more-link{ font-weight: 500 !important; }
h2.section-header.inline-richtext.h1.scroll-trigger.animate--slide-in{ font-weight: 600 !important; }

/* ===== Desktop hover: subtle lift + soft shadow ===== */
@media (hover: hover) and (min-width: 750px){
  /* Room on all sides so the hover shadow isn't clipped by the slider. */
  .collage-swiper{
    width: calc(100% - 2px);
    /* Vertical padding was 5px/19px, which clipped the hover shadow: it needs
       7px above (blur/2 - offsetY + the 4px lift) and 19px below. 12/24 clears
       both. The negative margins subtract exactly the 12px that was added
       (7 top + 5 bottom), so the frame's height and the cards' positions are
       byte-identical to before. Horizontal padding is inward here on purpose —
       the desktop frame has room, and it keeps the bleed off the grid column. */
    padding: 12px 28px 24px;
    margin-top: -7px;
    margin-bottom: -5px;
    margin-inline: 1px;
    /* Match the inline padding so snap points line up with the padded edge.
       Physical longhands first for Safari < 15, logical for everything else. */
    scroll-padding-left: 28px;
    scroll-padding-right: 28px;
    scroll-padding-inline: 28px;
  }
  .collage-swiper .collage-swiper-slide .product-card-5{
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .collage-swiper .collage-swiper-slide:hover{ z-index: 3; }
  .collage-swiper .collage-swiper-slide:hover .product-card-5{
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  }
}
/* END_SECTION:collage-pic-products */

/* START_SECTION:collection-blogs (INDEX:29) */
/* ===== Scoped padding controlled by settings ===== */
.section-{{ section.id }}-padding {
  padding-top: {{ section.settings.padding_top | times: 0.75 | round: 0 }}px;
  padding-bottom: {{ section.settings.padding_bottom | times: 0.75 | round: 0 }}px;
}
@media screen and (min-width: 750px) {
  .section-{{ section.id }}-padding {
    padding-top: {{ section.settings.padding_top }}px;
    padding-bottom: {{ section.settings.padding_bottom }}px;
  }
}

.collection-features { box-sizing: border-box; }
.collection-features *, .collection-features *::before, .collection-features *::after { box-sizing: border-box; }

.collection-features {
  background: #fcf9f5;
  padding: 3rem 10rem 8rem 10rem;
  display: flex;
  flex-direction: row;
  gap: 5.6rem;
  align-items: center;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}
.collection-features__container {
  display: flex;
  max-width: 1380px;
  margin: auto;
  flex-direction: column;
  gap: 4.8rem;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
  position: relative;
  overflow: hidden;
}
.collection-features__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.collection-features__subtitle {
  color: var(--text-and-icon-secondary, #3e3a39);
  text-align: left;
  font-family: "Manrope-Regular", sans-serif;
  font-size: 1.8rem;
  line-height: 100%;
  font-weight: 400;
  width: 100%;
}
.collection-features__title {
  margin: 0;
  color: var(--text-and-icon-primary, #1b1717);
  text-align: left;
  font-family: "Tomorrow-Bold", sans-serif;
  font-size: 28px;
  line-height: 110%;
  letter-spacing: -0.01em;
  font-weight: 700;
  text-transform: uppercase;
  width: 100%;
}
.collection-features__grid {
  border-radius: 0.8rem;
  display: flex;
  flex-direction: row;
  gap: 0;
  align-items: flex-start;
  justify-content: flex-start;
  width: 100%;
  overflow: hidden;
}
.collection-features__card {
  background: #f2e9dc;
  border-style: solid;
  border-color: var(--background-border-2, #dcdcdc);
  border-width: 0 0.1rem 0 0;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
  justify-content: flex-start;
  flex: 1;
  height: 65rem;
  position: relative;
  overflow: hidden;
}
.collection-features__card:last-child { border-right: none; border-radius: 0.4rem; }

.collection-features__card-image {
  width: 100%;
  height: 45rem;
  object-fit: cover;
  object-position: center;
  display: block;
  flex-shrink: 0;
}

.collection-features__card-content {
  padding: 3.6rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  flex: 1;
}
.collection-features__card-title {
  color: var(--text-and-icon-primary, #1b1717);
  text-align: left;
  font-family: "Tomorrow-Bold", sans-serif;
  font-size: 2rem;
  line-height: 144%;
  letter-spacing: -0.01em;
  font-weight: 700;
  text-transform: uppercase;
  width: 100%;
}
.collection-features__card-description {
  color: var(--text-and-icon-secondary, #3e3a39);
  text-align: left;
  font-family: "Manrope-Regular", sans-serif;
  font-size: 1.6rem;
  line-height: 156%;
  font-weight: 400;
  width: 100%;
}

.collection-features__link {
  margin-top: 0.6rem;
  width: 100%;
  text-align: left;
  font-family: "Manrope-Regular", sans-serif;
  font-size: 1.6rem;
  line-height: 1.4;
  text-decoration: underline;
}

/* Make entire card clickable if enabled */
.collection-features__card--linkable { position: relative; }
.collection-features__card--linkable > a.collection-features__card-cover {
  position: absolute; inset: 0; z-index: 1; text-indent: -9999px;
}
.collection-features__card-content, .collection-features__card-image { position: relative; z-index: 2; }

@media screen and (max-width: 1023px) {
  .collection-features { padding: 4.8rem 2.4rem; gap: 3.2rem; }
  .collection-features__container { gap: 3.2rem; }
  .collection-features__title { font-size: 3.2rem; }
  .collection-features__grid { flex-direction: column; }
  .collection-features__card { height: auto; border-width: 0 0 0.1rem 0; border-radius: 0; }
  .collection-features__card:last-child { border-bottom: none; border-radius: 0.4rem; }
  .collection-features__card-image { height: 40rem; }
  .collection-features__card-content { padding: 2.4rem; }
  .collection-features__card-title { font-size: 2rem; }
  .collection-features__card-description { font-size: 1.6rem; }
}
@media screen and (max-width: 749px) {
  .collection-features { padding: 2.2rem 2.6rem; }
  .collection-features__subtitle { font-size: 1.8rem; }
  .collection-features__title { font-size: 2.4rem; }
  .collection-features__card-image { height: 32rem; }
  .collection-features__card-content { padding: 1.6rem; }
  .collection-features__card-title { font-size: 1.8rem; }
  .collection-features__card-description { font-size: 1.4rem; }
  .collection-features__card{ margin-bottom:10%; }
}
.collection-features__card--linkable { cursor: pointer; }
.collection-features__card--linkable > a.collection-features__card-cover:focus-visible {
  outline: 2px solid #000; outline-offset: -2px;
}
.collection-features__link--discover{
  display:inline-flex; align-items:center; gap:.4rem;
  font-family:"Manrope-Regular", sans-serif;
  font-size:1.6rem; line-height:1.4; font-weight:600;
  color:black!important; text-decoration:none;
}
.collection-features__link--discover svg{ width:1.2em; height:1.2em; }
.collection-features__link--discover:hover{ text-decoration:underline; }

/* ===== MOBILE CAROUSEL (one card + floating arrows) ===== */
@media screen and (max-width: 749px) {
  /* prevent arrow clipping */
  #cf-{{ section.id }}.collection-features,
  #cf-{{ section.id }} .collection-features__container,
  #cf-{{ section.id }} .collection-features__grid-wrapper {
    overflow: visible !important;
  }

  #cf-{{ section.id }} .collection-features__grid{
    display:flex;
    flex-direction:row !important;     /* override column rule */
    gap:12px;
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
    padding-inline:0;
  }

  #cf-{{ section.id }} .collection-features__card{
    flex:0 0 100%;
    max-width:89%;
    scroll-snap-align:start;
    border:0;
    margin:0;
  }

  /* floating arrows like screenshot */
  #cf-{{ section.id }} .collection-features__btn{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    z-index:10;
    width:36px; height:36px;
    border:0.5px solid black;
    border-radius:999px;
    background:#fff;
    box-shadow:0 2px 8px rgba(0,0,0,.12);
    display:grid; place-items:center;
  }
  #cf-{{ section.id }} .collection-features__btn--prev{ left:9px; }
  #cf-{{ section.id }} .collection-features__btn--next{ right:9px; }
  #cf-{{ section.id }} .collection-features__btn svg{ width:20px; height:20px; }

  /* disabled look */
  #cf-{{ section.id }} .collection-features__btn.is-disabled{
    opacity:.35; pointer-events:none; box-shadow:none;
  }
}

/* hide arrows on ≥750px */
@media screen and (min-width: 750px){
  #cf-{{ section.id }} .collection-features__btn{ display:none; }
}
/* === Desktop only: align "Discover more" baseline across cards === */
@media screen and (min-width: 1024px){
  /* Make all cards match the tallest card */
  .collection-features__grid{
    align-items: stretch !important;
  }

  /* Let the card auto-size; use flex so content can push the CTA down */
  .collection-features__card{
    height: auto !important;            /* override fixed 65rem */
    display: flex;
    flex-direction: column;
  }

  /* Keep image box consistent so tops align */
  .collection-features__card-image{
    height: 45rem;                       /* your existing value */
    flex-shrink: 0;
  }

  /* Content becomes a column; fill remaining space */
  .collection-features__card-content{
    display: flex;
    flex-direction: column;
    align-items: stretch;                /* full width text/CTA */
    flex: 1;                             /* fill under image */
  }

  /* CTA pinned to bottom, stays inside padding */
  .collection-features__link,
  .collection-features__link--discover{
    margin-top: auto !important;         /* push CTA to bottom */
    align-self: flex-start;              /* left-align within content */
    display: inline-flex;
    gap: .4rem;
  }
}
/* END_SECTION:collection-blogs */

/* START_SECTION:collection-deals (INDEX:30) */
/* ===== Tokens ===== */
.tabbed-collection-section {
  --tc-gap: -6px;
  --tc-border: #e6e6e6;
  --tc-text: #1b1717;
  --tc-accent: #ff6a00;  /* orange underline & progress + Change */
  --tc-track: #ececec;
}

/* ===== Header (Deals + See more on same row) ===== */
.tabbed-collection-header {
  display:flex; align-items:center; justify-content:flex-start;
  gap:12px; flex-wrap:nowrap; padding:8px 8px 6px;
}
.tabbed-collection-title .section-header {
  margin:0; font-weight:600; font-size:28px; line-height:1.2;
  white-space:nowrap; text-overflow:ellipsis; overflow:hidden;
}

/* ===== Outer surface that holds everything below the header ===== */
.deals-surface {
  background:#fff; border:1px solid var(--tc-border); border-radius:0px;
}

/* ===== Tabs bar (desktop only) ===== */
.tabbed-collection-nav {
  position:relative; z-index:2; display:flex; align-items:center; gap:10px; margin:0; background:#fff;
  border:0; padding:10px 12px; border-radius:0px;
}
.tabbed-collection-tabs { position:relative; display:flex; gap: 6px; overflow:auto hidden; scrollbar-width:none; flex:1; align-items:center; }
.tabbed-collection-tabs::-webkit-scrollbar { display:none; }
.tab-button {
  position:relative; flex:0 0 auto; height:auto; min-height:0; padding:5px 16px; border:2px solid transparent;
  font-weight:500; font-size:1.1rem; color:var(--tc-text); white-space:nowrap; border-radius:999px; background:#efefef; cursor:pointer;
}
.tab-button:not([aria-selected="true"]) {
  background:#efefef; color:var(--tc-text); font-weight:500;
}
.tab-button:not([aria-selected="true"]):hover { background:#e3e3e3; }
.tab-button[aria-selected="true"] {
  background:#fff; border-color:var(--tc-accent); color:var(--tc-accent); font-weight:600;
}
/* Tab arrows */
.tab-navigation-arrows { display:flex; gap:8px; }
.tab-navigation-arrows .tab-arrow {
  width:36px; height:36px; border:1px solid transparent; background:#fff; display:grid; place-items:center;
}
.tab-navigation-arrows .tab-arrow:disabled { opacity:.4; }
 div.section-template--25513690104127__collection_page_tabbed_collection_TeN8YE-padding{    padding-top: 0px;  }

/* ===== MOBILE: show dropdown, hide desktop tabs/arrows ===== */
.mobile-collection-dropdown { display:none; margin:10px 10px 12px; }
@media (max-width: 900px){
  div.section-template--25513690104127__collection_page_tabbed_collection_TeN8YE-padding{    padding-top: 20px;    padding-left: 4%;
    padding-right: 4%;
}
  .nav-and-slider .tabbed-collection-nav{ display:none !important; }
  .nav-and-slider .tab-navigation-arrows{ display:none !important; }
  .mobile-collection-dropdown{ display:block !important; }
}

/* Mobile dropdown header look */
.collection-dropdown-header{
  display:flex; justify-content:space-between; align-items:center;
  border: 0px solid transparent!important; border-radius:0px; padding:12px 14px;
}
.collection-dropdown-label { font-weight:700; }

/* Orange Change */
.collection-dropdown-toggle{
  display:inline-flex; gap:6px; align-items:center; border:0; background:#fff;
  color:var(--tc-accent); font-weight:700;
}
.collection-dropdown-toggle svg{ color:var(--tc-accent); }

/* Dropdown menu grid */
.collection-dropdown-menu{
  display:grid; grid-template-columns:1fr 1fr; gap:10px; padding:10px 2px 12px;
}
.collection-dropdown-item{
  border:1px solid var(--tc-border); border-radius:0px; padding:12px 14px; background:#fff; text-align:left;
}
.collection-dropdown-item.active{ outline:2px solid var(--tc-accent); border-color:transparent; }

/* ===== Product rail ===== */
.nav-and-slider{ border:0; border-radius:0px; background:transparent; overflow:visible; margin:0; }
.tabbed-collection-content{ padding:0 0px 0px; }
.sliding-collection-container{ position:relative; margin:0; padding:0 0px 0px; }
.sliding-collection-track-wrapper { overflow:hidden; }
.sliding-collection-track{
  display:grid; grid-auto-flow:column; gap:var(--tc-gap);
  grid-auto-columns: calc((100% - (var(--tc-gap) * 4)) / 5);
  padding:0 2px 0;
}

/* Card internals */
.deal-card{ border:none!important; box-shadow:none; border-radius:0px; background:#fff; overflow:hidden; height:100%; display:flex; flex-direction:column; }
.deal-card .card__inner,.deal-card .media,.deal-card .product-card__media{ border-bottom:1px solid var(--tc-border); box-shadow:none; }
.deal-card .card__content,.deal-card .product-card__content{ padding:12px 14px; }
.deal-card .rating,.deal-card .product-badge-list,.deal-card .card__badge,.deal-card .product__badge{ margin-top:4px; padding-top:8px; border-top:1px solid var(--tc-border); }
.deal-card .card__information,.deal-card .product-card__information{ margin-top:8px; }
.deal-card .price,.deal-card .product-price,.deal-card .price__container{ margin-top:10px; padding-top:10px; border-top:1px solid var(--tc-border); }

/* Bottom progress rail */
.slider-controls{ margin-top:0; border-top:2px solid #e6e6e6; }
.slider-controls-inner{ display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:8px; padding:0; }
.slider-navigation .prev,.slider-navigation .next{ width:36px; height:36px; background:#fff; display:grid; place-items:center; border:1px solid transparent!important; }
.progress-indicators{ position:relative; height:4px; border-radius:999px; background:var(--tc-track); overflow:hidden; }
.progress-indicators::after{ content:""; position:absolute; left:0; top:0; bottom:0; width:0; background:var(--tc-accent); border-radius:999px; transition:width .25s ease; }

/* Panels */
.tabbed-collection-content .tab-content{ display:none; }
.tabbed-collection-content .tab-content.active{ display:block; }

/* Vertical separators between product cards (desktop) */
.sliding-collection-track__item{ position:relative; padding-right:0; border-right:0; }
.sliding-collection-track__item::after{
  content:""; position:absolute; top:0; right:0; width:1px; height:100%; background-color:var(--tc-border);
}
.sliding-collection-track__item:last-child::after{ display:none; }
@media (prefers-color-scheme: light){ .sliding-collection-track__item::after{ opacity:.8; } }

/* Header spacing outside the white card */
.tabbed-collection-header{
  background:transparent; margin-bottom:8px;
}

/* Orange Change (dup-safe) */
.collection-dropdown-toggle{
  display:inline-flex; gap:6px; align-items:center; border:0; background:#fff;
  color:var(--tc-accent); font-weight:700;
}
.collection-dropdown-toggle svg{ color:var(--tc-accent); }
/* Header layout */
.collection-dropdown-header{
  position: relative;
  display:flex; justify-content:space-between; align-items:center;
  border:1px solid var(--tc-border); border-radius:0px; padding:12px 14px;
}
/* The native select sits over the Change button but is visually hidden */
.collection-select{
  position:absolute;
  right:10px; top:50%; transform:translateY(-50%);
  opacity:0;
  width:130px; height:36px;
  cursor:pointer;
}
@supports (-webkit-touch-callout: none) {
  .collection-select{ height:44px; }
}

/* desktop only*/
@media (min-width: 1200px) {.product-card{border:1px solid transparent!important;}
  .tabbed-collection-section [role="tabpanel"] { display: none !important; }
  .tabbed-collection-section [role="tabpanel"].active { display: block !important; }}

/* ===== RESPONSIVE COLUMN SIZES (desktop slider) ===== */
@media (max-width: 1200px){ .sliding-collection-track{ grid-auto-columns: calc((100% - (var(--tc-gap) * 3)) / 4); } }
@media (max-width: 990px){  .sliding-collection-track{ grid-auto-columns: calc((100% - (var(--tc-gap) * 2)) / 3); } }
@media (max-width: 720px){  .sliding-collection-track{ grid-auto-columns: calc((100% - var(--tc-gap)) / 2); } }
@media (max-width: 520px){  .sliding-collection-track{ grid-auto-columns: 100%; } }

/* ======== MOBILE: turn slider into a paged 2×2 grid ======== */
@media (max-width: 900px) {
  .sliding-collection-track-wrapper{ overflow: visible; }

  /* Outer grid frame with continuous borders */
  .sliding-collection-track{
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-auto-flow: row !important;
    grid-auto-columns: unset !important;
    gap: 0 !important;                          /* lines meet cleanly */
    border: 0px solid var(--tc-border);
    border-radius: 0px;
    overflow: hidden;
    padding: 0 !important;
  }

  /* Draw inner grid lines (no doubles) */
  .sliding-collection-track__item{
    width: 100% !important;
  }
  .sliding-collection-track__item:nth-child(2n){ border-right: 0; }

  /* Cards themselves add no extra borders */
  .deal-card{
    border: 0 !important;
    border-radius: 0px;
    box-shadow: none;
    background: #fff;
  }
  .deal-card .card__inner,
  .deal-card .media,
  .deal-card .product-card__media{
    border-bottom: 0;
    box-shadow: none;
  }
  .tabbed-collection-header{ justify-content:space-between; }

  .collection-dropdown-label { font-weight: 550; font-size:20px; }
  .collection-dropdown-toggle{ font-weight:450; font-size:15px; }

  /* Clean bottom area */
  .deals-surface { padding-bottom: 0 !important; margin-bottom: 0 !important; overflow:hidden; }
  .slider-controls { margin-top: 0 !important; border-top: none !important; padding-top: 0 !important; }
  .sliding-collection-container { margin-bottom: 0 !important; padding-bottom: 0 !important; }
}

/* Support class used by JS to paginate mobile grid */
.is-hidden { display: none !important; }


@media (max-width: 520px) { .tabbed-collection-title .section-header { font-size:28px; } }

/* Mobile only: hide desktop tabs/arrows, show dropdown shell (dup-safe) */
@media (max-width: 900px){
  .stamped-badge{font-size:7px;} /* fixed typo: was '..stamped-badge' */
  .dot-separator{display:none!important;}
  .nav-and-slider .tabbed-collection-nav{ display:none !important; }
  .nav-and-slider .tab-navigation-arrows{ display:none !important; }
  .mobile-collection-dropdown{ display:block !important; }
}
.dot-separator{    height: 9px;
    width: 4px;}

/* --- Mobile dropdown current selection underline (header label) --- */
.collection-dropdown-header { border-bottom: 1px solid var(--tc-border); }
.collection-dropdown-label{
  position: relative;
  display: inline-block;
  font-weight: 700;
}
.collection-dropdown-label::after{
  content: "";
  display: block;
  height: 3px;
  background: var(--tc-accent);
  margin-top: 6px;
  width: 100%;
}
i.stamped-fa.stamped-fa-star{color:#ff671b!important;}
i.stamped-fa.stamped-fa-star-o::before { color:#ff671b!important; }
i.stamped-fa.stamped-fa-star-half-o::before { color:#ff671b!important; }

@media (min-width: 901px){ .collection-dropdown-label::after{ display:none; } }

/* ==== Ratings: smaller stars + show compact "(12)" and hide words ==== */
.tabbed-collection-section .deal-card .stamped-badge,
.tabbed-collection-section .deal-card .spr-badge,
.tabbed-collection-section .deal-card .jdgm-prev-badge{
  display:inline-flex; align-items:center; gap:0px;
}

/* Make stars smaller across providers */
.tabbed-collection-section .stamped-badge .stamped-fa-star,
.tabbed-collection-section .stamped-badge .stamped-fa-star-o,
.tabbed-collection-section .stamped-badge .stamped-fa-star-half-o,
.tabbed-collection-section .spr-badge .spr-icon,
.tabbed-collection-section .jdgm-prev-badge .jdgm-star{
  font-size:12px !important;
}
.tabbed-collection-section .stamped-badge .stamped-starrating,
.tabbed-collection-section .spr-badge .spr-starrating,
.tabbed-collection-section .jdgm-prev-badge .jdgm-star-all{
  transform:scale(.95); transform-origin:left center;
}

/* Hide provider captions like "12 reviews" */
.tabbed-collection-section .stamped-badge .stamped-badge-caption{ display:none !important; }
.tabbed-collection-section .spr-badge .spr-badge-caption{ display:none !important; }
.tabbed-collection-section .jdgm-prev-badge .jdgm-prev-badge__text{ display:none !important; }

/* Our unified compact count node (used as JS fallback) */
.tabbed-collection-section .rating-count{
  font-size:12px; line-height:1; opacity:.85; margin-left:2px;
}

/* Pure-CSS when providers expose attributes */
.tabbed-collection-section .stamped-badge[data-reviews-count]::after{
  content:" (" attr(data-reviews-count) ")"; font-size:12px; line-height:1; opacity:.85;
}
.tabbed-collection-section .jdgm-prev-badge[data-number-of-reviews]::after{
  content:" (" attr(data-number-of-reviews) ")"; font-size:12px; line-height:1; opacity:.85;
}
/* END_SECTION:collection-deals */

/* START_SECTION:dynamic-featured-collection (INDEX:77) */
/* ===== Tokens ===== */
.tabbed-collection-section {
  --tc-gap: -6px;
  --tc-border: #e6e6e6;
  --tc-text: #1b1717;
  --tc-accent: #ff6a00;  /* orange underline & progress */
  --tc-track: #ececec;
}

/* ===== Header (Deals on the left, See more pinned right) ===== */
.tabbed-collection-header {
  display:flex; align-items:center; justify-content:space-between;
  gap:12px; flex-wrap:nowrap; padding:8px 8px 6px;
}
.tabbed-collection-title .section-header {
  z-index:100!important;
  margin:0; font-weight:700; font-size:28px; line-height:1.2;
  white-space:nowrap; text-overflow:ellipsis; overflow:hidden;
}
/* The dot sat between title and link back when they were bunched up on the
   left. With them pushed apart it would float mid-row, so it's out. */
.dot-separator { display:none; }
.tabbed-collection-see-more .see-more-link {
  display:inline-flex; align-items:center; gap:8px;
  font-weight:600; color:var(--tc-accent); text-decoration:none; white-space:nowrap;
}
.tabbed-collection-see-more .see-more-link:hover { opacity:.85; }

/* ===== Outer surface that holds everything below the header =====
   Transparent so only the cards read as white (matches Top Products). */
.deals-surface {
  background:transparent; border:0; border-radius:0px;
}

/* ===== Tabs bar ===== */
.tabbed-collection-nav {
  position:relative; z-index:2; display:flex; align-items:center; gap:10px; margin:0; background:transparent;
  border:0; padding:10px 12px 10px 0; border-radius:0px;
}
.tabbed-collection-tabs {
  position:relative; display:flex; gap: 6px;  overflow:auto hidden; scrollbar-width:none; flex:1; align-items:center;
  /* Padding in + equal negative margin out: gives the hover lift/shadow room
     to paint without being clipped by overflow, while layout stays identical. */
  padding-block: 10px; margin-block: -10px;
}
.tabbed-collection-tabs::-webkit-scrollbar { display:none; }
/* Pills read inverted from before: plain white when idle, solid orange when
   selected. The 2px border stays on every state (transparent when it isn't
   needed) so selecting a tab never changes its measured size. */
.tab-button {
  position:relative; flex:0 0 auto; height:auto; min-height:0; padding:9px 20px; border:2px solid #fff; background:#fff;
  font-weight:500; font-size: 1.1rem; color:var(--tc-text); white-space:nowrap; border-radius:999px; cursor:pointer;
  /* Only transition compositor-friendly props (transform/color/shadow) so it
     stays smooth on mobile. Spring easing on transform gives the subtle "wow". */
  transition: color .2s ease, background-color .2s ease, border-color .2s ease,
              box-shadow .25s ease, transform .22s cubic-bezier(.34,1.4,.5,1);
}
.tab-button:not([aria-selected="true"]) {
  background:#fff; border-color:#fff; color:var(--tc-text); font-weight:500;
}
.tab-button:not([aria-selected="true"]):hover { background:#f4f4f4; border-color:#f4f4f4; }
/* Hover: gentle lift + soft shadow (pointer devices only, so mobile taps skip it) */
@media (hover: hover) {
  .tab-button:hover { transform: translateY(-2px); box-shadow: 0 5px 12px rgba(27,23,23,.10); }
}
/* Press: quick springy squash for tactile feedback */
.tab-button:active { transform: translateY(0) scale(.95); transition-duration: .09s; }
.tab-button[aria-selected="true"] {
  background:var(--tc-accent); border-color:var(--tc-accent); color:#fff; font-weight:600;
  box-shadow: 0 3px 10px rgba(255,106,0,.16);
  /* Pop once when a tab becomes selected (JS toggles aria-selected on click) */
  animation: tab-pop .34s cubic-bezier(.34,1.56,.64,1);
}
@keyframes tab-pop {
  0%   { transform: scale(.9); }
  55%  { transform: scale(1.05); }
  100% { transform: scale(1); }
}
/* Respect users who ask for less motion: keep colour changes, drop movement */
@media (prefers-reduced-motion: reduce) {
  .tab-button { transition: color .2s ease, background-color .2s ease, border-color .2s ease; }
  .tab-button:hover, .tab-button:active { transform: none; box-shadow: none; }
  .tab-button[aria-selected="true"] { animation: none; }
}
/* Tab arrows — round white buttons; the disabled one greys out by filling
   rather than fading, so it keeps the same weight as its neighbour. */
.tab-navigation-arrows { display:flex; gap:8px; }
.tab-navigation-arrows .tab-arrow {
  width:36px; height:36px; border:0; border-radius:999px; background:#fff; color:var(--tc-text);
  display:grid; place-items:center; cursor:pointer; padding:0;
  transition: background-color .2s ease, color .2s ease;
}
.tab-navigation-arrows .tab-arrow:hover:not(:disabled) { background:#f4f4f4; }
.tab-navigation-arrows .tab-arrow:disabled {
  opacity:1; background:var(--tc-track); color:#9a9a9a; cursor:default;
}

/* ===== Product rail ===== */
.nav-and-slider{ border:0; border-radius:0px; background:transparent; overflow:visible; margin:0; }
.tabbed-collection-content{ padding:0 0px 0px; }
.sliding-collection-container{ position:relative; margin:0; padding:0 0px 0px; }
.sliding-collection-track-wrapper { overflow:hidden; }
.sliding-collection-track{
  display:grid; grid-auto-flow:column; gap:1px;
  grid-auto-columns: calc((100% - (var(--tc-gap) * 4)) / 5);
  padding:0 2px 0;
}

/* Card internals — transparent pass-through so the inner product card shows
   its own white background, rounded corners and soft shadow (Top Products look). */
.deal-card{
  border:none!important; box-shadow:none; background:transparent;
  overflow:visible; height:100%; display:flex; flex-direction:column;
}
.deal-card .product-card-5-container {
  flex: 1; min-height: 0; width: 100%;
}
.deal-card .card__inner,
.deal-card .media,
.deal-card .product-card__media{
  border-bottom:1px solid var(--tc-border); box-shadow:none;
}
.deal-card .card__content,
.deal-card .product-card__content{ padding:12px 14px; }
.deal-card .rating,
.deal-card .product-badge-list,
.deal-card .card__badge,
.deal-card .product__badge{
  margin-top:4px; padding-top:8px; border-top:1px solid var(--tc-border);
}
.deal-card .card__information,
.deal-card .product-card__information{ margin-top:8px; }
.deal-card .price,
.deal-card .product-price,
.deal-card .price__container{
  margin-top:10px; padding-top:10px; border-top:1px solid var(--tc-border);
}

/* Bottom progress rail */
.slider-controls{ margin-top:0; border-top:2px solid #e6e6e6; }
.slider-controls-inner{
  display:grid; grid-template-columns:auto 1fr auto; align-items:center; gap:8px; padding:0;
}
.slider-navigation .prev,
.slider-navigation .next{
  width:36px; height:36px; background:#fff; display:grid; place-items:center; border:1px solid transparent!important;
}
.progress-indicators{
  position:relative; height:4px; border-radius:999px; background:var(--tc-track); overflow:hidden;
}
.progress-indicators::after{
  content:""; position:absolute; left:0; top:0; bottom:0; width:0; background:var(--tc-accent); border-radius:999px; transition:width .25s ease;
}

/* Panels */
.tabbed-collection-content .tab-content{ display:none; }
.tabbed-collection-content .tab-content.active{ display:block; }

/* Vertical separators between product cards (desktop) */
.sliding-collection-track__item{
  position:relative; padding-right:0; border-right:0;
}
.sliding-collection-track__item::after{
  content:""; position:absolute; top:0; right:0; width:1px; height:100%; background-color:var(--tc-border);
}
.sliding-collection-track__item:last-child::after{ display:none; }
@media (prefers-color-scheme: light){
  .sliding-collection-track__item::after{ opacity:.8; }
}

/* Header spacing outside the white card */
.tabbed-collection-header{
  background:transparent; margin-bottom:8px;
}
.see-more-text{ font-size:1.1rem; font-weight:500; }
.tabbed-collection-see-more{ padding-top:1px; }

i.stamped-fa.stamped-fa-star{color:#ff671b!important;}
i.stamped-fa.stamped-fa-star-o::before { color:#ff671b!important; }
i.stamped-fa.stamped-fa-star-half-o::before { color:#ff671b!important; }

/* desktop only*/
@media (min-width: 1200px){
  .product-card{border:1px solid transparent!important;}
  .tabbed-collection-section [role="tabpanel"] { display: none !important; }
  .tabbed-collection-section [role="tabpanel"].active { display: block !important; }
}

/* ===== RESPONSIVE COLUMN SIZES (desktop slider) ===== */
@media (max-width: 1200px){
  .sliding-collection-track{
    grid-auto-columns: calc((100% - (var(--tc-gap) * 3)) / 4);
  }
}
@media (max-width: 990px){
  .sliding-collection-track{
    grid-auto-columns: calc((100% - (var(--tc-gap) * 2)) / 3);
  }
}
@media (max-width: 720px){
  .sliding-collection-track{
    grid-auto-columns: calc((100% - var(--tc-gap)) / 2);
  }
}
@media (max-width: 520px){
  .sliding-collection-track{
    grid-auto-columns: 100%;
  }
}

/* ======== MOBILE: turn slider into a paged 2×2 grid ======== */
@media (max-width: 900px) {
  .sliding-collection-track-wrapper{
    overflow: visible;
  }

  /* Outer grid frame; row height from aspect-ratio to match card-product5 (277/526) */
  .sliding-collection-track{
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    grid-auto-flow: row !important;
    grid-auto-columns: unset !important;
    grid-auto-rows: minmax(0, auto);

    gap: 0 !important;
    border: 0px solid var(--tc-border);
    border-radius: 0px;
    overflow: hidden;
    padding: 0 !important;
  }

  /* Grid cell: aspect-ratio 277/526 matches card-product5 so cqw scales perfectly */
  .sliding-collection-track__item{
    width: 100% !important;
    min-width: 0;
    aspect-ratio: 277 / 526;
    display: flex;
    align-items: stretch;
    border-right: 1px solid var(--tc-border);
    border-bottom: 1px solid var(--tc-border);
  }
  .sliding-collection-track__item:nth-child(2n){ border-right: 0; }
  .sliding-collection-track__item:nth-child(n+3){ border-bottom: 0; }
  .sliding-collection-track__item::after{ display: none; }

  /* Swiper slides need a height anchor on mobile; the deal-card fills it with
     height:100%. Without this the card collapses to 0 height (products hidden). */
  .deals-slide{ aspect-ratio: 277 / 526; }

  /* deal-card + card-product5: fill cell, cqw scales from container width */
  .deal-card{
    border: 0 !important;
    border-radius: 0px;
    box-shadow: none;
    background: #fff;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    min-width: 0;
    overflow: hidden;
  }
  .deal-card .product-card-5-container{
    width: 100% !important;
    height: 100% !important;
    min-width: 0;
    flex: 1 1 0;
  }
  .deal-card .product-card-5{
    width: 100% !important;
    height: 100% !important;
    min-height: 0;
    flex: 1 1 0;
    box-shadow: none !important;
  }
  .deal-card .card__inner,
  .deal-card .media,
  .deal-card .product-card__media{
    border-bottom: 0;
    box-shadow: none;
  }

  .see-more-text{ font-size:1.1rem!important; }
  .tabbed-collection-header{ justify-content:space-between; }
  /* Link goes back to plain black on mobile — orange is a desktop-only accent */
  .tabbed-collection-see-more .see-more-link{ color:var(--tc-text); }

  /* MOBILE TABS: smaller text, scrollable, hide arrows */
  .tabbed-collection-nav{
    padding: 8px 8px;
  }
  .tabbed-collection-tabs{
    gap: 8px;
  }
  .tabbed-collection-nav .tab-button{
    font-size: 15px;
    padding: 8px 14px;
  }
  .nav-and-slider .tab-navigation-arrows{
    display:none !important;
  }
}

/* Support class used by JS to paginate mobile grid */
.is-hidden { display: none !important; }

@media (max-width: 520px) {
  .tabbed-collection-title .section-header { font-size:28px; }
}

/* Mobile-only misc tweaks */
@media (max-width: 900px){
  .stamped-badge{font-size:7px;}
  .dot-separator{display:none!important;}
  /* make sure nav stays visible on mobile */
  .nav-and-slider .tabbed-collection-nav{ display:flex !important; }
}

.dot-separator{
  height: 9px;
  width: 4px;
}

/* ==== Ratings: smaller stars + show compact "(12)" and hide words ==== */
.tabbed-collection-section .deal-card .stamped-badge,
.tabbed-collection-section .deal-card .spr-badge,
.tabbed-collection-section .deal-card .jdgm-prev-badge{
  display:inline-flex; align-items:center; gap:0px;
}

/* Make stars smaller across providers */
.tabbed-collection-section .stamped-badge .stamped-fa-star,
.tabbed-collection-section .stamped-badge .stamped-fa-star-o,
.tabbed-collection-section .stamped-badge .stamped-fa-star-half-o,
.tabbed-collection-section .spr-badge .spr-icon,
.tabbed-collection-section .jdgm-prev-badge .jdgm-star{
  font-size:12px !important;
}
.tabbed-collection-section .stamped-badge .stamped-starrating,
.tabbed-collection-section .spr-badge .spr-starrating,
.tabbed-collection-section .jdgm-prev-badge .jdgm-star-all{
  transform:scale(.95); transform-origin:left center;
}

/* Hide provider captions like "12 reviews" */
.tabbed-collection-section .stamped-badge .stamped-badge-caption{ display:none !important; }
.tabbed-collection-section .spr-badge .spr-badge-caption{ display:none !important; }
.tabbed-collection-section .jdgm-prev-badge .jdgm-prev-badge__text{ display:none !important; }

/* Our unified compact count node (used as JS fallback) */
.tabbed-collection-section .rating-count{
  font-size:12px; line-height:1; opacity:.85; margin-left:2px;
}


@media (max-width: 750px){
  .see{ color:black;}
}

/* Cards are now spaced/individual (Top Products look), so no vertical
   separators between them. */
.deals-slide{ position: relative; }

/* Deals control bar sits on the transparent surface — no divider needed. */
.deals-surface .tmg-swiper__controls{
  border-top: 0;
  padding: 8px 0;
}

/* Draggable tabs affordance */
.tabbed-collection-tabs{ cursor: grab; }
.tabbed-collection-tabs.is-dragging{ cursor: grabbing; user-select: none; }

/* Medium and desktop: use the same expanded clipping boundary as Top
   Products, including touch devices that do not expose hover capability. */
@media (min-width: 750px){
  /* This section's cards have a larger hover shadow, so widen the shared
     bleed. Overriding the custom properties (not width/margin/padding) keeps
     tmg-collection-swiper.css as the single owner of the box maths — the two
     rules have equal specificity and would otherwise fight over source order. */
  /* Compound selector on purpose: `.tmg-swiper` alone (0,1,0) also sets these
     inside a media query, and media queries add no specificity — so a bare
     `.deals-swiper` would win or lose on stylesheet load order. (0,2,0) always
     wins. */
  .tmg-swiper.deals-swiper{
    --tmg-bleed-x: 1px;
    --tmg-bleed-top: 40px;
    --tmg-bleed-bottom: 40px;
  }

  /* The mobile grid removes card shadows through 900px. Restore the normal
     product-card shadow for medium screens and keep its immediate wrapper from
     becoming a second clipping boundary. */
  .deals-swiper .deal-card{
    overflow: visible;
    background: transparent;
  }
  .deals-swiper .product-card-5{
    box-shadow: 0 0 1.45cqw 0 rgba(0, 0, 0, 0.15) !important;
  }
}

/* ===== Desktop hover: subtle lift + soft shadow ===== */
@media (hover: hover) and (min-width: 750px){
  .deal-card{
    overflow: visible;
    transition: transform .2s ease, box-shadow .2s ease;
  }
  .deals-slide:hover{ z-index: 3; }
  .deals-slide:hover .deal-card{
    transform: translateY(-4px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  }
}
/* END_SECTION:dynamic-featured-collection */

/* START_SECTION:dynamic-key-announcement (INDEX:87) */
.info-strip { margin: 0; }

  .info-strip__inner{
    margin: 0 auto;
    display:flex;
    align-items:center;
    justify-content: space-between;
    gap: 34px;
    width: 100%;
    overflow: hidden;
  }

  .info-item{
    display:flex;
    align-items:center;
    gap: 12px;
    text-decoration:none;
    color: #111;
    min-width: max-content;
  }

  .info-item__icon{
    width: 44px;
    height: 44px;
    border-radius: 999px;
    background: #e9e9e9;
    display:flex;
    align-items:center;
    justify-content:center;
    flex: 0 0 44px;
  }

  .info-item__icon img{
       width: 43px;
    height: 78px;
    object-fit: fill;
    display: block;
  }

  .info-item__text{ display:flex; flex-direction:column; line-height: 1.05; }

  .info-item__title{
    font-weight: 700;
    letter-spacing: 0.02em;
    
    font-size: 18px;
    white-space: nowrap;
  }

  .info-item__sub{
    font-size: 12px;
    color: #000;
    margin-top: 4px;
    white-space: nowrap;
    font-weight: 500;
  }

  .info-item:hover .info-item__sub{ text-decoration: underline; }

  /* ✅ Mobile: one row on a horizontal swipe rail (was a 2x2 grid) */
  @media (max-width: 768px){
    .info-strip__inner{
      display: flex;
      flex-wrap: nowrap;
      align-items: center;
      justify-content: flex-start;
      /* Paint room for the icons. .info-item__icon img is 46x54 sitting in a
         40x40 circle, so it spills ~3px each side and ~7px top and bottom.
         That spill used to paint freely because this strip was overflow:visible;
         as a scroll rail it clips, which sheared the icons. Padding in + an
         equal negative margin out gives the spill somewhere to land while
         leaving every item exactly where it was. */
      padding-top: 8px;
      padding-bottom: 8px;
      padding-left: 4px;
      margin-top: -8px;
      margin-bottom: -8px;
      margin-left: -4px;
      scroll-padding-left: 4px;
      /* Run the rail out to the right edge of the screen, past .page-width's
         gutter, so the last item is cut by the screen rather than the padding
         — that cut is what tells a thumb the row scrolls. `50% - 50vw`
         measures the gutter without hardcoding it, and width must be auto or
         the box won't grow into the negative margin. */
      width: auto;
      margin-right: calc(50% - 50vw);
      padding-right: 1rem;
      scroll-padding-right: 1rem;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      scroll-behavior: smooth;
      overscroll-behavior-x: contain;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
      -ms-overflow-style: none;
      /* No `touch-action: pan-y` — that would block the native horizontal swipe. */
    }

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

    /* Items size to their own content again, so each one keeps its natural
       width on the rail instead of being forced to a half-row grid cell. */
    .info-item{
      width: auto;
      min-width: max-content;
      flex: 0 0 auto;
      justify-content: flex-start;
      scroll-snap-align: start;
    }

    .info-item--hide-mobile{
      display: none !important;
    }

    .info-item__icon{
      width: 40px;
      height: 40px;
      flex: 0 0 40px;
    }

    .info-item__title{
      font-size: 13px;
      white-space: normal;
      line-height: 1.15;
    }

    .info-item__sub{
      font-size: 11px;
      white-space: normal;
    }
    .info-item__icon img {
    width: 46px;
    height: 54px;
    object-fit: fill;
    display: block;
}
  }
/* END_SECTION:dynamic-key-announcement */

/* START_SECTION:dynamic-slideshow (INDEX:101) */
.dynamic-slideshow-section{
    padding-top: var(--dynamic-slideshow-padding-top, 36px);
    padding-bottom: var(--dynamic-slideshow-padding-bottom, 36px);
  }

  .dynamic-slideshow-section--hidden{
    display:none !important;
  }

  .banner-single{
    /* Fill the (already full-width) section. Avoids the 100vw full-bleed hack,
       which includes the scrollbar width and caused a slight horizontal overflow. */
    width: 100%;
    margin-left: 0;
    position: relative;
  }

  .banner-single *{
    box-sizing:border-box;
  }

  .banner-single__container{
    background:#000;
    position:relative;
    overflow:hidden;
    width:100%;
    border:0;
    border-radius:0;
  }

  @media screen and (min-width: 750px){
    .banner-single{
      --banner-height: clamp(260px, 28vw, 555px);
      height: var(--banner-height);
    }

    .banner-single__container{
      height:100%;
    }
  }

  @media screen and (max-width: 749px){
    .banner-single__container{
      height:auto;
    }
  }

  .banner-slider{
    position: relative;
    width: 100%;
    height: 100%;
  }

  .banner-slider__viewport{
    overflow: hidden;
    width: 100%;
    height: 100%;
    /* Give horizontal drags to the slider, keep vertical page scroll native */
    touch-action: pan-y;
    cursor: grab;
  }

  .banner-slider__viewport:active{
    cursor: grabbing;
  }

  .banner-single__media img{
    -webkit-user-drag: none;
    user-select: none;
  }

  .banner-slider__track{
    display:flex;
    width:100%;
    height:100%;
    transform: translateX(0);
    transition: transform 420ms ease;
    will-change: transform;
  }

  .banner-slider__slide{
    flex: 0 0 100%;
    min-width: 100%;
    height: 100%;
    position: relative;
  }

  .banner-single__link{
    display:block;
    width:100%;
    height:100%;
    text-decoration:none;
    color:inherit;
    position:relative;
    /* Prevent native link/image dragging from hijacking the swipe/drag gesture */
    -webkit-user-drag:none;
    user-select:none;
  }

  .banner-single__media{
    width:100%;
    height:100%;
    display:block;
  }

  .banner-single__media img{
    width:100%;
    height:100%;
    object-fit: fill;
    display:block;
  }

  .banner-single__content{
    position:absolute;
    inset:0;
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start;
    padding:2rem 3rem;
    text-align:left;
    z-index:2;
    pointer-events:none;
  }

  .banner-single__content h2{
    color:#fff;
    margin:0 0 1rem;
    font-size:2.5rem;
    font-weight:700;
    line-height:1.2;
  }

  .banner-single__content p{
    color:#fff;
    margin:0 0 1.5rem;
    font-size:1.125rem;
    line-height:1.5;
  }

  .banner-single__content .button{
    display:inline-block;
    background:#FF671B;
    color:#fff;
    padding:0.875rem 2rem;
    border-radius:0.25rem;
    font-weight:600;
    font-size:1rem;
  }

  @media screen and (max-width: 749px){
    .banner-single__content{
      padding:1.25rem 1rem;
    }

    .banner-single__content h2{
      font-size:1.75rem;
    }

    .banner-single__content p{
      font-size:1rem;
    }
  }

  .banner-slider__arrow{
    position:absolute;
    top:50%;
    transform: translateY(-50%);
    z-index:5;
    width:42px;
    height:42px;
    border-radius:999px;
    border:0;
    cursor:pointer;
    background: rgba(0,0,0,0.45);
    color:#fff;
    font-size:26px;
    line-height:42px;
    text-align:center;
  }

  .banner-slider__arrow--prev{
    left: 12px;
  }

  .banner-slider__arrow--next{
    right: 12px;
  }

  .banner-slider__dots{
    position:absolute;
    left:50%;
    bottom:29px;
    transform: translateX(-50%);
    z-index:6;
    display:flex;
    gap:10px;
    align-items:center;
    justify-content:center;
  }

  .banner-slider__dot{
    width:10px;
    height:10px;
    border-radius:999px;
    border:0;
    padding:0;
    cursor:pointer;
    background:#fff;
    opacity:.55;
    transition: width 220ms ease, opacity 220ms ease, background-color 220ms ease;
  }

  .banner-slider__dot.is-active{
    width:34px;
    height:10px;
    background:#ff671d;
    opacity:1;
  }

  .banner-slider__dot:focus-visible{
    outline:2px solid #ff671d;
    outline-offset:3px;
  }
/* END_SECTION:dynamic-slideshow */

/* START_SECTION:main-collection-banner-new (INDEX:163) */
/* ========= Full-background hero with left overlay panel ========= */

.collection-banner {
  --banner-bg: var(--banner-bg, #000000);
  --title-color: var(--title-color, #ffffff);
  --title-highlight: var(--title-highlight-color, #FF671B);
  --subtitle-color: var(--subtitle-color, #cccccc);
  --button-bg: var(--button-bg, #FF671B);
  --button-text: var(--button-text, #ffffff);
  --scroll-link: var(--scroll-link-color, #FF671B);

  /* overall height control */
  --banner-height: clamp(260px, 40vw, 420px);

  position: relative;
  width: 100%;
  color: var(--title-color);
  overflow: hidden;
  margin-block: 24px;
}

/* Background image fills the whole section */
.collection-banner__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.collection-banner__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  padding-left: 25%;
    background: black;
}

/* Overlay flex container – keeps panel on the left */
.collection-banner__overlay {
  position: relative;
  z-index: 1;
  min-height: var(--banner-height);
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

/* Left black panel for text */
.collection-banner__content {
  max-width: 26%;
  padding: clamp(20px, 3vw, 36px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.collection-banner__title {
  margin: 0;
  color: var(--title-color);
  font-family: var(--font-heading-family, sans-serif);
  font-weight: 700;
  line-height: 1.05;
  font-size: clamp(28px, 4.2vw, 56px);
}

.collection-banner__title .highlight {
  color: var(--title-highlight);
}

.collection-banner__subtitle {
  color: var(--subtitle-color);
  font-family: var(--font-body-family, sans-serif);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.45;
}

.collection-banner__actions {
  display: flex;
  gap: 14px;
  align-items: center;
  flex-wrap: wrap;
  margin-top: 8px;
}

.collection-banner__button.button {
  background: var(--button-bg);
  color: var(--button-text);
  border: none;
  border-radius: 8px;
  padding: 10px 16px;
  font-weight: 700;
  text-decoration: none;
}

.collection-banner__scroll-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--scroll-link);
  text-decoration: none;
  font-weight: 600;
}

/* ====== Tablet ====== */
@media screen and (max-width: 989px) {
  .collection-banner {
    --banner-height: clamp(240px, 54vw, 380px);
  }

  .collection-banner__overlay {
    justify-content: flex-start;
  }

  .collection-banner__content {
    max-width: 420px;
  }

  .collection-banner__title {
    font-size: clamp(26px, 4.2vw, 40px);
  }

  .collection-banner__subtitle {
    font-size: clamp(15px, 2.2vw, 18px);
  }
}
/* END_SECTION:main-collection-banner-new */

/* START_SECTION:page-paragraph-installer (INDEX:176) */
/* === Scoped to this section only === */
#page-paragraph-installer-{{ section.id }} .page-content {
  padding-left: 4rem;
  padding-right: 4rem;
  color: #000;
}

/* Title */
#page-paragraph-installer-{{ section.id }} .page-paragraph-title {
  font-size: 2.4rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #111;
}

/* Paragraph */
#page-paragraph-installer-{{ section.id }} .page-paragraph-text {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.7;
  color: #333;
  margin-bottom: 4rem;
}

/* Links inside paragraph */
#page-paragraph-installer-{{ section.id }} .page-paragraph-text a {
  color: #ff671b;
  text-decoration: none;
  transition: color 0.2s ease;
  font-weight: 500;
}

#page-paragraph-installer-{{ section.id }} .page-paragraph-text a:hover {
  color: #ff7f3d; /* slightly lighter/orange; keep the # */
  text-decoration: underline;
}

/* Lists */
#page-paragraph-installer-{{ section.id }} .page-paragraph-text ul,
#page-paragraph-installer-{{ section.id }} .page-paragraph-text ol {
  margin: 1rem 0 1.5rem 2rem;
  padding: 0;
}

#page-paragraph-installer-{{ section.id }} .page-paragraph-text li {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}

/* Responsive padding */
@media screen and (max-width: 64rem) {
  #page-paragraph-installer-{{ section.id }} .page-content {
    padding-left: 2rem;
    padding-right: 2rem;
  }
}
@media screen and (max-width: 48rem) {
  #page-paragraph-installer-{{ section.id }} .page-content {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
  #page-paragraph-installer-{{ section.id }} .page-paragraph-title {
    font-size: 2rem;
  }
  #page-paragraph-installer-{{ section.id }} .page-paragraph-text {
    font-size: 1.5rem;
  }
}

/* If you truly want red links here only, scope it: */
#page-paragraph-installer-{{ section.id }} .rte a {
  /* color: red !important;  Uncomment if needed, but avoid !important if possible */
}

/* Replace hard-coded template ID margin with this: */
#page-paragraph-installer-{{ section.id }} {
  margin-top: 8rem; /* if you need that spacing */
}
div#shopify-section-template--25482521215295__intro{ padding-top:4%;}
/* END_SECTION:page-paragraph-installer */

/* START_SECTION:static-product (INDEX:243) */
/* Hide BigPost widget */
  #bigpost-widget { display: none; }

  /* Lock mobile product title size to 3rem */
  .product-mobile-title {
    font-size: 16px !important;
    line-height: 1.2;
    margin: 0 0 8px 0;
    color:black!important;
  }

  /* Optional: breadcrumb link styling (keeps your inline sizes) */
  .breadcrumb .new_breadcrumb { text-decoration: none; color: #000; }

/* Hide the default caption text */
.stamped-badge-caption {
  font-size: 0px;
}


/* Show the precise numeric rating (e.g. 4.8) after the stars */
.stamped-badge-caption[data-reviews][data-label][data-version="2"]:after {
  content: "(" attr(data-rating) ")" !important;
  font-size: 13px !important;
  margin-left: 4px;
}

.product-oversize-notice {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 12px;
  padding: 12px 16px;
  background: #f7f7f7;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  font-family: Inter, sans-serif;
}

.product-oversize-notice__icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  opacity: 0.5;
}

.product-oversize-notice__heading {
  font-family: Inter, sans-serif;
  margin: 0 0 4px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}

.product-oversize-notice__text {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.4;
}

.product-oversize-notice__section {
  margin-top: 11px;
  padding-top: 11px;
  border-top: 1px solid #e6e6e6;
}

.product-oversize-notice__section .product-oversize-notice {
  margin-top: 0;
}

.product-oversize-notice__details {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 16px;
  margin-top: 12px;
}

.product-oversize-notice__details .shipping-learn-more {
  margin-top: 0 !important;
}
/* END_SECTION:static-product */

/* START_SECTION:testimonials (INDEX:253) */
div.testimony__testimonials{padding-bottom:0%!important;}
  .testimony {
    background: var(--testimony-bg-color);
    padding: var(--testimony-padding-top) 6rem var(--testimony-padding-bottom) 6rem;
    position: relative;
    overflow: hidden;
  }

  .testimony__hero {
    max-width: 1380px;
    margin: auto;
    display: flex;
    flex-direction: column;
    gap: 3rem;
    border-bottom: 1px solid #EAEAEA;
  }

  .testimony__hero-content {
    display: flex;
    flex-direction: row;
    gap: 3.5rem;
    align-items: flex-start;
    min-height: 7.625rem;
  }

  .testimony__hero-header {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
    flex: 1;
    min-width: 0;
  }

  .testimony__hero-subtitle {
    color: var(--text-and-icon-secondary, #3e3a39);
    font-family: "Manrope-Regular", sans-serif;
    font-size: 1.8rem;
    line-height: 100%;
    font-weight: 400;
  }

  .testimony__hero-title {
    font-family: "Tomorrow-Bold", sans-serif;
    font-size: 2.8rem;
    line-height: 110%;
    letter-spacing: -0.01em;
    font-weight: 700;
    text-transform: uppercase;
  }


  .testimony__hero-title-part1 { color: var(--text-and-icon-primary, #1b1717); }
  .testimony__hero-title-part2 { color: var(--brand-primary, #ff671b); }

  .testimony__features {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    align-items: center;
    flex: 3;
  }

  .testimony__feature {
    display: flex;
    flex-direction: column;
    gap: 1.125rem;
    flex: 1;
    min-width: 0;
  }

  .testimony__feature-header {
    display: flex;
    flex-direction: row;
    gap: 0.625rem;
    align-items: center;
  }

  .testimony__feature-icon {
    width: 1.75rem;
    height: 1.6875rem;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .testimony__feature-icon svg { width: 100%; height: 100%; }

  .testimony__feature-title {
    color: var(--text-and-icon-primary, #1b1717);
    font-family: "Tomorrow-Bold", sans-serif;
    font-size: 1.8rem;
    line-height: 110%;
    letter-spacing: -0.01em;
    font-weight: 700;
    text-transform: uppercase;
  }

  .testimony__feature-text {
    color: var(--text-and-icon-secondary, #3e3a39);
    font-family: "Manrope-Regular", sans-serif;
    font-size: 1.4rem;
    line-height: 181%;
    font-weight: 400;
  }

  .testimony__divider {
    display: flex;
    flex-direction: row;
    gap: 1rem;
    align-items: center;
    overflow: hidden;
  }
  .testimony__divider-line { background: var(--background-border-2, #dcdcdc); height: 0.0625rem; flex: 1; }
  .testimony__divider-dot { background: var(--background-border-2, #dcdcdc); border-radius: 50%; width: 0.375rem; height: 0.375rem; flex-shrink: 0; }

  .testimony__testimonials {
    background: var(--testimony-bg-color);
    padding: 4rem 0;
    display: flex;
    flex-direction: column;
    gap: 2rem;
    align-items: center;
    position: relative;
  }

  .testimony__testimonials-header {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
    max-width: 62.5rem;
    text-align: center;
  }

  .testimony__testimonials-title {
    color: var(--text-and-icon-primary, #1b1717);
    font-family: "Manrope-Bold", sans-serif;
    font-size: 3.6rem;
    line-height: 100%;
    letter-spacing: -0.03em;
    font-weight: 700;
  }

  .testimony__testimonials-subtitle {
    color: #474747;
    font-family: "Manrope-Regular", sans-serif;
    font-size: 1.6rem;
    line-height: 1.6rem;
    font-weight: 400;
  }

  .testimony__cta {
    display: flex;
    flex-direction: column;
    gap: 0.9375rem;
    align-items: center;
    max-width: 56.25rem;
  }
  .testimony__cta-label {
    color: #7d7d7d;
    font-family: "Manrope-Medium", sans-serif;
    font-size: 1.6rem;
    line-height: 1.8rem;
    letter-spacing: 0.03rem;
    font-weight: 500;
    text-align: center;
  }
  .testimony__cta-button-wrapper { width: 100%; }

  .testimony__cta-button {
    background: #ffffff;
    border-radius: 0.5rem;
    padding: 0.96875rem 1.25rem 0.96875rem 1.5625rem;
    display: inline-flex;
    flex-direction: row;
    gap: 0.3125rem;
    align-items: center;
    justify-content: center;
    position: relative;
    box-shadow:
      0 0.625rem 0.625rem -0.234375rem rgba(9, 9, 11, 0.04),
      0 0.143125rem 0.143125rem -0.15625rem rgba(9, 9, 11, 0.09),
      0 0.0375rem 0.0375rem -0.078125rem rgba(9, 9, 11, 0.11);
    text-decoration: none;
    transition: transform 0.2s ease;
  }
  .testimony__cta-button:hover { transform: translateY(-0.125rem); }

  .testimony__cta-button-text {
    color: #000000;
    font-family: "Manrope-Bold", sans-serif;
    font-size: 1.2rem;
    line-height: 0.875rem;
    letter-spacing: 0.02625rem;
    font-weight: 700;
  }
  .testimony__cta-button-icon { display: flex; align-items: center; width: 1rem; height: 1rem; }
  .testimony__cta-button-border { border: 0.0625rem solid #e4e4e7; border-radius: 0.5rem; position: absolute; inset: 0; pointer-events: none; }

  .testimony__gradients { position: absolute; inset: 0; pointer-events: none; }
  .testimony__gradient { width: 19.6875rem; height: 100%; position: absolute; top: 0; }
  .testimony__gradient--right { background: linear-gradient(90deg, rgba(249, 244, 237, 0) 0%, rgba(249, 244, 237, 1) 100%); right: 0; }
  .testimony__gradient--left  { background: linear-gradient(270deg, rgba(249, 244, 237, 0) 0%, rgba(249, 244, 237, 1) 100%); left: 0; }

  @media screen and (max-width: 989px) {
    .testimony { padding-left: 3rem; padding-right: 3rem; }
    .testimony__hero-content { flex-direction: column; gap: 2rem; align-items: flex-start; }
    .testimony__features { flex-direction: column; width: 100%; }
    .testimony__hero-title { font-size: 1.5rem; }
    .testimony__testimonials-title { font-size: 1.75rem; }
  }

  @media screen and (max-width: 749px) {
    .testimony { padding-left: 1.5rem; padding-right: 1.5rem; padding-bottom:0px!important;}
    .testimony__hero-title { font-size: 1.25rem; }
    .testimony__testimonials-title { font-size: 1.5rem; }
    .testimony__gradient { width: 10rem; }
  }

    div.testimony__cta{width:100%!important;max-width: 100%!important;}
/* END_SECTION:testimonials */

/* START_SECTION:top-products (INDEX:255) */
/* ========= Header bits ========= */
.top-products-see-more {
  position: relative;
  top: -3px;
}
.dot-separator {
  height: 16px;
  width: 4px;
}
.top-products-title .section-header {
  font-size: 3vh;
  font-weight: 600 !important;
}

/* Mobile tweaks */
@media (max-width: 900px) {
 

  .dot-separator { display: none !important; }
  .top-products-header { justify-content: space-between; }
}

/* ========= Ratings styling (scoped to this section) ========= */
/* If your product cards use different provider classes, keep these;
   scoping prevents bleed to other sections. */
.top-products-section .stamped-fa.stamped-fa-star { color: #ff671b !important; }
.top-products-section .stamped-fa.stamped-fa-star-o::before { color: #ff671b !important; }
.top-products-section .stamped-fa.stamped-fa-star-half-o::before { color: #ff671b !important; }

/* Compact rating row for product cards (works for multiple providers) */
.top-products-section .stamped-badge,
.top-products-section .spr-badge,
.top-products-section .jdgm-prev-badge {
  display: inline-flex;
  align-items: center;
  gap: 0;
}

/* Smaller stars across providers */
.top-products-section .stamped-badge .stamped-fa-star,
.top-products-section .stamped-badge .stamped-fa-star-o,
.top-products-section .stamped-badge .stamped-fa-star-half-o,
.top-products-section .spr-badge .spr-icon,
.top-products-section .jdgm-prev-badge .jdgm-star {
  font-size: 12px !important;
}
.top-products-section .stamped-badge .stamped-starrating,
.top-products-section .spr-badge .spr-starrating,
.top-products-section .jdgm-prev-badge .jdgm-star-all {
  transform: scale(.95);
  transform-origin: left center;
}

/* Hide captions like "12 reviews" (we‚Äôll show a compact "(12)") */
.top-products-section .stamped-badge .stamped-badge-caption { display: none !important; }
.top-products-section .spr-badge .spr-badge-caption { display: none !important; }
.top-products-section .jdgm-prev-badge .jdgm-prev-badge__text { display: none !important; }

/* Removed as dead code (verified against the rendered DOM):
   - `.rating-count`: the compact "(N)" span was injected into the review-app
     badge, which card-product5 emits as `.stamped-product-reviews-badge
     visually-hidden` — all 80 injected spans measured trulyVisible: 0. The
     visible rating ("4.8 (46)") comes from Liquid metafields in card-product5.
   - `.product-card` / `.frame-216` / `.frame-218` / `.top-products-grid__item`
     card-sizing rules: this section renders card-product5 (`.product-card-5`),
     and all four selectors matched 0 elements. They belong to the older
     card-product/card-product3 markup. */
/* END_SECTION:top-products */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:product (INDEX:555) */
.product-top-container {
    display: flex;
    flex-direction: column;
    width: 60%;
  }

  .product-badge-shipping-text {
    color: #635e5c;
    font-size: 12px;
    margin-top: 3px;
    margin-left: 0px;
  }

  .product-details {
    padding: 15px;
    border: 1px solid #e6e6e6;
    border-radius: 8px;
    margin-right: 15px;
  }

  @media screen and (max-width: 786px) {
    h1.product-title.text-h1 {
      padding: 0px 10px !important;
    }
    .product-details {
      margin-right: 0px;
    }
  }

  .quick-contact-badge,
  .quick-contact-badge:hover {
    background-color: transparent;
    border: 0px;
    justify-content: center;
    box-shadow: none;
    padding: 0px;
  }

  .quick-contact-badge-text {
    color: #ff661b;
    text-align: center;
  }

  .product__badge--instock {
    color: #08763e;
    background-color: transparent;
    padding-left: 0px;
    font-size: 16px;
  }

  .quick-contact {
    padding-top: 15px;
    padding-bottom: 15px;
  }

  .product-metafield-image-row {
    display: flex;
    gap: 1rem;
    padding-top: 18px;
    justify-content: space-around;
    border-top: solid 1px #e6e6e6;
    flex-wrap: wrap;
    padding-bottom: 18px;
  }

  .product-metafield-image-row img {
    width: 100%;
    max-width: 130px;
    border-radius: 6px;
    box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
  }

  @media screen and (max-width: 786px) {
    .product-top-container {
      width: 100%;
    }
    .product-metafield-image-row img {
      max-width: 100px;
    }
  }

  .save-amount {
    color: #ff671d;
    font-weight: 700;
    font-size: 16px;
  }

  .custom-price-display {
    margin-bottom: 2px;
  }

  .compare-at {
    text-decoration: line-through;
    color: #888;
    margin-right: 0.5rem;
  }

  .custom-price-display .compare-at[data-price-compare-container] {
    display: none;
  }
  .custom-price-display .compare-at[data-price-compare-container].visible {
    display: inline;
  }

  .product-sku {
    margin: 0.3rem 0;
  }

  .final-price {
    font-size: 43px;
    font-weight: bold;
    color: #1b1b1b;
  }

  .affirm-as-low-as {
    color: grey;
  }
  .affirm-modal-trigger {
    color: dimgrey;
  }

  .product-pricing {
    padding-bottom: 11px;
    border-bottom: 1px solid #e6e6e6;
  }

  .mdc-ripple-surface {
    max-width: -webkit-fill-available;
    margin-left: 0px !important;
    margin-top: 0px !important;
    color: white;
  }

  @media screen and (max-width: 786px) {
    .mdc-ripple-surface {
      max-width: 206px;
    }
    .final-price {
      font-size: 32px;
    }
  }
/* END_SNIPPET:product */

/* START_SNIPPET:zendesk-launcher (INDEX:629) */
.tmg-zendesk-launcher {
    position: fixed;
    right: 20px;
    bottom: 20px;
    z-index: 999998;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    max-width: 100%;
    min-height: 48px;
    margin: 0;
    padding: 13px 22px;
    overflow: visible;
    color: rgb(78, 34, 13) !important;
    fill: rgb(78, 34, 13) !important;
    background-color: rgb(255, 103, 31) !important;
    border: 0 !important;
    border-radius: 999rem;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.24);
    box-sizing: border-box;
    cursor: pointer;
    font: inherit;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.6px;
    line-height: 1;
    text-align: left;
    text-transform: none;
    white-space: nowrap;
    appearance: none;
    -webkit-appearance: none;
    transition: background-color 150ms ease, transform 150ms ease;
  }

  .tmg-zendesk-launcher:hover {
    background: #e65a15;
    transform: translateY(-2px);
  }

  .tmg-zendesk-launcher:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 2px;
  }

  .tmg-zendesk-launcher .tmg-zendesk-launcher__icon {
    flex: 0 0 auto;
    width: 20px;
    height: 20px;
  }

  .tmg-zendesk-launcher__label {
    display: inline-block;
  }

  @media screen and (max-width: 768px) {
    .tmg-zendesk-launcher {
      right: 0;
      bottom: 0;
      width: 48px;
      height: 50px;
      min-height: 50px;
      margin: 10px 20px;
      gap: 0;
      padding: 0;
      border-radius: 50%;
    }

    .tmg-zendesk-launcher__label {
      display: none;
    }
  }

  @media print {
    .tmg-zendesk-launcher {
      display: none;
    }
  }
/* END_SNIPPET:zendesk-launcher */