.store-overview {
  padding: 12px 0 28px;
}

.store-overview__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 16px;
}

.store-card {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 22px;
  box-shadow: 0 12px 32px rgba(24, 32, 51, 0.06);
}

.store-card--primary {
  background: linear-gradient(135deg, #132f6c, #111827);
  color: #ffffff;
  position: relative;
  overflow: hidden;
}

.store-card--primary::after {
  content: "";
  position: absolute;
  width: 210px;
  height: 210px;
  right: -76px;
  top: -84px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(239, 75, 35, 0.42), transparent 67%);
}

.store-card__icon {
  display: inline-grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  background: #fff3ee;
  color: var(--primary);
  font-size: 25px;
  margin-bottom: 14px;
}

.store-card--primary .store-card__icon {
  background: rgba(255, 255, 255, 0.14);
  color: #ffffff;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.store-card h2,
.store-card h3,
.store-card p,
.store-card .button,
.store-card .store-card__icon {
  position: relative;
  z-index: 1;
}

.store-card h2 {
  font-size: clamp(25px, 3vw, 40px);
  line-height: 1.08;
  margin-bottom: 12px;
}

.store-card h3 {
  font-size: 20px;
  margin-bottom: 8px;
}

.store-card p {
  color: var(--muted);
  line-height: 1.6;
  margin-bottom: 16px;
}

.store-card--primary p {
  color: #d8e0ef;
}

.store-card__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.feature-strip {
  margin-top: 0;
  margin-bottom: 12px;
}

.feature-strip article {
  min-height: 92px;
  transition: transform 0.2s ease, border-color 0.2s ease;
}

.feature-strip article:hover,
.category-card:hover,
.product-card:hover {
  transform: translateY(-3px);
  border-color: rgba(239, 75, 35, 0.35);
}

.section {
  padding: 44px 0;
}

#categories {
  padding-top: 34px;
}

.category-card {
  min-height: 160px;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  box-shadow: 0 18px 38px rgba(24, 32, 51, 0.08);
}

.product-card {
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-card:hover {
  box-shadow: 0 18px 40px rgba(24, 32, 51, 0.09);
}

.promo-section {
  padding-top: 18px;
}

.homepage-slider {
  padding-bottom: 22px;
}

@media (max-width: 980px) {
  .store-overview__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .store-overview {
    padding: 8px 0 22px;
  }

  .store-card {
    padding: 18px;
    border-radius: 18px;
  }

  .store-card__links .button {
    width: 100%;
  }

  .section {
    padding: 34px 0;
  }
}
