.shop-hero {
  padding-block: var(--space-40);
}

.shop-hero__grid {
  align-items: center;
  gap: var(--space-24);
}

.shop-hero__lead {
  font-size: var(--font-size-lg);
  color: var(--color-text-muted);
  margin-bottom: var(--space-12);
}

.shop-hero__actions {
  margin-bottom: var(--space-16);
}

.shop-hero__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--space-12);
}

.shop-hero__highlight dt {
  font-weight: 600;
  margin-bottom: var(--space-2);
}

.shop-hero__highlight dd {
  margin: 0;
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.shop-hero__media {
  max-width: 480px;
  margin-inline: auto;
}

.shop-hero__image {
  min-height: 260px;
}

.shop-section-header {
  margin-bottom: var(--space-20);
}

.shop-section-header__actions {
  align-items: center;
}

.shop-featured__layout {
  grid-template-columns: 1fr;
  align-items: stretch;
}

.shop-featured__image {
  min-height: 260px;
}

.shop-featured__grid {
  align-content: flex-start;
}

.shop-product-card__meta {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.shop-product-card__price {
  font-weight: 600;
  color: var(--color-text);
}

.shop-product-card__rating {
  font-variant-numeric: tabular-nums;
}

.shop-categories {
  background-color: var(--color-surface-muted);
}

.shop-category-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.shop-category-card__title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

.shop-category-card__text {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.shop-category-card__links {
  margin-top: var(--space-4);
}

.shop-filters__panel {
  margin-top: var(--space-8);
}

.shop-filters__form {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.shop-filters__row {
  width: 100%;
}

.shop-filters__field {
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

.shop-filters__legend {
  font-size: var(--font-size-sm);
  font-weight: 600;
  margin-bottom: var(--space-4);
}

.shop-filters__actions {
  margin-left: auto;
}

.shop-overview__layout {
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.8fr);
}

.shop-overview__visual {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.shop-overview__image {
  min-height: 220px;
}

.shop-overview-item {
  margin-bottom: var(--space-8);
}

.shop-overview-item__header {
  margin-bottom: var(--space-4);
}

.shop-overview-item__title {
  font-size: var(--font-size-lg);
}

.shop-overview-item__subtitle {
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.shop-overview-item__price {
  font-weight: 600;
}

.shop-product-detail__list {
  display: grid;
  gap: var(--space-6);
  font-size: var(--font-size-sm);
  color: var(--color-text);
}

.shop-product-detail__image {
  min-height: 260px;
}

.shop-offers__grid {
  align-items: stretch;
}

.shop-offer-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.shop-offer-card__image {
  margin-bottom: var(--space-8);
}

.shop-offer-card__title {
  font-size: var(--font-size-lg);
  margin-bottom: var(--space-2);
}

.shop-offer-card__price {
  font-weight: 600;
}

.shop-offer-card__tag {
  font-size: var(--font-size-xs);
  color: var(--color-success);
  margin-left: var(--space-4);
}

.shop-offer-card__list {
  display: grid;
  gap: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.shop-brand {
  background-color: var(--color-surface);
}

.shop-brand__container {
  display: flex;
  flex-direction: column;
  gap: var(--space-16);
}

.shop-brand__grid {
  align-items: stretch;
}

.shop-brand-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-8);
}

.shop-brand-card__title {
  font-size: var(--font-size-lg);
}

.shop-brand-card__list {
  display: grid;
  gap: var(--space-4);
  font-size: var(--font-size-sm);
  color: var(--color-text-muted);
}

.shop-brand-card__list li span {
  margin-right: var(--space-4);
  color: var(--color-primary);
}

@media (max-width: 960px) {
  .shop-featured__layout,
  .shop-overview__layout {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 768px) {
  .shop-hero {
    padding-block: var(--space-32);
  }

  .shop-hero__highlights {
    grid-template-columns: minmax(0, 1fr);
  }

  .shop-filters__actions {
    margin-left: 0;
  }
}
