.shop-section {
  padding: 24px 0 72px;
}

.shop-hero {
  padding: 88px 0 56px;
}

.shop-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: center;
}

.shop-hero-copy p {
  max-width: 620px;
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.shop-hero-media {
  display: flex;
}

.shop-hero-image {
  width: 100%;
  min-height: 420px;
  border-radius: 28px;
  overflow: hidden;
  background: #0b0e13;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.shop-preview-image {
  display: grid;
  place-items: center;
  padding: 26px;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.08), transparent 32%),
    linear-gradient(180deg, #0b0e13 0%, #131a26 100%);
}

.shop-preview-placeholder {
  width: 100%;
  max-width: 420px;
  display: grid;
  gap: 16px;
  text-align: left;
}

.shop-preview-placeholder strong {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  line-height: 0.95;
}

.shop-preview-placeholder p {
  color: var(--muted);
  margin: 0;
}

.shop-preview-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.shop-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-heading-inline {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
}

.shop-heading-text {
  max-width: 420px;
}

.shop-category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.shop-category-card {
  display: block;
  padding: 24px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-category-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.shop-category-card h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.shop-products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.shop-product-card {
  overflow: hidden;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.shop-product-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.28);
}

.shop-product-image {
  height: 260px;
  background: #0b0e13;
  overflow: hidden;
}

.shop-product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.shop-product-content {
  padding: 22px;
}

.shop-product-content h3 {
  margin-bottom: 10px;
  font-size: 1.15rem;
}

.shop-product-content p {
  margin-bottom: 18px;
}

.shop-product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}

.shop-price {
  font-weight: 800;
  color: var(--text);
}

.shop-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.shop-preview-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  padding: 24px;
  display: grid;
  gap: 14px;
}

.shop-preview-card p {
  color: var(--muted);
}
