.shop-page {
  padding-top: 48px;
  padding-bottom: 80px;
}

/* ── Shop Banner Header ── */
.shop-header {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border-color);
  position: relative;
}

.shop-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 80px;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: var(--radius-pill);
}

.shop-title {
  font-family: var(--font-serif);
  font-size: 2.6rem;
  color: var(--primary-dark);
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.15;
}

.shop-meta-text {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ── Layout ── */
.shop-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
  align-items: start;
}

/* ── Sidebar – Sticky ── */
.shop-sidebar {
  background-color: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  padding: 28px;
  box-shadow: var(--shadow-card);
  position: sticky;
  top: calc(var(--header-height) + 24px);
  transition: box-shadow var(--transition-normal);
}

.shop-sidebar:hover {
  box-shadow: var(--shadow-md);
}

.sidebar-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  color: var(--primary-dark);
  font-size: 1rem;
  border-bottom: 1.5px solid var(--surface-muted);
  padding-bottom: 18px;
  margin-bottom: 28px;
}

.filter-group {
  margin-bottom: 28px;
}

.filter-title {
  font-size: 0.72rem;
  font-weight: 800;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 14px;
}

.filter-search-input {
  padding: 10px 14px;
  font-size: 0.875rem;
  border-radius: var(--radius-md);
  border: 1.5px solid var(--border-color);
  width: 100%;
  background: var(--bg-color);
  transition: all var(--transition-fast);
  outline: none;
}

.filter-search-input:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(45,90,39,0.10);
}

.category-options {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.category-filter-btn {
  text-align: left;
  padding: 10px 14px;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  color: var(--text-muted);
  transition: all var(--transition-fast);
  background: transparent;
  display: flex;
  align-items: center;
  gap: 8px;
  position: relative;
}

.category-filter-btn::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border-color);
  flex-shrink: 0;
  transition: all var(--transition-fast);
}

.category-filter-btn:hover {
  background: var(--surface-muted);
  color: var(--primary-color);
  padding-left: 18px;
}

.category-filter-btn:hover::before {
  background: var(--primary-light);
}

.category-filter-btn.active {
  background: linear-gradient(135deg, rgba(45,90,39,0.10) 0%, rgba(78,140,70,0.06) 100%);
  color: var(--primary-dark);
  font-weight: 700;
  border-left: 3px solid var(--primary-color);
  padding-left: 12px;
}

.category-filter-btn.active::before {
  background: var(--gradient-primary);
  box-shadow: 0 0 6px rgba(45,90,39,0.3);
}

/* Price Range */
.price-title-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}

.price-val {
  font-size: 0.88rem;
  font-weight: 800;
  color: var(--primary-color);
  background: rgba(45,90,39,0.07);
  padding: 3px 10px;
  border-radius: var(--radius-pill);
}

.price-slider {
  -webkit-appearance: none;
  width: 100%;
  height: 5px;
  border-radius: var(--radius-pill);
  background: linear-gradient(90deg, var(--primary-color) 0%, var(--border-color) 0%);
  outline: none;
  margin: 14px 0 8px;
  cursor: pointer;
}

.price-slider::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--gradient-primary);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(45,90,39,0.3);
  border: 2px solid #fff;
  transition: all var(--transition-spring);
}

.price-slider::-webkit-slider-thumb:hover {
  transform: scale(1.18);
  box-shadow: var(--shadow-glow-green);
}

.price-limits {
  display: flex;
  justify-content: space-between;
  font-size: 0.72rem;
  color: var(--text-muted);
}

.reset-btn {
  margin-top: 8px;
  font-size: 0.85rem;
  padding: 10px 16px;
  border: 1.5px solid var(--border-color);
  color: var(--text-muted);
  border-radius: var(--radius-md);
  transition: all var(--transition-fast);
  width: 100%;
}

.reset-btn:hover {
  background: rgba(201,59,59,0.06);
  color: var(--danger-color);
  border-color: var(--danger-color);
}

/* ── Sorting Row ── */
.shop-sorting-row {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-lg);
  padding: 12px 24px;
  margin-bottom: 32px;
  box-shadow: var(--shadow-card);
}

.sort-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: var(--text-muted);
}

.sort-select {
  border: 1.5px solid var(--border-color);
  padding: 7px 14px;
  border-radius: var(--radius-md);
  outline: none;
  cursor: pointer;
  background: var(--bg-color);
  color: var(--text-color);
  font-weight: 500;
  font-size: 0.875rem;
  transition: all var(--transition-fast);
}

.sort-select:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(45,90,39,0.10);
}

.shop-products-grid { margin-top: 8px; }

/* ── No Results ── */
.shop-no-results {
  text-align: center;
  padding: 72px 24px;
  background: var(--surface-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-card);
}

.no-results-icon {
  color: var(--border-color);
  margin-bottom: 8px;
}

.shop-no-results h3 {
  font-size: 1.5rem;
  font-family: var(--font-serif);
  color: var(--primary-dark);
}

.shop-no-results p {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 320px;
  margin-bottom: 12px;
}

/* ── Responsive ── */
@media (max-width: 860px) {
  .shop-layout {
    grid-template-columns: 1fr;
  }
  .shop-sidebar {
    position: static;
  }
}
