/* =========================================================
   STORE.CSS — styles unique to store.html only.
   (.page-hero, .section-head are reused from base.css.)
   ========================================================= */

.store-intro {
  padding: 50px 0 0;
}
.filter-pills {
  display: flex;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
.filter-pill {
  padding: 10px 20px;
  border: 1.5px solid #e7dcc6;
  border-radius: 30px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--ink-soft);
  background: var(--white);
  transition: all 0.15s ease;
}
.filter-pill:hover {
  border-color: var(--gold-deep);
}
.filter-pill.active {
  background: var(--espresso);
  color: var(--gold);
  border-color: var(--espresso);
}

.store-grid {
  padding: 0 0 50px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.product-card {
  background: var(--white);
  border: 1px solid #f1e7d4;
  border-radius: 14px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 32px rgba(57, 4, 5, 0.08);
}
.product-card .icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.product-card .icon svg {
  width: 24px;
  height: 24px;
  color: var(--espresso);
}
.product-card .cat-tag {
  font-size: 10.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
  margin-bottom: 8px;
}
.product-card h3 {
  font-family: var(--font-serif);
  font-size: 16.5px;
  font-weight: 600;
  color: var(--espresso);
  margin-bottom: 8px;
}
.product-card p {
  font-size: 13px;
  color: var(--ink-soft);
  margin-bottom: 20px;
  flex-grow: 1;
}
.product-card .btn {
  width: 100%;
}

.bulk-section {
  padding: 0 0 90px;
}
.bulk-banner {
  background: var(--espresso);
  color: var(--white);
  border-radius: 16px;
  padding: 34px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.bulk-banner h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  margin-bottom: 6px;
}
.bulk-banner p {
  font-size: 13.5px;
  color: rgba(255, 255, 255, 0.75);
}

@media (max-width: 980px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 640px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .bulk-banner {
    flex-direction: column;
    text-align: center;
  }
  .filter-pills {
    gap: 8px;
  }
  .filter-pill {
    padding: 8px 14px;
    font-size: 12.5px;
  }
}
