/** Shopify CDN: Minification failed

Line 1003:20 Unexpected "{"
Line 1003:29 Expected ":"
Line 1014:20 Unexpected "{"
Line 1014:29 Expected ":"
Line 1039:22 Unexpected "{"
Line 1039:31 Expected ":"

**/
/* ======================================
   CLATRA – Ronin-style floating pill header (final)
====================================== */

:root{
  --cl-header-gap: 14px;
  --cl-pill-h: 56px;
  --cl-pill-pad-x: 18px;
  --cl-pill-radius: 999px;
  --cl-logo-h: 26px;
  --cl-container-pad: 24px;
  --cl-header-top-space: 24px;
}

.cl-header{
  margin-top: 0;
  padding-top: 0;
}

.cl-header .cl-pill-wrap{
  margin-top: 0;
  padding-top: 0;
}

html, body{ overflow-x: clip; margin:0; padding:0; }
*{ box-sizing: border-box; }

.cl-container{
  width: 100%;
  max-width: 100%;
  padding-left: var(--cl-container-pad);
  padding-right: var(--cl-container-pad);
}

/* =========================
   Header positioning
========================= */

.cl-header{
  width: 100%;
  z-index: 60;
}

/* Home: overlay on banner */
.cl-header--home{
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}

/* Sticky state (when JS adds is-sticky-enabled + is-scrolled) */
.cl-header.is-sticky-enabled.is-scrolled{
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

/* =========================
   Topbar (desktop)
========================= */
.cl-topbar{
  padding-top: var(--cl-header-top-space);
}

.cl-topbar__links{
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 22px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

.cl-topbar__links a{
  color: #fff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.2px;
}

.cl-topbar__links a:hover{ color: var(--clatra-accent); }

.cl-header.is-sticky-enabled.is-scrolled .cl-topbar{
  display: none;
}

/* =========================
   Pill wrapper spacing
========================= */
.cl-pill-wrap{ margin-top: 12px; }

/* If topbar is OFF, remove extra vertical spacing */
.cl-header.no-topbar .cl-pill-wrap{
  margin-top: 24px;
}

/* When sticky scrolled, tighten spacing */
.cl-header.is-sticky-enabled.is-scrolled .cl-pill-wrap{
  margin-top: 10px;
  margin-bottom: 10px;
}

/* =========================
   The Pill
========================= */

.cl-pill{
  width: 100%;
  max-width: 100%;
  background: #fff;
  border-radius: var(--cl-pill-radius);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  overflow: hidden;
}

/* Row 1: bar (fixed height) */
.cl-pill__bar{
  height: var(--cl-pill-h);
  padding: 0 var(--cl-pill-pad-x);

  display: grid;
  grid-template-columns: max-content 1fr max-content;
  align-items: center;
  gap: var(--cl-header-gap);
}

/* Logo */
.cl-pill__logo{
  display: inline-flex;
  align-items: center;
  min-width: 0;
  text-decoration: none;
  color: var(--clatra-ink);
}

.cl-pill__logo-img{
  display: block;
  height: var(--cl-logo-h) !important;
  width: auto !important;
  max-width: 150px;
  object-fit: contain;
}

.cl-pill__logo-text{
  font-weight: 800;
  letter-spacing: 0.6px;
  white-space: nowrap;
}

/* Desktop nav */
.cl-pill__nav{ min-width: 0; }

.cl-pill__menu{
  list-style: none;
  margin: 0;
  padding: 10px;
  display: inline-flex;
  gap: 26px;
  justify-content: right;
  width: 100%;
  min-width: 0;
}

.cl-pill__menu a{
  text-decoration: none;
  color: var(--clatra-ink);
  font-weight: 700;
  font-size: 14px;
  white-space: nowrap;
}

.cl-pill__menu a:hover{ color: var(--clatra-accent); }

/* Icons */
.cl-pill__icons{
  display: inline-flex;
  align-items: center;
  gap: 14px;
  flex-wrap: nowrap;
  padding-right: 10px;
}

.cl-icon{
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--clatra-ink);
  text-decoration: none;
  position: relative;
  flex: 0 0 auto;
}

.cl-icon svg{
  width: 22px;
  height: 22px;
  fill: currentColor;
  display: block;
}

.cl-bubble{
  position: absolute;
  top: -8px;
  right: -10px;
  min-width: 18px;
  height: 18px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--clatra-accent);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
}



/* =========================
   Mobile dropdown menu (attached INSIDE pill)
========================= */

.cl-pill__mobilemenu{
  border-top: 1px solid rgba(27,27,29,0.10);
}

/* list */
.cl-mmenu{
  list-style: none;
  margin: 0;
  padding: 0; /* IMPORTANT: no extra gap */
}

.cl-mmenu__item{ margin:0; padding:0; }

.cl-mmenu__link{
  display: block;
  padding: 18px var(--cl-pill-pad-x);
  text-decoration: none;
  color: var(--clatra-ink);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.2;
}

.cl-mmenu__item + .cl-mmenu__item .cl-mmenu__link{
  border-top: 1px solid rgba(27,27,29,0.08);
}

.cl-mmenu__link:hover{ color: var(--clatra-accent); }

/* =========================
   Responsive behavior
========================= */
@media (max-width: 989px){
  .cl-pill{
    display: flex;
    flex-direction: column;
  }

  /* bar becomes: logo | icons */
  .cl-pill__bar{
    grid-template-columns: 1fr auto;
  }

  .cl-pill__nav{ display: none; }

  .cl-pill__logo-img{ max-width: 110px; }

  .cl-icon--hamburger{ display: inline-flex !important; }

  /* hidden by default */
  .cl-pill__mobilemenu[hidden]{ display:none; }

  /* visible when open */
  .cl-pill.is-menu-open .cl-pill__mobilemenu{
    display:block;
  }
}

@media (min-width: 990px){
  .cl-icon--hamburger{ display: none !important; }
}

/* ======================================
   Search Modal
====================================== */

.cl-search[hidden]{ display:none; }

.cl-search{
  position: fixed;
  inset: 0;
  z-index: 120;
}

.cl-search__overlay{
  position:absolute;
  inset:0;
  background: rgba(0,0,0,0.45);
}

.cl-search__panel{
  position: absolute;
  left: 50%;
  top: 14px;
  transform: translateX(-50%);
  width: min(920px, calc(100% - 32px));
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(0,0,0,0.25);
  padding: 14px;
}

.cl-search__form{
  display:flex;
  align-items:center;
  gap: 10px;
}

.cl-search__submit,
.cl-search__close{
  border:0;
  background: transparent;
  padding: 8px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  color: var(--clatra-ink);
  cursor:pointer;
}

.cl-search__submit svg,
.cl-search__close svg{
  width: 22px;
  height: 22px;
  fill: currentColor;
  display:block;
}

.cl-search__close{
  font-weight: 700;
  font-size: 14px;
  padding: 8px 10px;
}

.cl-search__input{
  flex: 1 1 auto;
  height: 44px;
  border: 0;
  outline: none;
  font-size: 16px;
  color: var(--clatra-ink);
}

.cl-search__results{
  margin-top: 10px;
  max-height: 45vh;
  overflow: auto;
  border-top: 1px solid rgba(27,27,29,0.10);
  padding-top: 10px;
}

/* Predictive items */
.cl-ps__section{ margin: 0 0 12px; }

.cl-ps__title{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  opacity: 0.75;
  margin: 0 0 8px;
}

.cl-ps__list{
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}

.cl-ps__item a{
  display:flex;
  align-items:center;
  gap: 10px;
  text-decoration:none;
  color: var(--clatra-ink);
  padding: 10px;
  border-radius: 12px;
}

.cl-ps__item a:hover{ background: rgba(217,72,172,0.08); }

.cl-ps__thumb{
  width: 44px;
  height: 44px;
  border-radius: 10px;
  object-fit: cover;
  flex: 0 0 auto;
  background: rgba(27,27,29,0.06);
}

.cl-ps__meta{ min-width: 0; }

.cl-ps__name{
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.cl-ps__sub{
  font-size: 12px;
  opacity: 0.75;
  margin-top: 2px;
}

/* ======================================
   Hero slider full width
====================================== */

.cl-hero{ position: relative; overflow: hidden; }

/* Breakout trick: make it true edge-to-edge even inside a container */
.cl-hero{
  width: 100vw;
  max-width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
}

.cl-hero__viewport{ width: 100%; }
.cl-hero__track{
  display: flex;
  transition: transform 450ms ease;
  will-change: transform;
}

.cl-hero__slide{
  flex: 0 0 100%;
  position: relative;
  aspect-ratio: var(--cl-hero-ratio-desktop, 16/7);
}

@media (max-width: 989px){
  .cl-search__panel{
    width: calc(100% - 24px);
    border-radius: 16px;
    padding: 12px;
  }

  .cl-hero__slide{
    aspect-ratio: var(--cl-hero-ratio-mobile, 4/5);
  }
}

.cl-hero__link{ display:block; width:100%; height:100%; color:inherit; text-decoration:none; }
.cl-hero__media,
.cl-hero__img{ width: 100%; height: 100%; display: block; }
.cl-hero__img{ object-fit: cover; object-position: center; }

.cl-hero__caption{
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 18px;
  color: #fff;
  text-shadow: 0 8px 25px rgba(0,0,0,.35);
}

.cl-hero__heading{ margin: 0; font-size: 32px; font-weight: 800; }
.cl-hero__subheading{ margin: 6px 0 0; font-size: 14px; font-weight: 600; opacity: .95; }

@media (max-width: 989px){
  .cl-hero__heading{ font-size: 22px; }
}

/* arrows */
.cl-hero__arrow{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: 0;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(255,255,255,0.85);
  box-shadow: 0 10px 30px rgba(0,0,0,.18);
  cursor: pointer;
  z-index: 2;
  font-size: 22px;
  line-height: 1;
}
.cl-hero__arrow--prev{ left: 14px; }
.cl-hero__arrow--next{ right: 14px; }

@media (max-width: 989px){
  .cl-hero__arrow{ display:none; }
}

/* dots */
.cl-hero__dots{
  position: absolute;
  left: 0; right: 0;
  bottom: 10px;
  display: flex;
  justify-content: center;
  gap: 8px;
  z-index: 2;
}
.cl-hero__dot{
  width: 8px;
  height: 8px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.55);
  cursor: pointer;
}
.cl-hero__dot.is-active{ background: #d948ac; }

/* Fix mobile menu shape when hamburger opens */
@media (max-width: 989px){
  .cl-pill.is-menu-open{
    border-radius: 28px !important; /* instead of full pill/oval */
  }

  .cl-pill.is-menu-open .cl-pill__bar{
    border-bottom: 1px solid rgba(27, 27, 29, 0.08);
  }

  .cl-pill.is-menu-open .cl-pill__mobilemenu{
    border-top: 0;
  }
}

/* Reliable hamburger -> X conversion */
.cl-icon--hamburger{
  position: relative;
}

.cl-menu-icon--open{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cl-pill.is-menu-open .cl-menu-icon--open{
  opacity: 0;
}

.cl-pill.is-menu-open .cl-icon--hamburger::before,
.cl-pill.is-menu-open .cl-icon--hamburger::after{
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform-origin: center;
}

.cl-pill.is-menu-open .cl-icon--hamburger::before{
  transform: translate(-50%, -50%) rotate(45deg);
}

.cl-pill.is-menu-open .cl-icon--hamburger::after{
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* =========================
   Clatra Cart Drawer
========================= */

.cl-cart[hidden]{
  display: none;
}

.cl-cart{
  position: fixed;
  inset: 0;
  z-index: 140;
}

.cl-cart__overlay{
  position: absolute;
  inset: 0;
  background: rgba(3, 84, 205, 0.22);
  backdrop-filter: blur(4px);
}

.cl-cart__panel{
  position: absolute;
  top: 18px;
  right: 18px;
  bottom: 18px;
  width: min(420px, calc(100vw - 36px));
  background: #fff;
  border-radius: 22px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.18);
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.cl-cart__header{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 22px 14px;
}

.cl-cart__title{
  margin: 0;
  font-size: 28px;
  font-weight: 500;
  color: var(--clatra-ink);
}

.cl-cart__close{
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  color: var(--clatra-ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cl-cart__close svg{
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.cl-cart__headings{
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 0 22px 14px;
  border-bottom: 1px solid rgba(27,27,29,0.10);
  color: rgba(27,27,29,0.65);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 700;
}

.cl-cart__body{
  flex: 1 1 auto;
  overflow-y: auto;
  padding: 10px 22px 22px;
}

/* .cl-cart__loading, */
.cl-cart__empty{
  padding: 24px 0;
  color: var(--clatra-ink);
}

.cl-cart__item{
  display: grid;
  grid-template-columns: 92px 1fr auto;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(27,27,29,0.08);
}

.cl-cart__image{
  width: 92px;
  height: 92px;
  border-radius: 14px;
  object-fit: cover;
  background: #f5f5f5;
}

.cl-cart__meta{
  min-width: 0;
}

.cl-cart__name{
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--clatra-ink);
  text-decoration: none;
}

.cl-cart__price,
.cl-cart__variant{
  font-size: 13px;
  color: rgba(27,27,29,0.72);
  margin-top: 4px;
}

.cl-cart__side{
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

.cl-cart__line-total{
  font-size: 18px;
  font-weight: 500;
  color: var(--clatra-ink);
  white-space: nowrap;
}

.cl-cart__remove{
  border: 0;
  background: transparent;
  color: var(--clatra-ink);
  cursor: pointer;
  font-size: 22px;
  line-height: 1;
  padding: 0;
}

.cl-cart__qty{
  display: inline-flex;
  align-items: center;
  gap: 0;
  border-radius: 999px;
  box-shadow: 0 4px 14px rgba(0,0,0,0.08);
  overflow: hidden;
  background: #fff;
}

.cl-cart__qty-btn{
  border: 0;
  background: transparent;
  width: 34px;
  height: 34px;
  cursor: pointer;
  font-size: 18px;
  color: var(--clatra-ink);
}

.cl-cart__qty-num{
  min-width: 28px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--clatra-ink);
}

.cl-cart__footer{
  border-top: 1px solid rgba(27,27,29,0.10);
  padding: 18px 22px 22px;
}

.cl-cart__subtotal-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cl-cart__subtotal-label{
  font-size: 16px;
  color: var(--clatra-ink);
}

.cl-cart__subtotal-value{
  font-size: 18px;
  font-weight: 600;
  color: var(--clatra-ink);
}

.cl-cart__note{
  margin: 10px 0 14px;
  font-size: 12px;
  color: rgba(27,27,29,0.65);
  line-height: 1.5;
}

.cl-cart__terms{
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12px;
  color: rgba(27,27,29,0.85);
  margin-bottom: 14px;
}

.cl-cart__terms a{
  color: inherit;
  font-weight: 700;
}

.cl-cart__button{
  display: inline-flex;
  width: 100%;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  border-radius: 10px;
  background: linear-gradient(180deg, var(--clatra-accent), var(--clatra-primary));
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  border: 0;
  box-shadow: 0 10px 24px rgba(102, 35, 132, 0.22);
}

.cl-cart__button:hover{
  color: #fff;
  filter: brightness(1.03);
}

@media (max-width: 989px){
  .cl-cart__panel{
    top: 22px;
    right: 22px;
    left: 22px;
    bottom: 22px;
    width: auto;
    border-radius: 22px;
  }

  .cl-cart__title{
    font-size: 18px;
  }

  .cl-cart__item{
    grid-template-columns: 78px 1fr;
  }

  .cl-cart__image{
    width: 78px;
    height: 78px;
  }

  .cl-cart__side{
    grid-column: 2;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}

.cl-cart__close-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  line-height: 1;
  font-weight: 300;
}

.cl-cart__price-wrap{
  margin-top: 6px;
}

.cl-cart__compare{
  font-size: 13px;
  color: rgba(27,27,29,0.45);
  text-decoration: line-through;
  margin-bottom: 2px;
}

.cl-cart__price{
  font-size: 14px;
  color: rgba(27,27,29,0.78);
  margin-top: 2px;
}

.cl-cart__saved{
  margin-top: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--clatra-accent);
}

.cl-cart__variant-badge{
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(102, 35, 132, 0.08);
  color: var(--clatra-primary);
  font-size: 12px;
  font-weight: 600;
}

.cl-cart__price-wrap{
  margin-top: 6px;
}

.cl-cart__compare{
  font-size: 13px;
  color: rgba(27,27,29,0.45);
  text-decoration: line-through;
  margin-bottom: 2px;
}

.cl-cart__price{
  font-size: 14px;
  color: rgba(27,27,29,0.78);
  margin-top: 2px;
}

.cl-cart__saved{
  margin-top: 4px;
  font-size: 12px;
  font-weight: 700;
  color: var(--clatra-accent);
}

.cl-cart__variant-badge{
  display: inline-flex;
  align-items: center;
  margin-top: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(102, 35, 132, 0.08);
  color: var(--clatra-primary);
  font-size: 12px;
  font-weight: 600;
}




.cl-description-inner img{
max-width:100%;
height:auto;
display:block;
}

.cl-description-inner iframe{
max-width:100%;
}

.cl-description-inner table{
width:100%;
overflow-x:auto;
display:block;
}

.cl-thumbs{
scroll-snap-type:x mandatory;
}

.cl-thumb{
scroll-snap-align:start;
}

.cl-qty{
display:flex;
align-items:center;
gap:10px;
margin-bottom:16px;
}

.cl-qty button{
width:36px;
height:36px;
border-radius:8px;
border:1px solid #ddd;
background:#fff;
cursor:pointer;
font-size:18px;
}

.cl-qty-input{
width:60px;
text-align:center;
height:36px;
border:1px solid #ddd;
border-radius:8px;
}

  .cl-product-hero-{{ section.id }} .cl-main-media{
    position: relative;
    width: 100%;
    max-width: var(--cl-media-size);
    margin: 0 auto;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .cl-product-hero-{{ section.id }} .cl-discount-badge{
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 3;

    width: 72px;
    height: 72px;
    border-radius: 999px;

    display: flex;
    align-items: center;
    justify-content: center;

    text-align: center;
    line-height: 1.05;
    font-size: 13px;
    font-weight: 800;
    color: #fff;

    background: #d948ac
    /* box-shadow: 0 10px 24px rgba(0,0,0,0.18); */
  }

  @media screen and (max-width: 989px){
    .cl-product-hero-{{ section.id }} .cl-discount-badge{
      width: 58px;
      height: 58px;
      font-size: 11px;
      top: 10px;
      left: 10px;
    }
  }

  .cl-sticky-atc{
  position: fixed;
  left: 0;
  right: 0;
  bottom: 22px;
  z-index: 80;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all .25s ease;
}

.cl-sticky-atc.is-visible{
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.cl-sticky-atc__inner{
  width: fit-content;
  max-width: calc(100vw - 24px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 18px;

  border-radius: 999px;

  /* glass black effect */
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border: 1px solid rgba(255,255,255,0.15);

  box-shadow:
    0 10px 30px rgba(0,0,0,0.45),
    inset 0 1px 0 rgba(255,255,255,0.08);
}

.cl-sticky-atc__left{
  display: flex;
  align-items: center;
  gap: 14px;
}

.cl-sticky-atc__mobile-box{
  display: flex;
  align-items: center;
  gap: 10px;
}

.cl-sticky-atc__title{
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: #ffffff;
}

.cl-sticky-atc__divider{
  width: 1px;
  height: 28px;
  background: rgba(27,27,29,0.16);
}

.cl-sticky-atc__price-wrap{
  display: flex;
  align-items: center;
}

.cl-sticky-atc__price{
  font-size: 15px;
  font-weight: 800;
  color: #ffffff;
}

.cl-sticky-atc__right{
  display: flex;
  align-items: center;
  gap: 10px;
}

.cl-sticky-atc__select{
  min-width: 150px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid rgba(27,27,29,0.14);
  background: #fff;
  padding: 0 12px;
  font-size: 14px;
}

.cl-sticky-atc__btn{
  height: 42px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  background: #662384;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
}

.cl-sticky-atc__btn[disabled]{
  opacity: .5;
  cursor: not-allowed;
}

@media (max-width: 989px){
  .cl-sticky-atc{
    left: 12px;
    right: 12px;
    bottom: 16px;
  }

  .cl-sticky-atc__inner{
    width: 100%;
    max-width: 100%;
    border-radius: 18px;
    padding: 12px;
    justify-content: space-between;
  }

  .cl-sticky-atc__left{
    min-width: 0;
    flex: 1 1 auto;
  }

  .cl-sticky-atc__mobile-box{
    display: block;
    min-width: 0;
  }

  .cl-sticky-atc__title{
    font-size: 13px;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .cl-sticky-atc__price{
    font-size: 14px;
    margin-top: 4px;
  }

  .cl-sticky-atc__price-wrap--desktop{
    display: none;
  }

  .cl-sticky-atc__divider{
    display: none;
  }

  .cl-sticky-atc__right{
    flex: 0 0 auto;
  }

  .cl-sticky-atc__select{
    display: none;
  }

  .cl-sticky-atc__btn{
    min-width: 118px;
  }
}



/* Desktop footer fix */
@media screen and (min-width: 990px) {

  .cl-footer__accordion-toggle{
    display:none !important;
  }

  .cl-footer__menu-body{
    display:block !important;
  }

  .cl-footer__menu-head{
    cursor:default;
  }

}

.clatra-home-products__inner{
  padding-left:24px;
  padding-right:24px;
}

.clatra-home-products__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
}

.clatra-home-products__title{
  margin:0;
  font-size:36px;
  line-height:1.05;
  color:#1b1b1d;
  font-weight:800;
}

.clatra-home-products__title span{
  color:#662384;
}

.clatra-home-products__viewall{
  text-align:right;
}

.clatra-home-products__viewall a{
  text-decoration:none;
  color:#662384;
  font-size:14px;
  font-weight:700;
}

.clatra-home-products__slider{
  overflow:hidden;
}

.clatra-home-products__track{
  display:flex;
  gap:14px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding-bottom:4px;
  scrollbar-width:none;
}

.clatra-home-products__track::-webkit-scrollbar{
  display:none;
}

.clatra-home-products__slide{
  flex:0 0 calc(25% - 10.5px);
  min-width:0;
  scroll-snap-align:start;
}

.clatra-home-products__empty{
  background:#fff;
  border-radius:20px;
  padding:24px;
  border:1px solid rgba(27,27,29,.08);
}

@media (max-width: 1199px){
  .clatra-home-products__title{
    font-size:32px;
  }
}

@media (max-width: 989px){
  .clatra-home-products__inner{
    padding-left:12px;
    padding-right:12px;
  }

  .clatra-home-products__title{
    font-size:28px;
  }

  .clatra-home-products__slide{
    flex:0 0 calc(50% - 7px);
  }
}

@media (max-width: 749px){
  .clatra-home-products__head{
    margin-bottom:14px;
  }

  .clatra-home-products__title{
    font-size:24px;
  }

  .clatra-home-products__viewall a{
    font-size:13px;
  }

  .clatra-home-products__slide{
    flex:0 0 83%;
  }
}

/* =========================
   Clatra USP Icons Strip
========================= */

.cl-usp-strip{
  background: var(--cl-usp-bg,#fff);
}

/* container spacing */
.cl-usp-strip .cl-container{
  max-width:1200px;
  margin:auto;
}

/* grid layout */
.cl-usp-strip__list{
  list-style:none;
  margin:0;
  padding:0;

  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(110px,1fr));

  /* reduced spacing between icons */
  gap:6px;

  align-items:center;
  text-align:center;
}

/* item */
.cl-usp-strip__item{
  padding:2px 4px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

/* icon */
.cl-usp-strip__media{
  width:80px;
  height:80px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:6px;
}

.cl-usp-strip__image{
  max-width:100%;
  max-height:100%;
  width:auto;
  height:auto;
  object-fit:contain;
}

/* title */
.cl-usp-strip__title{
  margin:0;
  font-size:12px;
  line-height:normal;
  font-weight:400;
  color:var(--cl-usp-text,#1b1b1d);
}

/* mobile */

@media (max-width:749px){

  .cl-usp-strip__list{
    grid-template-columns:repeat(auto-fit,minmax(70px,1fr));
    gap:4px;
  }


   .cl-usp-strip__media{
    width:64px;
    height:64px;
  }

}

  .cl-usp-strip__title{
    font-size:15px;
    line-height:normal;
  font-weight:400;
  }



.cl-usp-strip__image{
  width:100%;
  height:100%;
  object-fit:contain;
  image-rendering:auto;
}

.clatra-home-products__track{
  display:flex;
  gap:14px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding-bottom:4px;
  scrollbar-width:none;
}

.clatra-home-products__slide{
  flex:0 0 calc((100% - 42px) / 4);
  min-width:0;
  scroll-snap-align:start;
}

@media (max-width: 989px){
  .clatra-home-products__slide{
    flex:0 0 calc((100% - 14px) / 2);
  }
}

@media (max-width: 749px){
  .clatra-home-products__slide{
    flex:0 0 83%;
  }
}