/* Category banner colors */
.cat-banner { padding: 60px 0; }
.bg-orange { background: linear-gradient(135deg, #f97316, #fb923c); color: white; }
.bg-purple { background: linear-gradient(135deg, #7c3aed, #a855f7, #db2777); color: white; }
.bg-green  { background: linear-gradient(135deg, #059669, #10b981, #06b6d4); color: white; }

.cat-banner h1 {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw, 42px);
  font-weight: 700;
  margin: 12px 0 20px;
}

/* Trust bar */
.trust-bar { background: white; border-bottom: 1px solid var(--border); padding: 16px 0; }
.trust-grid { display: flex; gap: 24px; justify-content: center; flex-wrap: wrap; font-size: 14px; }

/* Shop layout */
.shop-layout { display: flex; gap: 28px; padding: 32px 24px; max-width: 1200px; margin: 0 auto; }

/* Sidebar */
.shop-sidebar { width: 220px; flex-shrink: 0; }
.sidebar-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
  margin-bottom: 16px;
}
.sidebar-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 12px; display: flex; justify-content: space-between; }
.sidebar-cat-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  font-size: 14px;
  color: var(--text-dark);
  text-decoration: none;
  border-radius: var(--radius-sm);
  margin-bottom: 4px;
  transition: background .15s;
}
.sidebar-cat-link:hover { background: var(--bg-light); }
.sidebar-cat-link.active { background: var(--primary); color: white; }
.cat-count {
  background: var(--bg-light);
  font-size: 12px;
  padding: 2px 8px;
  border-radius: 12px;
}

/* Product grid */
.shop-main { flex: 1; }
ul.products { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; list-style: none; padding: 0; margin: 0; }

/* Product card */
li.product {
  background: white;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: box-shadow .2s, transform .2s;
}
li.product:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }

li.product .product-img-wrap { position: relative; overflow: hidden; aspect-ratio: 1; }
li.product img { width: 100%; height: 100%; object-fit: cover; }
.badge-sale {
  position: absolute; top: 10px; left: 10px;
  background: var(--secondary);
  color: white; font-size: 11px; font-weight: 600;
  padding: 3px 10px; border-radius: 12px;
}
.badge-new { background: var(--accent-green); }

li.product .product-info { padding: 14px; }
li.product h2 a { font-size: 14px; font-weight: 600; color: var(--text-dark); text-decoration: none; }
.price ins { color: var(--primary); font-weight: 700; font-size: 16px; text-decoration: none; }
.price del { color: var(--text-light); font-size: 13px; }

/* Add to cart button — matches your design */
.add_to_cart_button {
  width: 100%;
  background: var(--primary);
  color: white;
  border: none;
  padding: 10px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  cursor: pointer;
  margin-top: 10px;
  transition: background .2s;
}
.add_to_cart_button:hover { background: var(--primary-dark); }