/* ============================================
   STRANGER THINGS LANDING v3
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Special+Elite&display=swap');

/* --- Variables --- */
.st-landing {
  --st-red: #e50914;
  --st-red-dark: #b0060f;
  --st-dark: #0a0a1a;
  --st-dark2: #1a1a35;
  --st-dark3: #0e0e20;
  --st-text: #e0e0e0;
  --st-text-muted: #a0a0b0;
  --st-gold: #f5c518;
}

.st-landing {
  color: var(--st-text);
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  overflow: hidden;
}

.st-landing *, .st-landing *::before, .st-landing *::after {
  box-sizing: border-box;
}

/* === FULL WIDTH === */
.st-landing > section {
  width: 100vw;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
}

/* ===== SECTION TITLE ===== */
.st-section-title {
  text-align: center;
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 2px;
}
.st-section-title--light { color: #fff; }
.st-section-title--dark { color: #1a1a35; }

/* ============================================================
   BLOCK 1: HERO
   ============================================================ */
.st-hero {
  background: linear-gradient(180deg, #090918 0%, #111133 40%, #1a1a45 70%, #0e0e25 100%);
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
  padding: 0;
  text-align: center;
}

.st-hero__bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  pointer-events: none;
}

.st-hero__particles {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background-image:
    radial-gradient(2px 2px at 15% 25%, rgba(229,9,20,0.3), transparent),
    radial-gradient(2px 2px at 35% 65%, rgba(229,9,20,0.2), transparent),
    radial-gradient(2px 2px at 55% 15%, rgba(229,9,20,0.15), transparent),
    radial-gradient(2px 2px at 75% 55%, rgba(229,9,20,0.25), transparent),
    radial-gradient(1px 1px at 10% 80%, rgba(255,255,255,0.08), transparent),
    radial-gradient(1px 1px at 90% 10%, rgba(255,255,255,0.06), transparent);
  animation: st-float 8s ease-in-out infinite;
}

.st-hero__lights-top {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 50px;
  background: url('../../image/catalog/stranger-things/lights.png') repeat-x center top;
  background-size: auto 50px;
  opacity: 0.85;
  z-index: 5;
}

@keyframes st-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.st-hero__center {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 70px;
}

.st-hero__logo-img {
  max-width: 500px;
  width: 80%;
  height: auto;
  margin-bottom: 20px;
  filter: drop-shadow(0 0 30px rgba(229,9,20,0.5));
}

.st-hero__logo-text {
  font-family: 'Special Elite', serif;
  font-size: 72px;
  color: var(--st-red);
  text-shadow: 0 0 20px rgba(229,9,20,0.7), 0 0 60px rgba(229,9,20,0.3), 0 0 100px rgba(229,9,20,0.15);
  line-height: 1;
  margin: 0 0 20px;
  display: none;
  animation: st-flicker 4s ease-in-out infinite;
}

@keyframes st-flicker {
  0%, 100% { opacity: 1; text-shadow: 0 0 20px rgba(229,9,20,0.7), 0 0 60px rgba(229,9,20,0.3); }
  50% { opacity: 0.88; text-shadow: 0 0 10px rgba(229,9,20,0.5), 0 0 30px rgba(229,9,20,0.2); }
}

.st-hero__subtitle {
  font-size: 28px;
  color: #fff;
  margin-bottom: 8px;
  font-weight: 700;
  letter-spacing: 2px;
}

.st-hero__tagline {
  font-size: 20px;
  color: var(--st-text-muted);
  margin-bottom: 25px;
  font-style: italic;
}

.st-hero__btn {
  display: inline-block;
  background: var(--st-red);
  color: #fff;
  padding: 16px 45px;
  border-radius: 50px;
  font-size: 18px;
  font-weight: 700;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 25px rgba(229,9,20,0.5);
  margin-bottom: 30px;
  z-index: 4;
}

.st-hero__btn:hover {
  background: var(--st-red-dark);
  transform: translateY(-3px);
  box-shadow: 0 8px 35px rgba(229,9,20,0.7);
  color: #fff;
  text-decoration: none;
}

.st-hero__figures {
  position: relative;
  z-index: 3;
  width: 100%;
  max-width: 750px;
  margin: 0 auto;
  line-height: 0;
}

.st-hero__figures img {
  width: 100%;
  height: auto;
  filter: drop-shadow(0 15px 40px rgba(0,0,0,0.6));
}

/* ============================================================
   BLOCK 2: USP
   ============================================================ */
.st-usp {
  background: var(--st-dark);
  padding: 35px 0;
  border-top: 3px solid var(--st-red);
  border-bottom: 3px solid var(--st-red);
}

.st-usp__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.st-usp__item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 15px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(229,9,20,0.15);
  border-radius: 12px;
  transition: border-color 0.3s;
}

.st-usp__item:hover { border-color: var(--st-red); }

.st-usp__icon-wrap {
  width: 50px; height: 50px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}

.st-usp__icon-img { max-width: 50px; max-height: 50px; object-fit: contain; }
.st-usp__icon-emoji { font-size: 36px; line-height: 1; }
.st-usp__label { font-size: 14px; color: var(--st-text); font-weight: 600; line-height: 1.3; }

/* ============================================================
   BLOCK 3: HITS
   ============================================================ */
.st-hits {
  background: linear-gradient(180deg, var(--st-dark) 0%, var(--st-dark3) 100%);
  padding: 70px 0;
}

.st-hits .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.st-hits__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.st-hits__card {
  background: rgba(200,200,220,0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 30px 25px;
  text-align: center;
  position: relative;
  border: 1px solid rgba(255,255,255,0.1);
  transition: all 0.3s ease;
  overflow: hidden;
}

.st-hits__card:hover {
  transform: translateY(-6px);
  border-color: rgba(255,255,255,0.25);
  box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.st-hits__badge {
  position: absolute;
  top: 18px; left: 18px;
  color: #fff;
  padding: 6px 18px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
}

.st-hits__badge--hit { background: var(--st-red); }
.st-hits__badge--top { background: var(--st-red); }
.st-hits__badge--new { background: var(--st-red); }

.st-hits__img-wrap {
  width: 100%; height: 280px;
  display: flex; align-items: center; justify-content: center;
  margin: 10px 0 20px;
  overflow: hidden;
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
}

.st-hits__img-wrap img {
  max-width: 100%; max-height: 100%;
  object-fit: contain;
  transition: transform 0.3s ease;
}

.st-hits__card:hover .st-hits__img-wrap img { transform: scale(1.05); }

.st-hits__name { font-size: 18px; color: #fff; margin: 10px 0; font-weight: 600; }
.st-hits__price { font-size: 28px; color: var(--st-red); font-weight: 700; margin: 10px 0 15px; }

.st-hits__btn {
  display: inline-block;
  color: var(--st-red);
  font-weight: 700;
  text-decoration: none;
  font-size: 16px;
  padding: 12px 30px;
  border: 2px solid var(--st-red);
  border-radius: 50px;
  transition: all 0.3s ease;
}

.st-hits__btn:hover {
  background: var(--st-red);
  color: #fff;
  text-decoration: none;
}

/* ============================================================
   BLOCK 4: PRODUCTS
   ============================================================ */
.st-products {
  background: #f5f5f5;
  padding: 60px 0;
}

.st-products .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.st-products .breadcrumb {
  background: transparent;
  padding: 0;
  margin-bottom: 20px;
}

.st-products__toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
  flex-wrap: wrap;
  gap: 10px;
}

.st-products__toolbar label { font-weight: 600; margin-right: 8px; color: #333; }
.st-products__toolbar select { padding: 8px 12px; border: 1px solid #ddd; border-radius: 6px; background: #fff; }

.st-products__grid {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.st-products__grid .product-layout { padding: 0 15px; margin-bottom: 30px; }

.st-products__grid .product-thumb {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
  transition: all 0.3s ease;
  position: relative;
  height: 100%;
}

.st-products__grid .product-thumb:hover {
  box-shadow: 0 5px 20px rgba(0,0,0,0.15);
  transform: translateY(-3px);
}

.st-products__grid .product-thumb .image img { width: 100%; height: auto; }
.st-products__grid .product-thumb .caption { padding: 15px; }
.st-products__grid .product-thumb .caption h4 a { color: #333; font-size: 15px; font-weight: 600; text-decoration: none; }
.st-products__grid .product-thumb .caption h4 a:hover { color: var(--st-red); }
.st-products__grid .product-thumb .price { font-size: 20px; font-weight: 700; color: var(--st-red); margin: 8px 0; }
.st-products__grid .product-thumb .price-old { font-size: 14px; color: #999; text-decoration: line-through; margin-left: 8px; }

.st-products__grid .product-thumb .button-group {
  display: flex;
  border-top: 1px solid #eee;
}

.st-products__grid .product-thumb .button-group button {
  flex: 1; padding: 10px; background: #fff; border: none;
  cursor: pointer; transition: all 0.2s; color: #666;
}

.st-products__grid .product-thumb .button-group button:first-child {
  flex: 2; color: var(--st-red); font-weight: 600;
}

.st-products__grid .product-thumb .button-group button:hover {
  background: var(--st-red); color: #fff;
}

.st-sticker {
  position: absolute; top: 10px; right: 10px;
  padding: 4px 12px; border-radius: 20px;
  font-size: 12px; font-weight: 700; z-index: 2;
}

.st-sticker--sale { background: var(--st-red); color: #fff; }
.st-products .rating .fa-star { color: var(--st-gold); }
.st-products .rating .fa-star-o { color: #ccc; }
.st-no-products { text-align: center; font-size: 18px; color: #666; padding: 40px 0; }

/* ============================================================
   BLOCK 5: REVIEWS — без аватаров
   ============================================================ */
.st-reviews {
  position: relative;
  background: url('../../image/catalog/stranger-things/reviews-bg.jpg') center/cover no-repeat;
  padding: 70px 0;
}

.st-reviews__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,26,0.88);
}

.st-reviews .container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.st-reviews__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
}

.st-reviews__card:nth-child(4) {
  grid-column: 1 / 2;
  justify-self: end;
  max-width: 360px;
  width: 100%;
}

.st-reviews__card:nth-child(5) {
  grid-column: 2 / 3;
  justify-self: start;
  max-width: 360px;
  width: 100%;
}

.st-reviews__card {
  background: rgba(20,20,50,0.85);
  border: 1px solid rgba(229,9,20,0.2);
  border-left: 4px solid var(--st-red);
  border-radius: 14px;
  padding: 25px;
  transition: all 0.3s ease;
}

.st-reviews__card:hover {
  border-color: var(--st-red);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(229,9,20,0.15);
}

.st-reviews__header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.st-reviews__info {
  display: flex;
  flex-direction: column;
}

.st-reviews__author {
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 3px;
}

.st-reviews__stars {
  color: var(--st-gold);
  font-size: 16px;
  letter-spacing: 2px;
}

.st-reviews__text {
  font-style: italic;
  color: var(--st-text);
  line-height: 1.6;
  font-size: 15px;
  margin: 0;
}

/* ============================================================
   BLOCK 6: FAQ
   ============================================================ */
.st-faq {
  background: linear-gradient(180deg, var(--st-dark3) 0%, var(--st-dark) 100%);
  padding: 60px 0;
}

.st-faq .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.st-faq__list { max-width: 800px; margin: 0 auto; }

.st-faq__item {
  margin-bottom: 12px;
  border: 1px solid rgba(229,9,20,0.2);
  border-radius: 10px;
  overflow: hidden;
}

.st-faq__question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding: 18px 25px;
  background: var(--st-dark2);
  border: none;
  color: #fff;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  text-align: left;
  transition: background 0.3s;
}

.st-faq__question:hover { background: rgba(229,9,20,0.1); }
.st-faq__question.active { background: rgba(229,9,20,0.15); }
.st-faq__arrow { font-size: 12px; transition: transform 0.3s; }
.st-faq__question.active .st-faq__arrow { transform: rotate(180deg); }

.st-faq__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  background: rgba(26,26,53,0.5);
}

.st-faq__answer.open { max-height: 300px; padding: 15px 25px; }
.st-faq__answer p { color: var(--st-text); line-height: 1.6; font-size: 15px; margin: 0; }

/* ============================================================
   BLOCK 7: DELIVERY
   ============================================================ */
.st-delivery {
  position: relative;
  background: url('../../image/catalog/stranger-things/delivery-bg.jpg') center/cover no-repeat;
  padding: 70px 0;
}

.st-delivery__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(5,5,15,0.85);
}

.st-delivery .container {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 15px;
}

.st-delivery__grid {
  display: flex;
  align-items: stretch;
  gap: 0;
  background: rgba(15,15,35,0.9);
  border: 1px solid rgba(229,9,20,0.15);
  border-radius: 18px;
  overflow: hidden;
}

.st-delivery__card {
  flex: 1;
  padding: 40px 35px;
}

.st-delivery__card h3 {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 25px;
  text-align: center;
}

.st-delivery__icon-main {
  text-align: center;
  font-size: 48px;
  margin-bottom: 15px;
}

.st-delivery__row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
}

.st-delivery__row-icon {
  font-size: 20px;
  flex-shrink: 0;
  margin-top: 2px;
}

.st-delivery__row strong {
  color: #fff;
  font-size: 15px;
}

.st-delivery__sub {
  color: var(--st-text-muted);
  font-size: 13px;
}

.st-delivery__divider {
  width: 1px;
  background: rgba(229,9,20,0.3);
  align-self: stretch;
  margin: 25px 0;
}

/* ============================================================
   BLOCK 8: CTA
   ============================================================ */
.st-cta {
  position: relative;
  background: #050510;
  padding: 80px 0;
  text-align: center;
  overflow: hidden;
  border-top: 3px solid var(--st-red);
}

.st-cta__sparks {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 200px;
  background:
    radial-gradient(2px 2px at 10% 80%, rgba(229,9,20,0.8), transparent),
    radial-gradient(2px 2px at 20% 60%, rgba(255,80,20,0.6), transparent),
    radial-gradient(1px 1px at 30% 90%, rgba(229,9,20,0.5), transparent),
    radial-gradient(2px 2px at 40% 70%, rgba(255,100,30,0.4), transparent),
    radial-gradient(1px 1px at 50% 85%, rgba(229,9,20,0.7), transparent),
    radial-gradient(2px 2px at 60% 65%, rgba(255,60,10,0.5), transparent),
    radial-gradient(1px 1px at 70% 95%, rgba(229,9,20,0.6), transparent),
    radial-gradient(2px 2px at 80% 75%, rgba(255,90,20,0.4), transparent),
    radial-gradient(1px 1px at 90% 80%, rgba(229,9,20,0.5), transparent);
  animation: st-sparks-rise 3s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes st-sparks-rise {
  0% { transform: translateY(10px); opacity: 0.6; }
  100% { transform: translateY(-20px); opacity: 1; }
}

.st-cta__overlay {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(ellipse at center bottom, rgba(229,9,20,0.12) 0%, rgba(5,5,16,0.95) 70%);
}

.st-cta .container {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px;
}

.st-cta__title {
  font-size: 36px;
  color: #fff;
  font-weight: 800;
  margin-bottom: 15px;
}

.st-cta__text {
  font-size: 20px;
  color: var(--st-text-muted);
  margin-bottom: 35px;
}

.st-cta__btn {
  display: inline-block;
  background: linear-gradient(180deg, #ff1a1a 0%, #cc0000 100%);
  color: #fff;
  padding: 22px 65px;
  border-radius: 14px;
  font-size: 24px;
  font-weight: 800;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow:
    0 6px 30px rgba(229,9,20,0.5),
    0 0 60px rgba(229,9,20,0.15),
    inset 0 1px 0 rgba(255,255,255,0.15);
  text-transform: none;
  letter-spacing: 0.5px;
}

.st-cta__btn:hover {
  background: linear-gradient(180deg, #ff3333 0%, #dd0000 100%);
  transform: translateY(-3px);
  box-shadow:
    0 10px 40px rgba(229,9,20,0.65),
    0 0 80px rgba(229,9,20,0.2),
    inset 0 1px 0 rgba(255,255,255,0.2);
  color: #fff;
  text-decoration: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .st-hero__logo-img { max-width: 380px; }
  .st-hero__logo-text { font-size: 52px; }
  .st-hero__figures { max-width: 550px; }
  .st-hits__grid { grid-template-columns: repeat(2, 1fr); }
  .st-reviews__grid { grid-template-columns: repeat(2, 1fr); }
  .st-reviews__card:nth-child(4),
  .st-reviews__card:nth-child(5) {
    grid-column: auto;
    justify-self: auto;
    max-width: none;
  }
  .st-usp__inner { gap: 15px; }
}

@media (max-width: 768px) {
  .st-hero { min-height: auto; }
  .st-hero__center { padding-top: 55px; }
  .st-hero__logo-img { max-width: 280px; }
  .st-hero__logo-text { font-size: 38px; }
  .st-hero__subtitle { font-size: 20px; }
  .st-hero__tagline { font-size: 16px; }
  .st-hero__figures { max-width: 400px; }
  .st-usp__inner { flex-direction: column; align-items: stretch; }
  .st-usp__item { justify-content: flex-start; }
  .st-hits__grid { grid-template-columns: 1fr; }
  .st-reviews__grid { grid-template-columns: 1fr; }
  .st-reviews__card:nth-child(4),
  .st-reviews__card:nth-child(5) {
    grid-column: auto;
    justify-self: auto;
    max-width: none;
  }
  .st-delivery__grid { flex-direction: column; }
  .st-delivery__divider { width: 100%; height: 1px; margin: 0; }
  .st-section-title { font-size: 24px; }
  .st-products__grid .product-layout { width: 50%; }
  .st-cta__title { font-size: 26px; }
  .st-cta__btn { font-size: 18px; padding: 18px 40px; }
}

@media (max-width: 480px) {
  .st-hero__logo-text { font-size: 28px; }
  .st-hero__logo-img { max-width: 220px; }
  .st-hero__btn { padding: 12px 30px; font-size: 16px; }
  .st-hero__subtitle { font-size: 17px; }
  .st-products__grid .product-layout { width: 100%; }
  .st-cta__btn { font-size: 16px; padding: 16px 30px; }
  .st-hits__img-wrap { height: 220px; }
  .st-delivery__card { padding: 25px 20px; }
}
