.stogai-shop-categories {
  padding: clamp(48px, 5vw, 72px) 0;
}
.stogai-wc-categories { margin-top: 8px; }
.stogai-wc-categories__loading,
.stogai-wc-categories__empty,
.stogai-wc-categories__error {
  margin: 0;
  padding: 28px 20px;
  border-radius: 18px;
  background: #f8fcff;
  border: 1px dashed rgba(16, 56, 96, .18);
  color: #5a7f9d;
  text-align: center;
}
.stogai-wc-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.stogai-wc-cat-card {
  min-width: 0;
  background: #fff;
  border: 1px solid rgba(16, 56, 96, .10);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 44px rgba(16, 56, 96, .08);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.stogai-wc-cat-card:hover {
  transform: translateY(-3px);
  border-color: rgba(45, 127, 176, .42);
  box-shadow: 0 20px 52px rgba(16, 56, 96, .12);
}
.stogai-wc-cat-card__link {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 100%;
  min-height: 100%;
  color: inherit;
  text-decoration: none !important;
}
.stogai-wc-cat-card__media {
  flex: 0 0 40%;
  max-width: 40%;
  min-height: 176px;
  background: #e8f4fc;
  overflow: hidden;
}
.stogai-wc-cat-card__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 176px;
  object-fit: cover;
}
.stogai-wc-cat-card__placeholder {
  display: block;
  width: 100%;
  min-height: 176px;
  background: linear-gradient(135deg, #e8f4fc, #d4e8f8);
}
.stogai-wc-cat-card__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
  padding: 18px 20px;
  min-width: 0;
}
.stogai-wc-cat-card__title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(16px, 1.9vw, 20px);
  font-weight: 700;
  line-height: 1.2;
  color: #0f2744;
}
.stogai-wc-cat-card__count {
  margin: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #2d7fb0;
}
.stogai-wc-cat-card__excerpt {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: #5a7f9d;
}
.stogai-wc-categories__foot {
  margin: 20px 0 0;
  text-align: center;
}
.stogai-wc-categories__shop-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(110, 207, 255, .96), rgba(77, 168, 216, .88));
  color: #082038 !important;
  font-size: 13px;
  font-weight: 800;
  text-decoration: none !important;
}
.stogai-wc-categories__shop-link:hover { filter: brightness(1.04); }
@media (max-width: 900px) {
  .stogai-wc-cat-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .stogai-wc-cat-card__link { flex-direction: column; }
  .stogai-wc-cat-card__media { flex-basis: auto; max-width: none; min-height: 200px; }
}
