@charset "UTF-8";
/* Магазин дисков — стиль Weaver */

.wheels-shop {
  width: 100%;
  margin: clamp(3rem, 6vw, 6rem) auto clamp(2rem, 4vw, 4rem);
}

.wheels-shop__head {
  margin-bottom: clamp(1.5rem, 3vw, 2.5rem);
}

.wheels-shop__head .holder {
  text-align: center;
}

.wheels-shop__head h2 {
  color: #fff;
  margin-top: 0.5rem;
}

.wheels-shop__head h2::before {
  display: none;
}

.wheels-shop__lead {
  max-width: 52rem;
  margin: 1.25rem auto 0;
  font-size: clamp(0.9375rem, 0.9rem + 0.2vw, 1.0625rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.85);
}

.wheels-shop__lead a,
.wheels-shop__note a {
  color: #dacebd;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.wheels-shop__lead a:hover,
.wheels-shop__note a:hover {
  color: #fff;
  text-decoration: none;
}

.wheels-shop__mods {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  margin: 1.75rem auto 0;
  padding: 0;
  list-style: none;
  max-width: 52rem;
}

.wheels-shop__mods a {
  display: inline-block;
  padding: 0.45rem 0.9rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #fff;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 100px;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.wheels-shop__mods a:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(255, 255, 255, 0.35);
  color: #dacebd;
}

.wheels-shop__lead a:hover {
  color: #fff;
  text-decoration: none;
}

.wheels-shop__catalog-intro {
  max-width: 40rem;
  margin: 0 auto clamp(1.75rem, 3vw, 2.5rem);
  text-align: center;
  font-size: clamp(0.9375rem, 0.9rem + 0.15vw, 1.0625rem);
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.82);
}

.wheels-shop__catalog-intro a {
  color: #dacebd;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.wheels-shop__catalog-intro a:hover,
.wheels-shop__catalog-intro a:focus {
  color: #fff;
  text-decoration: none;
}

.wheels-shop__diameters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.65rem;
  margin: 0 0 clamp(2rem, 4vw, 3rem);
  padding: 0;
  list-style: none;
}

.wheels-shop__diameters a {
  min-width: 3.25rem;
  padding: 0.55rem 1rem;
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  color: #2c3e4e;
  text-decoration: none;
  background: #fff;
  border-radius: 100px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wheels-shop__diameters a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px -8px rgba(0, 0, 0, 0.35);
  color: #000;
}

.wheels-shop__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.25rem, 2.5vw, 1.75rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.wheels-shop-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #323232;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 32px -12px rgba(0, 0, 0, 0.45);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.wheels-shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px -14px rgba(0, 0, 0, 0.55);
}

.wheels-shop-card__media {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: #1a1a1a;
  padding: 1rem;
}

.wheels-shop-card__media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  transition: transform 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.wheels-shop-card:hover .wheels-shop-card__media img {
  transform: scale(1.04);
}

.wheels-shop-card__badge {
  position: absolute;
  top: 0.75rem;
  left: 0.75rem;
  padding: 0.25rem 0.55rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  border-radius: 6px;
}

.wheels-shop-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.15rem 1.35rem 1.4rem;
  gap: 0.5rem;
}

.wheels-shop-card__title {
  margin: 0;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
}

.wheels-shop-card__price {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 800;
  color: #fff;
}

.wheels-shop-card__price-note {
  font-size: 0.75rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.55);
}

.wheels-shop-card__specs {
  margin: 0.15rem 0 0;
  padding: 0;
  list-style: none;
  font-size: 0.75rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.72);
}

.wheels-shop-card__specs li + li {
  margin-top: 0.15rem;
}

.wheels-shop-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin: 0.35rem 0 0;
  padding: 0;
  list-style: none;
}

.wheels-shop-card__tags li {
  padding: 0.2rem 0.55rem;
  font-size: 0.625rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #2c3e4e;
  background: #f0f2f5;
  border-radius: 100px;
}

.wheels-shop-card__link {
  align-self: flex-start;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #dacebd;
  text-decoration: none;
}

.wheels-shop-card__link:hover {
  color: #fff;
  text-decoration: underline;
}

.wheels-shop__benefits {
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding: clamp(2rem, 4vw, 3rem) 0;
  width: 100%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100' preserveAspectRatio='none'%3E%3Cpolygon points='0,0 100,0 0,100' fill='%23363636'/%3E%3Cpolygon points='100,0 100,100 0,100' fill='%23303030'/%3E%3C/svg%3E");
  background-size: cover;
}

.wheels-shop__benefits-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(1rem, 3vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}

.wheels-shop__benefit strong {
  display: block;
  margin-bottom: 0.5rem;
  font-size: clamp(0.9375rem, 0.9rem + 0.15vw, 1.0625rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.35;
}

.wheels-shop__benefit span {
  display: block;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.75);
}

.wheels-shop__note {
  margin-top: clamp(2rem, 4vw, 3rem);
  padding: 1.5rem 1.75rem;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.wheels-shop__note p {
  margin: 0;
  font-size: clamp(0.9375rem, 0.9rem + 0.15vw, 1rem);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.88);
}

.wheels-shop__cta {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
}

.wheels-shop__cta .btn-icon {
  margin: 0;
}

@media (max-width: 1023px) {
  .wheels-shop__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .wheels-shop__benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 567px) {
  .wheels-shop__grid {
    grid-template-columns: 1fr;
  }

  .wheels-shop__benefits-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .wheels-shop-card,
  .wheels-shop-card__media img,
  .wheels-shop__diameters a {
    transition: none;
  }

  .wheels-shop-card:hover,
  .wheels-shop__diameters a:hover {
    transform: none;
  }
}
