﻿:root {
      --bg: #020617;
      --bg-soft: #0b1120;
      --card: #020617;
      --border: #1f2937;
      --primary: #6366f1;
      --primary-dark: #4f46e5;
      --accent: #22c55e;
      --text: #e5e7eb;
      --muted: #9ca3af;
      --radius: 18px;
      --shadow: 0 22px 50px rgba(0, 0, 0, 0.6);
      --status-green: #22c55e;
      --status-yellow: #eab308;
      --status-red: #ef4444;
    }

    * { box-sizing: border-box; margin: 0; padding: 0; }

    body {
      font-family: system-ui, -apple-system, sans-serif;
      background: radial-gradient(circle at top, #111827 0, #020617 45%, #000 100%);
      color: var(--text);
      line-height: 1.6;
      min-height: 100vh;
    }

    img { max-width: 100%; display: block; border-radius: 16px; }

    .container { max-width: 1160px; margin: 0 auto; padding: 16px; }

    /* HEADER */
    header {
      position: sticky; top: 0; z-index: 10;
      backdrop-filter: blur(14px);
      background: linear-gradient(to bottom, rgba(15,23,42,0.95), rgba(15,23,42,0.82), transparent);
      border-bottom: 1px solid rgba(31, 41, 55, 0.8);
    }
    .nav {
      max-width: 1160px; margin: 0 auto; padding: 10px 16px;
      display: flex; align-items: center; justify-content: space-between; gap: 14px;
    }
    .logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
    .logo-badge {
      width: 34px; height: 34px; border-radius: 99px;
      background: radial-gradient(circle at 20% 20%, #a5b4fc, var(--primary));
      display: flex; align-items: center; justify-content: center;
      color: #020617; font-weight: 700;
      box-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
      flex: 0 0 34px;
    }
    .logo-text { display: flex; flex-direction: column; gap: 0; }
    .logo-text span:first-child { font-weight: 700; font-size: 13px; text-transform: uppercase; }
    .logo-text span:last-child { font-size: 12px; color: var(--muted); }

    .header-actions { display: flex; gap: 10px; align-items: center; }

    .cart-btn, .fav-btn {
      border-radius: 99px; border: 1px solid rgba(148, 163, 184, 0.4);
      background: radial-gradient(circle at top left, rgba(139, 92, 246, 0.25), #020617);
      color: var(--text); padding: 8px 14px; font-size: 13px;
      display: inline-flex; align-items: center; gap: 8px; cursor: pointer;
      box-shadow: 0 14px 32px rgba(79, 70, 229, 0.2);
    }
    .fav-btn { padding: 8px 12px; }
    .promo-open-btn {
      border-radius: 99px;
      border: 1px solid rgba(148, 163, 184, 0.4);
      background: linear-gradient(135deg, rgba(99, 102, 241, 0.25), rgba(15, 23, 42, 0.9));
      color: var(--text);
      padding: 8px 14px;
      font-size: 12px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      box-shadow: 0 12px 28px rgba(79, 70, 229, 0.25);
      white-space: nowrap;
    }
    .promo-open-btn:hover { border-color: rgba(99, 102, 241, 0.7); }

    .cat-dropdown {
      display: none;
      position: relative;
    }
    .cat-dropdown summary {
      list-style: none;
    }
    .cat-dropdown summary::-webkit-details-marker { display: none; }
    .cat-dropdown-btn {
      border-radius: 99px;
      border: 1px solid rgba(148, 163, 184, 0.4);
      background: radial-gradient(circle at top left, rgba(139, 92, 246, 0.25), #020617);
      color: var(--text);
      padding: 8px 12px;
      font-size: 12px;
      font-weight: 600;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      cursor: pointer;
      box-shadow: 0 12px 28px rgba(79, 70, 229, 0.2);
      white-space: nowrap;
    }
    .cat-caret {
      display: inline-block;
      transition: transform 0.2s ease;
    }
    .cat-dropdown[open] .cat-caret { transform: rotate(180deg); }

    .cat-dropdown-menu {
      position: absolute;
      top: calc(100% + 8px);
      right: 0;
      min-width: 170px;
      background: rgba(2, 6, 23, 0.98);
      border: 1px solid rgba(148, 163, 184, 0.25);
      border-radius: 14px;
      padding: 8px;
      display: grid;
      gap: 6px;
      box-shadow: 0 16px 34px rgba(0, 0, 0, 0.45);
      opacity: 0;
      transform: translateY(-8px) scale(0.98);
      max-height: 0;
      overflow: hidden;
      pointer-events: none;
      transition: opacity 0.18s ease, transform 0.18s ease, max-height 0.2s ease;
      z-index: 20;
    }
    .cat-dropdown[open] .cat-dropdown-menu {
      opacity: 1;
      transform: translateY(0) scale(1);
      max-height: 360px;
      pointer-events: auto;
      animation: catMenuPop 180ms ease;
    }
    @keyframes catMenuPop {
      from { opacity: 0; transform: translateY(-6px) scale(0.98); }
      to { opacity: 1; transform: translateY(0) scale(1); }
    }

    .cat-option {
      background: transparent;
      border: 1px solid transparent;
      color: var(--text);
      text-decoration: none;
      text-align: left;
      padding: 8px 10px;
      border-radius: 10px;
      cursor: pointer;
      font-size: 12px;
      display: flex;
      align-items: center;
      gap: 8px;
      transition: 0.15s ease;
      width: 100%;
    }
    .cat-option:hover {
      background: rgba(255, 255, 255, 0.06);
      border-color: rgba(148, 163, 184, 0.25);
    }
    .cat-option.active {
      background: rgba(99, 102, 241, 0.18);
      border-color: rgba(99, 102, 241, 0.35);
      color: #eafff1;
    }

    @media (max-width: 768px) {
      .cat-dropdown {
        display: inline-flex;
        align-items: center;
      }
      .cat-dropdown-menu {
        left: 0;
        right: auto;
        width: min(220px, calc(100vw - 24px));
        max-width: calc(100vw - 24px);
      }
    }

    @media (max-width: 600px) {
      body { overflow-x: hidden; }
      .promo-open-btn { display: none; }
    }

    .promo-open-fab {
      display: none;
    }
    @media (max-width: 600px) {
      .promo-open-fab {
        display: inline-flex;
        position: fixed;
        bottom: 18px;
        right: 16px;
        z-index: 45;
        width: 50px;
        height: 50px;
        border-radius: 50%;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(148, 163, 184, 0.4);
        background: linear-gradient(135deg, rgba(99, 102, 241, 0.35), rgba(15, 23, 42, 0.95));
        color: #fff;
        box-shadow: 0 12px 28px rgba(79, 70, 229, 0.35);
        cursor: pointer;
      }
    }

    @media (max-width: 600px) {
      .promo-open-btn {
        max-width: 160px;
        overflow: hidden;
        text-overflow: ellipsis;
      }
    }

body.promo-modal-open .promo-open-fab {
  display: none !important;
}
body.no-scroll .promo-open-fab {
  display: none !important;
}

    .cart-count {
      min-width: 18px; height: 18px; border-radius: 99px;
      background: var(--accent); color: #020617; font-size: 11px;
      display: flex; align-items: center; justify-content: center;
      padding: 0 5px; font-weight: 600;
    }
    @media (max-width: 600px) {
      .cart-btn {
        padding: 8px 10px;
        gap: 6px;
      }
      .cart-btn .cart-text {
        display: none;
      }
      .cart-btn .cart-icon {
        font-size: 16px;
        line-height: 1;
      }
      .cart-count {
        min-width: 16px;
        height: 16px;
        font-size: 10px;
        padding: 0 4px;
      }
    }

    /* MAIN */
    main { padding: 18px 0 32px; }

    /* HERO РЎР•РљР¦РРЇ */
    .hero-wrapper {
      position: relative;
      margin-bottom: 30px;
      border-radius: 24px;
      background: rgba(255, 255, 255, 0.02);
      border: 1px solid rgba(255, 255, 255, 0.05);
      overflow: hidden;
      box-shadow: 0 20px 40px rgba(0,0,0,0.4);
    }
    .hero-glow { position: absolute; border-radius: 50%; filter: blur(80px); z-index: 0; opacity: 0.4; animation: floatGlow 10s infinite alternate ease-in-out; }
    .hero-glow-1 { top: -50px; left: -50px; width: 300px; height: 300px; background: var(--primary); }
    .hero-glow-2 { bottom: -50px; right: 20%; width: 250px; height: 250px; background: #3b82f6; animation-delay: -5s; }
    @keyframes floatGlow { 0% { transform: translate(0, 0) scale(1); } 100% { transform: translate(30px, 20px) scale(1.1); } }

    .hero-inner { position: relative; z-index: 1; display: flex; justify-content: space-between; align-items: center; padding: 40px 50px; gap: 30px; backdrop-filter: blur(10px); }
    .hero-content { flex: 1; max-width: 600px; }
    .hero-badge { display: inline-block; padding: 6px 12px; background: rgba(139, 92, 246, 0.15); border: 1px solid rgba(139, 92, 246, 0.3); border-radius: 30px; color: #a5b4fc; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 16px; }
    .hero-title { font-size: clamp(28px, 5vw, 42px); font-weight: 800; line-height: 1.1; margin-bottom: 14px; color: #fff; }
    .hero-title span { background: linear-gradient(135deg, #fff 0%, #a5b4fc 100%); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 0 0 30px rgba(165, 180, 252, 0.3); }
    .hero-text { font-size: 15px; color: var(--muted); line-height: 1.6; margin-bottom: 24px; max-width: 480px; }
    .hero-stats { display: flex; gap: 20px; }
    .stat-item { display: flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: #e0e7ff; background: rgba(255,255,255,0.05); padding: 8px 14px; border-radius: 12px; white-space: nowrap; }

    .hero-logo-side { flex-shrink: 0; display: flex; justify-content: center; align-items: center; }
    .hero-brand-box { position: relative; width: 220px; height: 220px; background: rgba(0, 0, 0, 0.2); border: 2px solid rgba(139, 92, 246, 0.5); border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 10px 50px rgba(139, 92, 246, 0.3); }
    .brand-glow-img { width: 200px; height: 200px; object-fit: cover; border-radius: 50%; position: relative; z-index: 2; filter: drop-shadow(0 0 10px rgba(255,255,255,0.2)); }
    .glow-effect { position: absolute; width: 190px; height: 190px; background: var(--primary); border-radius: 50%; filter: blur(40px); z-index: 1; opacity: 0.5; animation: glowPulse 3s infinite alternate; }
    @keyframes glowPulse { 0% { opacity: 0.4; transform: scale(1); } 100% { opacity: 0.7; transform: scale(1.1); } }

    @media (max-width: 768px) {
      .hero-inner { flex-direction: column-reverse; text-align: center; padding: 30px 20px; gap: 20px; }
      .hero-content { display: flex; flex-direction: column; align-items: center; }
      .hero-text { margin-bottom: 20px; }
      .hero-stats { justify-content: center; width: 100%; flex-wrap: wrap; }
      .hero-brand-box { width: 140px; height: 140px; }
      .brand-glow-img { width: 120px; height: 120px; }
      .glow-effect { width: 120px; height: 120px; }
    }

    /* FILTERS */
    .filter-bar { 
        display: flex; 
        flex-direction: column; /* Р­Р»РµРјРµРЅС‚С‹ РёРґСѓС‚ СЃРІРµСЂС…Сѓ РІРЅРёР· (СЂСЏРґС‹) */
        gap: 16px; /* РћС‚СЃС‚СѓРї РјРµР¶РґСѓ РІРµСЂС…РЅРёРј Рё РЅРёР¶РЅРёРј СЂСЏРґРѕРј */
        background: var(--bg-soft); 
        padding: 20px; 
        border-radius: 16px; 
        border: 1px solid var(--border); 
        margin-bottom: 24px; 
    }
    .filter-row {
        display: flex;
        flex-wrap: wrap;
        gap: 12px;
        width: 100%;
        align-items: flex-end; /* Р’С‹СЂР°РІРЅРёРІР°РЅРёРµ РїРѕ РЅРёР·Сѓ */
    }
    .filter-group { 
        display: flex; 
        flex-direction: column; 
        gap: 6px; 
        flex: 1; 
        min-width: 140px; 
    }
    /* РџРѕРёСЃРє РґРµР»Р°РµРј С€РёСЂРѕРєРёРј */
    .search-group {
        flex: 2; 
        min-width: 250px;
    }
    /* Р¦РµРЅСѓ РѕРіСЂР°РЅРёС‡РёРІР°РµРј, С‡С‚РѕР±С‹ РЅРµ Р±С‹Р»Р° СЃР»РёС€РєРѕРј С€РёСЂРѕРєРѕР№ */
    .price-group {
        flex: 1;
        max-width: 250px;
    }
    .filter-group label { font-size: 11px; color: var(--muted); font-weight: 600; margin-left: 4px; text-transform: uppercase; letter-spacing: 0.5px; }
    .filter-input, .filter-select { width: 100%; padding: 10px 12px; border-radius: 10px; border: 1px solid var(--border); background: #020617; color: var(--text); font-size: 13px; height: 42px; }
    .filter-input:focus, .filter-select:focus { outline: none; border-color: var(--primary); }
    .filter-select { appearance: none; }

    .custom-select {
        position: relative;
        width: 100%;
    }
    .native-select-hidden {
        position: absolute;
        width: 1px;
        height: 1px;
        opacity: 0;
        pointer-events: none;
    }
    .custom-select-trigger {
        position: relative;
        width: 100%;
        height: 42px;
        padding: 10px 36px 10px 12px;
        border-radius: 10px;
        border: 1px solid var(--border);
        background: #020617;
        color: var(--text);
        font-size: 13px;
        text-align: left;
        cursor: pointer;
        transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
        box-shadow: inset 0 0 0 1px rgba(255,255,255,0.02);
    }
    .custom-select-trigger::after {
        content: "";
        position: absolute;
        right: 12px;
        top: 50%;
        width: 6px;
        height: 6px;
        border-right: 2px solid #94a3b8;
        border-bottom: 2px solid #94a3b8;
        transform: translateY(-50%) rotate(45deg);
        transition: transform 0.2s ease;
    }
    .custom-select:hover .custom-select-trigger { border-color: rgba(148, 163, 184, 0.6); }
    .custom-select.open .custom-select-trigger {
        box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.2);
        border-color: var(--primary);
    }
    .custom-select.open .custom-select-trigger::after {
        transform: translateY(-50%) rotate(-135deg);
    }
    .custom-select.disabled .custom-select-trigger {
        opacity: 0.6;
        cursor: not-allowed;
    }
    .custom-select-list {
        position: absolute;
        left: 0;
        right: 0;
        top: calc(100% + 6px);
        background: #0b1220;
        border: 1px solid rgba(148, 163, 184, 0.2);
        border-radius: 12px;
        box-shadow: 0 16px 35px rgba(0,0,0,0.45);
        max-height: 280px;
        overflow: auto;
        opacity: 0;
        transform: translateY(-6px);
        pointer-events: none;
        transition: opacity 0.2s ease, transform 0.2s ease;
        z-index: 100;
    }
    .custom-select.open .custom-select-list {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
    }
    .custom-select-item {
        padding: 8px 12px;
        font-size: 13px;
        color: #e2e8f0;
        cursor: pointer;
        white-space: normal;
        line-height: 1.3;
        border-bottom: 1px solid rgba(255,255,255,0.04);
    }
    .custom-select-item:last-child { border-bottom: none; }
    .custom-select-item:hover { background: rgba(99, 102, 241, 0.12); }
    .custom-select-item.active { background: rgba(99, 102, 241, 0.2); color: #fff; }
    .custom-select-item.disabled { opacity: 0.5; cursor: not-allowed; }
    .custom-select-list::-webkit-scrollbar { width: 8px; }
    .custom-select-list::-webkit-scrollbar-thumb {
        background: rgba(148, 163, 184, 0.45);
        border-radius: 8px;
    }
    .custom-select-list::-webkit-scrollbar-track {
        background: #0b1220;
        border-radius: 8px;
    }
    .price-range { display: flex; gap: 8px; }

    /* GRID */
    .section-title { font-size: 20px; font-weight: 700; margin-bottom: 4px; }
    .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 16px; }
    .seo-links-section { margin: 6px 0 18px; padding: 14px; border: 1px solid var(--border); border-radius: 14px; background: rgba(15, 23, 42, 0.45); }
    .seo-links-title { font-size: 13px; color: var(--muted); margin-bottom: 10px; text-transform: uppercase; letter-spacing: .6px; }
    .seo-links-row { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
    .seo-links-chip { display: inline-block; padding: 6px 10px; border-radius: 999px; border: 1px solid var(--border); background: rgba(99, 102, 241, 0.12); color: #dbeafe; text-decoration: none; font-size: 12px; }
    .seo-links-chip:hover { border-color: #6366f1; color: #fff; }
    .seo-links-products { display: flex; flex-wrap: wrap; gap: 8px 12px; }
    .seo-links-item { color: #cbd5e1; text-decoration: underline; text-decoration-color: rgba(203, 213, 225, 0.4); text-underline-offset: 2px; font-size: 13px; }
    .seo-links-item:hover { color: #fff; text-decoration-color: #fff; }
    
    @media (max-width: 768px) {
        .filter-row { flex-direction: column; gap: 12px; }
        .filter-group, .search-group, .price-group { width: 100%; max-width: none; }
    }

    @media (max-width: 640px) {
        .products-grid { grid-template-columns: repeat(2, 1fr); gap: 8px; }
        .filter-bar { flex-direction: column; align-items: stretch; }
        .filter-group { width: 100%; }
        .product-footer { flex-direction: column; gap: 6px; padding: 0 8px 10px !important; }
        .product-footer .btn { width: 100%; text-align: center; justify-content: center; padding: 8px 0; font-size: 12px; }
    }

    /* PRODUCT CARD */
    .product-card { content-visibility: auto; cursor: pointer; background: var(--card); border-radius: var(--radius); border: 1px solid var(--border); box-shadow: 0 18px 40px rgba(0,0,0,0.55); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s; position: relative; padding-bottom: 12px;}
    .product-card:hover { transform: translateY(-4px); border-color: #4b5563; }
    .product-image { position: relative; overflow: hidden; }
    .product-image img { width: 100%; height: 150px; object-fit: contain; background: #fff;}
    .product-seo-link { color: inherit; text-decoration: none; display: block; }
    .product-seo-link:hover { text-decoration: underline; }
    .product-image .product-seo-link:hover { text-decoration: none; }
    .product-label { position: absolute; left: 10px; top: 10px; padding: 4px 8px; border-radius: 99px; font-size: 11px; background: rgba(15,23,42,0.85); border: 1px solid rgba(55,65,81,0.9); color: var(--muted); z-index: 2; }
    .card-fav-btn { position: absolute; top: 8px; right: 8px; z-index: 5; width: 28px; height: 28px; border-radius: 50%; background: rgba(15, 23, 42, 0.6); backdrop-filter: blur(4px); border: 1px solid rgba(255,255,255,0.1); display: flex; align-items: center; justify-content: center; cursor: pointer; color: #9ca3af; font-size: 16px; transition: 0.2s; }
    .card-fav-btn:hover { background: rgba(15, 23, 42, 0.9); color: #fff; transform: scale(1.1); }
    .card-fav-btn.active { color: #ef4444; background: rgba(239, 68, 68, 0.1); border-color: #ef4444; }
    
    .product-body { padding: 10px; display: flex; flex-direction: column; gap: 6px; flex: 1; }
    .product-name { font-size: 14px; font-weight: 600; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; line-height: 1.3; }
    .product-meta { display: flex; justify-content: space-between; align-items: center; margin-top: auto; width: 100%; }
    .product-price { font-weight: 700; font-size: 14px; }
    .product-status { font-size: 11px; color: var(--muted); display: flex; align-items: center; gap: 6px; }
    .status-dot { width: 8px; height: 8px; border-radius: 99px; }
    .status-in { background: var(--status-green); }
    .status-low { background: var(--status-yellow); }
    .status-out { background: var(--status-red); }
    
    .product-footer { padding: 0 10px 10px; display: flex; justify-content: space-between; gap: 8px; }
    
    /* РЎС‚РёР»Рё РґР»СЏ РІС‹Р±РѕСЂР° РґРµР№СЃС‚РІРёР№ (Р•СЃР»Рё РЅРµС‚ РІ РЅР°Р»РёС‡РёРё) */
    .action-choice-group {
        margin-top: 15px;
        background: rgba(255, 255, 255, 0.03);
        padding: 12px;
        border-radius: 12px;
        border: 1px solid var(--border);
    }
    .action-choice-title {
        font-size: 13px; 
        font-weight: 600; 
        color: #fff; 
        margin-bottom: 10px;
    }
    .radio-label {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 8px;
        border-radius: 8px;
        cursor: pointer;
        transition: 0.2s;
        border: 1px solid transparent;
    }
    .radio-label:hover {
        background: rgba(255, 255, 255, 0.05);
    }
    /* РЎРєСЂС‹РІР°РµРј СЃС‚Р°РЅРґР°СЂС‚РЅС‹Р№ РєСЂСѓР¶РѕРє */
    .radio-label input {
        appearance: none;
        -webkit-appearance: none;
        width: 18px;
        height: 18px;
        border: 2px solid var(--muted);
        border-radius: 50%;
        display: grid;
        place-content: center;
        margin: 0;
    }
    /* РљР°СЃС‚РѕРјРЅС‹Р№ РєСЂСѓР¶РѕРє РїСЂРё РІС‹Р±РѕСЂРµ */
    .radio-label input::before {
        content: "";
        width: 10px;
        height: 10px;
        border-radius: 50%;
        transform: scale(0);
        transition: 0.15s transform ease-in-out;
        box-shadow: inset 1em 1em var(--primary); /* Р¦РІРµС‚ С‚РѕС‡РєРё */
    }
    .radio-label input:checked {
        border-color: var(--primary);
    }
    .radio-label input:checked::before {
        transform: scale(1);
    }
    .radio-text {
        font-size: 13px;
        color: var(--text);
    }

    /* BUTTONS */
    .btn { cursor: pointer; border-radius: 99px; border: 1px solid transparent; padding: 8px 14px; font-size: 13px; font-weight: 500; transition: 0.15s; white-space: nowrap; }
    .btn-primary { background: linear-gradient(135deg, var(--primary), var(--primary-dark)); color: #e5e7eb; }
    .btn-primary:hover { transform: translateY(-1px); }
    .btn-ghost {
        position: relative;
        /* Р¤РѕРЅ: РїРѕР»СѓРїСЂРѕР·СЂР°С‡РЅС‹Р№ С‚РµРјРЅС‹Р№ (СЃС‚РµРєР»Рѕ) */
        background: rgba(255, 255, 255, 0.03);
        /* Р Р°РјРєР°: РѕС‡РµРЅСЊ С‚РѕРЅРєР°СЏ Рё РµР»Рµ Р·Р°РјРµС‚РЅР°СЏ */
        border: 1px solid rgba(255, 255, 255, 0.1);
        /* РўРµРєСЃС‚: СЃРІРµС‚Р»Рѕ-РіРѕР»СѓР±РѕРІР°С‚С‹Р№ РѕС‚С‚РµРЅРѕРє */
        color: #e0e7ff; 
        
        /* Р Р°Р·РјРµСЂС‹ */
        padding: 10px 24px; /* Р”РµР»Р°РµРј РµС‘ С‡СѓС‚СЊ С€РёСЂРµ Рё РІС‹С€Рµ */
        border-radius: 30px; /* РџРѕР»РЅРѕРµ СЃРєСЂСѓРіР»РµРЅРёРµ */
        
        /* РўРёРїРѕРіСЂР°С„РёРєР° */
        font-size: 11px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 0.5px; /* Р Р°СЃСЃС‚РѕСЏРЅРёРµ РјРµР¶РґСѓ Р±СѓРєРІР°РјРё вЂ” РІС‹РіР»СЏРґРёС‚ РґРѕСЂРѕРіРѕ */
        
        /* РђРЅРёРјР°С†РёСЏ */
        transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
        
        /* РЈР±РёСЂР°РµРј РіР»СЋРєРё СЂРµРЅРґРµСЂРёРЅРіР° */
        text-shadow: none; 
        box-shadow: 0 4px 10px rgba(0,0,0,0.2);
        backdrop-filter: blur(4px); /* Р Р°Р·РјС‹С‚РёРµ С„РѕРЅР° РїРѕРґ РєРЅРѕРїРєРѕР№ */
    }
    .btn-ghost:hover {
        /* Р—Р°Р»РёРІР°РµРј С„РёСЂРјРµРЅРЅС‹Рј С†РІРµС‚РѕРј */
        background: var(--primary); 
        border-color: var(--primary);
        color: #fff;
        
        /* РџРѕРґРЅРёРјР°РµРј */
        transform: translateY(-3px);
        
        /* Р”РІРѕР№РЅРѕРµ СЃРІРµС‡РµРЅРёРµ: СЏСЂРєРѕРµ РІРЅСѓС‚СЂРё, РјСЏРіРєРѕРµ СЃРЅР°СЂСѓР¶Рё */
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.5), 
                    0 0 40px rgba(99, 102, 241, 0.2);
    }
    .btn-ghost:active {
        transform: translateY(-1px);
        box-shadow: 0 0 10px rgba(99, 102, 241, 0.5);
    }
    .btn-sm { padding: 6px 11px; font-size: 12px; }
    .btn-disabled { opacity: 0.5; pointer-events: none; border-color: #333; }

    /* TOAST & MODALS */
    .toast { position: fixed; bottom: 18px; left: 50%; transform: translateX(-50%) translateY(6px); background: #0b1120; border-radius: 99px; border: 1px solid #4b5563; padding: 8px 16px; font-size: 13px; color: var(--text); opacity: 0; pointer-events: none; transition: 0.2s; z-index: 50; }
    .toast-show { opacity: 1; transform: translateX(-50%) translateY(0); }
    .hidden { display: none !important; }

    .modal-backdrop { position: fixed; inset: 0; background: rgba(15,23,42,0.84); display: flex; align-items: center; justify-content: center; padding: 16px; z-index: 40; }
    .modal { -ms-overflow-style: none; scrollbar-width: none; width: 100%; background: #020617; border-radius: 24px; border: 1px solid var(--border); padding: 24px; box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.7); max-height: 90vh; overflow-y: auto; position: relative; }
    .modal-compact { max-width: 440px; }
    .modal::-webkit-scrollbar {
        width: 0;
        height: 0;
        display: none;
    }
    .modal-wide { width: 96vw; height: 92vh; max-width: 1600px; max-height: none; padding: 0; background: var(--card); overflow: hidden; display: flex; flex-direction: column; }
    .product-modal-layout { display: flex; flex-direction: row; flex: 1; min-height: 0; background: var(--card); }
    .product-modal-image-container { width: 50%; background: #fff; position: relative; display: flex; align-items: center; justify-content: center; height: 100%; }
    .slider-image { width: 100%; height: 100%; object-fit: contain; display: block; transition: opacity 0.2s ease-in-out; }
    .slider-nav-btn { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(0, 0, 0, 0.5); color: #fff; border: none; width: 40px; height: 40px; border-radius: 50%; font-size: 20px; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: background 0.2s; z-index: 5; }
    .slider-nav-btn:hover { background: rgba(0, 0, 0, 0.8); }
    .slider-prev { left: 10px; }
    .slider-next { right: 10px; }

    .product-modal-info { width: 50%; display: flex; flex-direction: column; position: relative; height: 100%; padding: 0; }
    .product-modal-close-abs { position: absolute; top: 15px; right: 15px; z-index: 10; background: rgba(0,0,0,0.5); border: none; color: #fff; width: 30px; height: 30px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; }
    .product-modal-header { padding: 24px 24px 0 24px; flex-shrink: 0; }
    .product-scrollable-content { flex: 1; overflow-y: auto; padding: 15px 24px; scrollbar-width: thin; scrollbar-color: var(--border) transparent; }
    .product-scrollable-content::-webkit-scrollbar { width: 6px; }
    .product-scrollable-content::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
    .product-modal-footer { padding: 20px 24px; border-top: 1px solid var(--border); background: var(--card); flex-shrink: 0; display: flex; justify-content: space-between; align-items: center; z-index: 2; }

    .modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 12px; }
    .modal-title { font-weight: 700; font-size: 18px; }
    .modal-close { width: 30px; height: 30px; border-radius: 99px; border: 1px solid var(--border); background: var(--bg-soft); display: flex; align-items: center; justify-content: center; cursor: pointer; color: var(--muted); transition: 0.2s; z-index: 10; }
    .modal-close:hover { background: #1f2937; color: #fff; }

    /* PROMO MODAL */
.promo-modal {
      width: min(760px, 92vw);
      background: #0b1120;
      border: 1px solid rgba(148, 163, 184, 0.25);
      border-radius: 22px;
      overflow: hidden;
      box-shadow: 0 30px 80px rgba(0, 0, 0, 0.65);
      position: relative;
      transform: translateY(10px) scale(0.98);
      opacity: 0;
      transition: opacity 0.25s ease, transform 0.25s ease;
    }
    #promoModalBackdrop {
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
      transition: opacity 0.25s ease, visibility 0.25s ease;
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
      overscroll-behavior: contain;
      touch-action: pan-y;
    }
    #promoModalBackdrop.hidden {
      display: flex !important;
      opacity: 0;
      visibility: hidden;
      pointer-events: none;
    }
    #promoModalBackdrop.promo-backdrop-show {
      opacity: 1;
      visibility: visible;
      pointer-events: auto;
    }
    #promoModalBackdrop.promo-backdrop-show .promo-modal {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
    .promo-slider {
      height: clamp(200px, 36vw, 320px);
      background: #020617;
      position: relative;
      overflow: hidden;
    }
    .promo-slider img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: 0;
      transition: opacity 0.4s ease-in-out;
    }
    .promo-text {
      padding: 18px 22px 22px;
      display: flex;
      flex-direction: column;
      gap: 10px;
    }
    .promo-title {
      font-size: 22px;
      font-weight: 800;
      color: #fff;
      line-height: 1.2;
    }
    .promo-subtitle {
      color: var(--muted);
      font-size: 13px;
      line-height: 1.5;
    }
    .promo-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin: 4px 0 2px;
      padding: 0;
      list-style: none;
      font-size: 12px;
      color: #e0e7ff;
    }
    .promo-list li {
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid rgba(148, 163, 184, 0.2);
      padding: 6px 10px;
      border-radius: 10px;
      display: flex;
      align-items: center;
      gap: 6px;
      width: 100%;
    }
    .promo-code {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      align-self: flex-start;
      padding: 8px 12px;
      border-radius: 12px;
      background: rgba(99, 102, 241, 0.15);
      border: 1px dashed rgba(99, 102, 241, 0.5);
      font-weight: 700;
      color: #a5b4fc;
      font-size: 13px;
      letter-spacing: 0.5px;
    }
    .promo-actions {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-top: 4px;
    }
    .promo-close {
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 2;
      width: 32px;
      height: 32px;
      border-radius: 99px;
      border: 1px solid rgba(148, 163, 184, 0.35);
      background: rgba(15, 23, 42, 0.8);
      color: #e5e7eb;
      font-size: 18px;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
    }
    .promo-close:hover { background: rgba(30, 41, 59, 0.9); }

    @media (max-width: 600px) {
      .promo-list { grid-template-columns: 1fr; }
      .promo-list li { white-space: normal; }
      .promo-actions { flex-direction: column; align-items: stretch; }
    }

    /* === РЎР›РђР™Р”Р•Р  Р Р•РљРћРњР•РќР”РђР¦РР™ === */
    .modal-recommendations { 
        border-top: 1px solid var(--border); 
        padding: 16px 20px 24px; 
        background: var(--bg-soft); 
        flex-shrink: 0; 
    }
    
    .rec-title { 
        font-size: 13px; 
        color: #fff; 
        margin-bottom: 12px; 
        font-weight: 700; 
        text-transform: uppercase; 
        letter-spacing: 0.5px;
    }
    
    .rec-grid { 
        display: flex; 
        gap: 12px; 
        overflow-x: auto; 
        
        padding: 5px 5px 15px 5px; 
        

        scroll-behavior: smooth;

      
        
        -webkit-overflow-scrolling: touch; 
        margin: -5px -5px 0 -5px;
    }

    /* Р”РѕР±Р°РІР»СЏРµРј РєСѓСЂСЃРѕСЂ "СЂСѓРєРё" РґР»СЏ СЃР»Р°Р№РґРµСЂРѕРІ */
    .rec-grid, .categories-section {
        cursor: grab; /* РљСѓСЂСЃРѕСЂ РІ РІРёРґРµ РѕС‚РєСЂС‹С‚РѕР№ СЂСѓРєРё */
        user-select: none; /* Р§С‚РѕР±С‹ С‚РµРєСЃС‚ РЅРµ РІС‹РґРµР»СЏР»СЃСЏ РїСЂРё РїРµСЂРµС‚Р°СЃРєРёРІР°РЅРёРё */
    }
    
    /* РљРѕРіРґР° РЅР°Р¶Р°Р»Рё РєРЅРѕРїРєСѓ РјС‹С€Рё */
    .rec-grid:active, .categories-section:active {
        cursor: grabbing; /* РљСѓСЂСЃРѕСЂ РІ РІРёРґРµ СЃР¶Р°С‚РѕР№ СЂСѓРєРё */
    }
    
    /* РЎРєСЂС‹РІР°РµРј СЃРєСЂРѕР»Р»Р±Р°СЂ, РЅРѕ РѕСЃС‚Р°РІР»СЏРµРј С„СѓРЅРєС†РёРѕРЅР°Р» */
    .rec-grid::-webkit-scrollbar { height: 4px; }
    .rec-grid::-webkit-scrollbar-thumb { background: var(--border); border-radius: 4px; }
    .rec-grid::-webkit-scrollbar-track { background: transparent; }
    /* === РРЎРџР РђР’Р›Р•РќРР• РџР•Р Р•РўРђРЎРљРР’РђРќРРЇ РљРђР РўРРќРћРљ === */
    .rec-img, 
    .cat-card img,
    .cat-card-icon {
        pointer-events: none;      /* РЎР°РјРѕРµ РІР°Р¶РЅРѕРµ: РєР»РёРє РїСЂРѕС…РѕРґРёС‚ СЃРєРІРѕР·СЊ С„РѕС‚Рѕ */
        -webkit-user-drag: none;   /* Р—Р°РїСЂРµС‰Р°РµС‚ Р±СЂР°СѓР·РµСЂСѓ С‚СЏРЅСѓС‚СЊ РєР°СЂС‚РёРЅРєСѓ */
        user-select: none;         /* Р—Р°РїСЂРµС‰Р°РµС‚ РІС‹РґРµР»РµРЅРёРµ */
    }
    .rec-card { 
        /* РР·РјРµРЅРёР»Рё С€РёСЂРёРЅСѓ */
        min-width: 160px; /* РЎРґРµР»Р°Р»Рё С‡СѓС‚СЊ С€РёСЂРµ (Р±С‹Р»Рѕ 140) */
        flex: 1; /* Р РђР—Р Р•РЁРђР•Рњ Р РђРЎРўРЇР“РР’РђРўР¬РЎРЇ, С‡С‚РѕР±С‹ Р·Р°РїРѕР»РЅРёС‚СЊ РїСѓСЃС‚РѕС‚Сѓ */
        
        /* max-width СѓР±РёСЂР°РµРј, С‡С‚РѕР±С‹ РѕРЅРё РјРѕРіР»Рё С‚СЏРЅСѓС‚СЊСЃСЏ */
        /* max-width: 140px; <--- РЈР”РђР›Р•РќРћ */
        
        background: var(--card); 
        border: 1px solid var(--border); 
        border-radius: 12px; 
        padding: 10px; 
        cursor: pointer; 
        transition: transform 0.2s; 
        display: flex;
        flex-direction: column;
    }
    
    .rec-card:hover { 
        transform: translateY(-3px); 
        border-color: var(--primary); 
    }
    
    .rec-img { 
        width: 100%; 
        height: 120px; /* Р§СѓС‚СЊ РІС‹С€Рµ (Р±С‹Р»Рѕ 100), С‡С‚РѕР±С‹ Р±С‹Р»Рѕ РєСЂР°СЃРёРІРµРµ */
        object-fit: contain; 
        border-radius: 8px; 
        margin-bottom: 8px; 
        background: #fff; /* Р‘РµР»С‹Р№ С„РѕРЅ РїРѕРґ РєР°СЂС‚РёРЅРєРѕР№, РµСЃР»Рё РѕРЅР° РїСЂРѕР·СЂР°С‡РЅР°СЏ */
    }
    
    .rec-name { 
        font-size: 12px; 
        font-weight: 600; 
        color: #fff; 
        line-height: 1.3;
        margin-bottom: 4px;
        
        /* РћР±СЂРµР·Р°РµРј С‚РµРєСЃС‚ */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        flex: 1; 
    }
    
    .rec-price { 
        font-size: 13px; 
        font-weight: 700; 
        color: var(--accent); 
        margin-top: auto;
    }

    .field { margin-top: 10px; display: flex; flex-direction: column; gap: 4px; }
    .field label { font-size: 12px; color: var(--muted); margin-left: 4px; }
    .field input, .field select { border-radius: 12px; border: 1px solid var(--border); background: var(--bg-soft); color: var(--text); padding: 10px 14px; font-size: 14px; }
    .field-error input { border-color: #ef4444; }
    .error-text { font-size: 11px; color: #f97316; display: none; }
    
    .alert { margin-top:6px; font-size:12px; color: var(--accent); }
    .cart-row { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 13px; }

    .promo-box { display: flex; gap: 8px; margin-top: 15px; }
    .promo-input { flex: 1; padding: 8px 12px; border-radius: 10px; border: 1px solid var(--border); background: var(--bg-soft); color: #fff; }
    .promo-btn { padding: 8px 14px; border-radius: 10px; border: 1px solid var(--primary); background: transparent; color: var(--primary); cursor: pointer; }
    .promo-btn:hover { background: var(--primary); color: #fff; }
    .promo-active { font-size: 12px; margin-top: 4px; }
    .old-price { text-decoration: line-through; color: #6b7280; font-size: 14px; margin-right: 6px; }

    /* === РЎРўРР›Р РўРђР‘РћР’ === */
    .tabs-nav { 
        display: flex; 
        gap: 20px; 
        margin-bottom: 0; 
        padding-bottom: 10px; 
        border-bottom: 1px solid var(--border); 
        
        /* Р“РѕСЂРёР·РѕРЅС‚Р°Р»СЊРЅС‹Р№ СЃРєСЂРѕР»Р» */
        overflow-x: auto;
        
        /* Р‘Р›РћРљРР РћР’РљРђ Р’Р•Р РўРРљРђР›Р¬РќРћР“Рћ РЎРљР РћР›Р›Рђ РџР Р РљРђРЎРђРќРР */
        /* Р­С‚Рѕ СЃР°РјРѕРµ РІР°Р¶РЅРѕРµ СЃРІРѕР№СЃС‚РІРѕ: */
        touch-action: pan-x; 
        
        /* РљРѕСЃРјРµС‚РёРєР° */
        white-space: nowrap;
        flex-wrap: nowrap;
        -webkit-overflow-scrolling: touch; /* РџР»Р°РІРЅРѕСЃС‚СЊ РЅР° Р°Р№С„РѕРЅР°С… */
        scrollbar-width: none; /* РЎРєСЂС‹РІР°РµРј РїРѕР»РѕСЃСѓ РїСЂРѕРєСЂСѓС‚РєРё */
    }
    .tab-btn { flex-shrink: 0; background: transparent; border: none; color: var(--muted); font-size: 16px; font-weight: 600; padding-bottom: 8px; cursor: pointer; position: relative; }
    .tab-btn.active { color: #fff; }
    .tab-btn.active::after { content: ""; position: absolute; bottom: -1px; left: 0; width: 100%; height: 2px; background: var(--primary); }
    .tab-content { display: none; color: var(--muted); font-size: 16px; line-height: 1.6; margin-bottom: 30px; white-space: normal; }
    .tab-content.active { display: block; }
    .tab-content img { max-width: 100% !important; height: auto !important; border-radius: 12px; display: block; margin: 10px 0; }

    /* === РЎРўРР›Р Р”Р›РЇ РћРџР¦РР™ (РљРќРћРџРљР) === */
    .option-group { margin-top: 15px; margin-bottom: 15px; }
    .option-title { font-size: 13px; color: var(--muted); margin-bottom: 8px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.5px; }
    .option-buttons { display: flex; flex-wrap: wrap; gap: 8px; align-items: center;}
    .option-btn { 
      border: 1px solid var(--border); background: rgba(255,255,255,0.05); color: #fff; 
      padding: 8px 14px; border-radius: 10px; cursor: pointer; transition: 0.2s; font-size: 13px; font-weight: 500;
    }
    .option-btn:hover { border-color: var(--primary); background: rgba(139, 92, 246, 0.1); }
    .option-btn.active { background: var(--primary); border-color: var(--primary); color: #fff; box-shadow: 0 0 15px rgba(139, 92, 246, 0.4); }
    
    /* Р”РѕРїРѕР»РЅРёС‚РµР»СЊРЅС‹Рµ СЃС‚РёР»Рё РґР»СЏ СѓРјРЅС‹С… РѕРїС†РёР№ */
    .option-btn.disabled {
        opacity: 0.3;
        pointer-events: none; /* Р—Р°РїСЂРµС‰Р°РµРј РєР»РёРє */
        background: #1f2937;  /* РўРµРјРЅС‹Р№ С„РѕРЅ */
        border-color: #374151;
        color: #6b7280;
        text-decoration: line-through; /* Р—Р°С‡РµСЂРєРёРІР°РµРј РЅРµРґРѕСЃС‚СѓРїРЅРѕРµ */
    }

    
    .option-btn.is-image:hover {border-color: var(--primary); background: rgba(139, 92, 246, 0.1);}

    /* РЎС‚РёР»Рё РґР»СЏ РєРЅРѕРїРѕРє-РєР°СЂС‚РёРЅРѕРє (Image Swatches) */
    .option-btn.is-image {
        padding: 0;
        width: 120px;
        height: 120px;
        border-radius: 8px;
        overflow: hidden;
        border: 2px solid var(--border);
        background: transparent;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .option-btn.is-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 0; /* РЈР±РёСЂР°РµРј СЃРєСЂСѓРіР»РµРЅРёРµ Сѓ СЃР°РјРѕР№ РєР°СЂС‚РёРЅРєРё РІРЅСѓС‚СЂРё */
    }

    /* РђРєС‚РёРІРЅРѕРµ СЃРѕСЃС‚РѕСЏРЅРёРµ РєР°СЂС‚РёРЅРєРё */
    .option-btn.is-image.active {
        border-color: var(--primary);
        box-shadow: 0 0 10px rgba(139, 92, 246, 0.5);
    }

    /* РќРµРґРѕСЃС‚СѓРїРЅРѕРµ СЃРѕСЃС‚РѕСЏРЅРёРµ РєР°СЂС‚РёРЅРєРё */
    .option-btn.is-image.disabled {
        opacity: 0.4;
        filter: grayscale(1);
        cursor: not-allowed;
        position: relative;
    }
    /* РџРµСЂРµС‡РµСЂРєРёРІР°РЅРёРµ РґР»СЏ РЅРµРґРѕСЃС‚СѓРїРЅРѕР№ РєР°СЂС‚РёРЅРєРё */
    .option-btn.is-image.disabled::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        background: #ef4444;
        transform: rotate(45deg);
    }

    /* === РЎРўРР›Р Р”Р›РЇ РҐРђР РђРљРўР•Р РРЎРўРРљ === */
    .specs-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 10px; margin-top: 15px; }
    .spec-card { background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(255, 255, 255, 0.08); border-radius: 16px; padding: 14px; display: flex; align-items: center; gap: 12px; transition: all 0.3s ease; position: relative; overflow: hidden; min-height: 70px;}
    .spec-card:hover { background: rgba(139, 92, 246, 0.1); border-color: var(--primary); transform: translateY(-2px); box-shadow: 0 4px 12px rgba(139, 92, 246, 0.2); }
    .spec-icon { flex-shrink: 0; width: 46px; height: 46px; background: rgba(139, 92, 246, 0.1); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: var(--primary); }
    .spec-icon svg { width: 20px; height: 20px; fill: currentColor; }
    .spec-content { display: flex; flex-direction: column; justify-content: center; min-width: 0; }
    .spec-label { font-size: 11px; text-transform: uppercase; letter-spacing: 0.5px; color: var(--muted); font-weight: 600; }
    .spec-value { font-size: 14px; color: #fff; font-weight: 700; line-height: 1.3; white-space: normal; word-wrap: break-word; }
    .spec-card.full-width { grid-column: 1 / -1; flex-direction: row; align-items: center; justify-content: space-between; }
    .spec-card.full-width .spec-icon { margin-bottom: 0; margin-right: 10px; }
    @media (max-width: 340px) { .specs-grid { grid-template-columns: 1fr; } }

    /* === РЎРўРР›Р РћРўР—Р«Р’РћР’ === */
    .reviews-container { display: flex; flex-direction: column; gap: 15px; }
    .review-item { background: rgba(255,255,255,0.03); padding: 12px; border-radius: 12px; border: 1px solid rgba(255,255,255,0.05); }
    .review-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
    .review-author { font-weight: 700; font-size: 14px; color: #fff; }
    .review-stars { color: #eab308; font-size: 12px; letter-spacing: 1px; }
    .review-date { font-size: 10px; color: var(--muted); }
    .review-text { font-size: 13px; color: var(--text); line-height: 1.4; }
    .review-form { margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }
    .star-rating-input { display: flex; flex-direction: row-reverse; justify-content: flex-end; gap: 5px; margin-bottom: 10px; }
    .star-rating-input input { display: none; }
    .star-rating-input label { font-size: 24px; color: #444; cursor: pointer; transition: 0.2s; }
    .star-rating-input label::before { content: "\2605"; }
    .star-rating-input label:hover, .star-rating-input label:hover ~ label, .star-rating-input input:checked ~ label { color: #eab308; }

    /* === РњРћР‘РР›Р¬РќРђРЇ РђР”РђРџРўРђР¦РРЇ РњРћР”РђР›РљР === */
    @media (max-width: 900px) {
      .modal-wide { width: 100%; height: 100%; max-height: 100%; border-radius: 0; display: block; overflow-y: auto; position: relative; }
      .product-modal-layout { display: block; height: auto; }
      .product-modal-image-container { width: 100%; height: 35vh; display: flex; }
      .product-modal-info { width: 100%; height: auto; display: block; padding: 0; }
      .product-modal-header { padding: 15px 15px 0 15px; }
      .product-scrollable-content { height: auto; overflow: visible; padding: 15px; }
      .product-modal-footer { position: fixed; bottom: 0; left: 0; width: 100%; z-index: 50; background: var(--card); padding: 12px 20px; box-shadow: 0 -5px 20px rgba(0,0,0,0.5); border-top: 1px solid var(--border); }
      .modal-recommendations { display: block; padding: 15px; background: var(--bg-soft); padding-bottom: 90px; }
      .product-modal-close-abs { top: 10px; right: 10px; background: rgba(0,0,0,0.6); z-index: 60; }
    }

    /* AGE OVERLAY */
    .age-overlay { position: fixed; inset: 0; z-index: 999999; background: rgba(2, 6, 23, 0.95); backdrop-filter: blur(15px); display: flex; align-items: center; justify-content: center; padding: 20px; pointer-events: auto; }
    .age-modal { max-width: 420px; width: 100%; background: rgba(255, 255, 255, 0.03); border: 1px solid rgba(139, 92, 246, 0.3); border-radius: 24px; padding: 40px 30px; text-align: center; box-shadow: 0 0 50px rgba(139, 92, 246, 0.15); animation: ageFadeIn 0.5s ease; }
    @keyframes ageFadeIn { from { opacity: 0; transform: scale(0.9); } to { opacity: 1; transform: scale(1); } }
    .age-icon { font-size: 48px; margin-bottom: 20px; text-shadow: 0 0 20px rgba(255,255,255,0.2); }
    .age-title { font-size: 22px; font-weight: 800; color: #fff; margin-bottom: 12px; }
    .age-title span { color: var(--primary); text-shadow: 0 0 15px rgba(139, 92, 246, 0.5); }
    .age-text { font-size: 14px; color: var(--muted); line-height: 1.6; margin-bottom: 30px; }
    .age-buttons { display: flex; flex-direction: column; gap: 12px; }
    .age-btn { width: 100%; padding: 14px; font-size: 15px; border-radius: 12px; justify-content: center; }

    /* РЁРєР°Р»Р° Р±РµСЃРїР»Р°С‚РЅРѕР№ РґРѕСЃС‚Р°РІРєРё */
    .free-shipping-box {
        background: #1e293b;
        border-radius: 12px;
        padding: 15px;
        margin-bottom: 20px;
        text-align: center;
        border: 1px solid var(--border);
    }
    .fs-text {
        font-size: 13px;
        margin-bottom: 8px;
        color: var(--text);
    }
    .fs-highlight {
        color: #22c55e;
        font-weight: 700;
    }
    .fs-progress-bg {
        width: 100%;
        height: 8px;
        background: #0f172a;
        border-radius: 4px;
        overflow: hidden;
        position: relative;
    }
    .fs-progress-fill {
        height: 100%;
        background: linear-gradient(90deg, #22c55e, #4ade80);
        width: 0%;
        border-radius: 4px;
        transition: width 0.6s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 0 10px rgba(34, 197, 94, 0.4);
    }
    .fs-success {
        color: #22c55e;
        font-weight: bold;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
    }

    /* Р–РР’РћР™ РџРћРРЎРљ */
    .live-search-results {
        position: absolute;
        top: 100%; /* Р РѕРІРЅРѕ РїРѕРґ РёРЅРїСѓС‚РѕРј */
        left: 0;
        right: 0;
        background: #1e293b; /* Р¦РІРµС‚ С„РѕРЅР° (РєР°Рє РєР°СЂС‚РѕС‡РєРё) */
        border: 1px solid var(--border);
        border-radius: 0 0 12px 12px; /* Р—Р°РєСЂСѓРіР»СЏРµРј С‚РѕР»СЊРєРѕ РЅРёР· */
        z-index: 1000; /* Р§С‚РѕР±С‹ Р±С‹Р» РїРѕРІРµСЂС… РІСЃРµРіРѕ */
        max-height: 300px; /* Р•СЃР»Рё С‚РѕРІР°СЂРѕРІ РјРЅРѕРіРѕ - Р±СѓРґРµС‚ СЃРєСЂРѕР»Р» */
        overflow-y: auto;
        display: none; /* РЎРєСЂС‹С‚ РїРѕ СѓРјРѕР»С‡Р°РЅРёСЋ */
        box-shadow: 0 10px 25px rgba(0,0,0,0.5);
    }
    
    .live-search-item {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 10px 15px;
        cursor: pointer;
        transition: background 0.2s;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }
    
    .live-search-item:last-child { border-bottom: none; }
    .live-search-item:hover { background: #334155; }
    
    .live-item-img {
        width: 40px; 
        height: 40px; 
        object-fit: cover; 
        border-radius: 6px;
        background: #000;
    }
    
    .live-item-info { flex: 1; }
    .live-item-name { font-size: 13px; font-weight: 600; color: #fff; }
    .live-item-price { font-size: 12px; color: #22c55e; font-weight: bold; }
    
    /* РЎРєСЂРѕР»Р»Р±Р°СЂ РґР»СЏ СЃРїРёСЃРєР° */
    .live-search-results::-webkit-scrollbar { width: 4px; }
    .live-search-results::-webkit-scrollbar-thumb { background: var(--border); border-radius: 2px; }

    .promo-slider-container {
        position: relative;
        width: 100%;
        height: auto; /* Р’С‹СЃРѕС‚Р° С‚РµРїРµСЂСЊ Р·Р°РІРёСЃРёС‚ РѕС‚ РєР°СЂС‚РёРЅРєРё */
        aspect-ratio: auto; /* РЈР±РёСЂР°РµРј Р¶РµСЃС‚РєРёРµ РїСЂРѕРїРѕСЂС†РёРё */
        
        border-radius: 16px;
        overflow: hidden;
        margin-bottom: 24px;
        background: #0b1120;
        border: 1px solid rgba(255, 255, 255, 0.05);
        box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    }
    
    .promo-slider-wrapper {
        display: flex;
        width: 100%;
        height: auto; /* РўРѕР¶Рµ Р°РІС‚Рѕ */
        transition: transform 0.5s ease-in-out;
        align-items: flex-start; /* Р§С‚РѕР±С‹ СЃР»Р°Р№РґС‹ РЅРµ СЂР°СЃС‚СЏРіРёРІР°Р»РёСЃСЊ */
    }
    
    .promo-slide {
        min-width: 100%;
        height: auto;
        cursor: pointer;
        display: flex; /* РЈР±РёСЂР°РµРј Р»РёС€РЅРёРµ РѕС‚СЃС‚СѓРїС‹ СЃРЅРёР·Сѓ РєР°СЂС‚РёРЅРєРё */
    }
    
    .promo-slide img {
        width: 100%;
        height: auto; /* РљР°СЂС‚РёРЅРєР° РјР°СЃС€С‚Р°Р±РёСЂСѓРµС‚СЃСЏ */
        object-fit: contain; /* РџРѕРєР°Р·С‹РІР°РµС‚СЃСЏ С†РµР»РёРєРѕРј */
        display: block;
        border-radius: 0; /* Р•СЃР»Рё РЅСѓР¶РЅРѕ */
    }

    .slider-dots {
        position: absolute;
        bottom: 12px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        gap: 6px;
        z-index: 5;
    }
    
    .slider-dot {
        width: 6px; height: 6px;
        border-radius: 50%;
        background: rgba(255,255,255,0.4);
        cursor: pointer;
        transition: 0.3s;
        box-shadow: 0 2px 5px rgba(0,0,0,0.5); /* РўРµРЅСЊ С‡С‚РѕР±С‹ РІРёРґРЅРѕ Р±С‹Р»Рѕ РЅР° СЃРІРµС‚Р»РѕРј */
    }
    
    .slider-dot.active {
        background: #fff;
        width: 16px;
        border-radius: 10px;
    }

    @media (max-width: 768px) {
        
    }

    /* === РљРђРўР•Р“РћР РР (CARDS STYLE) === */
    .categories-section {
        display: grid;
        /* Р‘Р«Р›Рћ: repeat(auto-fill, ... 
           РЎРўРђР›Рћ: repeat(auto-fit, ...  <-- Р­С‚Рѕ СЂР°СЃС‚СЏРЅРµС‚ РёС… РЅР° РІСЃСЋ С€РёСЂРёРЅСѓ
        */
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr)); 
        gap: 10px;
        margin-bottom: 24px;
    }

    .cat-card {
        background: rgba(30, 41, 59, 0.5); /* РџРѕР»СѓРїСЂРѕР·СЂР°С‡РЅС‹Р№ С„РѕРЅ */
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 16px;
        padding: 12px;
        cursor: pointer;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        text-decoration: none;
        height: 80px; /* Р¤РёРєСЃРёСЂРѕРІР°РЅРЅР°СЏ РІС‹СЃРѕС‚Р° */
        position: relative;
        overflow: hidden;
    }

    /* Р­С„С„РµРєС‚ РїСЂРё РЅР°РІРµРґРµРЅРёРё */
    .cat-card:hover {
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.2);
        transform: translateY(-3px);
    }

    /* РђРљРўРР’РќРђРЇ РљРђР РўРћР§РљРђ */
    .cat-card.active {
        background: linear-gradient(135deg, var(--primary) 0%, #a855f7 100%);
        border-color: transparent;
        box-shadow: 0 8px 20px -6px rgba(99, 102, 241, 0.6);
    }

    .cat-card.active .cat-card-title { color: #fff; font-weight: 700; }
    .cat-card.active .cat-card-icon { transform: scale(1.2); }

    .cat-card-icon {
        font-size: 24px;
        margin-bottom: 6px;
        transition: transform 0.3s;
    }

    .cat-card-title {
        font-size: 12px;
        color: var(--muted);
        font-weight: 500;
        transition: color 0.3s;
    }

    /* РђРґР°РїС‚Р°С†РёСЏ РґР»СЏ РјРѕР±РёР»СЊРЅС‹С…: РіРѕСЂРёР·РѕРЅС‚Р°Р»СЊРЅС‹Р№ СЃРєСЂРѕР»Р» */
    @media (max-width: 640px) {
        .categories-section {
            display: flex;
            overflow-x: auto;
            padding-bottom: 10px; /* РњРµСЃС‚Рѕ РґР»СЏ С‚РµРЅРё */
            margin-left: -16px; margin-right: -16px; /* Р Р°СЃС‚СЏРіРёРІР°РµРј РЅР° РІСЃСЋ С€РёСЂРёРЅСѓ */
            padding-left: 16px; padding-right: 16px; /* Р’РѕР·РІСЂР°С‰Р°РµРј РѕС‚СЃС‚СѓРїС‹ РєРѕРЅС‚РµРЅС‚Р° */
            scrollbar-width: none;
            align-items: stretch; /* Р§С‚РѕР±С‹ РІСЃРµ РєР°СЂС‚РѕС‡РєРё Р±С‹Р»Рё РѕРґРЅРѕР№ РІС‹СЃРѕС‚С‹ */
        }
        .categories-section::-webkit-scrollbar { display: none; }
        
        .cat-card {
            min-width: 85px; /* Р§СѓС‚СЊ РєРѕРјРїР°РєС‚РЅРµРµ РїРѕ С€РёСЂРёРЅРµ */
            height: auto;    /* РЈР‘РР РђР•Рњ С„РёРєСЃРёСЂРѕРІР°РЅРЅСѓСЋ РІС‹СЃРѕС‚Сѓ */
            min-height: 70px; /* РЎС‚Р°РІРёРј РјРёРЅРёРјР°Р»СЊРЅСѓСЋ, С‡С‚РѕР±С‹ Р±С‹Р»Рё СЂРѕРІРЅС‹Рµ */
            padding: 8px 4px; /* РЈРјРµРЅСЊС€Р°РµРј РІРЅСѓС‚СЂРµРЅРЅРёРµ РѕС‚СЃС‚СѓРїС‹ */
            justify-content: flex-start; /* Р§С‚РѕР±С‹ РєРѕРЅС‚РµРЅС‚ С€РµР» СЃРІРµСЂС…Сѓ */
        }

        /* РЈРјРµРЅСЊС€Р°РµРј РёРєРѕРЅРєСѓ Рё РѕС‚СЃС‚СѓРї СЃРЅРёР·Сѓ */
        .cat-card-icon {
            font-size: 22px;
            margin-bottom: 4px;
            margin-top: 4px; /* Р§СѓС‚СЊ РѕС‚СЃС‚СѓРїР° СЃРІРµСЂС…Сѓ РґР»СЏ Р±Р°Р»Р°РЅСЃР° */
        }

        /* РЈРјРµРЅСЊС€Р°РµРј С€СЂРёС„С‚ Рё РјРµР¶СЃС‚СЂРѕС‡РЅС‹Р№ РёРЅС‚РµСЂРІР°Р» */
        .cat-card-title {
            font-size: 11px;
            line-height: 1.1; 
            white-space: normal; /* Р Р°Р·СЂРµС€Р°РµРј РїРµСЂРµРЅРѕСЃ СЃР»РѕРІ */
            word-wrap: break-word;
        }
    }
    /* === РљРћРњРџРђРљРўРќР«Р™ РџРћРРЎРљ Р’ РЁРђРџРљР• === */

      /* Р”РѕРїРѕР»РЅРёС‚РµР»СЊРЅС‹Р№ СЃС‚РёР»СЊ РґР»СЏ СЂРµР·СѓР»СЊС‚Р°С‚РѕРІ РІ С…РµРґРµСЂРµ */
    #headerSearchResults {
        /* Р”РµР»Р°РµРј РµРіРѕ С‡СѓС‚СЊ Р±РѕР»РµРµ "РїР»РѕС‚РЅС‹Рј", С‚Р°Рє РєР°Рє РѕРЅ РІРёСЃРёС‚ РЅР°Рґ РєРѕРЅС‚РµРЅС‚РѕРј */
        background: #0f172a; 
        border-color: #334155;
        box-shadow: 0 10px 40px rgba(0,0,0,0.8);
        top: 45px; /* Р§СѓС‚СЊ РЅРёР¶Рµ РёРЅРїСѓС‚Р° */
    }
    
    /* РђРґР°РїС‚Р°С†РёСЏ С€РёСЂРёРЅС‹ РёРЅРїСѓС‚Р° РІ С…РµРґРµСЂРµ */
    .header-search-bar input {
        width: 100%; /* РџСѓСЃС‚СЊ Р·Р°РЅРёРјР°РµС‚ РІСЃСЋ РґРѕСЃС‚СѓРїРЅСѓСЋ С€РёСЂРёРЅСѓ РІ РѕР±РµСЂС‚РєРµ */
    }

    .header-search-bar {
        flex: 1; /* Р—Р°РЅРёРјР°РµС‚ РІСЃС‘ СЃРІРѕР±РѕРґРЅРѕРµ РјРµСЃС‚Рѕ РІ С†РµРЅС‚СЂРµ */
        display: flex;
        align-items: center;
        gap: 12px;
        margin: 0 20px;
        
        /* РЎРєСЂС‹С‚Рѕ РїРѕ СѓРјРѕР»С‡Р°РЅРёСЋ */
        opacity: 0;
        transform: translateY(-20px);
        pointer-events: none; /* Р§С‚РѕР±С‹ РЅРµ РјРµС€Р°Р»Рѕ РєР»РёРєР°С‚СЊ, РїРѕРєР° РЅРµРІРёРґРёРјРѕ */
        visibility: hidden;
        
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    .header-search-input {
        flex: 1;
        min-width: 0;
    }
    @media (max-width: 1120px) {
        .header-search-input input#headerSearchInput::placeholder {
        font-size: 11.5px;
    }
    }

    /* РљРѕРіРґР° РґРѕР±Р°РІР»СЏРµРј РєР»Р°СЃСЃ .visible (С‡РµСЂРµР· JS) */
    .header-search-bar.visible {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
        visibility: visible;
    }

    /* When hidden, don't squeeze header layout on mobile */
    .header-search-bar:not(.visible) {
        flex: 0 !important;
        flex-basis: 0 !important;
        width: 0 !important;
        max-width: 0 !important;
        min-width: 0 !important;
        margin: 0 !important;
        overflow: hidden !important;
    }

    /* РРЅРїСѓС‚ РїРѕРёСЃРєР° РІ С€Р°РїРєРµ */
    .header-search-bar input {
        width: 100%;
        background: rgba(255, 255, 255, 0.1);
        border: 1px solid rgba(255, 255, 255, 0.1);
        border-radius: 99px;
        padding: 8px 14px;
        color: #fff;
        font-size: 13px;
        transition: 0.2s;
    }
    .header-search-bar input:focus {
        background: #000;
        border-color: var(--primary);
        outline: none;
    }

    /* РњРёРЅРё-РёРєРѕРЅРєРё РєР°С‚РµРіРѕСЂРёР№ */
    .header-cats {
        display: flex;
        gap: 4px;
    }
    .h-cat {
        width: 32px;
        height: 32px;
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        font-size: 16px;
        background: transparent;
        transition: 0.2s;
        color: var(--muted);
        text-decoration: none;
    }
    .h-cat:hover { background: rgba(255,255,255,0.1); }
    .h-cat.active {
        background: var(--primary);
        color: #fff;
        box-shadow: 0 0 10px rgba(99, 102, 241, 0.4);
    }

    /* РђР”РђРџРўРђР¦РРЇ РџРћР” РњРћР‘РР›РљР (РћР§Р•РќР¬ Р’РђР–РќРћ) */
    @media (max-width: 768px) {
        /* РџСЂСЏС‡РµРј С‚РµРєСЃС‚ "РљРѕСЂР·РёРЅР°" Рё "Atmos", С‡С‚РѕР±С‹ РІР»РµР· РїРѕРёСЃРє */
        body.scrolled .logo-text, 
        body.scrolled .cart-text {
            display: none; 
        }
        
        body.scrolled .logo-badge {
            margin-right: 0;
        }

        .nav {
            gap: 8px;
            flex-wrap: nowrap;
        }
        .logo,
        .header-search-bar,
        .header-actions {
            order: 0;
        }
        .header-actions {
            gap: 6px;
            flex-shrink: 0;
        }
        .header-search-bar {
            margin: 0 6px;
            gap: 6px;
            flex: 1 1 160px;
            min-width: 140px;
        }
        .header-search-bar.visible {
            width: auto;
            flex-basis: auto;
            margin: 0 6px;
        }
        .header-search-bar.visible input {
            min-width: 0;
        }
        .cat-dropdown-btn {
            padding: 6px 6px;
            font-size: 11px;
        }
        .cat-label {
            max-width: 76px;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
            display: inline-block;
        }
        
        /* РќР° РјРѕР±РёР»РєР°С… РїРѕРєР°Р·С‹РІР°РµРј РІ С€Р°РїРєРµ С‚РѕР»СЊРєРѕ РёРЅРїСѓС‚, РёРєРѕРЅРєРё РєР°С‚РµРіРѕСЂРёР№ РјРѕРіСѓС‚ РЅРµ РІР»РµР·С‚СЊ */
        .header-cats {
            display: none; 
        }
    }

    /* РЎС‚РёР»СЊ РґР»СЏ Р±Р»РѕРєР° С†РµРЅС‹ */
    .price-wrapper {
        display: flex;
        align-items: baseline;
        gap: 8px;
    }

    /* РћР±С‹С‡РЅР°СЏ С†РµРЅР° (РµСЃР»Рё РЅРµС‚ СЃРєРёРґРєРё) */
    .price-regular {
        font-weight: 700;
        color: #fff;
    }

    /* РљСЂР°СЃРЅР°СЏ С†РµРЅР° (РµСЃР»Рё РµСЃС‚СЊ СЃРєРёРґРєР°) */
    .price-discount {
        font-weight: 800;
        color: #ef4444; /* РљСЂР°СЃРЅС‹Р№ */
    }

    /* РЎС‚Р°СЂР°СЏ Р·Р°С‡РµСЂРєРЅСѓС‚Р°СЏ С†РµРЅР° */
    .price-old {
        text-decoration: line-through;
        color: #9ca3af; /* РЎРµСЂС‹Р№ */
        font-size: 0.9em;
        font-weight: 400;
    }

    /* === РЎРўРР›Р Р”Р›РЇ Р’РРўР РРќР« === */
    .showcase-section {
        margin-bottom: 30px;
    }
    .showcase-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 15px;
        padding: 0 5px;
    }
    
    /* РСЃРїРѕР»СЊР·СѓРµРј С‚Рµ Р¶Рµ СЃС‚РёР»Рё СЃРµС‚РєРё, С‡С‚Рѕ Рё РІ СЂРµРєРѕРјРµРЅРґР°С†РёСЏС… РјРѕРґР°Р»РєРё, РЅРѕ РґРѕСЂР°Р±РѕС‚Р°РµРј */
    .rec-grid {
        display: flex;
        gap: 12px;
        overflow-x: auto;
        padding: 5px 5px 20px 5px; /* РњРµСЃС‚Рѕ РїРѕРґ С‚РµРЅСЊ */
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        /* РЎРєСЂС‹РІР°РµРј СЃРєСЂРѕР»Р»Р±Р°СЂ */
        scrollbar-width: none; 
    }
    .rec-grid::-webkit-scrollbar { display: none; }

    /* РљР°СЂС‚РѕС‡РєР° РІ РІРёС‚СЂРёРЅРµ */
    .showcase-card {
        min-width: 160px;
        max-width: 160px;
        background: var(--card);
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 10px;
        cursor: pointer;
        transition: transform 0.2s;
        display: flex;
        flex-direction: column;
        position: relative;
    }
    .showcase-card:hover {
        transform: translateY(-5px);
        border-color: var(--primary);
        box-shadow: 0 10px 20px rgba(0,0,0,0.3);
    }
    
    .showcase-img-box {
        position: relative;
        width: 100%;
        height: 140px;
        margin-bottom: 10px;
        border-radius: 12px;
        overflow: hidden;
        background: #fff;
    }
    .showcase-img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        pointer-events: none;      /* РљР»РёРє РїСЂРѕС…РѕРґРёС‚ СЃРєРІРѕР·СЊ РєР°СЂС‚РёРЅРєСѓ (РґРѕСЃС‚Р°РµС‚СЃСЏ РєР°СЂС‚РѕС‡РєРµ) */
        -webkit-user-drag: none;   /* Р—Р°РїСЂРµС‰Р°РµС‚ С‚СЏРЅСѓС‚СЊ РєР°СЂС‚РёРЅРєСѓ РІ Chrome/Safari */
        user-select: none;
    }
    
    .showcase-label {
        position: absolute;
        bottom: 5px;
        left: 5px;
        background: #ef4444;
        color: #fff;
        font-size: 10px;
        font-weight: 700;
        padding: 3px 8px;
        border-radius: 6px;
    }

    .showcase-title {
        font-size: 13px;
        font-weight: 600;
        line-height: 1.3;
        margin-bottom: 6px;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
        color: #fff;
    }
    
    .showcase-price {
        margin-top: auto;
        font-weight: 700;
        font-size: 14px;
        color: #fff;
    }
    .showcase-old-price {
        font-size: 11px;
        color: var(--muted);
        text-decoration: line-through;
        margin-bottom: 2px;
    }

    @media (max-width: 640px) {
        .showcase-card {
            min-width: 140px;
            max-width: 140px;
        }
        .showcase-img-box {
            height: 120px;
        }
    }

    /* === РћРўРљР›Р®Р§РђР•Рњ РњРђР“РќРРў (SNAP) === */
    
    /* 1. РћС‚РєР»СЋС‡Р°РµРј РїСЂРёР»РёРїР°РЅРёРµ Сѓ РєРѕРЅС‚РµР№РЅРµСЂРѕРІ */
    .rec-grid, 
    .categories-section,
    #hotGrid,
    #recHomeGrid {
        scroll-snap-type: none !important; /* Р“Р»Р°РІРЅР°СЏ С‚Р°Р±Р»РµС‚РєР° */
        scroll-behavior: auto !important;  /* РЈР±РёСЂР°РµРј РєРѕРЅС„Р»РёРєС‚С‹ РїР»Р°РІРЅРѕСЃС‚Рё */
    }

    /* 2. РћС‚РєР»СЋС‡Р°РµРј РїСЂРёРІСЏР·РєСѓ Сѓ СЃР°РјРёС… РєР°СЂС‚РѕС‡РµРє (РЅР° РІСЃСЏРєРёР№ СЃР»СѓС‡Р°Р№) */
    .rec-card, 
    .cat-card, 
    .showcase-card {
        scroll-snap-align: none !important;
    }

    /* РљР»Р°СЃСЃ РґР»СЏ СЃРєСЂС‹С‚РѕРіРѕ СЌР»РµРјРµРЅС‚Р° */
    .reveal-item {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* РљР»Р°СЃСЃ, РєРѕРіРґР° СЌР»РµРјРµРЅС‚ СЃС‚Р°Р» РІРёРґРёРјС‹Рј */
    .reveal-item.visible {
    opacity: 1;
    transform: translateY(0);
}

    /* Р‘РµРіСѓС‰Р°СЏ СЃС‚СЂРѕРєР° */
.marquee-container {
    background: var(--primary); /* Р¤РёРѕР»РµС‚РѕРІС‹Р№ С„РѕРЅ */
    color: #fff;
    overflow: hidden;
    display: flex; /* Р’С‹СЃС‚СЂР°РёРІР°РµРј СЌР»РµРјРµРЅС‚С‹ РІ СЂСЏРґ */
    position: relative;
    z-index: 1;
    padding: 8px 0;
    margin-bottom: 20px;
}

.marquee-content {
    display: flex;
    align-items: center;
    justify-content: space-around; /* Р Р°РІРЅРѕРјРµСЂРЅС‹Рµ РѕС‚СЃС‚СѓРїС‹ */
    flex-shrink: 0; /* Р—Р°РїСЂРµС‰Р°РµРј СЃР¶РёРјР°С‚СЊСЃСЏ */
    min-width: 100%; /* Р‘Р»РѕРє Р·Р°РЅРёРјР°РµС‚ РјРёРЅРёРјСѓРј РІСЃСЋ С€РёСЂРёРЅСѓ СЌРєСЂР°РЅР° */
    
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    
    /* РђРЅРёРјР°С†РёСЏ РґРІРёР¶РµРЅРёСЏ РІР»РµРІРѕ РЅР° 100% СЃРІРѕРµР№ С€РёСЂРёРЅС‹ */
    animation: scroll 20s linear infinite;
}

.divider {
    color: rgba(255,255,255,0.5);
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}
.feature-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: 0.3s;
}
.feature-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-3px);
    border-color: var(--primary);
}
.feature-icon {
    font-size: 32px;
    margin-bottom: 12px;
}
.feature-title {
    font-weight: 700;
    color: #fff;
    margin-bottom: 6px;
    font-size: 14px;
}
.feature-desc {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.4;
}

.faq-item {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 12px;
    margin-bottom: 10px;
    overflow: hidden;
}
.faq-question {
    padding: 15px;
    font-weight: 600;
    cursor: pointer;
    list-style: none; /* РЈР±РёСЂР°РµС‚ С‚СЂРµСѓРіРѕР»СЊРЅРёРє */
    position: relative;
    padding-right: 40px;
    color: #fff;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-question::after {
    content: '+';
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: var(--primary);
}
details[open] .faq-question::after {
    content: '-';
}
.faq-answer {
    padding: 0 15px 15px 15px;
    font-size: 13px;
    color: var(--muted);
    line-height: 1.5;
    border-top: 1px solid rgba(255,255,255,0.05);
    margin-top: 5px;
    padding-top: 10px;
}

/* === РРЎРџР РђР’Р›Р•РќРР• РћРўРЎРўРЈРџРћР’ Р”Р›РЇ РќРћР’Р«РҐ Р‘Р›РћРљРћР’ === */
    .features-section, 
    .faq-section {
        max-width: 1160px; /* РћРіСЂР°РЅРёС‡РёРІР°РµРј С€РёСЂРёРЅСѓ РєР°Рє Сѓ РІСЃРµРіРѕ СЃР°Р№С‚Р° */
        margin-left: auto; /* Р¦РµРЅС‚СЂРёСЂСѓРµРј */
        margin-right: auto;
        padding-left: 16px; /* Р”РѕР±Р°РІР»СЏРµРј РѕС‚СЃС‚СѓРїС‹ РїРѕ Р±РѕРєР°Рј */
        padding-right: 16px;
        box-sizing: border-box; /* Р§С‚РѕР±С‹ РѕС‚СЃС‚СѓРїС‹ РЅРµ Р»РѕРјР°Р»Рё С€РёСЂРёРЅСѓ */
    }

/* === PREMIUM FOOTER (FINAL) === */
.site-footer {
  background: linear-gradient(to top, #020617, #0b1120);
  border-top: none; /* РЈР±СЂР°Р»Рё РіСЂР°РЅРёС†Сѓ */
  padding: 60px 20px 40px;
  margin-top: 60px;
  position: relative;
  overflow: hidden;
}

/* Р­С„С„РµРєС‚ СЃРІРµС‡РµРЅРёСЏ РЅР° С„РѕРЅРµ (РњСЏРіРєРёР№ Рё РЅР° РІРµСЃСЊ Р±Р»РѕРє) */
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(
    ellipse at 50% 0%, 
    rgba(99, 102, 241, 0.15) 0%, 
    rgba(99, 102, 241, 0.05) 40%, 
    transparent 80%
  );
  pointer-events: none;
  z-index: 1;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  position: relative;
  z-index: 2;
}

.footer-logo {
  font-size: 2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, #9ca3af);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 10px;
  letter-spacing: -1px;
  user-select: none; /* Р›РѕРіРѕС‚РёРї РІС‹РґРµР»СЏС‚СЊ РЅРµ РЅСѓР¶РЅРѕ */
}

.footer-buttons {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

/* РЎС‚РёР»СЊ РєРЅРѕРїРѕРє */
.footer-btn {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 24px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  color: #e5e7eb;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(10px);
  font-size: 0.95rem;

  /* === Р¤РРљРЎ Р”Р›РЇ Р’Р«Р”Р•Р›Р•РќРРЇ РўР•РљРЎРўРђ === */
  -webkit-user-drag: none; /* Р—Р°РїСЂРµС‰Р°РµС‚ С‚СЏРЅСѓС‚СЊ РєРЅРѕРїРєСѓ РєР°Рє РєР°СЂС‚РёРЅРєСѓ */
  user-select: none;       /* Р—Р°РїСЂРµС‰Р°РµС‚ РІС‹РґРµР»СЏС‚СЊ СЃР°РјСѓ РєРЅРѕРїРєСѓ РєР°Рє Р±Р»РѕРє */
  cursor: pointer;
}

/* Р Р°Р·СЂРµС€Р°РµРј РІС‹РґРµР»СЏС‚СЊ РўРћР›Р¬РљРћ С‚РµРєСЃС‚ РІРЅСѓС‚СЂРё span */
.footer-btn span {
  user-select: text; 
  -webkit-user-select: text;
  cursor: text; /* РљСѓСЂСЃРѕСЂ РїСЂРµРІСЂР°С‰Р°РµС‚СЃСЏ РІ "РїР°Р»РѕС‡РєСѓ" РїСЂРё РЅР°РІРµРґРµРЅРёРё РЅР° С‚РµРєСЃС‚ */
  position: relative;
  z-index: 10;
}

.footer-btn svg {
  width: 24px;
  height: 24px;
  transition: transform 0.3s ease;
  pointer-events: none; /* Р§С‚РѕР±С‹ РёРєРѕРЅРєР° РЅРµ РјРµС€Р°Р»Р° РІС‹РґРµР»РµРЅРёСЋ */
}

/* Р­С„С„РµРєС‚С‹ РЅР°РІРµРґРµРЅРёСЏ */
.btn-channel:hover {
  background: rgba(59, 130, 246, 0.1);
  border-color: rgba(59, 130, 246, 0.4);
  box-shadow: 0 0 20px rgba(59, 130, 246, 0.3);
  transform: translateY(-5px);
}
.btn-channel:hover svg { fill: #3b82f6; transform: scale(1.1) rotate(-10deg); }

.btn-manager:hover {
  background: rgba(99, 102, 241, 0.1);
  border-color: rgba(99, 102, 241, 0.4);
  box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
  transform: translateY(-5px);
}
.btn-manager:hover svg { fill: #6366f1; transform: scale(1.1); }

.btn-email:hover {
  background: rgba(239, 68, 68, 0.1);
  border-color: rgba(239, 68, 68, 0.4);
  box-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
  transform: translateY(-5px);
}
.btn-email:hover svg { fill: #ef4444; transform: scale(1.1); }

.footer-copy {
  margin-top: 20px;
  color: #6b7280;
  font-size: 0.85rem;
  text-align: center;
}

@media (max-width: 600px) {
  .footer-buttons {
    flex-direction: column;
    width: 100%;
  }
  .footer-btn {
    width: 100%;
    justify-content: center;
  }
}

  /* === ANTISPAM (HONEYPOT) === */
    .antispam {
        position: absolute;
        left: -9999px;
        opacity: 0;
        z-index: -1;
    }

    /* === FIX: РРЎРџР РђР’Р›Р•РќРР• РњРћР‘РР›Р¬РќРћР“Рћ РџРћРРЎРљРђ (FINAL 2.0) === */
    @media (max-width: 768px) {
        
        /* РЎР±СЂРѕСЃ С‚СЂР°РЅСЃС„РѕСЂРјР°С†РёРё СЂРѕРґРёС‚РµР»СЏ */
        .header-search-bar.visible {
            transform: none !important; 
        }

        #headerSearchResults {
            position: fixed !important;
            top: 70px !important;
            left: 10px !important;
            
            /* РЁРёСЂРёРЅР° РЅР° РІРµСЃСЊ СЌРєСЂР°РЅ СЃ РѕС‚СЃС‚СѓРїР°РјРё */
            width: calc(100vw - 20px) !important; 
            
            right: auto !important;
            margin: 0 !important;
            transform: none !important;

            min-width: 0 !important;
            max-height: 55vh;           
            overflow-y: auto;           
            
            z-index: 10000 !important;
            background: #1e293b;
            border: 1px solid rgba(255,255,255,0.15);
            box-shadow: 0 30px 60px rgba(0,0,0,0.9);
            border-radius: 12px;
            
            /* рџ‘‡ Р’РђР–РќРћ: РЈР±СЂР°Р»Рё 'display: block !important', С‚РµРїРµСЂСЊ РѕРЅ СЃР»СѓС€Р°РµС‚СЃСЏ JS */
        }

        .live-search-item {
            display: flex !important;
            align-items: center !important;
            padding: 12px 15px !important;
            width: 100% !important;
            box-sizing: border-box !important;
        }

        .live-item-img {
            width: 50px !important;
            height: 50px !important;
            flex-shrink: 0 !important;
            margin-right: 15px !important;
            object-fit: cover;
            border-radius: 6px;
        }

        .live-item-info {
            flex: 1 !important;
            min-width: 0 !important;
            text-align: left;
        }
        
        .live-item-name {
            white-space: normal !important;
            font-size: 14px !important;
            line-height: 1.3 !important;
        }
    }
    /* РљР»Р°СЃСЃ РґР»СЏ Р±Р»РѕРєРёСЂРѕРІРєРё СЃРєСЂРѕР»Р»Р°, РєРѕРіРґР° РѕС‚РєСЂС‹С‚Р° РјРѕРґР°Р»РєР° */
body.no-scroll {
  overflow: hidden !important;
  touch-action: none; /* Р”РѕРїРѕР»РЅРёС‚РµР»СЊРЅРѕ РґР»СЏ РјРѕР±РёР»СЊРЅС‹С… */
}

/* === РЎРўРР›Р Р”Р›РЇ РўРћР’РђР РћР’ "РќР•РњРђР„ Р’ РќРђРЇР’РќРћРЎРўР†" === */
.product-card.out-of-stock .product-image img {
    opacity: 0.5;            /* Р”РµР»Р°РµРј РєР°СЂС‚РёРЅРєСѓ РїРѕР»СѓРїСЂРѕР·СЂР°С‡РЅРѕР№ */
    filter: grayscale(100%); /* Р”РµР»Р°РµРј РєР°СЂС‚РёРЅРєСѓ С‡РµСЂРЅРѕ-Р±РµР»РѕР№ */
    transition: 0.3s;
}

/* РџСЂРё РЅР°РІРµРґРµРЅРёРё С‡СѓС‚СЊ РІРѕР·РІСЂР°С‰Р°РµРј С†РІРµС‚, С‡С‚РѕР±С‹ Р±С‹Р»Рѕ РєСЂР°СЃРёРІРѕ */
.product-card.out-of-stock:hover .product-image img {
    filter: grayscale(0%);
    opacity: 0.8;
}

.product-card.out-of-stock .product-price {
    color: #6b7280;          /* РЎРµСЂС‹Р№ С†РІРµС‚ С†РµРЅС‹ РІРјРµСЃС‚Рѕ Р±РµР»РѕРіРѕ */
    text-decoration: line-through; /* РњРѕР¶РЅРѕ Р·Р°С‡РµСЂРєРЅСѓС‚СЊ С†РµРЅСѓ (РѕРїС†РёРѕРЅР°Р»СЊРЅРѕ) */
}

.product-card.out-of-stock .product-status span:last-child {
    color: #ef4444;          /* РљСЂР°СЃРЅС‹Р№ С‚РµРєСЃС‚ СЃС‚Р°С‚СѓСЃР° */
    font-weight: 800;        /* Р–РёСЂРЅС‹Р№ С€СЂРёС„С‚ */
    text-transform: uppercase; /* Р—РђР“Р›РђР’РќР«Р• Р‘РЈРљР’Р« */
    letter-spacing: 0.5px;
}
/* === РЎС‚РёР»С– РґР»СЏ РєСЂР°СЃРёРІРѕРіРѕ РїС–РґСЃСѓРјРєСѓ РІ РєРѕС€РёРєСѓ === */
.cart-summary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 15px;
    margin-top: 15px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 8px;
}

.summary-row.discount {
    color: #22c55e; /* Р—РµР»РµРЅРёР№ РґР»СЏ Р·РЅРёР¶РєРё */
}

.summary-divider {
    height: 1px;
    background: var(--border);
    margin: 10px 0;
}

.summary-row.total {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    align-items: center;
}

/* === РЎС‚РёР»С– РґР»СЏ РїРѕРІС–РґРѕРјР»РµРЅСЊ РїСЂРѕРјРѕРєРѕРґСѓ === */
.promo-status-msg {
    font-size: 13px;
    margin-top: 5px;
    padding: 8px;
    border-radius: 6px;
    text-align: center;
    font-weight: 500;
}

.promo-status-msg.success {
    background: rgba(34, 197, 94, 0.1);
    color: #22c55e;
    border: 1px solid #22c55e;
}

.promo-status-msg.warning {
    background: rgba(245, 158, 11, 0.1);
    color: #f59e0b; /* РџРѕРјР°СЂР°РЅС‡РµРІРёР№ */
    border: 1px solid #f59e0b;
}

/* Р”РѕР±Р°РІСЊС‚Рµ СЌС‚Рѕ Рє РѕСЃС‚Р°Р»СЊРЅС‹Рј СЃС‚РёР»СЏРј promo-status-msg */
.promo-status-msg.error {
    background: rgba(239, 68, 68, 0.1); /* РљСЂР°СЃРЅС‹Р№ С„РѕРЅ */
    color: #ef4444;                     /* РљСЂР°СЃРЅС‹Р№ С‚РµРєСЃС‚ */
    border: 1px solid #ef4444;
}

/* === PREMIUM PROMO MODAL 2.0 === */
.promo-modal.premium-modal {
    width: 900px; /* РЁРёСЂРѕРєРµ РІС–РєРЅРѕ */
    max-width: 94vw;
    background: #0f172a; /* РўРµРјРЅРёР№ С„РѕРЅ */
    border: 1px solid rgba(99, 102, 241, 0.3); /* Р¤С–РѕР»РµС‚РѕРІР° СЂР°РјРєР° */
    box-shadow: 0 0 80px rgba(99, 102, 241, 0.15), 0 20px 40px rgba(0,0,0,0.6);
    padding: 0; /* РџСЂРёР±РёСЂР°С”РјРѕ СЃС‚Р°РЅРґР°СЂС‚РЅРёР№ РїР°РґРґС–РЅРі */
    overflow: hidden;
    max-height: 90vh;
    max-height: 90dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    display: flex;
    flex-direction: column;
    position: relative;
}

/* РЎРІС–С‚С–РЅРЅСЏ Р·Р·Р°РґСѓ */
.promo-glow-bg {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 100%; height: 100%;
    max-width: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.4) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

.promo-content-layout {
    display: flex;
    flex-direction: row;
    min-height: 450px;
}

/* Р›Р†Р’Рђ Р§РђРЎРўРРќРђ (РљРђР РўРРќРљРђ) */
.promo-visual {
    flex: 1;
    position: relative;
    background: #000;
    overflow: hidden;
    min-height: 250px;
}
.promo-slider {
    width: 100%;
    height: 100%;
}
.promo-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.8;
    transition: transform 4s ease;
}
/* РџРѕРІС–Р»СЊРЅРёР№ Р·СѓРј РєР°СЂС‚РёРЅРєРё */
.promo-visual:hover .promo-slider img {
    transform: scale(1.1);
}
.visual-overlay {
    position: absolute;
    bottom: 0; left: 0; width: 100%;
    height: 50%;
    background: linear-gradient(to top, #0f172a 0%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 20px;
}
.overlay-badge {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    color: #fff;
    font-weight: 600;
}

/* РџР РђР’Рђ Р§РђРЎРўРРќРђ (РљРћРќРўР•РќРў) */
.promo-info {
    flex: 1.3; /* РўСЂРѕС…Рё С€РёСЂС€Рµ РЅС–Р¶ РєР°СЂС‚РёРЅРєР° */
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    background: linear-gradient(145deg, #0f172a 0%, #1e1b4b 100%);
}

.welcome-label {
    font-size: 13px;
    color: #a5b4fc;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.promo-title {
    font-size: 32px;
    line-height: 1.1;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}
.promo-title span {
    background: linear-gradient(90deg, #818cf8, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.promo-desc {
    font-size: 15px;
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 25px;
}

/* Р‘Р»РѕРє РґРѕРІС–СЂРё (3 С–РєРѕРЅРєРё) */
.trust-grid {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
}
.trust-item {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 12px;
    padding: 10px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: left;
}
.trust-icon { font-size: 20px; margin: 0; }
.trust-text { font-size: 13px; line-height: 1.15; color: #94a3b8; }
.trust-text strong { color: #fff; display: block; margin-bottom: -2px; font-size: 14px; }

/* РљРЈРџРћРќ */
.coupon-wrapper {
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.15), rgba(168, 85, 247, 0.15));
    border: 1px dashed rgba(129, 140, 248, 0.6);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 20px;
    margin-bottom: 25px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: 0.2s;
}
.coupon-wrapper:hover {
    border-color: #a5b4fc;
    background: rgba(99, 102, 241, 0.25);
    transform: translateY(-2px);
}
.coupon-left { display: flex; flex-direction: column; }
.coupon-label { font-size: 11px; color: #a5b4fc; text-transform: uppercase; }
.coupon-code { font-size: 20px; font-weight: 800; color: #fff; letter-spacing: 1px; font-family: monospace; }
.coupon-right { 
    display: flex; align-items: center; gap: 8px; 
    color: #fff; font-weight: 700; font-size: 12px;
    background: rgba(255,255,255,0.1); padding: 6px 12px; border-radius: 6px;
}
.coupon-right svg { width: 16px; height: 16px; }

/* === PROMO TIMER === */
.promo-timer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    margin: -12px 0 14px;
    background: linear-gradient(90deg, rgba(99, 102, 241, 0.28), rgba(139, 92, 246, 0.2));
    border: 1px solid rgba(129, 140, 248, 0.55);
    border-radius: 14px;
    color: #e0e7ff;
    font-size: 14px;
    font-weight: 700;
    box-shadow: 0 10px 24px rgba(99, 102, 241, 0.35);
}
.promo-timer-label {
    font-weight: 800;
    letter-spacing: 0.3px;
}
.promo-timer-value {
    font-family: monospace;
    font-weight: 900;
    color: #fff;
    background: rgba(2, 6, 23, 0.8);
    padding: 6px 10px;
    border-radius: 10px;
    letter-spacing: 1.5px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}
.promo-timer-note {
    font-size: 12px;
    color: #a5b4fc;
    margin-bottom: 16px;
}


/* Р•С„РµРєС‚ Р±Р»С–РєСѓ РЅР° РєСѓРїРѕРЅС– */
.coupon-shine {
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-20deg);
    animation: shine 3s infinite;
}
@keyframes shine {
    0% { left: -100%; }
    20% { left: 200%; }
    100% { left: 200%; }
}

/* РљРЅРѕРїРєР° */
.btn-lg {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 12px;
}
.btn-glow {
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.4);
    animation: pulseBtn 2s infinite;
}
@keyframes pulseBtn {
    0% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.4); }
    50% { box-shadow: 0 0 35px rgba(99, 102, 241, 0.7); }
    100% { box-shadow: 0 0 20px rgba(99, 102, 241, 0.4); }
}

.secure-note {
    font-size: 11px;
    color: #64748b;
    text-align: center;
    margin-top: 12px;
    display: flex; align-items: center; justify-content: center; gap: 6px;
}

@media (max-width: 600px) {
    .btn-lg {
        font-size: 14px;
        padding: 14px 12px;
        letter-spacing: 0.3px;
        white-space: normal;
        line-height: 1.25;
    }
}

/* РђР”РђРџРўРђР¦Р†РЇ РџР†Р” РњРћР‘Р†Р›Р¬РќР† */
@media (max-width: 768px) {
    .promo-content-layout { flex-direction: column; }
    .promo-visual { display: none; /* РќР° РјРѕР±С–Р»РєР°С… РєСЂР°С‰Рµ РїСЂРёР±СЂР°С‚Рё РєР°СЂС‚РёРЅРєСѓ, С‰РѕР± С‚РµРєСЃС‚ РІР»С–Р· РЅР° 1 РµРєСЂР°РЅ */ }
    /* РђР±Рѕ, СЏРєС‰Рѕ С…РѕС‡РµС€ Р·Р°Р»РёС€РёС‚Рё РєР°СЂС‚РёРЅРєСѓ, Р·СЂРѕР±Рё height: 150px; */
    
    .promo-info { padding: 30px 20px; }
    .promo-title { font-size: 24px; }
    .trust-grid { grid-template-columns: 1fr; gap: 8px; text-align: left; }
    .trust-item { display: flex; align-items: center; gap: 12px; text-align: left; padding: 12px; }
    .trust-icon { margin-bottom: 0; }
    .trust-text strong { display: inline; }
    
    .promo-modal.premium-modal { width: 95%; margin: auto; }
}

@media (max-width: 768px) {
    #promoModalBackdrop {
        align-items: flex-start;
        overflow-y: auto;
        padding: 16px 12px;
    }
    .promo-modal.premium-modal {
        max-height: calc(100vh - 32px);
        max-height: calc(100dvh - 32px);
        overflow-y: auto;
    }
    .promo-content-layout { min-height: 0; }
}



