/* =================================================================
   RIFF CITY — Music Instruments Store Template (Bilingual UA/EN)
   Style: Grunge rock · distressed dark · red & black · vinyl motifs
   ================================================================= */

:root {
    --bg: #0d0d0d;
    --bg-1: #141414;
    --bg-2: #1a1a1a;
    --bg-panel: #1e1e1e;
    --red: #e63946;
    --red-bright: #ff2d3f;
    --red-deep: #b8232f;
    --red-glow: rgba(255, 45, 63, 0.4);
    --white: #f0f0f0;
    --grey: #888;
    --grey-dark: #444;
    --yellow: #ffd60a;
    --text: #e8e8e8;
    --text-soft: #b0b0b0;
    --text-muted: #707070;
    --text-faint: #404040;
    --line: #2a2a2a;
    --line-bright: #3a3a3a;
    --glass-bg: rgba(30, 30, 30, 0.7);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-blur: blur(12px);
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
    --shadow-deep: 0 12px 40px rgba(0, 0, 0, 0.8);
    --shadow-red: 0 0 24px rgba(230, 57, 70, 0.3);
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }
  html { scroll-behavior: smooth; }

  body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
    -webkit-font-smoothing: antialiased;
  }

  /* ============ DISTRESSED BACKGROUND ============ */
  body::before {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -2;
    background:
      radial-gradient(ellipse at 15% 20%, rgba(230, 57, 70, 0.08) 0%, transparent 40%),
      radial-gradient(ellipse at 85% 80%, rgba(60, 60, 60, 0.15) 0%, transparent 50%),
      var(--bg);
  }

  body::after {
    content: '';
    position: fixed;
    inset: 0;
    z-index: -1;
    pointer-events: none;
    opacity: 0.5;
    background-image:
      url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='3' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0.05 0 0 0 0 0.05 0 0 0 0 0.05 0 0 0 0.5 0'/></filter><rect width='100%25' height='100%25' filter='url(%23n)'/></svg>");
    mix-blend-mode: overlay;
  }

  /* Vinyl record decorations */
  .vinyl-deco {
    position: fixed;
    border-radius: 50%;
    z-index: -1;
    pointer-events: none;
    background:
      radial-gradient(circle at center,
        transparent 0%,
        transparent 8%,
        var(--bg-1) 8.5%,
        var(--bg-1) 12%,
        transparent 12.5%,
        transparent 14%,
        var(--bg-1) 14.5%,
        var(--bg-1) 100%);
    border: 1px solid var(--line);
    opacity: 0.3;
    animation: vinyl-spin 30s linear infinite;
  }

  .vinyl-deco.v1 { width: 300px; height: 300px; top: 20%; right: -100px; }
  .vinyl-deco.v2 { width: 200px; height: 200px; bottom: 10%; left: -60px; animation-duration: 25s; animation-direction: reverse; }

  @keyframes vinyl-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
  }

  /* ============ TOP STRIP ============ */
  .top-strip {
    background: var(--red);
    color: var(--white);
    padding: 8px 0;
    overflow: hidden;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .top-strip .scroll {
    display: inline-flex;
    gap: 50px;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
    padding-left: 50px;
  }

  .top-strip span { display: inline-flex; align-items: center; gap: 8px; }
  .top-strip .star { font-size: 12px; }

  @keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ============ HEADER ============ */
  header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--glass-bg);
    backdrop-filter: var(--glass-blur);
    -webkit-backdrop-filter: var(--glass-blur);
    border-bottom: 2px solid var(--red);
    padding: 14px 0;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
  }

  .header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 32px;
    align-items: center;
  }

  .logo {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 34px;
    letter-spacing: 3px;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    transition: transform 0.3s ease;
  }

  .logo:hover { transform: skewX(-3deg); }

  .logo-mark {
    width: 36px;
    height: 36px;
    background: var(--red);
    border-radius: 50%;
    position: relative;
    display: inline-block;
    box-shadow: 0 0 12px var(--red-glow);
  }

  .logo-mark::before {
    content: '';
    position: absolute;
    inset: 6px;
    border: 1px solid var(--bg);
    border-radius: 50%;
  }

  .logo-mark::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 6px;
    height: 6px;
    background: var(--bg);
    border-radius: 50%;
  }

  .logo .accent { color: var(--red); }

  /* Search */
  .search-wrap {
    display: flex;
    background: var(--bg);
    border: 1px solid var(--line-bright);
    overflow: hidden;
    max-width: 500px;
    margin: 0 auto;
    width: 100%;
    transition: all 0.3s ease;
  }

  .search-wrap:focus-within {
    border-color: var(--red);
    box-shadow: var(--shadow-red);
  }

  .search-wrap input {
    flex: 1;
    background: transparent;
    border: none;
    padding: 12px 18px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    outline: none;
  }

  .search-wrap input::placeholder { color: var(--text-muted); }

  .search-btn {
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 0 24px;
    cursor: pointer;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: background 0.2s ease;
  }

  .search-btn:hover { background: var(--red-bright); }

  .header-right { display: flex; gap: 10px; align-items: center; }

  /* Language switcher */
  .lang-toggle {
    display: flex;
    background: var(--bg);
    border: 1px solid var(--line-bright);
    overflow: hidden;
  }

  .lang-btn {
    background: transparent;
    border: none;
    padding: 8px 14px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    cursor: pointer;
    transition: all 0.2s ease;
  }

  .lang-btn.active {
    background: var(--red);
    color: var(--white);
  }

  .lang-btn:not(.active):hover { color: var(--red); }

  .icon-btn {
    width: 42px;
    height: 42px;
    background: var(--bg);
    border: 1px solid var(--line-bright);
    color: var(--text-soft);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    transition: all 0.2s ease;
    position: relative;
  }

  .icon-btn:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
  }

  .icon-btn .count {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--red);
    color: var(--white);
    width: 18px;
    height: 18px;
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Inter', sans-serif;
    border: 1px solid var(--bg);
  }

  /* ============ NAVIGATION ============ */
  .nav-bar {
    background: var(--bg-1);
    border-bottom: 1px solid var(--line);
    padding: 0;
  }

  .nav-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
    display: flex;
    justify-content: center;
    gap: 2px;
    overflow-x: auto;
  }

  .nav-inner a {
    font-family: 'Bebas Neue', sans-serif;
    color: var(--text-soft);
    text-decoration: none;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 20px;
    position: relative;
    transition: all 0.2s ease;
    white-space: nowrap;
  }

  .nav-inner a:hover, .nav-inner a.active {
    color: var(--white);
    background: var(--bg-2);
  }

  .nav-inner a.active { color: var(--red); }

  .nav-inner a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    box-shadow: 0 0 8px var(--red-glow);
  }

  .nav-inner a .en {
    color: var(--text-faint);
    font-size: 11px;
    margin-left: 4px;
    font-family: 'Inter', sans-serif;
    text-transform: none;
    letter-spacing: 0;
    font-weight: 400;
  }

  /* ============ HERO ============ */
  .hero {
    max-width: 1400px;
    margin: 32px auto;
    padding: 0 32px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
  }

  .hero-content { position: relative; z-index: 2; }

  .hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--red);
    color: var(--white);
    padding: 6px 16px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 15px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
    transform: skewX(-5deg);
  }

  .hero-tag .text { transform: skewX(5deg); }

  .hero-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 96px;
    line-height: 0.9;
    letter-spacing: -1px;
    color: var(--white);
    margin-bottom: 20px;
    text-transform: uppercase;
  }

  .hero-title .accent {
    color: var(--red);
    text-shadow: 0 0 30px var(--red-glow);
    display: inline-block;
    transform: skewX(-3deg);
  }

  .hero-title .marker {
    font-family: 'Permanent Marker', cursive;
    font-size: 42px;
    color: var(--yellow);
    display: block;
    margin-top: 8px;
    transform: rotate(-2deg);
  }

  .hero-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-soft);
    margin-bottom: 32px;
    max-width: 480px;
  }

  .hero-desc .en {
    display: block;
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 8px;
    font-style: italic;
  }

  .hero-cta { display: flex; gap: 12px; margin-bottom: 36px; }

  .btn {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 14px 32px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }

  .btn-primary {
    background: var(--red);
    color: var(--white);
    box-shadow: 0 4px 0 var(--red-deep);
    transform: skewX(-5deg);
  }

  .btn-primary span { transform: skewX(5deg); display: inline-block; }

  .btn-primary:hover {
    background: var(--red-bright);
    transform: skewX(-5deg) translateY(-2px);
    box-shadow: 0 6px 0 var(--red-deep);
  }

  .btn-ghost {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--line-bright);
  }

  .btn-ghost:hover {
    border-color: var(--red);
    color: var(--red);
  }

  .hero-stats {
    display: flex;
    gap: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
  }

  .stat .value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--red);
    line-height: 1;
    text-shadow: 0 0 10px var(--red-glow);
  }

  .stat .label {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-top: 4px;
  }

  /* ============ HERO VISUAL ============ */
  .hero-visual {
    position: relative;
    aspect-ratio: 4/5;
    overflow: hidden;
    border: 2px solid var(--line-bright);
    background: var(--bg-1);
  }

  .hero-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.2) saturate(0.8) brightness(0.85);
  }

  .hero-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(180deg, transparent 50%, rgba(13, 13, 13, 0.9));
    z-index: 2;
    pointer-events: none;
  }

  .hero-graffiti {
    position: absolute;
    bottom: 20px;
    left: 20px;
    font-family: 'Permanent Marker', cursive;
    font-size: 28px;
    color: var(--red);
    z-index: 3;
    transform: rotate(-3deg);
    text-shadow: 0 0 12px var(--red-glow);
  }

  .hero-sticker {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--yellow);
    color: var(--bg);
    padding: 8px 16px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 3;
    transform: rotate(8deg);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  }

  /* ============ SECTION HEAD ============ */
  .section-head {
    max-width: 1400px;
    margin: 80px auto 32px;
    padding: 0 32px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
  }

  .section-head .left { display: flex; align-items: baseline; gap: 16px; }

  .section-num {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    color: var(--red);
    letter-spacing: 2px;
    font-weight: 700;
  }

  .section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 52px;
    letter-spacing: 2px;
    color: var(--white);
    text-transform: uppercase;
    line-height: 0.95;
  }

  .section-title .accent {
    color: var(--red);
    text-shadow: 0 0 14px var(--red-glow);
  }

  .section-meta {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }

  .section-meta .blink { color: var(--red); animation: blink 1s steps(2) infinite; }

  @keyframes blink {
    0%, 50% { opacity: 1; }
    50.01%, 100% { opacity: 0; }
  }

  /* ============ CATEGORIES ============ */
  .categories {
    max-width: 1400px;
    margin: 0 auto 48px;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
  }

  .cat-tile {
    background: var(--bg-panel);
    border: 1px solid var(--line);
    padding: 28px 20px;
    text-align: center;
    text-decoration: none;
    color: var(--white);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
  }

  .cat-tile::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--red);
    transition: width 0.3s ease;
  }

  .cat-tile:hover {
    background: var(--bg-2);
    border-color: var(--red);
    transform: translateY(-4px) rotate(-1deg);
  }

  .cat-tile:hover::before { width: 100%; }

  .cat-icon {
    font-size: 40px;
    color: var(--red);
    margin-bottom: 12px;
    line-height: 1;
  }

  .cat-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 4px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }

  .cat-en {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 8px;
  }

  .cat-count {
    font-family: 'Inter', sans-serif;
    font-size: 11px;
    color: var(--red);
    font-weight: 600;
    letter-spacing: 0.5px;
  }

  /* ============ PRODUCTS (POSTER STYLE) ============ */
  .products {
    max-width: 1400px;
    margin: 0 auto 48px;
    padding: 0 32px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
  }

  .product {
    background: var(--bg-panel);
    border: 1px solid var(--line);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    cursor: pointer;
  }

  .product:nth-child(odd) { transform: rotate(-0.5deg); }
  .product:nth-child(even) { transform: rotate(0.5deg); }

  .product:hover {
    border-color: var(--red);
    transform: rotate(0deg) translateY(-6px);
    box-shadow: var(--shadow-deep), 0 0 20px var(--red-glow);
    z-index: 5;
  }

  .product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--red);
    color: var(--white);
    padding: 4px 12px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 3;
    transform: rotate(-5deg);
  }

  .product-badge.hot { background: var(--red); }
  .product-badge.new { background: var(--yellow); color: var(--bg); }
  .product-badge.sale { background: var(--white); color: var(--bg); }

  .product-sticker {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--bg);
    color: var(--red);
    border: 1px solid var(--red);
    padding: 3px 8px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 1px;
    z-index: 3;
    transform: rotate(5deg);
  }

  .product-image-wrap {
    aspect-ratio: 1/1;
    background: var(--bg);
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid var(--line);
  }

  .product-image-wrap::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(rgba(80, 80, 80, 0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(80, 80, 80, 0.06) 1px, transparent 1px);
    background-size: 20px 20px;
    pointer-events: none;
    z-index: 1;
  }

  .product-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    filter: contrast(1.1) saturate(0.85);
    position: relative;
    z-index: 2;
  }

  .product:hover .product-image { transform: scale(1.08) rotate(2deg); }

  .product-info { padding: 18px; }

  .product-cat {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: var(--red);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 6px;
    font-weight: 700;
  }

  .product-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 4px;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .product-name-en {
    font-size: 12px;
    color: var(--text-muted);
    margin-bottom: 12px;
  }

  .product-specs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
    padding: 8px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
  }

  .product-spec {
    font-family: 'Inter', sans-serif;
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 500;
  }

  .product-spec .v { color: var(--white); }

  .product-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .price-block { display: flex; flex-direction: column; }

  .price-old {
    font-size: 12px;
    color: var(--text-faint);
    text-decoration: line-through;
  }

  .price-new {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 30px;
    color: var(--red);
    line-height: 1;
    text-shadow: 0 0 8px var(--red-glow);
  }

  .price-new .cur {
    font-size: 16px;
    color: var(--text-muted);
    margin-right: 2px;
    text-shadow: none;
  }

  .add-btn {
    background: var(--red);
    color: var(--white);
    border: none;
    width: 42px;
    height: 42px;
    cursor: pointer;
    font-size: 22px;
    font-weight: 700;
    font-family: 'Bebas Neue', sans-serif;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .add-btn:hover {
    background: var(--white);
    color: var(--bg);
    transform: scale(1.1);
  }

  /* ============ PROMO BANNER ============ */
  .promo {
    max-width: 1400px;
    margin: 64px auto;
    padding: 0 32px;
  }

  .promo-frame {
    background:
      linear-gradient(135deg, var(--red) 0%, var(--red) 25%, transparent 25%),
      var(--bg-1);
    border: 2px solid var(--red);
    padding: 48px;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 32px;
    align-items: center;
    position: relative;
    overflow: hidden;
  }

  .promo-frame::before {
    content: 'ROCK';
    position: absolute;
    top: 10px;
    right: 30px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 120px;
    color: var(--red);
    opacity: 0.08;
    letter-spacing: 4px;
  }

  .promo-content { position: relative; z-index: 1; }

  .promo-tag {
    display: inline-flex;
    background: var(--bg);
    color: var(--red);
    border: 2px solid var(--red);
    padding: 6px 14px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 18px;
    transform: skewX(-5deg);
  }

  .promo-tag span { display: inline-block; transform: skewX(5deg); }

  .promo-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    line-height: 0.9;
    color: var(--white);
    margin-bottom: 10px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .promo-title .accent { color: var(--red); text-shadow: 0 0 20px var(--red-glow); }

  .promo-en {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 18px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .promo-desc {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: var(--text-soft);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 440px;
  }

  .promo-desc .en {
    display: block;
    color: var(--text-muted);
    font-size: 13px;
    margin-top: 6px;
    font-style: italic;
  }

  .promo-visual {
    aspect-ratio: 1/1;
    overflow: hidden;
    border: 2px solid var(--line-bright);
    position: relative;
  }

  .promo-visual img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.2) saturate(0.8) brightness(0.85);
  }

  .promo-visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
      linear-gradient(rgba(230, 57, 70, 0.08) 1px, transparent 1px),
      linear-gradient(90deg, rgba(230, 57, 70, 0.08) 1px, transparent 1px);
    background-size: 24px 24px;
    z-index: 1;
  }

  /* ============ BRANDS MARQUEE ============ */
  .brands {
    background: var(--bg-1);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 24px 0;
    margin: 60px 0;
    overflow: hidden;
    position: relative;
  }

  .brands::before, .brands::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none;
  }

  .brands::before { left: 0; background: linear-gradient(90deg, var(--bg-1), transparent); }
  .brands::after { right: 0; background: linear-gradient(270deg, var(--bg-1), transparent); }

  .brands-track {
    display: flex;
    gap: 60px;
    white-space: nowrap;
    animation: scroll 35s linear infinite;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 3px;
    color: var(--text-faint);
    text-transform: uppercase;
  }

  .brands-track span { display: inline-flex; align-items: center; gap: 60px; }
  .brands-track .accent { color: var(--red); }
  .brands-track .sep { color: var(--text-faint); font-size: 18px; }

  @keyframes scroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
  }

  /* ============ FEATURES ============ */
  .features {
    max-width: 1400px;
    margin: 64px auto;
    padding: 0 32px;
  }

  .features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 32px;
  }

  .feature-card {
    background: var(--bg-panel);
    border: 1px solid var(--line);
    padding: 24px 20px;
    transition: all 0.3s ease;
    position: relative;
  }

  .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--red);
  }

  .feature-card:hover {
    border-color: var(--red);
    background: var(--bg-2);
  }

  .feature-icon {
    font-size: 28px;
    color: var(--red);
    margin-bottom: 12px;
    line-height: 1;
  }

  .feature-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 20px;
    color: var(--white);
    margin-bottom: 4px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
  }

  .feature-en {
    font-size: 11px;
    color: var(--text-muted);
    margin-bottom: 8px;
  }

  .feature-desc {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.5;
  }

  /* ============ NEWSLETTER ============ */
  .newsletter {
    max-width: 1400px;
    margin: 64px auto;
    padding: 0 32px;
  }

  .newsletter-frame {
    background: var(--bg-1);
    border: 2px solid var(--red);
    padding: 48px;
    position: relative;
    overflow: hidden;
  }

  .newsletter-frame::before {
    content: '★';
    position: absolute;
    top: -20px;
    right: -20px;
    font-size: 140px;
    color: var(--red);
    opacity: 0.08;
  }

  .newsletter-content { position: relative; z-index: 1; max-width: 560px; margin: 0 auto; text-align: center; }

  .newsletter-tag {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--red);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
    font-weight: 700;
  }

  .newsletter h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    color: var(--white);
    margin-bottom: 8px;
    line-height: 1;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .newsletter h3 .accent { color: var(--red); }

  .newsletter .h3-en {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 16px;
    letter-spacing: 1px;
    text-transform: uppercase;
  }

  .newsletter p {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 15px;
    color: var(--text-soft);
    margin-bottom: 28px;
    line-height: 1.6;
  }

  .newsletter-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    background: var(--bg);
    border: 1px solid var(--line-bright);
  }

  .newsletter-form input {
    flex: 1;
    border: none;
    background: transparent;
    padding: 14px 20px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: var(--text);
    outline: none;
  }

  .newsletter-form input::placeholder { color: var(--text-muted); }

  .newsletter-form button {
    background: var(--red);
    color: var(--white);
    border: none;
    padding: 14px 24px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 0.2s ease;
  }

  .newsletter-form button:hover { background: var(--red-bright); }

  /* ============ FOOTER ============ */
  footer {
    background: var(--bg-1);
    border-top: 2px solid var(--red);
    padding: 48px 0 24px;
    margin-top: 48px;
    position: relative;
  }

  .footer-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 32px;
  }

  .footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--line);
  }

  .footer-brand .logo { margin-bottom: 14px; }

  .footer-brand p {
    font-size: 13px;
    color: var(--text-soft);
    line-height: 1.7;
    max-width: 320px;
    margin-bottom: 6px;
  }

  .footer-brand p.en {
    color: var(--text-muted);
    font-size: 11px;
    font-style: italic;
  }

  .footer-col h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: var(--red);
    margin-bottom: 12px;
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  .footer-col ul { list-style: none; }
  .footer-col li { margin-bottom: 8px; }

  .footer-col a {
    color: var(--text-soft);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
  }

  .footer-col a:hover { color: var(--red); }

  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: var(--text-muted);
    letter-spacing: 1px;
  }

  .footer-socials { display: flex; gap: 8px; }

  .footer-socials a {
    width: 36px;
    height: 36px;
    background: var(--bg-panel);
    border: 1px solid var(--line);
    color: var(--text-soft);
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transition: all 0.2s ease;
  }

  .footer-socials a:hover {
    background: var(--red);
    color: var(--white);
    border-color: var(--red);
  }

  /* ============ ANIMATIONS ============ */
  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .hero-content > * { animation: fadeIn 0.6s ease backwards; }
  .hero-content > *:nth-child(1) { animation-delay: 0.1s; }
  .hero-content > *:nth-child(2) { animation-delay: 0.2s; }
  .hero-content > *:nth-child(3) { animation-delay: 0.3s; }
  .hero-content > *:nth-child(4) { animation-delay: 0.4s; }
  .hero-content > *:nth-child(5) { animation-delay: 0.5s; }
  .hero-content > *:nth-child(6) { animation-delay: 0.6s; }

  /* ============ RESPONSIVE ============ */
  @media (max-width: 1024px) {
    .hero { grid-template-columns: 1fr; gap: 32px; }
    .hero-title { font-size: 64px; }
    .categories { grid-template-columns: repeat(2, 1fr); }
    .products { grid-template-columns: repeat(2, 1fr); }
    .promo-frame { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }

  @media (max-width: 768px) {
    .header-inner { grid-template-columns: auto auto; gap: 12px; padding: 0 20px; }
    .search-wrap { display: none; }
    .logo { font-size: 26px; }
    .nav-inner { gap: 0; padding: 0 20px; }
    .nav-inner a { font-size: 14px; padding: 12px 10px; letter-spacing: 1px; }
    .hero { padding: 0 20px; margin: 24px auto; }
    .hero-title { font-size: 48px; }
    .hero-cta { flex-direction: column; }
    .btn { width: 100%; justify-content: center; }
    .hero-stats { flex-wrap: wrap; gap: 16px; }
    .section-head { padding: 0 20px; }
    .section-title { font-size: 36px; }
    .categories, .products, .features, .newsletter, .promo { padding: 0 20px; }
    .categories { grid-template-columns: 1fr; }
    .products { grid-template-columns: 1fr; }
    .product:nth-child(odd), .product:nth-child(even) { transform: none; }
    .promo-frame { padding: 32px 20px; }
    .promo-title { font-size: 40px; }
    .features-grid { grid-template-columns: 1fr; }
    .newsletter-frame { padding: 32px 20px; }
    .newsletter h3 { font-size: 32px; }
    .newsletter-form { flex-direction: column; }
    .footer-inner { padding: 0 20px; }
    .footer-top { grid-template-columns: 1fr; gap: 24px; }
    .footer-bottom { flex-direction: column; text-align: center; }
  }