.main-content {
  background: #fbf8f2;
}

.collections-hero,
.catalog-toolbar,
.catalog-layout {
  padding-left: 18px;
  padding-right: 34px;
}

.collections-hero {
  padding-top: 10px;
  padding-bottom: 14px;
  text-align: center;
  border-bottom: 0;
}

.collections-hero__topline {
  display: none;
}

.collections-hero__title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(22px, 2.3vw, 34px);
  line-height: 1.05;
  color: #744c2f;
  margin-bottom: 6px;
}

.collections-hero__subtitle {
  font-size: clamp(14px, 1.2vw, 18px);
  line-height: 1.4;
  color: #74553d;
  margin-bottom: 10px;
}

.collections-hero__image {
  display: none;
}

.catalog-toolbar {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  padding-top: 14px;
  padding-bottom: 20px;
  position: relative;
  z-index: 40;
}

.catalog-toolbar__controls {
  display: grid;
  grid-template-columns: minmax(320px, 1fr) 170px;
  gap: 14px;
}

.catalog-toolbar input {
  width: 100%;
  height: 38px;
  border: 1px solid #e3ddd5;
  border-radius: 14px;
  background: #f4efe8;
  padding: 0 16px;
  font: inherit;
  color: #714f37;
  outline: none;
}

.catalog-toolbar__search {
  position: relative;
}

.catalog-toolbar__filter-btn {
  display: none;
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border: 1px solid rgba(142, 106, 72, 0.18);
  background: #f7f1e8;
  color: #744c2f;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.catalog-toolbar__filter-btn svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.catalog-toolbar input::placeholder {
  color: #9f7450;
  font-weight: 500;
  font-style: italic;
}

.catalog-toolbar__spacer {
  min-height: 1px;
}

.sort-dropdown__trigger {
  width: 100%;
  height: 38px;
  border: 1px solid #e3ddd5;
  border-radius: 14px;
  background: #f4efe8;
  padding: 0 16px;
  font: inherit;
  color: #714f37;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.catalog-toolbar__sort {
  position: relative;
  z-index: 50;
}

.sort-dropdown__caret {
  width: 18px;
  height: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.sort-dropdown__caret svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.sort-dropdown__menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fffefb;
  border: 2px solid #8e6a48;
  box-shadow: 0 16px 28px rgba(74, 46, 16, 0.08);
  z-index: 80;
}

.sort-dropdown__option {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(142, 106, 72, 0.14);
  padding: 11px 14px;
  text-align: left;
  font: inherit;
  font-size: 12px;
  color: #714f37;
  cursor: pointer;
}

.sort-dropdown__option:last-child {
  border-bottom: 0;
}

.sort-dropdown__option:hover,
.sort-dropdown__option.active {
  background: #f7f1e8;
  color: #744c2f;
}

.sort-dropdown__option.active {
  position: relative;
  font-weight: 700;
  background: linear-gradient(90deg, rgba(247, 241, 232, 0.98), rgba(255, 252, 247, 1));
}

.sort-dropdown__option.active::after {
  content: "✓";
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translateY(-50%);
  font-size: 12px;
  color: #b97046;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 22px;
  align-items: start;
  padding-bottom: 34px;
}

.catalog-sidebar {
  border: 2px solid #8e6a48;
  background: #fffefb;
  overflow: hidden;
  position: sticky;
  top: calc(var(--top-bar-h) + 18px);
  align-self: start;
}

.catalog-sidebar h2 {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.03em;
  color: #5e4128;
  padding: 12px 10px;
  border-bottom: 2px solid #8e6a48;
}

.category-link {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(142, 106, 72, 0.16);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
  padding: 12px 12px;
  font: inherit;
  font-size: 14px;
  color: #6d533e;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.24s ease, color 0.24s ease, padding-left 0.24s ease, transform 0.24s ease;
}

.category-link::before {
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 0;
  background: linear-gradient(180deg, rgba(158, 115, 78, 0.16), rgba(210, 167, 126, 0.08));
  transition: width 0.28s ease;
}

.category-link span {
  display: block;
  position: relative;
  z-index: 1;
  min-width: 0;
  flex: 1;
}

.category-link strong {
  min-width: 36px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 10px;
  color: #8e6a48;
  font-weight: 700;
  background: #f5ede3;
  border: 1px solid rgba(142, 106, 72, 0.18);
  position: relative;
  z-index: 1;
  transition: background 0.24s ease, color 0.24s ease, transform 0.24s ease, border-color 0.24s ease;
  flex-shrink: 0;
}

.category-link:hover,
.category-link.active {
  background: linear-gradient(90deg, rgba(247,241,232,0.95), rgba(255,252,247,0.98));
  color: #744c2f;
  padding-left: 16px;
  transform: translateX(0);
}

.category-link:hover::before,
.category-link.active::before {
  width: 100%;
}

.category-link:hover strong,
.category-link.active strong {
  background: #d2a77e;
  color: #fff;
  border-color: #d2a77e;
  transform: translateX(0);
}

.catalog-sidebar__note {
  padding: 14px 12px 4px;
}

.catalog-sidebar__note p {
  color: #58b56d;
  font-size: 11px;
  line-height: 1.45;
}

.catalog-grid-wrap {
  min-width: 0;
  position: relative;
  z-index: 1;
}

.catalog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px 28px;
}

.catalog-card {
  transform: none !important;
  opacity: 1;
}

.catalog-card[hidden] {
  display: none !important;
}

.catalog-card__image {
  position: relative;
  aspect-ratio: 1.24;
  border: 0;
  margin-bottom: 15px;
  border-radius: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.catalog-card:hover .catalog-card__image {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(74, 46, 16, 0.1);
}

.catalog-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(94, 61, 34, 0.92);
  color: #fff8f0;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.catalog-card--out .catalog-card__image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,0.02), rgba(74,46,16,0.08));
  pointer-events: none;
}

.catalog-card h3 {
  min-height: 2.1em;
  font-size: 14px;
  line-height: 1.05;
  color: #84614b;
  margin-bottom: 1px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.01em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.catalog-card__meta {
  display: flex;
  align-items: baseline;
  gap: 8px;
  flex-wrap: wrap;
  font-size: 11px;
  font-weight: 600;
  color: #6f4c31;
}

.catalog-card__price {
  display: inline-block;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #694430;
  font-size: 21px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 0;
  box-shadow: none;
  transition: none;
}

.catalog-card__shipping {
  display: inline-block;
  min-height: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  color: #9b938a;
  border: 0;
  font-size: 14px;
  font-style: italic;
  font-weight: 600;
  transition: none;
}

.catalog-card:hover .catalog-card__price {
  transform: none;
  box-shadow: none;
}

.catalog-card:hover .catalog-card__shipping {
  transform: none;
  background: transparent;
  color: #9b938a;
  border-color: transparent;
}

.catalog-card__image--1 { background-image: url('https://images.unsplash.com/photo-1518544801976-3e159e50e5bb?auto=format&fit=crop&w=900&q=80'); }
.catalog-card__image--2 { background-image: url('https://images.unsplash.com/photo-1500375592092-40eb2168fd21?auto=format&fit=crop&w=900&q=80'); }
.catalog-card__image--3 { background-image: url('https://images.unsplash.com/photo-1505118380757-91f5f5632de0?auto=format&fit=crop&w=900&q=80'); }
.catalog-card__image--4 { background-image: url('https://images.unsplash.com/photo-1473445361085-b9a07f55608b?auto=format&fit=crop&w=900&q=80'); }
.catalog-card__image--5 { background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=900&q=80'); }
.catalog-card__image--6 { background-image: url('https://images.unsplash.com/photo-1518837695005-2083093ee35b?auto=format&fit=crop&w=900&q=80'); }
.catalog-card__image--7 { background-image: url('https://images.unsplash.com/photo-1524484485831-a92ffc0de03f?auto=format&fit=crop&w=900&q=80'); }
.catalog-card__image--8 { background-image: url('https://images.unsplash.com/photo-1567899378494-47b22a2ae96a?auto=format&fit=crop&w=900&q=80'); }
.catalog-card__image--9 { background-image: url('https://images.unsplash.com/photo-1520250497591-112f2f40a3f4?auto=format&fit=crop&w=900&q=80'); }
.catalog-card__image--10 { background-image: url('https://images.unsplash.com/photo-1500375592092-40eb2168fd21?auto=format&fit=crop&w=900&q=80'); }
.catalog-card__image--11 { background-image: url('https://images.unsplash.com/photo-1494412651409-8963ce7935a7?auto=format&fit=crop&w=900&q=80'); }
.catalog-card__image--12 { background-image: url('https://images.unsplash.com/photo-1494412685616-a5d310fbb07d?auto=format&fit=crop&w=900&q=80'); }
.catalog-card__image--13 { background-image: url('https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c0?auto=format&fit=crop&w=900&q=80'); }
.catalog-card__image--14 { background-image: url('https://images.unsplash.com/photo-1516557070061-c3d1653fa646?auto=format&fit=crop&w=900&q=80'); }
.catalog-card__image--15 { background-image: url('https://images.unsplash.com/photo-1500930287596-c1ecaa373bb2?auto=format&fit=crop&w=900&q=80'); }
.catalog-card__image--16 { background-image: url('https://images.unsplash.com/photo-1569263979104-865ab7cd8d13?auto=format&fit=crop&w=900&q=80'); }
.catalog-card__image--17 { background-image: url('https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=900&q=80'); }
.catalog-card__image--18 { background-image: url('https://images.unsplash.com/photo-1500375592092-40eb2168fd21?auto=format&fit=crop&w=900&q=80'); }
.catalog-card__image--19 { background-image: url('https://images.unsplash.com/photo-1506744038136-46273834b3fb?auto=format&fit=crop&w=900&q=80'); }
.catalog-card__image--20 { background-image: url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e?auto=format&fit=crop&w=900&q=80'); }

.catalog-empty {
  padding: 48px 0 56px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  color: #744c2f;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

.catalog-empty[hidden] {
  display: none !important;
}

.catalog-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  padding: 26px 0 4px;
}

.catalog-page {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 2px solid #8e6a48;
  background: #fff;
  color: #6e4b30;
  font-weight: 700;
  line-height: 1;
  padding: 0;
  vertical-align: middle;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.catalog-page:hover,
.catalog-page.active {
  background: #d2a77e;
  color: #fff;
  transform: none;
}

.mobile-filter[hidden] {
  display: none;
}

.mobile-filter {
  position: fixed;
  inset: 0;
  z-index: 1400;
}

.mobile-filter__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(21, 14, 9, 0.45);
}

.mobile-filter__panel {
  position: absolute;
  inset: 0;
  background: #fbf8f2;
  overflow-y: auto;
  padding: 20px 16px 28px;
}

.mobile-filter__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.mobile-filter__header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 26px;
  color: #744c2f;
}

.mobile-filter__close {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(142, 106, 72, 0.18);
  background: #fff;
  color: #744c2f;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

.mobile-filter__section + .mobile-filter__section {
  margin-top: 18px;
}

.mobile-filter__section h3 {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8e6a48;
  margin-bottom: 10px;
}

.mobile-filter__sort-list,
.mobile-filter__category-list {
  display: grid;
  gap: 10px;
}

.mobile-filter__option {
  width: 100%;
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(142, 106, 72, 0.18);
  background: #fff;
  color: #6d533e;
  padding: 0 14px;
  font: inherit;
  font-size: 13px;
  cursor: pointer;
  border-radius: 14px;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease, color .2s ease, transform .2s ease;
}

.mobile-filter__option strong {
  min-width: 34px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  font-size: 9px;
  color: #8e6a48;
  background: #f5ede3;
  border: 1px solid rgba(142, 106, 72, 0.18);
}

.mobile-filter__option.active {
  background: linear-gradient(135deg, #f5ddc6 0%, #fff3e5 100%);
  color: #6f4325;
  border-color: rgba(176, 110, 63, 0.62);
  box-shadow: 0 14px 28px rgba(176, 110, 63, 0.2);
  transform: translateY(-1px);
  position: relative;
}

.mobile-filter__option.active strong {
  background: #bf7b46;
  border-color: #bf7b46;
  color: #fff;
  box-shadow: 0 8px 14px rgba(191, 123, 70, 0.22);
}

.mobile-filter__option.active::after {
  content: '\2713';
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #bf7b46;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 10px 18px rgba(176, 110, 63, 0.24);
}

.mobile-filter__category-list .mobile-filter__option.active {
  padding-right: 42px;
}

.mobile-filter__sort-list .mobile-filter__option.active {
  padding-right: 42px;
}

@media (max-width: 1100px) {
  .catalog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 960px) {
  .collections-hero,
  .catalog-toolbar,
  .catalog-layout {
    padding-left: 16px;
    padding-right: 16px;
  }

  .catalog-toolbar {
    grid-template-columns: 1fr;
  }

  .collections-hero__image {
    height: 76px;
  }

  .catalog-toolbar__controls {
    grid-template-columns: 1fr;
  }

  .catalog-layout {
    grid-template-columns: 1fr;
  }

  .catalog-toolbar__spacer,
  .catalog-toolbar__sort,
  .catalog-sidebar {
    display: none;
  }

  .catalog-toolbar input {
    padding-right: 60px;
  }

  .catalog-toolbar__filter-btn {
    display: inline-flex;
  }
}

@media (max-width: 640px) {
  .collections-hero__image {
    height: 68px;
  }

  .catalog-grid {
    grid-template-columns: 1fr;
  }

  .catalog-sidebar {
    grid-template-columns: 1fr;
  }
}

/* =========================================================
   MOBILE SEARCH + FILTER BUTTON FIX
   - Keep the filter button inside the search field
   - Center the filter icon perfectly
   - Remove the broken/doubled border on mobile
   ========================================================= */
@media (max-width: 960px) {
  .catalog-toolbar__controls,
  .catalog-toolbar__search {
    width: 100% !important;
    min-width: 0 !important;
  }

  .catalog-toolbar__search {
    position: relative !important;
    display: block !important;
    height: 44px !important;
    border: 1px solid #e3ddd5 !important;
    border-radius: 14px !important;
    background: #f4efe8 !important;
    overflow: hidden !important;
    box-sizing: border-box !important;
  }

  .catalog-toolbar__search input,
  .catalog-toolbar input {
    display: block !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 58px 0 14px !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
    outline: none !important;
  }

  .catalog-toolbar__filter-btn {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: auto !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 50px !important;
    height: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-left: 1px solid #e3ddd5 !important;
    border-radius: 0 !important;
    background: #f7f1e8 !important;
    color: #744c2f !important;
    transform: none !important;
    line-height: 1 !important;
    box-sizing: border-box !important;
    appearance: none !important;
    -webkit-appearance: none !important;
  }

  .catalog-toolbar__filter-btn svg {
    display: block !important;
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    padding: 0 !important;
    flex: 0 0 18px !important;
    overflow: visible !important;
    transform: none !important;
    fill: none !important;
    stroke: currentColor !important;
    stroke-width: 1.8 !important;
    stroke-linecap: round !important;
    stroke-linejoin: round !important;
  }
}

@media (max-width: 420px) {
  .catalog-toolbar__search {
    height: 42px !important;
    border-radius: 12px !important;
  }

  .catalog-toolbar__search input,
  .catalog-toolbar input {
    padding-right: 54px !important;
    font-size: 13px !important;
  }

  .catalog-toolbar__filter-btn {
    width: 48px !important;
  }
}


/* =========================================================
   MOBILE TOP BAR + COLLECTIONS HERO FIX
   ========================================================= */
@media (max-width: 768px) {
  html,
  body {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    overflow-x: hidden !important;
  }

  body .top-bar {
    position: relative !important;
    display: grid !important;
    grid-template-columns: 44px minmax(0, 1fr) 44px !important;
    grid-template-rows: 52px !important;
    align-items: center !important;
    width: 100% !important;
    height: 52px !important;
    min-height: 52px !important;
    margin: 0 !important;
    padding: 0 12px !important;
    background: #744a35 !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
  }

  body .top-bar__actions {
    display: contents !important;
  }

  body .top-bar__center {
    position: static !important;
    grid-column: 2 !important;
    grid-row: 1 !important;
    justify-self: center !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 6px !important;
    transform: none !important;
    overflow: hidden !important;
    text-align: center !important;
    text-overflow: ellipsis !important;
    white-space: nowrap !important;
    color: #fff !important;
    font-size: 9px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    letter-spacing: 0.07em !important;
    box-sizing: border-box !important;
  }

  body .top-bar__whatsapp {
    position: static !important;
    grid-column: 1 !important;
    grid-row: 1 !important;
    justify-self: start !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    transform: none !important;
  }

  body .top-bar__whatsapp span {
    display: none !important;
  }

  body .top-bar__wa-icon {
    display: block !important;
    width: 18px !important;
    height: 18px !important;
    margin: 0 !important;
    flex: 0 0 18px !important;
  }

  body .top-bar__cart {
    position: static !important;
    grid-column: 3 !important;
    grid-row: 1 !important;
    justify-self: end !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 32px !important;
    height: 32px !important;
    min-width: 32px !important;
    margin: 0 !important;
    padding: 0 !important;
    transform: none !important;
  }

  body .top-bar__cart svg {
    display: block !important;
    width: 20px !important;
    height: 20px !important;
    margin: 0 !important;
  }

  body .collections-hero {
    width: 100% !important;
    margin: 0 !important;
    padding: 15px 18px 14px !important;
    border-bottom: 1px solid rgba(105, 68, 48, 0.12) !important;
    background: #fff !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }

  body .collections-hero__title {
    margin: 0 0 7px !important;
    color: #694430 !important;
    font-size: clamp(21px, 6.2vw, 26px) !important;
    line-height: 1.08 !important;
    letter-spacing: 0.035em !important;
  }

  body .collections-hero__subtitle {
    max-width: 360px !important;
    margin: 0 auto !important;
    color: #694430 !important;
    font-size: clamp(12px, 3.7vw, 15px) !important;
    font-weight: 700 !important;
    line-height: 1.4 !important;
    letter-spacing: 0 !important;
    text-wrap: balance !important;
  }

  body .catalog-toolbar {
    padding-top: 12px !important;
  }
}

@media (max-width: 360px) {
  body .top-bar {
    grid-template-columns: 38px minmax(0, 1fr) 38px !important;
    padding: 0 9px !important;
  }

  body .top-bar__center {
    font-size: 8px !important;
    letter-spacing: 0.045em !important;
  }

  body .collections-hero {
    padding-left: 14px !important;
    padding-right: 14px !important;
  }

  body .collections-hero__subtitle {
    font-size: 12px !important;
  }
}
/* Giảm size tiêu đề OUR COLLECTIONS */
.collections-hero__title {
  font-size: clamp(42px, 5vw, 72px) !important;
  line-height: 1 !important;
  letter-spacing: 0.02em !important;
}

/* PRODUCTS CATEGORIES: Calibri, in hoa */
.catalog-sidebar h2 {
  font-family: Calibri, Arial, sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
  letter-spacing: 0.03em !important;
  text-transform: uppercase !important;
  white-space: nowrap !important;
}
