
  /* ── BASE ── */
  .vk-pg {
    position: relative;
    padding: 80px 44px;
    background: #000000;
    overflow: hidden;
    isolation: isolate;
  }
  .vk-pg--alt {
    background: #070707;
  }

  /* ── GRAIN ── */
  .vk-pg__grain {
    position: absolute;
    inset: 0;
    z-index: 0;
    opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-size: 180px;
    pointer-events: none;
  }

  /* ── HEADER ── */
  .vk-pg__top {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
  }

  .vk-pg__eye {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #AAFF00;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .vk-pg__eye-line {
    width: 22px;
    height: 2px;
    background: #AAFF00;
    display: block;
    flex-shrink: 0;
    border-radius: 1px;
  }

  .vk-pg__title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(38px, 5vw, 60px);
    line-height: 0.92;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: #FFFFFF;
    margin: 0;
  }

  .vk-pg__viewall {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #777777;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    white-space: nowrap;
    flex-shrink: 0;
    margin-bottom: 6px;
    transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
  }
  .vk-pg__viewall:hover {
    color: #AAFF00;
    border-color: rgba(170,255,0,0.3);
    background: rgba(170,255,0,0.04);
  }
  .vk-pg__viewall svg {
    transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .vk-pg__viewall:hover svg {
    transform: translateX(3px);
  }

  /* ── GRID ── */
  .vk-pg__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    position: relative;
    z-index: 1;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(255,255,255,0.03);
  }

  /* ── CARD ── */
  .vk-pg__card {
    position: relative;
    background: #0A0A0A;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    overflow: hidden;
    transition: background 0.35s ease;
  }
  .vk-pg--alt .vk-pg__card {
    background: #0D0D0D;
  }
  .vk-pg__card:hover {
    background: #111111;
  }

  /* ── SHIMMER ── */
  .vk-pg__shimmer {
    position: absolute;
    inset: 0;
    z-index: 5;
    pointer-events: none;
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  .vk-pg__shimmer::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(105deg, transparent 20%, rgba(170,255,0,0.04) 40%, rgba(170,255,0,0.08) 50%, rgba(170,255,0,0.04) 60%, transparent 80%);
    transform: skewX(-15deg);
  }
  .vk-pg__card:hover .vk-pg__shimmer { opacity: 1; }
  .vk-pg__card:hover .vk-pg__shimmer::before {
    animation: vk-pg-sweep 0.8s ease forwards;
  }
  @keyframes vk-pg-sweep {
    0%   { left: -100%; }
    100% { left: 150%; }
  }

  /* Lime top accent */
  .vk-pg__card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 3px;
    background: linear-gradient(90deg, #AAFF00, #88DD00);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 6;
  }
  .vk-pg__card:hover::before {
    transform: scaleX(1);
  }

  /* ── IMAGE WRAP ── */
  .vk-pg__img-wrap {
    position: relative;
    height: 270px;
    background: radial-gradient(ellipse at 50% 60%, #181818 0%, #0a0a0a 65%, #000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    text-decoration: none;
  }

  /* Spotlight */
  .vk-pg__img-wrap::before {
    content: '';
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 120px;
    height: 180px;
    background: radial-gradient(ellipse at 50% 0%, rgba(255,255,255,0.04) 0%, transparent 70%);
    pointer-events: none;
    z-index: 1;
  }

  /* Floor glow */
  .vk-pg__img-wrap::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 70px;
    background: linear-gradient(to top, rgba(170,255,0,0.0), transparent);
    transition: background 0.35s ease;
    pointer-events: none;
    z-index: 1;
  }
  .vk-pg__card:hover .vk-pg__img-wrap::after {
    background: linear-gradient(to top, rgba(170,255,0,0.08), transparent);
  }

  /* Ambient glow */
  .vk-pg__img-glow {
    position: absolute;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(170,255,0,0.06), transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0;
    transition: opacity 0.5s ease, transform 0.5s ease;
    pointer-events: none;
    z-index: 0;
  }
  .vk-pg__card:hover .vk-pg__img-glow {
    opacity: 1;
    transform: translate(-50%, -50%) scale(2.5);
  }

  .vk-pg__img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.45s ease;
    filter: drop-shadow(0 12px 28px rgba(0,0,0,0.85));
    position: relative;
    z-index: 2;
  }
  .vk-pg__card:hover .vk-pg__img-wrap img {
    transform: scale(1.07) translateY(-5px);
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.9)) drop-shadow(0 0 18px rgba(170,255,0,0.08));
  }

  .vk-pg__placeholder {
    width: 50%;
    height: 50%;
    opacity: 0.12;
  }

  /* ── BADGE ── */
  .vk-pg__badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: #AAFF00;
    color: #000000;
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 8px;
    font-weight: 900;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 4;
    box-shadow: 0 2px 8px rgba(170,255,0,0.2);
  }
  .vk-pg__badge--white {
    background: #FFFFFF;
    color: #000000;
    box-shadow: 0 2px 8px rgba(255,255,255,0.15);
  }

  /* ── INFO ── */
  .vk-pg__info {
    padding: 22px 24px 26px;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
  }

  .vk-pg__brand {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #AAFF00;
    margin-bottom: 6px;
  }

  .vk-pg__name-link { text-decoration: none; }
  .vk-pg__name {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 14px;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1.35;
    margin-bottom: 10px;
    flex: 1;
    transition: color 0.3s ease;
  }
  .vk-pg__card:hover .vk-pg__name {
    color: #EEEEEE;
  }

  /* ── PRICE ── */
  .vk-pg__price-from {
    display: block;
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 9px;
    font-weight: 600;
    color: #666;
    text-transform: uppercase;
    letter-spacing: .06em;
    line-height: 1;
    margin-bottom: 2px;
  }

  /* ── TAGS ── */
  .vk-pg__tags {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 18px;
  }
  .vk-pg__tag {
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 9px;
    font-weight: 600;
    color: #888888;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    padding: 3px 9px;
    border-radius: 4px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: border-color 0.3s ease, color 0.3s ease;
  }
  .vk-pg__card:hover .vk-pg__tag {
    border-color: rgba(170,255,0,0.12);
    color: #AAAAAA;
  }

  /* ── FOOTER ── */
  .vk-pg__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: auto;
  }

  .vk-pg__price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 0.03em;
    color: #FFFFFF;
    line-height: 1;
  }

  /* ── ADD TO CART BUTTON ── */
  .vk-pg__atc {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 18px;
    background: #AAFF00;
    color: #000000;
    font-family: 'Inter', -apple-system, sans-serif;
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 2px 10px rgba(170,255,0,0.15);
  }
  .vk-pg__card:hover .vk-pg__atc {
    background: #BBFF33;
    box-shadow: 0 4px 20px rgba(170,255,0,0.25);
    transform: scale(1.03);
  }
  button.vk-pg__atc:focus-visible {
    outline: 2px solid #AAFF00;
    outline-offset: 2px;
  }

  /* ATC states */
  .vk-pg__atc-idle,
  .vk-pg__atc-loading,
  .vk-pg__atc-done {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .vk-pg__atc--sold-out {
    background: #333;
    color: #888;
    cursor: not-allowed;
    box-shadow: none;
  }
  .vk-pg__card:hover .vk-pg__atc--sold-out {
    background: #333;
    box-shadow: none;
    transform: none;
  }

  /* Spinner */
  @keyframes vk-pg-spin {
    to { transform: rotate(360deg); }
  }
  .vk-pg__spinner {
    animation: vk-pg-spin 0.6s linear infinite;
  }

  /* ── DIVIDER ── */
  .vk-pg__divider {
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(170,255,0,0.25) 25%, rgba(170,255,0,0.4) 50%, rgba(170,255,0,0.25) 75%, transparent 100%);
  }

  /* ── SCROLL REVEAL ── */
  .vk-pg-reveal {
    opacity: 0;
    transform: translateY(24px) scale(0.97);
    transition:
      opacity 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94),
      transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition-delay: calc(var(--pg-i, 0) * 0.1s);
  }
  .vk-pg-reveal.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
  }

  /* ── RESPONSIVE ── */
  @media (max-width: 1100px) {
    .vk-pg { padding: 64px 32px; }
    .vk-pg__img-wrap { height: 230px; }
  }

  @media (max-width: 860px) {
    .vk-pg__grid { grid-template-columns: repeat(2, 1fr) !important; }
    .vk-pg { padding: 56px 24px; }
    .vk-pg__img-wrap { height: 220px; }
    .vk-pg__grid { border-radius: 10px; }
  }

  @media (max-width: 520px) {
    .vk-pg { padding: 48px 16px; }
    .vk-pg__top {
      flex-direction: column;
      align-items: flex-start;
      gap: 14px;
    }

    /* Horizontal scroll slider — 2 cards visible, swipe for more */
    .vk-pg__grid {
      display: flex !important;
      flex-wrap: wrap;
      gap: 10px;
      overflow-x: auto;
      overflow-y: hidden;
      scroll-snap-type: x mandatory;
      -webkit-overflow-scrolling: touch;
      padding-bottom: 8px;
      margin: 0 -16px;
      padding-left: 16px;
      padding-right: 16px;
      border-radius: 0 !important;
    }

    /* Hide scrollbar */
    .vk-pg__grid::-webkit-scrollbar { display: none; }
    .vk-pg__grid { -ms-overflow-style: none; scrollbar-width: none; }

    /* Each card = just under half so 2 show at once */
    .vk-pg__card {
      min-width: calc(50% - 13px);
      max-width: calc(50% - 13px);
      flex-shrink: 0;
      scroll-snap-align: start;
    }

    /* Make cards display in pairs — every 2 cards snap together */
    .vk-pg__grid {
      flex-wrap: nowrap;
    }

    .vk-pg__img-wrap { height: 170px; }
    .vk-pg__img-wrap img { padding: 12px; }
    .vk-pg__info { padding: 14px 14px 18px; }
    .vk-pg__brand { font-size: 8px; margin-bottom: 4px; }
    .vk-pg__name {
      font-size: 12px;
      margin-bottom: 6px;
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
    }
    .vk-pg__tags { gap: 3px; margin-bottom: 12px; }
    .vk-pg__tag { font-size: 7px; padding: 2px 6px; }
    .vk-pg__price { font-size: 22px; }
    .vk-pg__footer { flex-direction: column; gap: 8px; align-items: stretch; }
    .vk-pg__atc {
      font-size: 9px;
      padding: 10px 12px;
      gap: 6px;
      width: 100%;
      justify-content: center;
      border-radius: 8px;
    }
    .vk-pg__atc span { display: inline; }
    .vk-pg__atc svg { width: 14px; height: 14px; }
    .vk-pg__badge { font-size: 7px; padding: 3px 7px; top: 10px; left: 10px; }
  }

  @media (max-width: 375px) {
    .vk-pg { padding: 40px 12px; }
    .vk-pg__grid {
      margin: 0 -12px;
      padding-left: 12px;
      padding-right: 12px;
    }
    .vk-pg__card {
      min-width: calc(50% - 11px);
      max-width: calc(50% - 11px);
    }
    .vk-pg__img-wrap { height: 145px; }
    .vk-pg__name { font-size: 11px; }
    .vk-pg__price { font-size: 20px; }
    .vk-pg__info { padding: 12px 12px 16px; }
  }

  /* ── ACCESSIBILITY ── */
  @media (prefers-reduced-motion: reduce) {
    .vk-pg-reveal { opacity: 1; transform: none; transition: none; }
    .vk-pg__card::before { transition: none; }
    .vk-pg__img-wrap img { transition: none; }
    .vk-pg__shimmer::before { animation: none; }
    .vk-pg__img-glow { transition: none; }
    .vk-pg__atc { transition: none; }
    .vk-pg__spinner { animation: none; }
  }
