/* ═══ BOUTIQUE PAGE ═══ */

.breadcrumb-bar { background: #f5f5f5; border-bottom: 1px solid #e8e8e8; padding: 12px 0; font-size: .85rem; }
.breadcrumb-inner { display: flex; align-items: center; gap: 8px; color: var(--muted); }
.breadcrumb-inner a { color: var(--red); }
.breadcrumb-inner i { font-size: .7rem; }
.breadcrumb-inner span { color: var(--text); }

.boutique-main { padding: 40px 0 80px; background: #fafafa; }
.boutique-layout { display: grid; grid-template-columns: 260px 1fr; gap: 32px; align-items: flex-start; }

/* ── SIDEBAR ── */
.boutique-sidebar { position: sticky; top: 100px; display: flex; flex-direction: column; gap: 20px; }
.sidebar-card { background: #fff; border-radius: var(--radius); padding: 22px; box-shadow: var(--shadow); }
.sidebar-card h4 { font-size: .9rem; font-weight: 700; color: var(--black); margin-bottom: 16px;
  display: flex; align-items: center; gap: 8px; }
.sidebar-card h4 i { color: var(--red); }
.sidebar-cats li a { display: flex; align-items: center; justify-content: space-between;
  padding: 9px 12px; border-radius: 8px; font-size: .85rem; color: var(--text); transition: .18s; gap: 8px; }
.sidebar-cats li a i { color: var(--muted); width: 16px; }
.sidebar-cats li a span { background: #f0f0f0; color: var(--muted); font-size: .72rem; font-weight: 600;
  padding: 2px 8px; border-radius: 50px; }
.sidebar-cats li a:hover, .sidebar-cats li a.active { background: #fef0f2; color: var(--red); }
.sidebar-cats li a.active span { background: var(--red); color: #fff; }

.price-filter input[type=range] { width: 100%; accent-color: var(--red); margin-bottom: 8px; }
.price-range-labels { display: flex; justify-content: space-between; font-size: .78rem; color: var(--muted); }

.label-filters { display: flex; flex-direction: column; gap: 10px; }
.label-filters label { display: flex; align-items: center; gap: 10px; font-size: .85rem; cursor: pointer; }
.label-filters input[type=checkbox] { accent-color: var(--red); width: 16px; height: 16px; }

.sidebar-wa { text-align: center; background: linear-gradient(135deg, #f0fdf4, #dcfce7); border: 1px solid #bbf7d0; }
.sidebar-wa i { font-size: 2.5rem; color: #25d366; margin-bottom: 8px; display: block; }
.sidebar-wa h4 { justify-content: center; border: none; margin-bottom: 8px; }
.sidebar-wa p { font-size: .8rem; color: var(--muted); margin-bottom: 14px; line-height: 1.6; }

/* ── BOUTIQUE CONTENT ── */
.boutique-content { display: flex; flex-direction: column; gap: 50px; }
.boutique-sortbar { display: flex; align-items: center; justify-content: space-between;
  background: #fff; border-radius: var(--radius); padding: 14px 20px; box-shadow: var(--shadow); flex-wrap: wrap; gap: 12px; }
.results-count { font-size: .9rem; color: var(--muted); }
.results-count strong { color: var(--black); }
.sort-controls { display: flex; align-items: center; gap: 10px; }
.sort-controls select { padding: 8px 12px; border: 1px solid #eee; border-radius: 8px;
  font-family: var(--font); font-size: .85rem; color: var(--text); cursor: pointer; }
.view-toggle { width: 36px; height: 36px; border-radius: 8px; background: #f5f5f5; color: var(--muted); font-size: .9rem; transition: .2s; }
.view-toggle.active, .view-toggle:hover { background: var(--red); color: #fff; }

/* Category section headers */
.cat-section { background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow); }
.cat-section-title { display: flex; align-items: center; gap: 16px; margin-bottom: 28px;
  padding-bottom: 18px; border-bottom: 2px solid #f0f0f0; }
.cat-section-icon { width: 52px; height: 52px; border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem; color: #fff; flex-shrink: 0; }
.cat-section-title h2 { font-size: 1.3rem; font-weight: 700; color: var(--black); margin-bottom: 4px; }
.cat-section-title p { font-size: .82rem; color: var(--muted); }
.cat-section .products-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .boutique-layout { grid-template-columns: 1fr; }
  .boutique-sidebar { position: static; display: grid; grid-template-columns: 1fr 1fr; }
  .sidebar-wa { grid-column: span 2; }
}

@media (max-width: 580px) {
  .boutique-sidebar { grid-template-columns: 1fr; }
  .sidebar-wa { grid-column: unset; }
  .cat-section .products-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}
