  *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }


  :root {
    --red: #ff0000;
    --pink: #8B5CF6;
    --black: #060606;
    --dark: #0e0e0e;
    --card: #131313;
    --border: #1e1e1e;
    --white: #ffffff;
    --muted: #555;
    --dim: #888;
    --text: #ccc;
  }

  .ampup-flavor-wall {
    background: var(--black);
    color: var(--text);
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
  }

  /* ── HERO ── */
  .hero {
    background: var(--black);
    padding: 52px 48px 44px;
    border-bottom: 2px solid #1a1a1a;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
  }

  .hero-left {}

  .hero-eyebrow {
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 10px;
  }

  .hero-headline {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(48px, 9vw, 100px);
    line-height: 0.92;
    color: var(--white);
    letter-spacing: 3px;
  }

  .hero-headline .red { color: var(--red); }

  .hero-tagline {
    font-family: 'Oswald', sans-serif;
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 4px;
    color: var(--muted);
    margin-top: 16px;
    text-transform: uppercase;
  }

  .hero-right {
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
  }

  .product-stat {
    text-align: right;
  }

  .ps-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    line-height: 1;
  }

  .ps-label {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--muted);
    text-transform: uppercase;
  }

  .ps-bar { color: #ff4444; }
  .ps-pie { color: #8B5CF6; }
  .ps-f15 { color: #4fc3f7; }

  .enemy {
    background: var(--red);
    text-align: center;
    padding: 12px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(13px, 2.5vw, 20px);
    letter-spacing: 8px;
    color: var(--white);
  }

  /* ── PRODUCT BLOCK ── */
  .product-block {
    padding: 0 0 56px;
  }

  /* Product header bar */
  .product-header {
    padding: 28px 48px 22px;
    border-bottom: 1px solid var(--border);
    display: flex;
    align-items: baseline;
    gap: 20px;
    flex-wrap: wrap;
    position: sticky;
    top: 0;
    z-index: 10;
  }

  .ph-bars   { background: #0a0505; border-top: 3px solid #ff4444; }
  .ph-pies   { background: #0a0508; border-top: 3px solid var(--pink); }
  .ph-f15    { background: #04080a; border-top: 3px solid #4fc3f7; }

  .ph-name {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(24px, 4vw, 40px);
    letter-spacing: 2px;
    color: var(--white);
  }

  .ph-count {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(20px, 3vw, 30px);
    letter-spacing: 1px;
  }

  .ph-bars .ph-count  { color: #ff4444; }
  .ph-pies .ph-count  { color: var(--pink); }
  .ph-f15  .ph-count  { color: #4fc3f7; }

  .ph-sub {
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--muted);
    text-transform: uppercase;
    margin-left: auto;
    align-self: center;
  }

  /* ── FLAVOR WALL ── */
  .flavor-wall {
    padding: 20px 48px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
  }

  .ftag {
    font-size: 11px;
    font-weight: 400;
    letter-spacing: 0.3px;
    color: var(--dim);
    background: var(--card);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 5px 10px;
    white-space: nowrap;
    transition: color 0.15s, border-color 0.12s;
    cursor: default;
    line-height: 1.2;
  }

  .ftag:hover { color: var(--white); }

  /* Color accent on hover per product */
  .wall-bars .ftag:hover   { border-color: #ff4444; }
  .wall-pies .ftag:hover   { border-color: var(--pink); }
  .wall-f15  .ftag:hover   { border-color: #4fc3f7; }

  /* Category label inside wall */
  .cat-divider {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 14px 0 8px;
  }

  .cat-divider span {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 3px;
    color: var(--muted);
    white-space: nowrap;
  }

  .cat-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
  }

  /* ── FOOTER TOTAL ── */
  .grand-total {
    text-align: center;
    padding: 48px 32px;
    border-top: 1px solid var(--border);
  }

  .gt-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: clamp(60px, 12vw, 120px);
    color: var(--red);
    line-height: 1;
  }

  .gt-label {
    font-size: 12px;
    letter-spacing: 4px;
    color: var(--muted);
    text-transform: uppercase;
    margin-top: 8px;
  }

  .gt-sub {
    font-size: 11px;
    color: var(--muted);
    letter-spacing: 2px;
    margin-top: 6px;
    text-transform: uppercase;
  }

  @media (max-width: 640px) {
    .hero { padding: 32px 20px 28px; }
    .hero-right { align-items: flex-start; flex-direction: row; flex-wrap: wrap; gap: 20px; }
    .product-header { padding: 20px 20px 16px; }
    .flavor-wall { padding: 16px 20px 0; }
    .ph-sub { display: none; }
  }