/* Premium catalogue/sidebar layout */
.product-heading {
  margin-bottom: 34px;
  max-width: 720px;
}

.catalog-layout {
  display: grid;
  grid-template-columns: 245px minmax(0, 1fr);
  gap: 24px;
  align-items: start;
}

.catalog-content { min-width: 0; }

.catalog-sidebar {
  position: sticky;
  top: 106px;
  overflow: hidden;
  border: 1px solid #e6e4e5;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(22, 22, 25, .07);
}

.sidebar-title { padding: 22px 20px 15px; }
.sidebar-title small { display: block; color: #a50034; font-size: .62rem; font-weight: 800; letter-spacing: .12em; }
.sidebar-title strong { display: block; margin-top: 5px; font-size: 1.06rem; }

.catalog-sidebar .filter-pills {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin: 0;
  padding: 0 10px 14px;
}

.catalog-sidebar .filter-pills button {
  width: 100%;
  display: grid;
  grid-template-columns: 25px 1fr 15px;
  align-items: center;
  gap: 10px;
  padding: 13px 12px;
  border: 0;
  border-bottom: 1px solid #ecebed;
  border-radius: 9px;
  background: transparent;
  color: #33353a;
  text-align: left;
}

.catalog-sidebar .filter-pills button i:first-child { color: #a50034; font-size: 1rem; }
.catalog-sidebar .filter-pills button i:last-child { color: #aaa; font-size: .68rem; }
.catalog-sidebar .filter-pills button.active { background: linear-gradient(135deg, #9a002f, #c90843); color: #fff; box-shadow: 0 9px 20px rgba(165, 0, 52, .18); }
.catalog-sidebar .filter-pills button.active i { color: #fff; }

.sidebar-brand-card {
  margin: 0 10px 10px;
  padding: 22px 18px;
  border-radius: 15px;
  background: linear-gradient(145deg, #1b080e, #710324);
  color: #fff;
}

.sidebar-brand-card .brand-mark { width: 42px; height: 42px; font-size: .8rem; }
.sidebar-brand-card h4 { margin: 15px 0 11px; font-size: .94rem; font-weight: 800; }
.sidebar-brand-card ul { list-style: none; margin: 0 0 16px; padding: 0; }
.sidebar-brand-card li { margin-bottom: 7px; color: #e6c7d1; font-size: .68rem; }
.sidebar-brand-card li::before { content: "\2713"; margin-right: 7px; color: #ff4f82; font-weight: 800; }
.sidebar-brand-card a { color: #fff; font-size: .67rem; font-weight: 800; }

.catalog-content .product-group {
  padding: 28px;
  margin-bottom: 24px;
  border-radius: 22px;
  box-shadow: 0 14px 38px rgba(27, 23, 25, .055);
}

.catalog-content .product-grid,
.catalog-content .product-grid.seven,
.catalog-content .product-grid.tv-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.catalog-content .product-tile {
  min-height: 300px;
  border-radius: 18px;
  background: #fff;
}

.catalog-content .product-tile::before {
  height: 205px;
  background: linear-gradient(180deg, transparent 70%, rgba(15, 14, 16, .12));
}

.catalog-content .product-tile img {
  width: 100%;
  height: 205px;
  padding: 12px;
  object-fit: contain;
  background: linear-gradient(145deg, #f8f8f9, #fff);
}

.catalog-content .product-tile > i { top: 181px; }
.catalog-content .product-tile > span { padding: 31px 16px 10px; font-size: .78rem; }
.category-image img { object-fit: contain; padding: 8px; background: #fff; }

@media (max-width: 1199px) {
  .catalog-layout { grid-template-columns: 220px minmax(0, 1fr); }
  .catalog-content .product-grid,
  .catalog-content .product-grid.seven,
  .catalog-content .product-grid.tv-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 991px) {
  .catalog-layout { display: block; }
  .catalog-sidebar { position: static; margin-bottom: 22px; overflow: visible; border: 0; background: transparent; box-shadow: none; }
  .sidebar-title, .sidebar-brand-card { display: none; }
  .catalog-sidebar .filter-pills { flex-direction: row; gap: 8px; padding: 0 0 8px; overflow-x: auto; }
  .catalog-sidebar .filter-pills button { width: auto; display: flex; flex: 0 0 auto; border: 1px solid #ddd; border-radius: 30px; padding: 10px 15px; white-space: nowrap; }
  .catalog-sidebar .filter-pills button i:last-child { display: none; }
}

@media (max-width: 575px) {
  .catalog-content .product-group { padding: 17px; }
  .catalog-content .product-grid,
  .catalog-content .product-grid.seven,
  .catalog-content .product-grid.tv-grid { grid-template-columns: 1fr; }
  .catalog-content .product-tile { min-height: 295px; }
  .catalog-content .product-tile img,
  .catalog-content .product-tile::before { height: 205px; }
  .catalog-content .product-tile > i { top: 181px; }
}
