/* ─── PAGE HEADER ─── */
.page-header {
  border-bottom: 1px solid var(--border);
  padding: clamp(28px, 4vw, 48px) clamp(16px, 4vw, 32px) clamp(22px, 3vw, 30px);
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 15% 20%, rgba(17,24,39,.055), transparent 34%),
    linear-gradient(180deg, rgba(255,255,255,.018), transparent);
}

.page-header::after {
  content: 'PRODUCTS';
  position: absolute;
  right: -20px;
  top: -18px;
  font-family: var(--font-display);
  font-size: clamp(54px, 11vw, 120px);
  color: rgba(17,24,39,0.045);
  pointer-events: none;
  white-space: nowrap;
  line-height: 1;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--text-dim);
  margin-bottom: 12px;
  flex-wrap: wrap;
  position: relative;
  z-index: 2;
}

.breadcrumb a { color: var(--text-dim); text-decoration: none; transition: color .2s ease; }
.breadcrumb a:hover { color: var(--accent-light); }
.breadcrumb span { color: var(--text-muted); }

.page-header h1 {
  font-family: var(--font-display);
  font-size: clamp(24px, 4vw, 38px);
  font-weight: 700;
  letter-spacing: 2px;
  color: var(--text);
  position: relative;
  z-index: 2;
}

.page-header h1 em { color: var(--accent); font-style: normal; }

.page-header p {
  color: var(--text-muted);
  font-size: clamp(12px, 1.6vw, 14px);
  margin-top: 8px;
  max-width: 720px;
  line-height: 1.8;
  position: relative;
  z-index: 2;
}

/* ─── LAYOUT ─── */
.layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: calc(100vh - 120px);
}

/* ─── SIDEBAR ─── */
.sidebar {
  border-left: 1px solid var(--border);
  padding: 24px 20px;
  position: sticky;
  top: 60px;
  height: calc(100vh - 60px);
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: var(--border2) transparent;
  background:
    linear-gradient(180deg, rgba(255,255,255,.015), transparent),
    var(--bg);
}

.filter-section { margin-bottom: 28px; }

.filter-title {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--text-dim);
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.filter-title button {
  background: none;
  border: none;
  color: var(--accent);
  font-family: var(--font-body);
  font-size: 11px;
  cursor: pointer;
  padding: 0;
  transition: color .2s ease, opacity .2s ease;
}

.filter-title button:hover {
  color: var(--accent-light);
  opacity: .9;
}

.filter-options { display: flex; flex-direction: column; gap: 6px; }

.filter-option {
  display: flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  padding: 8px 10px;
  border-radius: 9px;
  border: 1px solid transparent;
  transition: all 0.18s ease;
  position: relative;
}

.filter-option:hover {
  background: var(--surface);
  border-color: var(--border);
  transform: translateX(-2px);
}

.filter-option.selected {
  background: var(--accent-dim);
  border-color: var(--accent);
  box-shadow: 0 8px 24px rgba(17,24,39,.08);
}

.filter-option input[type=checkbox] { display: none; }

.checkmark {
  width: 15px;
  height: 15px;
  border: 1px solid var(--border2);
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s;
}

.filter-option.selected .checkmark {
  background: var(--accent);
  border-color: var(--accent);
}

.checkmark::after {
  content: '';
  width: 8px;
  height: 5px;
  border-left: 1.5px solid #fff;
  border-bottom: 1.5px solid #fff;
  transform: rotate(-45deg) translateY(-1px);
  display: none;
}

.filter-option.selected .checkmark::after { display: block; }

.filter-label {
  font-size: 13px;
  color: var(--text-muted);
  flex: 1;
}

.filter-option.selected .filter-label { color: var(--accent-light); }

.filter-count {
  font-size: 11px;
  color: var(--text-dim);
  background: var(--surface2);
  padding: 2px 8px;
  border-radius: 999px;
}

/* price range */
.price-range { padding: 4px 0; }

.price-inputs {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-bottom: 12px;
}

.price-input {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 7px 10px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 12px;
  width: 84px;
  outline: none;
  transition: border-color 0.2s, box-shadow .2s ease;
}

.price-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.price-sep { color: var(--text-dim); font-size: 12px; }

.range-slider {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 3px;
  background: var(--border2);
  outline: none;
  border-radius: 2px;
}

.range-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 15px;
  height: 15px;
  background: var(--accent);
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.15s, box-shadow .2s ease;
  box-shadow: 0 0 0 4px var(--accent-dim);
}

.range-slider::-webkit-slider-thumb:hover { transform: scale(1.2); }

/* color dots */
.color-options { display: flex; flex-wrap: wrap; gap: 9px; }

.color-dot {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.15s;
  position: relative;
}

.color-dot:hover { transform: scale(1.1); }

.color-dot.selected {
  border-color: var(--accent);
  box-shadow: 0 0 0 2px var(--bg), 0 0 0 4px var(--accent);
}

/* size chips */
.size-chips { display: flex; flex-wrap: wrap; gap: 7px; }

.size-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 5px 11px;
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all 0.15s;
}

.size-chip:hover {
  border-color: var(--border2);
  color: var(--text);
  transform: translateY(-1px);
}

.size-chip.selected {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent-light);
}

.sidebar-footer {
  padding-top: 20px;
  border-top: 1px solid var(--border);
  display: flex;
  gap: 8px;
  flex-direction: column;
}

.apply-btn {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 11px;
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  width: 100%;
  transition: transform 0.2s, box-shadow .2s ease;
}

.apply-btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(17,24,39,.14);
}

.clear-btn {
  background: none;
  color: var(--text-dim);
  border: 1px solid var(--border);
  border-radius: 9px;
  padding: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  cursor: pointer;
  width: 100%;
  transition: all 0.2s;
}

.clear-btn:hover { border-color: var(--border2); color: var(--text-muted); }

/* ─── MAIN CONTENT ─── */
.main { padding: clamp(18px, 3vw, 28px); }

/* toolbar */
.toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
  gap: 12px;
  flex-wrap: wrap;
}

.results-info {
  font-size: 13px;
  color: var(--text-muted);
}

.results-info strong { color: var(--text); }

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.sort-select {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 9px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 13px;
  padding: 8px 12px;
  outline: none;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow .2s ease;
}

.sort-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-dim);
}

.view-btns {
  display: flex;
  border: 1px solid var(--border);
  border-radius: 9px;
  overflow: hidden;
  background: var(--surface);
}

.view-btn {
  background: none;
  border: none;
  padding: 8px 10px;
  cursor: pointer;
  color: var(--text-muted);
  transition: all 0.15s;
  display: flex;
  align-items: center;
}

.view-btn.active { background: var(--surface2); color: var(--accent); }
.view-btn:hover:not(.active) { background: var(--surface); color: var(--text); }

/* active filters */
.active-filters {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}

.filter-tag {
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  color: var(--accent-light);
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 12px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.filter-tag button {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--accent-light);
  font-size: 14px;
  line-height: 1;
  padding: 0;
  opacity: 0.7;
}

.filter-tag button:hover { opacity: 1; }

.clear-all-tags {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 12px;
  cursor: pointer;
  text-decoration: underline;
  font-family: var(--font-body);
}

.clear-all-tags:hover { color: var(--text-muted); }

/* products grid */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 18px;
}

.products-grid.list-view {
  grid-template-columns: 1fr;
}

/* product card */
.product-card {
  background:
    linear-gradient(180deg, rgba(255,255,255,.025), transparent),
    var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: border-color 0.25s, transform 0.25s, box-shadow .25s ease;
  position: relative;
  animation: fadeUp 0.45s both;
  isolation: isolate;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: radial-gradient(circle at 50% 0%, rgba(17,24,39,.07), transparent 45%);
  transition: opacity .3s ease;
  pointer-events: none;
  z-index: -1;
}

.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-5px);
  box-shadow: 0 22px 58px rgba(27,36,48,.12);
}

.product-card:hover::before { opacity: 1; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(18px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.product-card:nth-child(1) { animation-delay: 0.05s; }
.product-card:nth-child(2) { animation-delay: 0.10s; }
.product-card:nth-child(3) { animation-delay: 0.15s; }
.product-card:nth-child(4) { animation-delay: 0.20s; }
.product-card:nth-child(5) { animation-delay: 0.25s; }
.product-card:nth-child(6) { animation-delay: 0.30s; }
.product-card:nth-child(7) { animation-delay: 0.35s; }
.product-card:nth-child(8) { animation-delay: 0.40s; }

/* wishlist btn */
.wish-btn {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 4;
  background: rgba(255,255,255,0.88);
  border: 1px solid var(--border2);
  border-radius: 50%;
  width: 33px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  transform: translateY(-6px) scale(.96);
  transition: opacity 0.2s, background 0.2s, transform .2s ease, border-color .2s ease;
  backdrop-filter: blur(8px);
  color: var(--text);
}

.product-card:hover .wish-btn {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.wish-btn:hover {
  background: var(--surface2);
  border-color: var(--accent);
}

.wish-btn.active svg { fill: var(--sale); stroke: var(--sale); }

/* product image */
.product-img {
  height: 220px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--surface2);
}

.product-img::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, transparent 55%, rgba(255,255,255,.72)),
    linear-gradient(135deg, rgba(255,255,255,.035), transparent 45%);
  pointer-events: none;
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .45s ease;
}

.product-card:hover .product-img img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
}

.product-img .img-placeholder {
  width: 84px;
  height: 84px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s;
}

.product-card:hover .img-placeholder { transform: scale(1.08) rotate(-2deg); }

.badge-row {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  align-items: flex-end;
  z-index: 3;
}

.badge {
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 999px;
  letter-spacing: 1px;
  box-shadow: 0 8px 20px rgba(27,36,48,.10);
}

.badge-new { background: var(--new); color: #fff; }
.badge-sale { background: var(--sale); color: #fff; }
.badge-limited { background: var(--accent); color: #fff; }

/* quick add overlay */
.quick-add {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(10px);
  padding: 12px;
  transform: translateY(104%);
  transition: transform 0.28s ease;
  border-top: 1px solid var(--border);
  z-index: 4;
}

.product-card:hover .quick-add { transform: translateY(0); }

.quick-add-title {
  font-size: 11px;
  color: var(--text-dim);
  margin-bottom: 8px;
  letter-spacing: 1px;
  text-align: center;
}

.size-row { display: flex; gap: 5px; margin-bottom: 8px; flex-wrap: wrap; }

.qs-chip {
  background: var(--surface2);
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 7px;
  padding: 4px 9px;
  font-size: 11px;
  cursor: pointer;
  transition: all 0.15s;
}

.qs-chip:hover,
.qs-chip.sel {
  background: var(--accent-dim);
  border-color: var(--accent);
  color: var(--accent-light);
}

.qs-chip.unavail {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

.add-to-cart-btn {
  width: 100%;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 10px;
  font-family: var(--font-body);
  font-size: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  transition: background 0.2s, transform 0.1s, box-shadow .2s ease;
}

.add-to-cart-btn:hover {
  background: var(--accent-light);
  box-shadow: 0 10px 26px rgba(17,24,39,.14);
}

.add-to-cart-btn:active { transform: scale(0.98); }
.add-to-cart-btn.added { background: var(--new); }

/* product info */
.product-info { padding: 15px 14px 16px; }

.product-cat {
  font-size: 10px;
  color: var(--text-dim);
  letter-spacing: 2px;
  margin-bottom: 5px;
}

.product-name {
  font-size: 14px;
  color: var(--text);
  font-weight: 500;
  margin-bottom: 9px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 7px;
  flex-wrap: wrap;
}

.price-current {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent);
  font-family: var(--font-display);
}

.price-old {
  font-size: 12px;
  color: var(--text-dim);
  text-decoration: line-through;
}

.price-old span { color: var(--sale); font-size: 11px; }

/* rating */
.rating {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: var(--text-muted);
  white-space: nowrap;
}

.stars { color: var(--amber); font-size: 11px; }

/* color swatches below card */
.color-swatches {
  display: flex;
  gap: 5px;
  padding: 0 14px 13px;
}

.swatch {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.15s;
}

.swatch:hover,
.swatch.active {
  border-color: var(--text-muted);
  transform: scale(1.2);
}

/* list view card */
.products-grid.list-view .product-card {
  display: flex;
  flex-direction: row;
}

.products-grid.list-view .product-img {
  width: 190px;
  flex-shrink: 0;
  height: 170px;
}

.products-grid.list-view .product-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 24px;
}

.products-grid.list-view .product-name {
  font-size: 16px;
  white-space: normal;
}

.products-grid.list-view .color-swatches {
  padding: 8px 0 0;
}

.products-grid.list-view .quick-add {
  display: none;
}

.products-grid.list-view .list-add-btn {
  display: flex !important;
  margin-top: 12px;
  align-self: flex-start;
}

.list-add-btn {
  display: none;
  background: var(--accent-dim);
  border: 1px solid var(--accent);
  color: var(--accent-light);
  border-radius: 9px;
  padding: 9px 18px;
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  align-items: center;
  gap: 7px;
  transition: all 0.2s;
}

.list-add-btn:hover { background: var(--accent); color: #fff; }

/* ─── PAGINATION ─── */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  margin-top: 40px;
  padding-bottom: 40px;
  flex-wrap: wrap;
}

.page-btn {
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 9px;
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 13px;
  transition: all 0.15s;
}

.page-btn:hover { border-color: var(--border2); color: var(--text); transform: translateY(-1px); }
.page-btn.active { background: var(--accent); border-color: var(--accent); color: #fff; }
.page-btn.disabled { opacity: 0.3; cursor: not-allowed; transform: none; }

/* ─── EMPTY STATE ─── */
.empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  display: none;
}

.empty-state h3 {
  font-family: var(--font-display);
  font-size: 20px;
  color: var(--text-muted);
  margin-bottom: 8px;
  letter-spacing: 2px;
}

.empty-state p { color: var(--text-dim); font-size: 13px; }

/* ─── TOAST ─── */
.toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  background:
    linear-gradient(180deg, rgba(255,255,255,.035), transparent),
    var(--surface2);
  border: 1px solid var(--accent);
  color: var(--text);
  border-radius: 12px;
  padding: 13px 18px;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 9998;
  min-width: 240px;
  max-width: min(92vw, 430px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all .3s ease;
  box-shadow: 0 16px 38px rgba(27,36,48,.12);
  backdrop-filter: blur(10px);
}

.toast.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

.toast-icon { color: var(--new); font-size: 16px; }

/* mobile filter toggle */
.mobile-filter-btn {
  display: none;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text-muted);
  border-radius: 9px;
  padding: 8px 14px;
  font-family: var(--font-body);
  font-size: 13px;
  cursor: pointer;
  align-items: center;
  gap: 7px;
  transition: all .2s ease;
}

.mobile-filter-btn:hover {
  color: var(--text);
  border-color: var(--accent);
}

/* ─── RESPONSIVE ─── */
@media (max-width: 1180px) {
  .layout {
    grid-template-columns: 230px 1fr;
  }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
}

@media (max-width: 900px) {
  .layout { grid-template-columns: 1fr; }

  .sidebar {
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    right: 0;
    width: min(86vw, 320px);
    z-index: 200;
    height: 100vh;
    background: rgba(255,255,255,.98);
    border-left: 1px solid var(--border);
    padding: 70px 18px 22px;
    transform: translateX(105%);
    transition: transform .28s ease;
    box-shadow: -20px 0 60px rgba(27,36,48,.14);
  }

  .sidebar.open {
    display: block;
    transform: translateX(0);
  }

  .mobile-filter-btn { display: flex; }

  .nav-links { display: none; }

  .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(170px, 1fr));
    gap: 14px;
  }

  .wish-btn {
    opacity: 1;
    transform: none;
  }

  .product-img {
    height: 190px;
  }
}

@media (max-width: 640px) {
  .page-header {
    padding: 26px 16px 22px;
  }

  .main {
    padding: 16px 14px;
  }

  .toolbar {
    align-items: stretch;
    flex-direction: column;
  }

  .toolbar-right {
    width: 100%;
  }

  .sort-select,
  .mobile-filter-btn {
    flex: 1;
    min-width: 0;
    justify-content: center;
  }

  .view-btns {
    display: none;
  }

  .products-grid,
  .products-grid.list-view {
    grid-template-columns: 1fr;
  }

  .products-grid.list-view .product-card {
    flex-direction: column;
  }

  .products-grid.list-view .product-img {
    width: 100%;
    height: 220px;
  }

  .product-img {
    height: 235px;
  }

  .quick-add {
    position: relative;
    transform: none;
    background: rgba(255,255,255,.96);
  }

  .product-name {
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .product-price-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .toast {
    width: calc(100vw - 28px);
    min-width: 0;
    bottom: 16px;
  }
}

@media (max-width: 420px) {
  .product-img {
    height: 205px;
  }

  .page-header h1 {
    letter-spacing: 1px;
  }

  .price-inputs {
    flex-direction: column;
    align-items: stretch;
  }

  .price-input {
    width: 100%;
  }

  .price-sep {
    display: none;
  }

  .toolbar-right {
    flex-direction: column;
    align-items: stretch;
  }

  .sort-select,
  .mobile-filter-btn {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .product-img {
    height: 180px;
  }

  .product-info {
    padding: 12px;
  }

  .color-swatches {
    padding: 0 12px 12px;
  }

  .page-btn {
    width: 34px;
    height: 34px;
  }
}

@media (hover: none) {
  .wish-btn {
    opacity: 1;
    transform: none;
  }

  .quick-add {
    transform: none;
  }

  .product-card:hover {
    transform: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}

.wish-btn.active,
.wish-btn.is-active {
  color: var(--sale);
}

.wish-btn.active svg,
.wish-btn.is-active svg {
  fill: var(--sale);
  stroke: var(--sale);
}

.add-to-cart-btn.added,
.list-add-btn.added {
  background: var(--new);
  color: #fff;
}
