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

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

.films-shop__head {
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

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

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

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

.films-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;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.85);
}

.films-shop__types {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.films-shop__types a {
  display: inline-block;
  min-width: 7.5rem;
  padding: 0.75rem 1.35rem;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-align: center;
  text-decoration: none;
  color: #2c3e4e;
  background: #fff;
  border-radius: 100px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.films-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;
}

.films-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;
}

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

.films-shop-card__media {
  display: block;
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: #1a1a1a;
}

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

.films-shop-card:hover .films-shop-card__media img {
  transform: scale(1.06);
}

.films-shop-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.25rem 1.35rem 1.5rem;
  gap: 0.65rem;
}

.films-shop-card__num {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #9aa3ad;
}

.films-shop-card__title {
  margin: 0;
  font-size: clamp(1rem, 0.95rem + 0.2vw, 1.125rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.3;
}

.films-shop-card__text {
  margin: 0;
  flex: 1;
  font-size: 0.875rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.78);
}

.films-shop-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin: 0.25rem 0 0;
  padding: 0;
  list-style: none;
}

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

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

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

.films-shop__footer {
  margin-top: 0;
}

.films-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;
  background-position: center;
}

.films-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;
}

.films-shop__benefit {
  text-align: center;
  padding: 0 0.5rem;
}

.films-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;
}

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

.films-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);
}

.films-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);
}

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

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

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

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

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

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

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

  .films-shop-card:hover {
    transform: none;
  }
}
