/* ===== SHOP HEADER ===== */
.shop-header {
  padding: 140px 80px 60px;
  background:
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(139, 64, 90, 0.12) 0%, transparent 60%),
    var(--bg);
}
.shop-header-inner {
  max-width: 680px;
}
.shop-header .section-label { margin-bottom: 12px; }
.shop-header h1 {
  font-size: clamp(36px, 4vw, 60px);
  color: var(--plum);
  font-style: italic;
  margin-bottom: 16px;
}
.shop-header p {
  font-size: 16px;
  color: var(--fg-muted);
  line-height: 1.7;
  max-width: 520px;
}
.seed-notice {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  background: rgba(196,151,90,0.1);
  border: 1px solid rgba(196,151,90,0.3);
  color: var(--gold);
  font-size: 13px;
  padding: 10px 16px;
  border-radius: 10px;
}

/* ===== FILTER BAR ===== */
.filter-bar {
  position: sticky; top: 64px; z-index: 50;
  background: rgba(250,247,242,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196,151,90,0.15);
  padding: 0 80px;
}
.filter-bar-inner {
  max-width: 1280px; margin: 0 auto;
  display: flex; gap: 8px; padding: 16px 0;
  overflow-x: auto;
}
.filter-btn {
  padding: 8px 20px; border-radius: 20px;
  border: 1px solid rgba(196,151,90,0.3); background: none;
  cursor: pointer; font-size: 14px; font-weight: 500;
  color: var(--fg-muted); white-space: nowrap;
  transition: all 0.2s;
}
.filter-btn:hover { border-color: var(--gold); color: var(--plum); }
.filter-btn.active {
  background: var(--plum); color: var(--cream);
  border-color: var(--plum);
}

/* ===== PRODUCT GRID ===== */
.shop-grid-section { padding: 60px 80px; background: var(--bg); }
.product-grid {
  max-width: 1280px; margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.product-card {
  border-radius: 16px; overflow: hidden;
  background: var(--bg);
  box-shadow: 0 2px 20px rgba(45,20,32,0.06);
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 40px rgba(45,20,32,0.12);
}
.product-visual {
  height: 220px; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.product-visual--crystals {
  background: linear-gradient(135deg, #4A2035 0%, #8B405A 40%, #C4975A 100%);
}
.product-visual--sage {
  background: linear-gradient(135deg, #6B7E4B 0%, #8B9E6B 50%, #C4975A 100%);
}
.product-visual--incense {
  background: linear-gradient(135deg, #1C0F18 0%, #4A2035 60%, #8B405A 100%);
}
.product-visual--ritual {
  background: linear-gradient(135deg, #C4975A 0%, #8B405A 50%, #2D1420 100%);
}

.sale-badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--rose); color: white;
  font-size: 11px; font-weight: 600; letter-spacing: 0.05em;
  padding: 4px 10px; border-radius: 6px;
}
.product-info { padding: 20px; }
.product-tags { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 10px; }
.product-tag {
  font-size: 11px; background: rgba(196,151,90,0.12);
  color: var(--gold); padding: 3px 8px; border-radius: 6px;
}
.product-title {
  font-size: 17px; font-weight: 600; color: var(--plum);
  margin-bottom: 8px; font-family: 'Playfair Display', serif;
}
.product-desc {
  font-size: 13px; color: var(--fg-muted); line-height: 1.5;
  margin-bottom: 16px;
}
.product-pricing { display: flex; align-items: baseline; gap: 10px; margin-bottom: 16px; }
.product-price { font-size: 18px; font-weight: 600; color: var(--plum); }
.product-compare-price { font-size: 14px; color: var(--fg-muted); text-decoration: line-through; }
.product-actions { display: flex; gap: 8px; flex-wrap: wrap; }
.btn-add-cart {
  flex: 1; min-width: 0; padding: 11px 8px;
  background: var(--plum); color: var(--cream);
  border: none; border-radius: 10px; cursor: pointer;
  font-size: 13px; font-weight: 500;
  transition: background 0.2s; white-space: nowrap;
}
.btn-add-cart:hover:not(:disabled) { background: var(--plum-mid); }
.btn-add-cart:disabled { background: var(--fg-muted); cursor: not-allowed; }
.btn-subscribe {
  display: flex; align-items: center; gap: 5px;
  padding: 11px 12px;
  background: rgba(196,151,90,0.12); color: var(--gold);
  border: 1px solid rgba(196,151,90,0.3); border-radius: 10px;
  cursor: pointer; font-size: 13px; font-weight: 500;
  transition: all 0.2s; white-space: nowrap;
}
.btn-subscribe:hover {
  background: rgba(196,151,90,0.25);
  border-color: var(--gold);
}
.btn-view-shop {
  display: flex; align-items: center; justify-content: center;
  padding: 11px 12px;
  background: transparent; color: var(--plum);
  border: 1px solid rgba(196,151,90,0.35); border-radius: 10px;
  cursor: pointer; font-size: 13px; font-weight: 500;
  text-decoration: none; white-space: nowrap;
  transition: all 0.2s;
}
.btn-view-shop:hover {
  background: rgba(196,151,90,0.1);
  border-color: var(--gold);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 900px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-header, .shop-grid-section { padding-left: 40px; padding-right: 40px; }
  .filter-bar { padding: 0 40px; }
}
@media (max-width: 640px) {
  .shop-header { padding: 120px 24px 40px; }
  .shop-grid-section { padding: 40px 24px; }
  .filter-bar { padding: 0 24px; }
  .product-grid { grid-template-columns: 1fr; }
  .product-card { max-width: 400px; margin: 0 auto; }
}