.store-wc-categories { margin-top: 24px; }
.store-wc-categories__loading,
.store-wc-categories__empty,
.store-wc-categories__error {
  margin: 0;
  padding: 28px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,.88);
  border: 1px dashed rgba(22,45,35,.16);
  color: #5f6f66;
  text-align: center;
}
.store-wc-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}
.store-wc-cat-card {
  min-width: 0;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(22,45,35,.10);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(12,31,22,.07);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.store-wc-cat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(201,146,63,.35);
  box-shadow: 0 18px 48px rgba(12,31,22,.11);
}
.store-wc-cat-card__link {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  min-height: 100%;
  color: inherit;
  text-decoration: none !important;
}
.store-wc-cat-card__media {
  flex: 0 0 42%;
  max-width: 42%;
  min-height: 168px;
  background: #eef2ee;
  overflow: hidden;
}
.store-wc-cat-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 168px;
  object-fit: cover;
}
.store-wc-cat-card__placeholder {
  display: block;
  width: 100%;
  min-height: 168px;
  background: linear-gradient(135deg, #e8efe9, #d7e4d9);
}
.store-wc-cat-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 18px 20px;
  min-width: 0;
}
.store-wc-cat-card__title {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(17px, 2vw, 21px);
  font-weight: 700;
  line-height: 1.18;
  color: #0f2a1f;
}
.store-wc-cat-card__count {
  margin: 0;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #c9923f;
}
.store-wc-cat-card__excerpt {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #5f6f66;
}
.store-wc-categories__foot {
  margin: 22px 0 0;
  text-align: center;
}
.store-wc-categories__shop-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #0f2a1f;
  color: #fff !important;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none !important;
}
.store-wc-categories__shop-link:hover {
  background: #1a3d2c;
}
@media (max-width: 900px) {
  .store-wc-cat-grid { grid-template-columns: 1fr; }
  .store-wc-cat-card__media { flex-basis: 38%; max-width: 38%; }
}
@media (max-width: 560px) {
  .store-wc-cat-card__link { flex-direction: column; }
  .store-wc-cat-card__media { flex-basis: auto; max-width: none; min-height: 180px; }
}
