/* ============================================================
   LAPTOP STATION — COLLECTION GRID / FILTERS / STANDARD CARDS
   Full replacement CSS
   ============================================================ */

   .ls-collection-bottom-description{
  margin:48px 0 0;
  padding:32px;
  background:#fff;
  border:1px solid #dfe3ec;
  border-radius:24px;
  color:#111827;
  font-size:16px;
  line-height:1.6;
}

.ls-collection-bottom-description h2,
.ls-collection-bottom-description h3{
  color:#010230;
  margin-top:0;
  font-size: clamp(24px,3vw,48px);
  font-weight: 900;
  letter-spacing: -.05em;
  font-style: italic;
  text-transform: uppercase;
}

.ls-collection-bottom-description p:last-child{
  margin-bottom:0;
}


.ls-collection-grid{
  --ls-navy:#010230;
  --ls-pink:#ac528b;
  --ls-pink-dark:#68234f;
  --ls-green:#115c41;
  --ls-green-soft:#eef8f3;
  --ls-ink:#111827;
  --ls-muted:#5b6170;
  --ls-line:#e4e6ea;
  --ls-soft:#f7f4f8;
  --ls-card:#ffffff;

  background:var(--ls-soft);
  color:var(--ls-ink);
}

.ls-collection-grid *,
.ls-collection-grid *::before,
.ls-collection-grid *::after{
  box-sizing:border-box;
}

.ls-collection-grid a{
  text-decoration:none;
}

.ls-collection-layout{
  display:grid;
  grid-template-columns:260px minmax(0,1fr);
  gap:28px;
  align-items:start;
}

.ls-collection-layout--reverse{
  grid-template-columns:minmax(0,1fr) 260px;
}

.ls-collection-layout--reverse .ls-filters{ order:2; }
.ls-collection-layout--reverse .ls-products{ order:1; }

.ls-products,
.ls-filters{
  min-width:0;
}

.ls-products .page-width,
.ls-filters .page-width{
  width:100%;
  max-width:none;
  padding:0;
}

/* ============================================================
   FILTERS
   ============================================================ */

.ls-filters{
  position:relative;
}

.ls-filters__mobile-bar,
.ls-filters__mobile-summary,
.ls-filters__x{
  display:none;
}

.ls-filters__card{
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(17,24,39,.12);
  border-radius:22px;
  box-shadow:0 14px 34px rgba(17,24,39,.055);
}

.ls-filters__head{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  padding:20px;
  border-bottom:1px solid var(--ls-line);
}

.ls-filters__title{
  margin:0;
  color:var(--ls-navy);
  font-size:25px;
  line-height:1;
  font-weight:900;
  letter-spacing:-.04em;
  text-transform: uppercase;
  font-style: italic;
}

.ls-filters__clear,
.ls-active-filters__clear{
  color:#0065cc;
  font-size:15px;
  line-height:1;
  font-weight:700;
}

.ls-filters__body{
  margin:0;
  padding:0;
}

.ls-filter-group{
  margin:0;
  padding:0;
  border-bottom:1px solid var(--ls-line);
}

.ls-filter-group:last-child{
  border-bottom:0;
}

.ls-filter-group__toggle{
  list-style:none;
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  min-height:56px;
  padding:16px 20px;
  margin:0;
  color:var(--ls-ink);
  cursor:pointer;
}

.ls-filter-group__toggle::-webkit-details-marker{
  display:none;
}

.ls-filter-group__toggle span:first-child{
  font-size:16px;
  line-height:1.15;
  font-weight:800;
  letter-spacing:-.025em;
}

.ls-filter-group__chev{
  flex:0 0 18px;
  width:18px;
  height:18px;
  position:relative;
}

.ls-filter-group__chev::before,
.ls-filter-group__chev::after{
  content:"";
  position:absolute;
  top:8px;
  width:12px;
  height:4px;
  border-radius:999px;
  background:#ad589a;
  transition:transform .18s ease;
}

.ls-filter-group__chev::before{
  left:0;
  transform:rotate(45deg);
}

.ls-filter-group__chev::after{
  right:0;
  transform:rotate(-45deg);
}

.ls-filter-group[open] .ls-filter-group__chev::before{
  transform:rotate(-45deg);
}

.ls-filter-group[open] .ls-filter-group__chev::after{
  transform:rotate(45deg);
}

.ls-filter-list,
.ls-tag-list,
.active-filters ul{
  list-style:none;
  padding:0;
  margin:0;
}

.ls-filter-list{
  padding:0 20px 18px;
}

.ls-filter-list li{
  margin:0 0 11px;
  line-height:1.2;
}

.ls-filter-list li:last-child{
  margin-bottom:0;
}

.ls-filter-list a{
  display:block;
  color:var(--ls-ink);
  font-size:16px;
  line-height:1.25;
  font-weight:700;
}

.ls-filter-list a.active,
.ls-filter-list a:hover{
  color:var(--ls-green);
}

.ls-filter-list .facet-checkbox{
  position:relative;
  display:flex;
  align-items:center;
  width:100%;
  min-height:28px;
  cursor:pointer;
  color:var(--ls-ink);
  font-size:16px;
  line-height:1.25;
  font-weight:700;
}

.ls-filter-list .facet-checkbox.disabled{
  opacity:.45;
  cursor:not-allowed;
}

.ls-filter-list input[type="checkbox"]{
  position:absolute;
  opacity:0;
  pointer-events:none;
}

.ls-filter-list .radio-label{
  flex:0 0 22px;
  width:22px;
  height:22px;
  margin-right:10px;
  border:2px solid #9ca3af;
  border-radius:6px;
  background:#fff;
  transition:.18s ease;
}

.ls-filter-list input[type="checkbox"]:checked ~ .radio-label{
  border-color:var(--ls-green);
  background:var(--ls-green);
  box-shadow:inset 0 0 0 5px #fff;
}

.ls-filter-list .facet-checkbox:hover .radio-label{
  border-color:var(--ls-green);
}

.ls-filter-list .filter-label{
  flex:1 1 auto;
  min-width:0;
}

.ls-filter-list .count{
  margin-left:10px;
  color:#ad589a;
  font-size:13px;
  font-weight:600;
}

.ls-filter-list .color-bg,
.ls-filter-list .null-bg{
  flex:0 0 22px;
  width:22px;
  height:22px;
  margin-right:10px;
  border-radius:50%;
  border:1px solid var(--ls-line);
}

.ls-filter-list .color-filter .radio-label{
  display:none;
}

/* price notches */

.ls-price-notches{
  padding:0 20px 10px;
}

.ls-price-notches__row{
  display:grid;
  grid-template-columns:72px minmax(0,1fr);
  gap:12px;
  align-items:center;
  margin-bottom:10px;
}

.ls-price-notches__row:last-child{
  margin-bottom:0;
}

.ls-price-notches__row label{
  align-self:center;
  color:var(--ls-ink);
  font-size:16px;
  line-height:1;
  font-weight:700;
}

.ls-price-notches__select{
  width:100%;
  min-height:50px;
  padding:0 14px;
  border:1px solid var(--ls-line);
  border-radius:12px;
  background:#fff;
  color:var(--ls-ink);
  font:inherit;
  font-size:16px;
  font-weight:600;
}

.ls-price-notches__hint{
  margin:8px 0 0;
  color:var(--ls-ink);
  font-size:12px;
  line-height:1.35;
  font-weight:600;
}

.ls-price-filter .price-range-wrapper,
.ls-price-filter .ui-widget{
  display:none !important;
}

/* tags */

.ls-tag-list{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  padding:0 20px 18px;
}

.ls-tag-list li{
  margin:0;
}

.ls-tag-list a{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:30px;
  padding:7px 11px;
  border-radius:999px;
  border:1px solid var(--ls-line);
  background:#fff;
  color:var(--ls-ink);
  font-size:16px;
  line-height:1;
  font-weight:700;
}

.ls-tag-list li.active a,
.ls-tag-list a:hover{
  background:var(--ls-green);
  border-color:var(--ls-green);
  color:#fff;
}

/* ============================================================
   TOP BAR
   ============================================================ */

.ls-collection-top{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:22px;
  margin:0 0 24px;
  padding-bottom:22px;
  border-bottom:1px solid rgba(17,24,39,.20);
}

.ls-collection-title{
  margin:0;
  color:var(--ls-navy);
  font-size:clamp(34px,4vw,58px);
  line-height:.88;
  font-weight:900;
  letter-spacing:-.05em;
  font-style:italic;
  text-transform:uppercase;
}

.ls-collection-count{
  margin:14px 0 0;
  color:#000;
  font-size:16px;
  line-height:1.25;
  font-weight:850;
}

.ls-toolbar{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:14px;
  flex-wrap:wrap;
}

.filter-btn.ls-mobile-filter-btn{
  display:none;
}

.filter-select{
  min-width:170px;
}

.sort-by{
  margin-right:10px;
  color:var(--ls-navy);
  font-size:16px;
  line-height:1;
  font-weight:900;
}

.select-label{
  display:inline-flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  min-height:50px;
  padding:0 16px;
  border:1px solid var(--ls-line);
  border-radius:13px;
  background:#fff;
  color:var(--ls-ink);
  font-size:16px;
  line-height:1;
  font-weight:600;
  cursor:pointer;
  box-shadow:0 8px 20px rgba(15,23,42,.035);
}

.select-label i{
  font-size:13px;
  transition:.2s ease;
}

.select.active .select-label i{
  transform:rotate(180deg);
}

.sorting .select-items{
  position:absolute;
  top:calc(100% + 10px);
  right:0;
  z-index:91;
  min-width:230px;
  padding:10px;
  margin:0;
  list-style:none;
  border:1px solid var(--ls-line);
  border-radius:14px;
  background:#fff;
  box-shadow:0 18px 40px rgba(15,23,42,.12);
  opacity:0;
  visibility:hidden;
  transform:translateY(8px);
  transition:.18s ease;
}

.sorting .active .select-items{
  opacity:1;
  visibility:visible;
  transform:translateY(0);
}

.sorting .select-items li{
  padding:10px 12px;
  border-radius:9px;
  color:var(--ls-ink);
  font-size:16px;
  line-height:1.2;
  font-weight:600;
  cursor:pointer;
  white-space:nowrap;
}

.sorting .select-items li.selected,
.sorting .select-items li:hover{
  background:var(--ls-green-soft);
  color:var(--ls-green);
}

/* active filters */

.ls-active-filters{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:10px;
  margin:0 0 22px;
  padding:14px;
  border:1px solid var(--ls-line);
  border-radius:18px;
  background:#fff;
}

.ls-active-filters .filter-title{
  display:none;
}

.ls-active-filters ul{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}

.ls-active-filters li{
  margin:0;
}

.ls-active-filters a.active-facet{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  min-height:30px;
  padding:6px 11px;
  border-radius:999px;
  background:var(--ls-green-soft);
  color:var(--ls-green);
  font-size:16px;
  line-height:1;
  font-weight:700;
}

.ls-active-filters a.active-facet::after{
  content:"×";
  font-size:16px;
  line-height:1;
}

.ls-active-filters__clear{
  margin-left:auto;
  font-size:16px;
  font-weight:700;
}

/* ============================================================
   PRODUCT GRID / CARDS
   ============================================================ */

.ls-product-grid{
  display:grid;
  gap:24px;
  margin-top:0;
  width:100%;
}

.ls-product-card{
  min-width:0;
  margin:0;
}

.ls-product-grid > .ls-product-card,
.ls-product-grid > .product-box{
  width:100% !important;
  max-width:100% !important;
  flex:none !important;
  margin:0 !important;
  padding:0 !important;
}

.ls-product-card__link{
  display:grid;
  grid-template-columns:40% 60%;
  min-height:100%;
  width:100%;
  overflow:hidden;
  color:inherit;
  background:#fff;
  border:1px solid rgba(17,24,39,.11);
  border-radius:26px;
  box-shadow:0 18px 44px rgba(17,24,39,.06);
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.ls-product-card__link:hover{
  transform:translateY(-2px);
  border-color:rgba(22,135,95,.25);
  box-shadow:0 22px 54px rgba(17,24,39,.10);
}

.ls-product-card__image-wrap{
  min-height:240px;
  padding:24px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#f4f5f7;
}

.ls-product-card__image{
  width:100%;
  height:100%;
  max-width:310px;
  max-height:220px;
  object-fit:contain;
  object-position:center;
  mix-blend-mode:multiply;
}

.ls-product-card__content{
  min-width:0;
  padding:22px;
  display:flex;
  flex-direction:column;
}

.ls-product-card__brand-bar{
  width:calc(100% + 44px);
  margin:-22px -22px 18px;
  padding:14px 22px;
  min-height:40px;
  display:flex;
  align-items:center;
  background:#010230;
}

.ls-product-card__brand-bar span{
  color:#fff;
  font-size:22px;
  line-height:1;
  font-weight:700;
  letter-spacing:-.03em;
  text-transform:uppercase;
  font-style:italic;
}

.ls-product-card__description{
  margin:0;
  color:#000;
  font-size:17px;
  line-height:1.35;
  font-weight:700;

}

.ls-product-card__spec-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:8px 16px;
  margin:14px 0 0;
}

.ls-product-card__specs{
  display:grid;
  gap:10px;
  margin:0;
  padding:0;
  list-style:none;
  min-width:0;
}

.ls-product-card__specs li{
  display:flex;
  align-items:flex-start;
  gap:9px;
  min-width:0;
  color:#000;
  font-size:16px;
  line-height:1.22;
  font-weight:500;
  word-break:normal;
  overflow-wrap:anywhere;
}

.ls-product-card__specs li::before{
  content:"✓";
  flex:0 0 22px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:22px;
  height:22px;
  margin-top:-2px;
  border-radius:50%;
  background:#ae599c26;
  color:var(--ls-pink);
  font-size:13px;
}

.ls-product-card__footer{
  margin-top:18px;
  padding-top:0;
  display:grid;
  grid-template-columns:minmax(250px,auto) minmax(128px,1fr);
  align-items:center;
  gap:12px;
}

.ls-product-card__price{
  margin:0;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 16px;
  border-radius:14px;
  background:var(--ls-green-soft);
  color:var(--ls-green);
  font-size:22px;
  line-height:1;
  font-weight:700;
  letter-spacing:-.02em;
  white-space:nowrap;
}

.ls-product-card__button{
  display:flex;
  align-items:center;
  justify-content:center;
  width:100%;
  min-width:0;
  min-height:48px;
  padding:0 14px;
  border:2px solid var(--ls-green);
  border-radius:16px;
  color:var(--ls-green);
  font-size:16px;
  line-height:1;
  font-weight:700;
  text-align:center;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  transition:background .2s ease,color .2s ease,border-color .2s ease;
}

.ls-product-card__link:hover .ls-product-card__button{
  background:var(--ls-green);
  border-color:var(--ls-green);
  color:#fff;
}

.pagination .page-numbers {
    border: 2px solid black;
    font-weight: 800;
}

.pagination .page-numbers.current {
    background-color: #168960;
    color: #fff;
}

.ls-product-card__link{
  align-items:stretch;
}

.ls-product-card__content{
  justify-content:flex-start;
  min-height:0;
}

.ls-product-card__footer{
  margin-top:18px;
  margin-bottom:0;
}

.ls-collection-description{
  margin:14px 0 0;
  color:#000;
  font-size:17px;
  line-height:1.5;
  font-weight:500;
  max-width:850px;
}

.ls-collection-description p:last-child{
  margin-bottom:0;
}

/* ============================================================
   IN-GRID PROMO STRIP
   ============================================================ */

.ls-promo-strip{
  grid-column:1 / -1 !important;
  position:relative !important;
  display:block !important;
  width:100% !important;
  min-height:120px !important;
  overflow:hidden !important;
  border-radius:10px !important;
  background-image:var(--promo-desktop) !important;
  background-size:cover !important;
  background-position:center !important;
  background-repeat:no-repeat !important;
  border:1px solid rgba(17,24,39,.11) !important;
  box-shadow:0 18px 44px rgba(17,24,39,.06) !important;
}

.ls-promo-strip__link{
  position:absolute !important;
  inset:0 !important;
  display:block !important;
  z-index:2 !important;
}

@media(max-width:749px){
  .ls-promo-strip{
    min-height:125px !important;
    border-radius:10px !important;
    background-image:var(--promo-mobile) !important;
  }
}

/* ============================================================
   EMPTY / LOADING
   ============================================================ */

#main-collection-product-grid.collection--empty{
  min-height:360px;
  margin-top:0;
}

.empty-filter{
  min-height:320px;
  margin:0;
  padding:36px;
  border:1px solid var(--ls-line);
  border-radius:24px;
  background:#fff;
}

.empty-filter .empty-filter-text{
  margin-top:16px;
  color:var(--ls-muted);
  font-size:16px;
  font-weight:750;
}

.empty-filter .empty-filter-text a{
  color:var(--ls-green);
  border-bottom:1px solid currentColor;
  font-weight:900;
}

.loading-overlay{
  position:absolute;
  inset:0;
  z-index:30;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(247,244,248,.72);
  backdrop-filter:blur(3px);
}

.loading-overlay.hidden{
  display:none;
}

/* ============================================================
   TABLET
   ============================================================ */

.product-sidebar-overlay{
  display:none;
}

body.active-filter{
  overflow:hidden;
}

@media (max-width:1399px){
  .ls-collection-layout{
    grid-template-columns:250px minmax(0,1fr);
    gap:24px;
  }

  .ls-product-grid{
    gap:20px;
  }

  .ls-product-card__link{
    grid-template-columns:39% 61%;
  }

  .ls-product-card__image-wrap{
    min-height:270px;
    padding:20px;
  }

  .ls-product-card__content{
    padding:20px;
  }

  .ls-product-card__brand-bar{
    width:calc(100% + 40px);
    margin:-20px -20px 16px;
    padding:13px 20px;
    min-height:64px;
  }

  .ls-product-card__brand-bar span{
    font-size:18px;
  }

  .ls-product-card__description{
    font-size:16px;
    min-height:0;
  }

  .ls-product-card__specs li{
    font-size:14px;
  }

  .ls-product-card__footer{
    gap:10px;
  }

  .ls-product-card__button{
    font-size:16px;
    padding:0 12px;
  }

  .ls-product-card__price{
    font-size:16px;
    padding:0 13px;
  }

  .ls-product-card__brand-bar{
  justify-content:center;
  text-align:center;
}

.ls-product-card__brand-bar span{
  width:100%;
  text-align:center;
}
}

/* ============================================================
   MOBILE FILTER DRAWER
   ============================================================ */

@media (max-width:1199px){
  .ls-collection-layout,
  .ls-collection-layout--reverse{
    display:block;
  }

  .ls-collection-top{
    align-items:stretch;
    flex-direction:column;
    gap:22px;
  }

  .ls-toolbar{
    display:grid;
    grid-template-columns:1fr auto;
    align-items:center;
    width:100%;
    gap:14px;
  }

  .filter-btn.ls-mobile-filter-btn{
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        width: 100%;
        min-height: 45px;
        padding: 0 20px;
        border: 0;
        border-radius: 10px;
        background: var(--ls-green);
        color: #fff;
        font-size: 17px;
        line-height: 1;
        cursor: pointer;
  }

  .filter-btn.ls-mobile-filter-btn i{
    font-size:20px;
  }

  .filter-select{
    min-width:170px;
  }

  .sort-by{
    display:none;
  }

  .product-sidebar{
    position:fixed;
    left:0;
    right:0;
    bottom:-100%;
    top:auto;
    z-index:99991;
    width:100%;
    max-width:none;
    height:82vh;
    max-height:82dvh;
    padding:0;
    overflow:hidden;
    background:#fff;
    border-radius:24px 24px 0 0;
    box-shadow:0 -20px 60px rgba(15,23,42,.22);
    transition:bottom .35s ease;
  }

  body.active-filter .product-sidebar{
    bottom:0;
  }

  .ls-filters__mobile-bar{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:14px;
    position:sticky;
    top:0;
    z-index:6;
    min-height:58px;
    padding:10px 16px;
    background:#fff;
    border-bottom:1px solid var(--ls-line);
  }

  .ls-filters__mobile-bar strong{
    color:var(--ls-navy);
    font-size:18px;
    line-height:1;
    font-weight:800 !important;
    letter-spacing:-.025em;
    text-transform: uppercase;
    font-style: italic;
  }

  .ls-filters__exit{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:84px;
    min-height:40px;
    padding:0 16px;
    border-radius:10px;
    background:var(--ls-green);
    color:#fff;
    font-size:15px;
    line-height:1;
    font-weight:700;
  }

  .ls-filters__mobile-summary{
    display:block;
    position:sticky;
    top:58px;
    z-index:5;
    padding:15px 15px 0px 10px;
    border-bottom:1px solid var(--ls-line);
    background:#fff;
  }

  .ls-filters__mobile-result{
    color:#000;
    font-size:15px;
    line-height:1.15;
    font-weight:700;
  }

  .ls-filters__mobile-active{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:12px;
    margin-top:6px;
    color:var(--ls-ink);
    font-size:14px;
    line-height:1.15;
    font-weight:700;
  }

  .ls-filters__mobile-active[hidden]{
    display:none !important;
  }

  .ls-filters__mobile-active a{
    color:#0065cc;
    font-size:14px;
    font-weight:700;
  }

  .ls-filters__mobile-chips{
    display:flex;
    flex-wrap:wrap;
    gap:6px;
    margin:8px 0 10px;
    padding:0;
    list-style:none;
  }

  .ls-filters__mobile-chips li{
    margin:0;
  }

  .ls-filters__mobile-chips button,
  .ls-filters__mobile-chips a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:30px;
    border:0;
    border-radius:999px;
    padding:6px 10px;
    background:var(--ls-green-soft);
    color:var(--ls-green);
    font-size:14px;
    line-height:1;
    font-weight:700;
    cursor:pointer;
  }

  .ls-filters__x{
    display:none;
  }

  .ls-filters__card{
    height:calc(82vh - 58px);
    height:calc(82dvh - 58px);
    overflow:auto;
    border:0;
    border-radius:0;
    box-shadow:none;
  }

  .ls-filters__head{
    display:none;
  }

  .ls-filter-group__toggle{
    min-height:50px;
    padding:14px 18px;
  }

  .ls-filter-list{
    padding:0 18px 16px;
  }

  .product-sidebar-overlay{
    display:block;
    position:fixed;
    inset:0;
    z-index:9999;
    background:rgba(1,2,48,.68);
    opacity:0;
    visibility:hidden;
    transition:.25s ease;
  }

  body.active-filter .product-sidebar-overlay{
    opacity:1;
    visibility:visible;
  }

  .ls-product-grid{
    grid-template-columns:1fr !important;
    gap:24px;
  }

  .ls-product-grid > .ls-product-card,
  .ls-product-grid > .product-box{
    width:100% !important;
    max-width:100% !important;
    flex-basis:100% !important;
  }

  .ls-product-card__link{
    grid-template-columns:42% 58%;
  }

  .ls-product-card__image-wrap{
    min-height:285px;
  }

  .ls-product-card__footer{
    grid-template-columns:minmax(125px,auto) minmax(140px,1fr);
  }
}

.row-cols-1 .product-box{
  border-top:0 !important;
}

  .ls-price-notches{

    padding:0 18px 12px;

  }

  .ls-price-notches__row{

    margin-bottom:10px;

  }

/* ============================================================
   MOBILE CARDS — 2 COLUMN TEST
   ============================================================ */

@media (max-width:749px){
  .ls-collection-grid{
    padding-left:0;
    padding-right:0;
  }

  .ls-collection-title{
    font-size:42px;
  }

  .ls-collection-count{
    margin-top:14px;
    font-weight:600;
    font-size:14px;
  }

  .filter-select{
    width:100%;
    min-width:0;
  }

  .select-label{
    width:100%;
    min-height:56px;
    padding:0 20px;
    font-size:15px;
    border-radius:15px;
  }

  .sorting .select-items li{
    font-size:15px;
  }

  .ls-active-filters a.active-facet,
  .ls-active-filters__clear{
    font-size:15px;
  }

  .ls-product-grid{
    gap:10px;
  }

  .ls-product-card__link{
    grid-template-columns:1fr;
    border-radius:20px;
  }

  .ls-product-card__image-wrap{
    min-height:175px;
    padding:8px;
  }

  .ls-product-card__image{
    max-width:190px;
    max-height:145px;
  }

  .ls-product-card__content{
    padding:12px;
  }

  .ls-product-card__brand-bar{
    width:calc(100% + 24px);
    margin:-12px -12px 12px;
    padding:10px 12px;
    min-height:54px;
  }

  .ls-product-card__brand-bar span{
    font-size:17px;
    line-height:1.05;
    font-weight:700;
  }

 .ls-product-card__description{
  overflow:hidden;
  font-size:15px;
  line-height:1.35;
  font-weight:600;
  display:-webkit-box;
  -webkit-box-orient:vertical;
}

  .ls-product-card__spec-grid{
    margin-top:12px;
  }

  .ls-product-card__specs{
    gap:8px;
  }

  .ls-product-card__specs li{
    gap:7px;
    font-size:15px;
    line-height:1.18;
    font-weight:500;
  }

  .ls-product-card__specs li::before{
    flex-basis:19px;
    width:19px;
    height:19px;
    margin-top:-2px;
    font-size:12px;
  }

  .ls-product-card__footer{
    gap:9px;
    padding-top:14px;
  }

  .ls-product-card__price{
    min-height:40px;
    padding:0 10px;
    font-size:16px;
    font-weight:700;
    border-radius:12px;
    justify-content:center;
  }

  .ls-product-card__button{
    min-height:40px;
    border-radius:13px;
    font-size:15px;
    font-weight:700;
    width:100%;
  }

  .ls-filter-list .facet-checkbox,
  .ls-filter-list a{
    font-size:15px;
    font-weight:700;
  }

  .ls-price-notches__row label{
    font-size:15px;
    font-weight:700;
  }

  .ls-price-notches__select{
    font-size:15px;
    font-weight:600;
  }

    .ls-collection-description{
    font-size:15px;
    line-height:1.45;
    margin-top:10px;
  }

}

@media (max-width:390px){
  .ls-collection-title{
    font-size:36px;
  }

  .ls-product-grid{
    gap:8px;
  }

  .ls-product-card__image-wrap{
    min-height:165px;
    padding:7px;
  }

  .ls-product-card__image{
    max-width:180px;
    max-height:138px;
  }

  .ls-product-card__brand-bar span{
    font-size:16px;
    line-height:1.05;
  }

  .ls-product-card__specs li{
    font-size:13px;
  }

  .ls-product-card__price,
  .ls-product-card__button{
    min-height:38px;
    font-size:15px;
  }
}