/* Grid layout */
.dtc-cat-wrap { width: 100%; }
.dtc-cat-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
@media (max-width: 1024px) {
  .dtc-cat-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 640px) {
  .dtc-cat-grid { grid-template-columns: 1fr; }
}

.category-item { display: block; }
.category-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,.06);
  transition: transform .2s ease, box-shadow .2s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(0,0,0,.1);
}

.category-image a { display:block; }
.category-image img, .dtc-cat-placeholder {
  display:block; width:100%; aspect-ratio: 16/9; object-fit: cover;
  background: #f2f2f2;
}

.category-content { padding: 12px; }
.category-title a {
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  color: #111827;
}
.category-title a:hover { color: #dc2626; }

.dtc-empty { text-align:center; color:#6b7280; padding:16px; }

.category-slider-container { width:100%; }
.category-slider { transform:none !important; }
