.dkc-product-showcase {
  --dkc-catalog-text: #182235;
  --dkc-catalog-muted: #657084;
  --dkc-catalog-border: #e4e8ef;
  --dkc-catalog-surface: #ffffff;
  --dkc-catalog-accent: #f5b544;
  color: var(--dkc-catalog-text);
}

.dkc-product-showcase *,
.dkc-product-showcase *::before,
.dkc-product-showcase *::after {
  box-sizing: border-box;
}

.dkc-product-container {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.dkc-product-hero {
  padding: 72px 0 44px;
  background: #f6f8fb;
  border-bottom: 1px solid var(--dkc-catalog-border);
}

.dkc-product-hero h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: 0;
}

.dkc-product-eyebrow {
  margin: 0 0 10px;
  color: var(--dkc-catalog-muted);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.dkc-product-section {
  padding: 48px 0 72px;
  background: #fff;
}

.dkc-product-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 28px;
}

.dkc-product-categories a,
.dkc-product-pagination a,
.dkc-product-pagination span,
.dkc-product-card__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 8px 16px;
  border: 1px solid var(--dkc-catalog-border);
  background: #fff;
  color: var(--dkc-catalog-text);
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
}

.dkc-product-categories a.is-active,
.dkc-product-pagination span.is-active,
.dkc-product-card__link {
  background: var(--dkc-catalog-accent);
  border-color: var(--dkc-catalog-accent);
  color: #121212;
}

.dkc-product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.dkc-product-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  border: 1px solid var(--dkc-catalog-border);
  background: var(--dkc-catalog-surface);
}

.dkc-product-card__image {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #f1f4f8;
  color: var(--dkc-catalog-muted);
  text-decoration: none;
  font-weight: 700;
}

.dkc-product-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .25s ease;
}

.dkc-product-card:hover .dkc-product-card__image img {
  transform: scale(1.04);
}

.dkc-product-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
}

.dkc-product-card__category,
.dkc-product-badge {
  color: var(--dkc-catalog-muted);
  font-size: 13px;
  font-weight: 700;
}

.dkc-product-card__title {
  margin: 0;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: 0;
}

.dkc-product-card__title a {
  color: inherit;
  text-decoration: none;
}

.dkc-product-card__summary {
  margin: 0;
  color: var(--dkc-catalog-muted);
  line-height: 1.7;
}

.dkc-product-card__link {
  align-self: flex-start;
  margin-top: auto;
}

.dkc-product-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
  margin-top: 34px;
}

.dkc-product-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, .9fr);
  gap: 44px;
  align-items: start;
}

.dkc-product-gallery__main {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  background: #f1f4f8;
  overflow: hidden;
}

.dkc-product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dkc-product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.dkc-product-thumb {
  border: 2px solid transparent;
  padding: 0;
  background: #f1f4f8;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  cursor: pointer;
}

.dkc-product-thumb.is-active {
  border-color: var(--dkc-catalog-accent);
}

.dkc-product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dkc-product-detail__summary {
  padding: 30px;
  border: 1px solid var(--dkc-catalog-border);
}

.dkc-product-detail__summary h2,
.dkc-product-body h2,
.dkc-product-related h2 {
  margin: 0 0 16px;
  font-size: 30px;
  line-height: 1.2;
  letter-spacing: 0;
}

.dkc-product-detail__summary p,
.dkc-product-body {
  color: var(--dkc-catalog-muted);
  line-height: 1.8;
}

.dkc-product-body,
.dkc-product-related {
  margin-top: 48px;
  padding-top: 34px;
  border-top: 1px solid var(--dkc-catalog-border);
}

.dkc-product-body img {
  max-width: 100%;
  height: auto;
}

.dkc-product-empty,
.dkc-product-no-image {
  padding: 32px;
  background: #f6f8fb;
  color: var(--dkc-catalog-muted);
  text-align: center;
  font-weight: 700;
}

@media (max-width: 991px) {
  .dkc-product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .dkc-product-detail {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .dkc-product-grid,
  .dkc-product-gallery__thumbs {
    grid-template-columns: 1fr;
  }

  .dkc-product-hero {
    padding: 48px 0 30px;
  }
}
