    /* --- ОДНОСТРАНИЧНАЯ ДЕТАЛИЗАЦИЯ ПРОДУКТА (PRODUCTS PAGE) --- */
    .products-container {
      max-width: 980px;
      margin: 0 auto;
      padding: 50px 20px 70px;
      width: 100%;
    }

    .product-hero-banner {
      position: relative;
      border-radius: 20px;
      overflow: hidden;
      border: 1px solid rgba(255, 43, 91, 0.35);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8), 0 0 45px rgba(255, 43, 91, 0.25);
      background: rgba(16, 10, 14, 0.85);
      margin-bottom: 35px;
    }

    .slider-window {
      width: 100%;
      height: 480px;
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      background-size: cover;
      background-position: center;
      transition: background-image 0.4s ease-in-out;
    }

    /* Имитация вашего скриншота если нет ссылки */
    .slider-placeholder-art {
      width: 100%;
      height: 100%;
      background: linear-gradient(180deg, rgba(8,5,7,0.2) 0%, rgba(8,5,7,0.95) 100%), 
                  radial-gradient(circle at center, rgba(255,43,91,0.25) 0%, rgba(0,0,0,0.8) 100%);
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 15px;
    }

    .slider-placeholder-art h2 {
      font-size: 42px;
      font-weight: 900;
      letter-spacing: 3px;
      color: #fff;
      text-shadow: 0 0 30px rgba(255,43,91,0.8);
    }

    .slider-nav-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: rgba(16, 10, 14, 0.7);
      border: 1px solid rgba(255, 43, 91, 0.3);
      color: #fff;
      width: 44px;
      height: 44px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      backdrop-filter: blur(10px);
      transition: all 0.3s ease;
      font-size: 18px;
      z-index: 5;
    }

    .slider-nav-btn:hover {
      background: rgba(255, 43, 91, 0.3);
      border-color: var(--mf-accent);
      box-shadow: 0 0 20px rgba(255, 43, 91, 0.5);
      transform: translateY(-50%) scale(1.08);
    }

    .slider-nav-btn.prev { left: 20px; }
    .slider-nav-btn.next { right: 20px; }

    .slider-dots {
      position: absolute;
      bottom: 20px;
      left: 50%;
      transform: translateX(-50%);
      display: flex;
      gap: 10px;
      z-index: 5;
    }

    .slider-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.2);
      cursor: pointer;
      transition: all 0.3s ease;
    }

    .slider-dot.active {
      background: var(--mf-accent);
      box-shadow: 0 0 10px var(--mf-accent);
      width: 26px;
      border-radius: 6px;
    }

    .product-meta-tags {
      display: flex;
      gap: 12px;
      margin-bottom: 18px;
    }

    .p-tag {
      font-size: 12.5px;
      font-weight: 700;
      padding: 6px 14px;
      border-radius: 8px;
      border: 1px solid rgba(255, 43, 91, 0.2);
      background: rgba(255, 43, 91, 0.06);
      color: #d1d1e4;
    }

    .p-tag.status-undetected {
      color: var(--mf-success);
      border-color: rgba(0, 255, 136, 0.3);
      background: rgba(0, 255, 136, 0.08);
      box-shadow: 0 0 15px rgba(0, 255, 136, 0.15);
    }

    .product-page-title {
      font-size: 46px;
      font-weight: 900;
      color: #ffffff;
      margin-bottom: 16px;
    }

    .product-page-title span {
      background: linear-gradient(135deg, var(--mf-accent), var(--mf-accent-light));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      filter: drop-shadow(0 0 15px rgba(255, 43, 91, 0.4));
    }

    .product-page-description {
      color: var(--mf-text-muted);
      font-size: 16px;
      line-height: 1.7;
      margin-bottom: 45px;
      max-width: 780px;
    }

    /* Feature Set Grid */
    .feature-section-header {
      font-size: 24px;
      font-weight: 800;
      color: #ffffff;
      margin-bottom: 24px;
      letter-spacing: 0.5px;
    }

    .feature-set-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 22px;
      margin-bottom: 45px;
    }

    .feature-box {
      background: rgba(16, 10, 14, 0.75);
      border: 1px solid rgba(255, 43, 91, 0.2);
      border-radius: 16px;
      padding: 26px;
      backdrop-filter: blur(16px);
      transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
      position: relative;
    }

    .feature-box:hover {
      border-color: rgba(255, 43, 91, 0.5);
      transform: translateY(-3px);
      box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(255, 43, 91, 0.2);
    }

    .feature-box-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 14px;
    }

    .feature-box-title {
      display: flex;
      align-items: center;
      gap: 12px;
      font-size: 17px;
      font-weight: 700;
      color: #ffffff;
    }

    .feature-icon-wrapper {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: rgba(255, 43, 91, 0.12);
      border: 1px solid rgba(255, 43, 91, 0.3);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--mf-accent);
      font-size: 16px;
    }

    .badge-coming-soon {
      font-size: 10px;
      font-weight: 800;
      color: var(--mf-accent);
      background: rgba(255, 43, 91, 0.15);
      border: 1px solid rgba(255, 43, 91, 0.3);
      padding: 4px 8px;
      border-radius: 6px;
      letter-spacing: 0.5px;
    }

    .feature-box p {
      color: #8a8a9e;
      font-size: 14px;
      line-height: 1.6;
    }



/* --- REAL PRODUCT MEDIA SLIDER --- */
.slider-window {
  overflow: hidden;
}

.product-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.38s ease, visibility 0.38s ease;
}

.product-slide.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.product-slide-image,
.product-slide video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.product-slide-placeholder {
  background: #080507;
}

.product-slide-placeholder .slider-placeholder-art {
  width: 100%;
  height: 100%;
}

.product-slide video {
  background: #080507;
}


/* Slider fit adjustment — show full banner without cropping */
.slider-window {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #09030a;
}

.product-slide-image,
.product-slide video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}
