/** Shopify CDN: Minification failed

Line 631:4 Unexpected "{"
Line 631:5 Expected identifier but found "%"
Line 631:49 Unexpected "{"
Line 631:50 Expected identifier but found "%"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:benchmarks (INDEX:2) */
.benchmarks {
    padding: 6rem 0;
    background: var(--amd-surface, #111111);
    position: relative;
  }

  .benchmarks::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(226, 43, 42, 0.4), transparent);
  }

  .benchmarks__layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 4rem;
    align-items: start;
  }

 /* --- NEW STYLES: IMAGE WITH BORDER TEXT --- */
  .benchmarks__image-container {
    margin-bottom: 2.5rem;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(226, 43, 42, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px rgba(226, 43, 42, 0.1);
    width: 100%;
    height: 350px; 
    background: #050505; 
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    position: relative;
  }
  
  .benchmarks__image-side {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(226, 43, 42, 0.1) 0%, rgba(10, 10, 10, 0.9) 100%);
    position: relative;
    min-width: 60px;
    overflow: hidden;
  }

  /* High-energy diagonal tech pattern overlay */
  .benchmarks__image-side::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-image: repeating-linear-gradient(
      -45deg,
      transparent,
      transparent 4px,
      rgba(226, 43, 42, 0.04) 4px,
      rgba(226, 43, 42, 0.04) 8px
    );
    pointer-events: none;
  }

  /* Glowing separator borders and inset shadows for depth */
  .benchmarks__image-side--left {
    border-right: 2px solid rgba(226, 43, 42, 0.8);
    box-shadow: inset -15px 0 25px -10px rgba(226, 43, 42, 0.3);
  }

  .benchmarks__image-side--right {
    border-left: 2px solid rgba(226, 43, 42, 0.8);
    box-shadow: inset 15px 0 25px -10px rgba(226, 43, 42, 0.3);
  }

  /* Illuminated LED text effect */
  .benchmarks__side-text {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    color: #ffffff;
    font-size: 0.9rem;
    font-weight: 700;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    white-space: nowrap;
    text-shadow: 0 0 10px rgba(226, 43, 42, 0.9), 0 0 20px rgba(226, 43, 42, 0.5);
    z-index: 2;
  }

  .benchmarks__featured-image {
    width: 60%;
    max-width: 450px;
    height: 100%;
    display: block;
    object-fit: contain;
    padding: 1.5rem;
    z-index: 1;
  }
  /* ------------------------------------------ */

  .benchmarks__legend {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
  }

  .benchmarks__legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
  }

  .benchmarks__legend-item::before {
    content: '';
    width: 12px;
    height: 12px;
    border-radius: 2px;
    flex-shrink: 0;
  }

  .benchmarks__legend-item--amd::before {
    background: var(--amd-red, #e22b2a);
  }

  .benchmarks__legend-item--competitor::before {
    background: rgba(255, 255, 255, 0.2);
  }

  .benchmarks__bars {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
  }

  .benchmark-bar__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
  }

  .benchmark-bar__title {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
  }

  .benchmark-bar__scores {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
  }

  .benchmark-bar__score--amd {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-weight: 700;
    color: var(--amd-red, #e22b2a);
  }

  .benchmark-bar__score--competitor {
    color: rgba(255, 255, 255, 0.4);
  }

  .benchmark-bar__vs {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .benchmark-bar__track {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .benchmark-bar__fill {
    height: 8px;
    border-radius: 2px;
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .in-view .benchmark-bar__fill {
    transform: scaleX(1);
  }

  .benchmark-bar__fill--amd {
    width: var(--bar-width, 0%);
    background: linear-gradient(90deg, var(--amd-red, #e22b2a) 0%, #ff6b35 100%);
    box-shadow: 0 0 8px rgba(226, 43, 42, 0.4);
  }

  .benchmark-bar__fill--competitor {
    width: var(--bar-width, 0%);
    background: rgba(255, 255, 255, 0.15);
  }

  .benchmarks__disclaimer {
    margin-top: 2rem;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3);
    line-height: 1.6;
  }

  .benchmarks__callout {
    position: sticky;
    top: 2rem;
  }

  .benchmarks__callout-inner {
    background: rgba(226, 43, 42, 0.07);
    border: 1px solid rgba(226, 43, 42, 0.2);
    border-radius: 8px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }

  .benchmarks__callout-icon {
    color: var(--amd-red, #e22b2a);
    margin-bottom: 0.25rem;
  }

  .benchmarks__callout-heading {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-foreground, #fff);
    line-height: 1.3;
  }

  .benchmarks__callout-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
  }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  @media (max-width: 1024px) {
    .benchmarks__layout {
      grid-template-columns: 1fr;
      gap: 3rem;
    }

    .benchmarks__callout {
      position: static;
    }
  }

  @media (max-width: 600px) {
    .benchmarks {
      padding: 4rem 0;
    }
    
    .benchmarks__side-text {
      font-size: 0.65rem; /* Scales down text on mobile */
    }
    
    .benchmarks__featured-image {
      width: 50%;
    }
  }

  @media (max-width: 1023px) {
    .benchmark-bar__fill--amd {
      box-shadow: none;
    }
  }
/* END_SECTION:benchmarks */

/* START_SECTION:bestsellers-carousel (INDEX:3) */
.bestsellers {
    padding: 6rem 0;
    background: var(--color-background, #080808);
  }

  .bestsellers__wrap {
    position: relative;
  }

  .bestsellers__track {
    display: grid;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 4.5rem) / 4);
    gap: 1.5rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 0.5rem;
  }

  .bestsellers__track::-webkit-scrollbar { display: none; }

  .bestsellers__arrow {
    position: absolute;
    top: 50%;
    transform: translateY(calc(-50% - 0.25rem));
    width: 44px;
    height: 44px;
    background: rgba(17, 17, 17, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: background 0.2s ease, border-color 0.2s ease;
  }

  .bestsellers__arrow:hover {
    background: var(--amd-red, #e22b2a);
    border-color: var(--amd-red, #e22b2a);
  }

  .bestsellers__arrow[disabled] {
    opacity: 0.25;
    pointer-events: none;
  }

  .bestsellers__arrow--prev { left: -22px; }
  .bestsellers__arrow--next { right: -22px; }

  .product-tile {
    scroll-snap-align: start;
    text-decoration: none;
    color: var(--color-foreground, #fff);
    display: flex;
    flex-direction: column;
    background: var(--amd-surface, #111111);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease;
  }

  .product-tile:hover {
    border-color: rgba(226, 43, 42, 0.35);
    transform: translateY(-4px);
  }

  .product-tile__media {
    position: relative;
    aspect-ratio: 1;
    background: #0d0d0d;
    overflow: hidden;
  }

  .product-tile__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .product-tile:hover .product-tile__image {
    transform: scale(1.06);
  }

  .product-tile__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .product-tile__badge {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    background: var(--amd-red, #e22b2a);
    color: #fff;
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 0.58rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.22rem 0.55rem;
    border-radius: 2px;
  }

  .product-tile__info {
    padding: 0.9rem 1rem 1.1rem;
    display: flex;
    flex-direction: column;
    gap: 0.28rem;
    flex: 1;
  }

  .product-tile__vendor {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amd-red, #e22b2a);
  }

  .product-tile__title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-foreground, #fff);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .product-tile__price {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.35rem;
    flex-wrap: wrap;
  }

  .product-tile__price--regular,
  .product-tile__price--sale {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-foreground, #fff);
  }

  .product-tile__price--sale {
    color: var(--amd-red, #e22b2a);
  }

  .product-tile__price--original {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: line-through;
  }

  @media (max-width: 1024px) {
    .bestsellers__track {
      grid-auto-columns: calc((100% - 3rem) / 3);
    }
  }

  @media (max-width: 768px) {
    .bestsellers {
      padding: 4rem 0;
    }

    .bestsellers__track {
      grid-auto-columns: calc((100% - 1.5rem) / 2);
    }

    .bestsellers__arrow { display: none; }
  }

  @media (max-width: 480px) {
    .bestsellers__track {
      grid-auto-columns: 75%;
    }
  }
/* END_SECTION:bestsellers-carousel */

/* START_SECTION:collection (INDEX:6) */
/* ─── Immersive Premium Gradient Background ─── */
  .cl-page {
    padding: 2rem 20px 5rem;
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    background: radial-gradient(circle at 50% 0%, #1a0606 0%, #0a0a0a 45%, #040404 100%) !important;
    min-height: 100vh;
  }

  /* ─── Header Styling ─── */
  .cl-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 2rem 0 1rem;
    border-bottom: 1px solid rgba(226, 43, 42, 0.2);
    flex-wrap: wrap;
    gap: 1rem;
  }

  .cl-header__title {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: clamp(1.6rem, 3vw, 2.3rem);
    font-weight: 900;
    color: #fff;
    margin: 0;
    line-height: 1.15;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-shadow: 0 0 15px rgba(226, 43, 42, 0.35);
  }

  .cl-header__desc {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    margin: 0.5rem 0 0;
    line-height: 1.6;
    max-width: 600px;
  }

  /* ─── Sort Bar ─── */
  .cl-bar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
  }

  .cl-sort__select {
    appearance: none;
    -webkit-appearance: none;
    background: #0f0f0f;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    color: #ffffff;
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.55rem 2.2rem 0.55rem 0.85rem;
    cursor: pointer;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
  }
  .cl-sort__select:focus { 
    border-color: #e22b2a; 
    box-shadow: 0 0 10px rgba(226, 43, 42, 0.25);
  }

  /* ─── Optimized 6-Column Grid Layout ─── */
  .cl-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
  }

  /* ─── Upgraded Cybernetic Product Card with Incandescent Red Light Glow ─── */
  .cl-card {
    display: flex;
    flex-direction: column;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.04);
    border-radius: 6px;
    overflow: hidden;
    padding: 10px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.65);
    transition: border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), 
                box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .cl-card:hover {
    border-color: rgba(226, 43, 42, 0.65);
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.85), 0 0 15px rgba(226, 43, 42, 0.25);
  }

  /* ─── Microframe Media Bay & Dual Image Swap Transitions ─── */
  .cl-card__media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #050505;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.02);
    overflow: hidden;
  }

  .cl-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s cubic-bezier(0.25, 1, 0.5, 1), 
                opacity 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  }

  /* Stack layout for primary/secondary imaging */
  .cl-card__media--has-hover .cl-card__img--hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transform: scale(1.02);
  }

  /* Hover Actions: Swap images while triggering smooth zoom expansion */
  .cl-card:hover .cl-card__img--primary {
    transform: scale(1.05);
    {% if product.images.size > 1 %} opacity: 0; {% endif %}
  }

  .cl-card:hover .cl-card__media--has-hover .cl-card__img--hover {
    opacity: 1;
    transform: scale(1.05);
  }

  .cl-card__img-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #050505;
  }

  /* ─── Floating Tactical UI Elements ─── */
  .cl-card__badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.25rem 0.5rem;
    border-radius: 3px;
    line-height: 1;
    z-index: 3;
    box-shadow: 0 4px 10px rgba(0,0,0,0.4);
  }
  .cl-card__badge--sale {
    background: var(--amd-red, #e22b2a);
    color: #fff;
  }
  .cl-card__badge--sold {
    background: rgba(40, 40, 40, 0.85);
    color: rgba(255,255,255,0.5);
    border: 1px solid rgba(255,255,255,0.1);
  }

  /* Dynamic Sliding View Product Action Strip */
  .cl-card__cta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: center;
    background: linear-gradient(90deg, #b81d1c 0%, #e22b2a 50%, #b81d1c 100%);
    color: #fff;
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    padding: 0.65rem;
    transform: translateY(100%);
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    z-index: 4;
    box-shadow: 0 -4px 15px rgba(0,0,0,0.35);
  }
  .cl-card:hover .cl-card__cta { transform: translateY(0); }

  /* ─── Typography & Product Matrix Copy ─── */
  .cl-card__info {
    padding: 0.65rem 0.4rem 0.3rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex: 1;
  }

  .cl-card__vendor {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 0.58rem;
    font-weight: 800;
    color: var(--amd-red, #e22b2a);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    line-height: 1;
  }

  .cl-card__title {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    color: #e0e0e0;
    line-height: 1.35;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.7em; /* Fix row sync issues across titles */
  }

  .cl-card__title-link {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .cl-card__title-link:hover { color: #ffffff; }

  .cl-card__price-row {
    display: flex;
    align-items: baseline;
    gap: 0.4rem;
    margin-top: auto; /* Push price blocks cleanly to baseline boundary */
    padding-top: 0.4rem;
  }

  .cl-card__price {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 0.95rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.02em;
  }
  .cl-card__price--sale { 
    color: #ffffff;
    text-shadow: 0 0 8px rgba(226, 43, 42, 0.35);
  }

  .cl-card__price-compare {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.3);
    text-decoration: line-through;
  }

  /* ─── Premium Pagination Interface ─── */
  .cl-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 3rem 0 1rem;
    flex-wrap: wrap;
  }

  .cl-pagination .page a,
  .cl-pagination .next a,
  .cl-pagination .prev a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 0.6rem;
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 0.75rem;
    font-weight: 700;
    color: rgba(255,255,255,0.6);
    background: #0a0a0a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.25s ease;
  }

  .cl-pagination .page a:hover,
  .cl-pagination .next a:hover,
  .cl-pagination .prev a:hover {
    background: rgba(226, 43, 42, 0.12);
    border-color: rgba(226, 43, 42, 0.5);
    color: #ffffff;
    box-shadow: 0 0 10px rgba(226, 43, 42, 0.2);
  }

  .cl-pagination .page.current {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 0.6rem;
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 0.75rem;
    font-weight: 900;
    background: var(--amd-red, #e22b2a);
    border: 1px solid var(--amd-red, #e22b2a);
    border-radius: 4px;
    color: #fff;
    box-shadow: 0 0 12px rgba(226, 43, 42, 0.4);
  }

  /* ─── Media Breakpoints Custom Matching ─── */
  @media (max-width: 1400px) {
    .cl-grid { grid-template-columns: repeat(5, 1fr); }
  }

  @media (max-width: 1100px) {
    .cl-grid { grid-template-columns: repeat(4, 1fr); }
  }

  @media (max-width: 850px) {
    .cl-grid { grid-template-columns: repeat(3, 1fr); gap: 0.8rem; }
  }

  @media (max-width: 580px) {
    .cl-grid { grid-template-columns: repeat(2, 1fr); gap: 0.65rem; }
    .cl-page { padding-left: 12px; padding-right: 12px; }
    .cl-card { padding: 8px; }
    .cl-card__title { font-size: 0.74rem; height: 2.7em; }
    .cl-card__price { font-size: 0.88rem; }
  }
/* END_SECTION:collection */

/* START_SECTION:collections (INDEX:7) */
.tactical-page-title {
    font-family: 'Orbitron', sans-serif;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
  }

  .collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 180px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }

  /* Structural Card Layout */
  .tactical-collection-card {
    position: relative;
    background: #0d0d0d;
    border: 1px solid #222;
    overflow: hidden;
    border-radius: 4px;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .tactical-card-inner {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
  }

  /* Aspect Ratio Lock (Creates perfect square grid blocks) */
  .tactical-image-container {
    position: relative;
    width: 100%;
    padding-top: 100%; 
    overflow: hidden;
    background: #000;
  }

  .tactical-image-container .tactical-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }

  /* Vignette & Contrast Overlay */
  .tactical-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.3) 60%, rgba(0, 0, 0, 0.5) 100%);
    z-index: 1;
    transition: background 0.4s ease;
  }

  /* Typography Settings */
  .tactical-card-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 20px;
    z-index: 2;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .tactical-collection-title {
    margin: 0;
    font-family: 'Orbitron', sans-serif;
    font-size: 1.1rem;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 2px 4px rgba(0,0,0,0.9);
  }

  .tactical-product-count {
    font-size: 0.75rem;
    color: #ff2a2a; /* Custom neon-red identity accent */
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    transition: opacity 0.3s ease;
  }

  /* Cybernetic Corner Decor */
  .tech-corner {
    position: absolute;
    width: 8px;
    height: 8px;
    border-color: #ff2a2a;
    border-style: solid;
    opacity: 0;
    transition: opacity 0.3s ease, transform 0.3s ease;
    z-index: 3;
  }
  .tech-corner.top-left { top: 10px; left: 10px; border-width: 1px 0 0 1px; transform: translate(-4px, -4px); }
  .tech-corner.bottom-right { bottom: 10px; right: 10px; border-width: 0 1px 1px 0; transform: translate(4px, 4px); }

  /* HOVER ENHANCEMENTS */
  .tactical-collection-card:hover {
    transform: translateY(-4px);
    border-color: #ff2a2a;
    box-shadow: 0 0 20px rgba(255, 42, 42, 0.25);
  }

  .tactical-collection-card:hover .tactical-img {
    transform: scale(1.06);
  }

  .tactical-collection-card:hover .tactical-card-overlay {
    background: linear-gradient(to top, rgba(13, 13, 13, 0.95) 0%, rgba(255, 42, 42, 0.03) 50%, rgba(0, 0, 0, 0.6) 100%);
  }

  .tactical-collection-card:hover .tech-corner {
    opacity: 1;
    transform: translate(0, 0);
  }

  .tactical-collection-card:hover .tactical-product-count {
    opacity: 1;
    text-shadow: 0 0 8px rgba(255, 42, 42, 0.7);
  }
/* END_SECTION:collections */

/* START_SECTION:contact-form (INDEX:8) */
.ct-container {
    background: radial-gradient(circle at 50% 0%, #160505 0%, #0a0a0a 50%, #050505 100%) !important;
    padding: 4rem 20px 6rem;
    min-height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .ct-wrapper {
    max-width: 1100px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    padding: 3.5rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.8);
  }

  /* ─── Left Panel Info ─── */
  .ct-info-panel {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .ct-tagline {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    color: #e22b2a;
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.15em;
    margin-bottom: 0.5rem;
  }

  .ct-panel-title {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    color: #ffffff;
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 0.05em;
    margin: 0 0 1.2rem;
  }

  .ct-panel-desc {
    color: rgba(255, 255, 255, 0.55);
    font-size: 0.9rem;
    line-height: 1.6;
    margin: 0 0 2.5rem;
  }

  /* Core Pulse Status Feature */
  .ct-status-box {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(226, 43, 42, 0.04);
    border: 1px solid rgba(226, 43, 42, 0.15);
    padding: 0.75rem 1.2rem;
    border-radius: 4px;
    align-self: flex-start;
  }

  .ct-status-indicator {
    position: relative;
    width: 8px;
    height: 8px;
    background: #00ff66;
    border-radius: 50%;
    box-shadow: 0 0 10px #00ff66;
  }

  .ct-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #00ff66;
    border-radius: 50%;
    animation: ctPulseFrame 2s infinite ease-out;
    opacity: 0.7;
    left: 0;
    top: 0;
  }

  @keyframes ctPulseFrame {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(3.5); opacity: 0; }
  }

  .ct-status-label {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 0.7rem;
    color: rgba(255,255,255,0.4);
    font-weight: 700;
    letter-spacing: 0.05em;
  }

  .ct-status-value {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 0.7rem;
    color: #00ff66;
    font-weight: 800;
    letter-spacing: 0.05em;
    margin-left: 0.25rem;
  }

  /* ─── Right Panel Form Details ─── */
  .ct-form-panel {
    display: flex;
    flex-direction: column;
  }

  .ct-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
  }

  .ct-field-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
  }

  .ct-field {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
  }

  .ct-label {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
  }

  .ct-input {
    background: #060606 !important;
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 4px !important;
    color: #ffffff !important;
    padding: 0.85rem 1rem !important;
    font-size: 0.85rem !important;
    outline: none !important;
    transition: border-color 0.25s, box-shadow 0.25s;
  }

  .ct-input::placeholder {
    color: rgba(255,255,255,0.2) !important;
  }

  .ct-input:focus {
    border-color: rgba(226, 43, 42, 0.7) !important;
    box-shadow: 0 0 12px rgba(226, 43, 42, 0.2) !important;
  }

  .ct-textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
  }

  /* ─── Premium Red Accent Submit Action ─── */
  .ct-submit-btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(90deg, #b81d1c 0%, #e22b2a 50%, #b81d1c 100%) !important;
    border: none !important;
    border-radius: 4px !important;
    color: #ffffff !important;
    font-family: var(--font-gaming, 'Orbitron', monospace) !important;
    font-size: 0.78rem !important;
    font-weight: 800 !important;
    letter-spacing: 0.1em !important;
    padding: 0.95rem 2rem !important;
    cursor: pointer !important;
    transition: box-shadow 0.3s ease, transform 0.2s ease !important;
    box-shadow: 0 5px 15px rgba(226, 43, 42, 0.3) !important;
    margin-top: 0.5rem;
  }

  .ct-submit-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 25px rgba(226, 43, 42, 0.5), 0 0 10px rgba(226, 43, 42, 0.2) !important;
  }

  .ct-btn-arrow {
    transition: transform 0.25s ease;
  }

  .ct-submit-btn:hover .ct-btn-arrow {
    transform: translateX(4px);
  }

  /* Alerts processing */
  .ct-alert {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem;
    border-radius: 4px;
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 0.5rem;
  }

  .ct-alert--success {
    background: rgba(0, 255, 102, 0.08);
    border: 1px solid rgba(0, 255, 102, 0.3);
    color: #00ff66;
  }

  .ct-alert--error {
    background: rgba(226, 43, 42, 0.08);
    border: 1px solid rgba(226, 43, 42, 0.3);
    color: #e22b2a;
  }

  /* Responsive Systems */
  @media (max-width: 990px) {
    .ct-wrapper { grid-template-columns: 1fr; gap: 3rem; padding: 2.5rem; }
    .ct-info-panel { text-align: center; align-items: center; }
    .ct-status-box { align-self: center; }
  }

  @media (max-width: 580px) {
    .ct-wrapper { padding: 1.5rem 1.25rem; }
    .ct-field-group { grid-template-columns: 1fr; gap: 1.25rem; }
    .ct-panel-title { font-size: 1.6rem; }
    .ct-submit-btn { width: 100%; justify-content: center; }
  }
/* END_SECTION:contact-form */

/* START_SECTION:custom-section (INDEX:9) */
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
/* END_SECTION:custom-section */

/* START_SECTION:faq (INDEX:10) */
.faq {
    padding: 6rem 0;
  }

  .faq__list {
    max-width: 780px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

  .faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.25s ease;
  }

  .faq-item[open] {
    border-color: rgba(226, 43, 42, 0.3);
  }

  .faq-item__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    list-style: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-foreground, #fff);
    line-height: 1.4;
    transition: background 0.25s ease;
    user-select: none;
  }

  .faq-item__question::-webkit-details-marker {
    display: none;
  }

  .faq-item__question:hover {
    background: rgba(226, 43, 42, 0.05);
  }

  .faq-item[open] .faq-item__question {
    background: rgba(226, 43, 42, 0.07);
    color: var(--amd-red, #e22b2a);
  }

  .faq-item__icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.4);
  }

  .faq-item[open] .faq-item__icon {
    transform: rotate(180deg);
    color: var(--amd-red, #e22b2a);
  }

  .faq-item__answer {
    padding: 0 1.5rem 1.5rem;
  }

  .faq-item__answer p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
  }

  .faq__footer {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.25rem;
    margin-top: 3.5rem;
    text-align: center;
  }

  .faq__footer-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.5);
  }

  @media (max-width: 600px) {
    .faq {
      padding: 4rem 0;
    }
  }
/* END_SECTION:faq */

/* START_SECTION:featured-collections (INDEX:11) */
/* ── Premium Cyberpunk Gradient Background ── */
  .featured-collections {
    padding: 5rem 20px;
    position: relative;
    background: radial-gradient(circle at 50% 30%, #160606 0%, #0a0a0a 65%, #050505 100%);
    overflow: hidden;
  }

  .featured-collections__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    max-width: var(--page-width, 1200px);
    margin: 0 auto 4rem auto;
    width: 100%;
  }

  /* Core Card Layout Styling */
  .collection-card {
    position: relative;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--color-foreground, #fff);
    border-radius: 6px;
    overflow: hidden;
    background: var(--amd-surface, #111111);
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1), transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
  }

  .collection-card:hover {
    border-color: rgba(226, 43, 42, 0.3);
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7);
  }

  .collection-card__media {
    position: relative;
    aspect-ratio: 1 / 1; /* Configured to 1:1 format to highlight hardware renders perfectly */
    overflow: hidden;
    background: #181818;
  }

  .collection-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .collection-card:hover .collection-card__image {
    transform: scale(1.05);
  }

  .collection-card__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a0606 0%, #0d0d0d 100%);
  }

  .collection-card__placeholder-icon {
    font-size: 3rem;
    opacity: 0.4;
    filter: grayscale(1);
  }

  @media (max-width: 1023px) {
    .collection-card__placeholder-icon { filter: none; }
  }

  .collection-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
    transition: background 0.3s ease;
  }

  .collection-card:hover .collection-card__overlay {
    background: linear-gradient(to bottom, transparent 20%, rgba(10, 0, 0, 0.8) 100%);
  }

  .collection-card__info {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
  }

  .collection-card__title-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
  }

  .collection-card__icon {
    color: #e22b2a;
    font-size: 0.9rem;
    line-height: 1;
    text-shadow: 0 0 6px rgba(226, 43, 42, 0.4);
  }

  .collection-card__title {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-foreground, #fff);
    line-height: 1.3;
    margin: 0;
  }

  .collection-card__count {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 0.25rem;
  }

  .collection-card__cta {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    display: inline-flex;
    align-items: center;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--amd-red, #e22b2a);
    margin-top: 0.25rem;
    transition: color 0.2s ease, transform 0.2s ease;
  }

  .collection-card__cta::after {
    content: ' →';
    transition: transform 0.25s ease;
  }

  .collection-card:hover .collection-card__cta {
    color: #ffffff;
  }

  .collection-card:hover .collection-card__cta::after {
    transform: translateX(4px);
  }

  /* ── Interactive Navigation Button Styling ── */
  .featured-collections__actions {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
  }

  .btn-view-all-collections {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: #ffffff;
    border: 2px solid #e22b2a;
    padding: 0.9rem 2.2rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.08em;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(226, 43, 42, 0.1);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }

  .collections-btn-arrow {
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }

  /* Fill container and slide right arrow icon seamlessly on mouse-over */
  .btn-view-all-collections:hover {
    background: #e22b2a;
    border-color: #e22b2a;
    box-shadow: 0 0 25px rgba(226, 43, 42, 0.4);
  }

  .btn-view-all-collections:hover .collections-btn-arrow {
    transform: translateX(6px);
  }

  /* Responsive Adjustments */
  @media (max-width: 1100px) {
    .featured-collections__grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 768px) {
    .featured-collections__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .featured-collections {
      padding: 3rem 0;
    }

    .featured-collections__grid {
      grid-template-columns: repeat(2, 1fr);
      gap: 0.75rem;
    }

    .collection-card__info {
      padding: 0.75rem 0.85rem;
    }
  }
/* END_SECTION:featured-collections */

/* START_SECTION:featured-products (INDEX:12) */
/* ── Premium High-End Dark Gradient Background ── */
  .featured-products-section {
    padding: 5rem 20px;
    position: relative;
    background: radial-gradient(circle at 50% 30%, #160606 0%, #0a0a0a 65%, #050505 100%);
    overflow: hidden;
  }

  .products-container {
    max-width: var(--page-width, 1200px);
    margin: 0 auto;
    width: 100%;
  }

  .products-header {
    text-align: center;
    margin-bottom: 3.5rem;
  }

  .products-subtitle {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    color: #e22b2a;
    font-size: 0.8rem;
    letter-spacing: 0.2em;
    font-weight: 700;
    display: block;
    margin-bottom: 0.5rem;
  }

  .products-title {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    color: #ffffff;
    font-size: 2.2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 0.8rem 0;
  }

  .products-accent-line {
    width: 40px;
    height: 3px;
    background: #e22b2a;
    margin: 0 auto 1.2rem auto;
    box-shadow: 0 0 8px rgba(226, 43, 42, 0.6);
  }

  .products-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 1rem;
    margin: 0;
  }

  .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-bottom: 4rem;
  }

  @media (max-width: 1024px) {
    .products-grid { grid-template-columns: repeat(2, 1fr); gap: 1.25rem; }
  }
  @media (max-width: 600px) {
    .products-grid { grid-template-columns: 1fr; gap: 1rem; }
  }

  .product-card {
    background: #111111;
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1), border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .product-card__link-wrapper {
    text-decoration: none;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(226, 43, 42, 0.3);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.7), 0 0 0 1px rgba(226, 43, 42, 0.1);
  }

  .product-card__media {
    position: relative;
    width: 100%;
    padding-top: 100%; 
    background: #161616;
    overflow: hidden;
    border-bottom: 1px solid rgba(255, 255, 255, 0.02);
  }

  .product-card__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: contain; 
    padding: 1rem; 
    transition: transform 0.5s ease;
  }

  .product-card__media svg.placeholder-svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding: 2.5rem;
    box-sizing: border-box;
    background: #151515;
    fill: #222222;
  }

  .product-card:hover .product-card__image {
    transform: scale(1.04);
  }

  .product-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 60%, rgba(5, 5, 5, 0.4) 100%);
    pointer-events: none;
    z-index: 2;
  }

  .product-card__info {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background: #111111;
    z-index: 3;
  }

  .product-card__vendor {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    color: #e22b2a;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: inline-block;
  }

  .product-card__title {
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.4;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2; 
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.4rem; 
    transition: color 0.2s ease;
  }

  .product-card:hover .product-card__title {
    color: #ffffff;
  }

  .product-card__meta {
    margin-top: auto; 
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .products-actions {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .btn-view-all-products {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: transparent;
    color: #ffffff;
    border: 2px solid #e22b2a;
    padding: 0.9rem 2.2rem;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.08em;
    border-radius: 4px;
    box-shadow: 0 0 15px rgba(226, 43, 42, 0.1);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }

  .products-btn-arrow {
    transition: transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .btn-view-all-products:hover {
    background: #e22b2a;
    border-color: #e22b2a;
    box-shadow: 0 0 25px rgba(226, 43, 42, 0.4);
  }

  .btn-view-all-products:hover .products-btn-arrow {
    transform: translateX(6px);
  }
/* END_SECTION:featured-products */

/* START_SECTION:footer (INDEX:13) */
.site-footer {
    background: var(--amd-surface, #111111);
    border-top: 1px solid rgba(226, 43, 42, 0.2);
    margin-top: auto;
  }

  .site-footer__main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    padding: 4rem var(--page-margin, 20px) 3rem;
    max-width: var(--page-width, 110rem);
    margin: 0 auto;
    width: 100%;
  }

  .site-footer__brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .site-footer__logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }

  .site-footer__logo-amd {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--amd-red, #e22b2a);
    letter-spacing: 0.05em;
  }

  .site-footer__logo-name {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .site-footer__tagline {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
    max-width: 280px;
  }

  .site-footer__payment {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
  }

  .site-footer__payment svg {
    height: 24px;
    width: auto;
    opacity: 0.5;
    filter: grayscale(1);
    transition: opacity 0.2s ease, filter 0.2s ease;
  }

  .site-footer__payment svg:hover {
    opacity: 1;
    filter: none;
  }

  .site-footer__col {
    display: flex;
    flex-direction: column;
    gap: 1rem;
  }

  .site-footer__col-heading {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
  }

  .site-footer__links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
  }

  .site-footer__link {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
    line-height: 1.4;
  }

  .site-footer__link:hover {
    color: rgba(255, 255, 255, 0.9);
  }

  .site-footer__social {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
  }

  .site-footer__social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  }

  .site-footer__social-link:hover {
    background: rgba(226, 43, 42, 0.15);
    border-color: rgba(226, 43, 42, 0.3);
    color: var(--amd-red, #e22b2a);
  }

  .site-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem var(--page-margin, 20px);
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    max-width: var(--page-width, 110rem);
    margin: 0 auto;
    width: 100%;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .site-footer__copyright {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
  }

  .site-footer__copyright-link {
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
  }

  .site-footer__copyright-link:hover {
    color: var(--amd-red, #e22b2a);
  }

  .site-footer__powered {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.2);
  }

  .site-footer__powered a {
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
  }

  @media (max-width: 1024px) {
    .site-footer__main {
      grid-template-columns: 1fr 1fr;
    }

    .site-footer__brand {
      grid-column: 1 / -1;
    }
  }

  @media (max-width: 600px) {
    .site-footer__main {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 3rem var(--page-margin, 20px) 2rem;
    }

    .site-footer__brand {
      grid-column: auto;
    }
  }

  @media (max-width: 1023px) {
    .site-footer__payment svg {
      filter: none;
      transition: opacity 0.2s ease;
    }
  }
/* END_SECTION:footer */

/* START_SECTION:header (INDEX:14) */
/* ── Premium High-End Navigation Bar Gradient (Matches image_f7d521.png) ── */
  .site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: linear-gradient(180deg, #120404 0%, #080808 75%, #050505 100%);
    border-bottom: 1px solid rgba(226, 43, 42, 0.25);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.65);
    transition: background 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
  }

  .site-header.scrolled {
    background: linear-gradient(180deg, #0f0303 0%, #060606 85%, #020202 100%);
    border-bottom-color: rgba(226, 43, 42, 0.4);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.85);
  }

  .site-header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 4.5rem;
    padding: 0 var(--page-margin, 20px);
    max-width: var(--page-width, 110rem);
    margin: 0 auto;
    width: 100%;
  }

  /* Logo Area Styling */
  .site-header__logo-link {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
  }

  .site-header__logo-amd {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 1.25rem;
    font-weight: 900;
    color: var(--amd-red, #e22b2a);
    letter-spacing: 0.08em;
    line-height: 1;
    position: relative;
    padding-bottom: 2px;
  }

  .site-header__logo-amd::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--amd-red, #e22b2a);
    border-radius: 1px;
  }

  .site-header__logo-gaming-text {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 0.8rem;
    font-weight: 600;
    color: #ffffff;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  /* ── Navigation Typography Upgrade ("Gaming Word Effect") ── */
  .site-header__nav {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 100%;
  }

  .site-header__nav-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
  }

  .site-header__nav-link,
  .site-header__nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.6rem 1.1rem;
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    background: none;
    border: none;
    cursor: pointer;
    border-radius: 4px;
    transition: color 0.25s ease, background 0.25s ease, text-shadow 0.25s ease;
    white-space: nowrap;
  }

  .site-header__nav-link:hover,
  .site-header__nav-btn:hover {
    color: #ffffff;
    background: rgba(226, 43, 42, 0.08);
    text-shadow: 0 0 6px rgba(226, 43, 42, 0.5);
  }

  .site-header__nav-link--active {
    color: var(--amd-red, #e22b2a);
    text-shadow: 0 0 8px rgba(226, 43, 42, 0.3);
  }

  .site-header__nav-link--active:hover {
    background: rgba(226, 43, 42, 0.12);
  }

  /* ── Dominant Dropdown Menu Hover Gradient Styling ── */
  .site-header__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 210px;
    padding-top: 0.5rem; 
    opacity: 0;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.25s cubic-bezier(0.25, 1, 0.5, 1), transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
  }

  .site-header__dropdown-inner {
    background: radial-gradient(circle at 50% 0%, #220808 0%, #0d0d0d 75%, #050505 100%);
    border: 1px solid rgba(226, 43, 42, 0.4);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.85), 0 0 15px rgba(226, 43, 42, 0.15);
    border-radius: 4px;
    padding: 0.6rem;
  }

  .site-header__nav-btn[aria-expanded="true"] + .site-header__dropdown {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header__dropdown-link {
    display: block;
    padding: 0.7rem 1.1rem;
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 0.78rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-radius: 4px;
    border-left: 0 solid transparent;
    transition: color 0.15s ease, background 0.15s ease, border-left 0.15s ease;
  }

  .site-header__dropdown-link:hover {
    color: #ffffff;
    background: rgba(226, 43, 42, 0.1);
    border-left: 3px solid var(--amd-red, #e22b2a);
  }

  /* Desktop Hover Interactions */
  @media (min-width: 901px) {
    .site-header__nav-item--dropdown:hover .site-header__dropdown {
      opacity: 1;
      pointer-events: auto;
      transform: translateY(0);
    }
    .site-header__nav-item--dropdown:hover .site-header__nav-btn {
      color: #ffffff;
      background: rgba(226, 43, 42, 0.08);
    }
  }

  /* Action icons */
  .site-header__actions {
    display: flex;
    align-items: center;
    gap: 0.25rem;
  }

  .site-header__icon-btn {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    border-radius: 6px;
    transition: color 0.2s ease, background 0.2s ease;
    cursor: pointer;
    background: none;
    border: none;
  }

  .site-header__icon-btn:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
  }

  .site-header__icon-btn svg {
    width: 1.2rem;
    height: 1.2rem;
  }

  .site-header__cart-count {
    position: absolute;
    top: 4px;
    right: 4px;
    width: 16px;
    height: 16px;
    background: var(--amd-red, #e22b2a);
    color: #fff;
    font-size: 0.6rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  /* Mobile button */
  .site-header__mobile-btn {
    display: none;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    border-radius: 6px;
    transition: background 0.2s ease;
  }

  .site-header__mobile-btn:hover {
    background: rgba(255, 255, 255, 0.07);
  }

  .site-header__hamburger {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 20px;
  }

  .site-header__hamburger span {
    display: block;
    height: 2px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 1px;
    transition: transform 0.3s ease, opacity 0.3s ease;
  }

  .mobile-open .site-header__hamburger span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
  }
  .mobile-open .site-header__hamburger span:nth-child(2) {
    opacity: 0;
  }
  .mobile-open .site-header__hamburger span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
  }

  /* Mobile menu styling updates */
  .site-header__mobile-menu {
    display: none;
    flex-direction: column;
    background: #080202;
    border-top: 1px solid rgba(226, 43, 42, 0.2);
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease;
  }

  .mobile-open .site-header__mobile-menu {
    max-height: 100vh;
  }

  .site-header__mobile-link {
    display: block;
    padding: 0.9rem var(--page-margin, 20px);
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: color 0.2s ease, background 0.2s ease;
  }

  .site-header__mobile-link:hover {
    color: #fff;
    background: rgba(226, 43, 42, 0.06);
  }

  .site-header__mobile-link--child {
    padding-left: calc(var(--page-margin, 20px) + 1.25rem);
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
  }

  .site-header__mobile-link--active {
    color: var(--amd-red, #e22b2a);
  }

  /* Mobile accordion */
  .mob-acc__btn {
    width: 100%;
    text-align: left;
    justify-content: space-between;
    background: none;
    border: none;
    cursor: pointer;
  }

  .mob-acc__chevron {
    flex-shrink: 0;
    color: rgba(255, 255, 255, 0.35);
    transition: transform 0.28s ease;
  }

  .mob-acc__btn[aria-expanded="true"] .mob-acc__chevron {
    transform: rotate(180deg);
  }

  .mob-acc__body {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.3s ease;
    background: #050101;
  }

  .mob-acc__body.is-open {
    max-height: 600px;
  }

  @media (max-width: 900px) {
    .site-header {
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      background: #0a0202;
    }

    .site-header.scrolled {
      background: #050101;
    }

    .site-header__nav {
      display: none;
    }

    .site-header__mobile-btn {
      display: flex;
    }

    .site-header__mobile-menu {
      display: flex;
    }
  }
/* END_SECTION:header */

/* START_SECTION:hello-world (INDEX:15) */
.welcome {
    display: grid;
    grid-template-columns: var(--content-grid);
    background-color: #f6f6f7;
    padding: 72px 0;
  }

  .welcome-content {
    grid-column: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    width: 100%;
    padding: 0 24px;
  }

  .welcome-description {
    max-width: 80ch;
    line-height: 1.4;
    margin-top: 1.5rem;
  }

  .icon {
    width: 300px;
  }

  .highlights {
    display: grid;
    gap: 2rem;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 50px;
  }

  @media (max-width: 1100px) {
    .highlights {
      grid-template-columns: 1fr;
    }
  }

  .highlight {
    display: flex;
    flex-direction: column;
    height: 100%;
    padding: 24px;
    border-radius: 8px;
    background-color: #eef3ff;
    color: rgb(92, 95, 98);
    line-height: 1.4;
  }

  .highlight > * + * {
    margin-top: 1rem;
  }

  .highlight h3 {
    font-size: 1rem;
    color: rgb(32, 34, 35);
  }

  .highlight-description {
    flex: 1 1;
  }

  .highlight a {
    display: flex;
    width: fit-content;
    background-color: rgb(250, 251, 251);
    box-shadow: rgba(0, 0, 0, 0.2) 0px -3px 0px 0px inset, rgba(255, 255, 255, 0.9) 0px 2px 0px 0px inset;
    border: 1px solid rgb(140, 145, 150);
    border-radius: 4px;
    color: rgb(92, 95, 98);
    padding: 3px 10px 5px;
    text-decoration: none;
  }
/* END_SECTION:hello-world */

/* START_SECTION:hero-banner (INDEX:16) */
/* ─────────────────────────────────────────────
     HERO BANNER — Two-column safe-zone layout
     Left  ≤40% : content zone
     Right  60%+ : product imagery (untouched)
  ───────────────────────────────────────────── */

  .hero-banner {
    position: relative;
    min-height: var(--hero-min-height, 700px);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    isolation: isolate;
  }

  /* ── Background media ── */
  .hero-banner__media {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .hero-banner__media picture {
    display: block;
    width: 100%;
    height: 100%;
  }

  .hero-banner__bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
  }

  /* Directional overlay: dense on left (text), clear on right (products) */
  .hero-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      100deg,
      rgba(6, 6, 6, 0.97) 0%,
      rgba(8, 8, 8, 0.93) 20%,
      rgba(10, 4, 4, 0.82) 35%,
      rgba(8, 8, 8, 0.55) 50%,
      rgba(4, 4, 4, 0.20) 65%,
      transparent 80%
    );
  }

  /* Radial colour bleed — left-positioned glow behind text */
  .hero-banner__media::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
      radial-gradient(ellipse 55% 70% at 5% 55%, rgba(226, 43, 42, 0.22) 0%, transparent 55%),
      radial-gradient(ellipse 30% 50% at 75% 85%, rgba(140, 20, 60, 0.10) 0%, transparent 50%);
    pointer-events: none;
    z-index: 1;
  }

  /* ── RGB accent effects ── */
  .hero-banner__rgb-sweep {
    position: absolute;
    top: 0;
    left: -100%;
    width: 55%;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(226, 43, 42, 0.9), rgba(255, 110, 50, 0.7), transparent);
    animation: rgb-sweep 6s ease-in-out infinite;
    z-index: 2;
  }

  @keyframes rgb-sweep {
    0%   { left: -55%; opacity: 0; }
    8%   { opacity: 1; }
    88%  { opacity: 0.7; }
    100% { left: 115%; opacity: 0; }
  }

  .hero-banner__corner-glow {
    position: absolute;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    pointer-events: none;
    z-index: 1;
  }

  .hero-banner__corner-glow--tl {
    top: -120px;
    left: -120px;
    background: radial-gradient(circle, rgba(226, 43, 42, 0.28) 0%, transparent 62%);
    animation: corner-pulse 4s ease-in-out infinite;
  }

  .hero-banner__corner-glow--br {
    bottom: -100px;
    right: -100px;
    background: radial-gradient(circle, rgba(160, 25, 80, 0.14) 0%, transparent 62%);
    animation: corner-pulse 4s ease-in-out infinite 2s;
  }

  @keyframes corner-pulse {
    0%, 100% { transform: scale(1);   opacity: 0.6; }
    50%       { transform: scale(1.2); opacity: 1; }
  }

  .hero-banner__grid-lines {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(226, 43, 42, 0.04) 1px, transparent 1px),
      linear-gradient(90deg, rgba(226, 43, 42, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 70% 80% at 20% 50%, rgba(0,0,0,0.7) 0%, transparent 75%);
  }

  .hero-banner__particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
  }

  .hero-banner__particles span {
    position: absolute;
    background: var(--amd-red, #e22b2a);
    border-radius: 50%;
    animation: hero-float linear infinite;
    opacity: 0;
  }

  /* Particles concentrated in left content zone */
  .hero-banner__particles span:nth-child(1)  { width: 3px; height: 3px; top: 20%; left:  8%; animation-duration: 7s;   animation-delay: 0s; }
  .hero-banner__particles span:nth-child(2)  { width: 2px; height: 2px; top: 62%; left: 18%; animation-duration: 9s;   animation-delay: 1.2s; }
  .hero-banner__particles span:nth-child(3)  { width: 4px; height: 4px; top: 32%; left: 32%; animation-duration: 6s;   animation-delay: 2s; opacity: 0.5; }
  .hero-banner__particles span:nth-child(4)  { width: 2px; height: 2px; top: 75%; left: 25%; animation-duration: 8s;   animation-delay: 0.5s; }
  .hero-banner__particles span:nth-child(5)  { width: 3px; height: 3px; top: 48%; left: 12%; animation-duration: 10s;  animation-delay: 3s; }
  .hero-banner__particles span:nth-child(6)  { width: 5px; height: 5px; top: 14%; left: 38%; animation-duration: 6.5s; animation-delay: 1.8s; opacity: 0.3; }
  .hero-banner__particles span:nth-child(7)  { width: 2px; height: 2px; top: 70%; left: 42%; animation-duration: 8.5s; animation-delay: 2.6s; }
  .hero-banner__particles span:nth-child(8)  { width: 3px; height: 3px; top: 85%; left:  6%; animation-duration: 7.5s; animation-delay: 4s; }
  .hero-banner__particles span:nth-child(9)  { width: 2px; height: 2px; top: 40%; left: 28%; animation-duration: 11s;  animation-delay: 0.8s; }

  @keyframes hero-float {
    0%   { transform: translateY(0) scale(1);    opacity: 0; }
    10%  { opacity: 1; }
    90%  { opacity: 0.4; }
    100% { transform: translateY(-130px) scale(0); opacity: 0; }
  }

  /* ── Stage — full-height flex row ── */
  .hero-banner__stage {
    flex: 1;
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    /* Page-width constraint with generous left padding */
    width: 100%;
    max-width: var(--max-page-width, 110rem);
    margin: 0 auto;
    padding: 5rem max(var(--page-margin, 20px), 3.5vw);
  }

  /* ── Content block — safe left zone ── */
  .hero-banner__content {
    position: relative;
    z-index: 1;
    /* Safe zone: never wider than 42% on large screens, capped at 650px absolute */
    width: min(650px, 42%);
    text-align: var(--hero-content-align, left);
    /* Configurable offset via Theme Editor */
    margin-left: var(--hero-content-offset, 0px);
  }

  /* Center variant: ignore offset, use auto margins */
  .hero-banner__content--center {
    width: min(700px, 90%);
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  /* ── Badge ── */
  .hero-banner__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(226, 43, 42, 0.14);
    border: 1px solid rgba(226, 43, 42, 0.4);
    color: var(--amd-red, #e22b2a);
    padding: 0.4rem 1.1rem;
    border-radius: 2rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1.6rem;
    font-family: var(--font-gaming, 'Orbitron', monospace);
  }

  .hero-banner__badge-dot {
    width: 6px;
    height: 6px;
    background: var(--amd-red, #e22b2a);
    border-radius: 50%;
    flex-shrink: 0;
    animation: dot-pulse 2s ease-in-out infinite;
  }

  @keyframes dot-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.7); }
  }

  /* ── Heading ── */
  .hero-banner__heading {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: clamp(1.8rem, 3.5vw, 4rem);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 1.4rem;
    display: flex;
    flex-direction: column;
    gap: 0.12em;
  }

  .hero-banner__content--center .hero-banner__heading {
    align-items: center;
  }

  .hero-banner__heading-line1 {
    color: var(--color-foreground, #fff);
    text-shadow: 0 2px 24px rgba(0,0,0,0.6);
  }

  .hero-banner__heading-line2 {
    background: linear-gradient(135deg, var(--amd-red, #e22b2a) 0%, #ff6b35 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 0 28px rgba(226, 43, 42, 0.45));
  }

  /* ── Subheading ── */
  .hero-banner__subheading {
    font-size: clamp(0.88rem, 1.3vw, 1.05rem);
    color: rgba(255, 255, 255, 0.68);
    margin: 0 0 2.2rem;
    line-height: 1.72;
    max-width: 520px;
  }

  .hero-banner__content--center .hero-banner__subheading {
    margin: 0 auto 2.2rem;
  }

  /* ── CTA buttons ── */
  .hero-banner__actions {
    display: flex;
    gap: 1rem;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 1.6rem;
  }

  .hero-banner__content--center .hero-banner__actions {
    justify-content: center;
  }

  /* ── Trust badges ── */
  .hero-banner__trust {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem 0.75rem;
    justify-content: flex-start;
  }

  .hero-banner__content--center .hero-banner__trust {
    justify-content: center;
  }

  .hero-banner__trust-item {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.73rem;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
  }

  .hero-banner__trust-item svg {
    color: rgba(255, 255, 255, 0.38);
    flex-shrink: 0;
  }

  .hero-banner__trust-sep {
    color: rgba(255, 255, 255, 0.2);
    font-size: 1rem;
    line-height: 1;
  }

  /* ── Stats bar — full width, pinned to bottom ── */
  .hero-banner__stats {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0;
    width: 100%;
    padding: 1.5rem var(--page-margin, 20px);
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-top: 1px solid rgba(226, 43, 42, 0.2);
  }

  .hero-banner__stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
    padding: 0.5rem 2.5rem;
  }

  .hero-banner__stat-value {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: clamp(1.3rem, 2.2vw, 1.9rem);
    font-weight: 700;
    color: var(--amd-red, #e22b2a);
    line-height: 1;
  }

  .hero-banner__stat-label {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    white-space: nowrap;
  }

  .hero-banner__stat-divider {
    width: 1px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
  }

  /* ─────────────────────────────────────────────
     RESPONSIVE BREAKPOINTS
  ───────────────────────────────────────────── */

  /* Large desktop — give extra breathing room */
  @media (min-width: 1600px) {
    .hero-banner__stage {
      padding-left: max(var(--page-margin, 20px), 4vw);
    }

    .hero-banner__content {
      width: min(680px, 38%);
    }
  }

  /* Wide desktop — standard layout */
  @media (min-width: 1200px) and (max-width: 1599px) {
    .hero-banner__content {
      width: min(600px, 40%);
    }
  }

  /* Tablet — relax width constraint, keep left-aligned */
  @media (min-width: 768px) and (max-width: 1199px) {
    .hero-banner__content {
      width: min(560px, 55%);
      /* Ignore large offsets at this size — just use page margin */
      margin-left: 0;
    }

    .hero-banner__content--center {
      width: min(600px, 80%);
    }

    .hero-banner__stage {
      padding: 4rem max(var(--page-margin, 20px), 3vw);
    }
  }

  /* Mobile — full-width centred stack */
  @media (max-width: 767px) {
    /* Override all position variants — mobile is always centered */
    .hero-banner__stage {
      padding: 3.5rem var(--page-margin, 20px) 2.5rem;
      justify-content: center;
    }

    .hero-banner__content,
    .hero-banner__content--center,
    .hero-banner__content--far-left,
    .hero-banner__content--left,
    .hero-banner__content--center-left {
      width: 100%;
      max-width: 100%;
      margin-left: 0;
      margin-right: 0;
      text-align: center;
      --hero-content-offset: 0px;
    }

    .hero-banner__heading {
      font-size: clamp(1.7rem, 7vw, 2.6rem);
      align-items: center;
    }

    .hero-banner__subheading {
      max-width: 100%;
      margin: 0 0 2rem;
    }

    .hero-banner__actions {
      justify-content: center;
    }

    .hero-banner__trust {
      justify-content: center;
    }

    .hero-banner__stat-divider { display: none; }
    .hero-banner__stat { padding: 0.4rem 1.1rem; }
    .hero-banner__stats { gap: 0.5rem; }

    /* Full overlay on mobile — image shows at top */
    .hero-banner__overlay {
      background: linear-gradient(
        180deg,
        rgba(6, 6, 6, 0.55) 0%,
        rgba(6, 6, 6, 0.82) 50%,
        rgba(6, 6, 6, 0.97) 100%
      );
    }
  }

  /* ─────────────────────────────────────────────
     MOBILE SAFARI CRASH PREVENTION
     Disable GPU-heavy effects on screens < 1024px.

     Root causes addressed:
       1. backdrop-filter on stats bar — forces full-page
          re-composite on every scroll frame on iOS Safari
       2. 9 particle animations (hero-float) — 9 animated
          compositing layers simultaneously
       3. rgb-sweep + 2 corner-glow CSS animations
       4. mask-image on grid-lines — forces GPU layer
       5. isolation: isolate combined with the above
       6. .hero-banner__media::after radial gradients
          (additional compositing layer)
  ───────────────────────────────────────────── */
  @media (max-width: 1023px) {
    /* Remove isolation context — eliminates a compositing root */
    .hero-banner {
      isolation: auto;
    }

    /* Kill all 9 particle animations */
    .hero-banner__particles {
      display: none;
    }

    /* Kill RGB sweep animation */
    .hero-banner__rgb-sweep {
      display: none;
    }

    /* Kill corner glows — 2 animated radial-gradient layers */
    .hero-banner__corner-glow {
      display: none;
    }

    /* Kill grid lines — mask-image forces GPU compositing on Safari */
    .hero-banner__grid-lines {
      display: none;
    }

    /* Kill media pseudo-element — extra compositing layer */
    .hero-banner__media::after {
      display: none;
    }

    /* Stop badge dot pulse */
    .hero-banner__badge-dot {
      animation: none;
    }

    /* Remove filter: drop-shadow from gradient heading.
       -webkit-background-clip:text + filter: drop-shadow = confirmed
       Safari compositor crash — two conflicting GPU layers on one element. */
    .hero-banner__heading-line2 {
      filter: none;
    }

    /* Replace backdrop-filter stats bar with solid background.
       backdrop-filter on a fixed/sticky page position causes WebKit
       to re-composite the entire scroll tree on every frame.       */
    .hero-banner__stats {
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      background: rgba(8, 8, 8, 0.97);
    }
  }

  /* Very small phones */
  @media (max-width: 400px) {
    .hero-banner__actions {
      flex-direction: column;
      align-items: center;
    }

    .hero-banner__actions .btn {
      width: 100%;
      text-align: center;
      justify-content: center;
    }
  }
/* END_SECTION:hero-banner */

/* START_SECTION:newsletter (INDEX:17) */
.newsletter {
    position: relative;
    padding: 6rem var(--page-margin, 20px);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    isolation: isolate;
    text-align: center;
  }

  .newsletter__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
  }

  .newsletter__bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }

  .newsletter__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      rgba(226, 43, 42, 0.25) 0%,
      rgba(8, 8, 8, 0.92) 60%
    );
  }

  .newsletter__grid-lines {
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(226, 43, 42, 0.06) 1px, transparent 1px),
      linear-gradient(90deg, rgba(226, 43, 42, 0.06) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.8) 0%, transparent 75%);
  }

  .newsletter__content {
    position: relative;
    z-index: 1;
    max-width: 580px;
    width: 100%;
  }

  .newsletter__heading {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--color-foreground, #fff);
    line-height: 1.2;
    margin: 0.75rem 0 1rem;
  }

  .newsletter__subheading {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.6;
    margin-bottom: 2rem;
  }

  .newsletter__form { }

  .newsletter__input-group {
    display: flex;
    gap: 0;
    max-width: 480px;
    margin: 0 auto 1rem;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    overflow: hidden;
    transition: border-color 0.25s ease, box-shadow 0.25s ease;
  }

  .newsletter__input-group:focus-within {
    border-color: var(--amd-red, #e22b2a);
    box-shadow: 0 0 0 3px rgba(226, 43, 42, 0.15);
  }

  .newsletter__input {
    flex: 1;
    min-width: 0;
    padding: 0.875rem 1.25rem;
    background: rgba(0, 0, 0, 0.4);
    border: none;
    color: var(--color-foreground, #fff);
    font-size: 0.9rem;
    outline: none;
    border-radius: 0;
  }

  .newsletter__input::placeholder {
    color: rgba(255, 255, 255, 0.35);
  }

  .newsletter__submit {
    border-radius: 0;
    flex-shrink: 0;
    white-space: nowrap;
  }

  .newsletter__success {
    font-size: 0.9rem;
    color: #4caf50;
    margin-top: 0.75rem;
    padding: 0.75rem 1rem;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.2);
    border-radius: 4px;
    max-width: 480px;
    margin-inline: auto;
  }

  .newsletter__error {
    font-size: 0.85rem;
    color: #ff6b6b;
    margin-top: 0.5rem;
  }

  .newsletter__disclaimer {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 1rem;
    max-width: 400px;
    margin-inline: auto;
  }

  .newsletter__perks {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1.75rem;
    flex-wrap: wrap;
  }

  .newsletter__perk {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
  }

  .newsletter__perk svg {
    color: var(--amd-red, #e22b2a);
    flex-shrink: 0;
  }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
  }

  @media (max-width: 600px) {
    .newsletter {
      padding: 4rem var(--page-margin, 20px);
    }

    .newsletter__input-group {
      flex-direction: column;
      border: none;
    }

    .newsletter__input {
      border: 1px solid rgba(255, 255, 255, 0.15);
      border-radius: 3px;
      text-align: center;
    }

    .newsletter__input:focus {
      border-color: var(--amd-red, #e22b2a);
    }

    .newsletter__submit {
      border-radius: 3px;
    }

    .newsletter__perks {
      flex-direction: column;
      align-items: flex-start;
      text-align: left;
      gap: 0.75rem;
    }
  }
/* END_SECTION:newsletter */

/* START_SECTION:pc-builder (INDEX:20) */
.pc-builder {
    padding: 6rem 0;
    background: var(--amd-surface, #111111);
    position: relative;
    transition: background 0.3s ease;
  }

  .pc-builder::before,
  .pc-builder::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(226, 43, 42, 0.3), transparent);
  }

  .pc-builder::before { top: 0; }
  .pc-builder::after  { bottom: 0; }

  .pc-builder__layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 5rem;
    align-items: center;
  }

  /* ── PC Diagram - UPGRADED NEON GLOW ── */
  .pc-builder__diagram {
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
  }

  .pc-diagram {
    position: relative;
    transform-style: preserve-3d;
  }

  .pc-diagram__case {
    width: 280px;
    height: 340px;
    background: linear-gradient(145deg, #0a0a0a, #050505);
    border: 2px solid rgba(226, 43, 42, 0.3);
    border-radius: 8px;
    padding: 20px;
    position: relative;
    box-shadow: 
      0 0 50px rgba(226, 43, 42, 0.1),
      inset 0 0 40px rgba(0, 0, 0, 0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  }

  .pc-diagram:hover .pc-diagram__case {
    transform: translateY(-5px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 
      20px 20px 50px rgba(0, 0, 0, 0.8),
      0 0 60px rgba(226, 43, 42, 0.15),
      inset 0 0 40px rgba(0, 0, 0, 0.9);
  }

  .pc-diagram__mobo {
    width: 100%;
    height: 100%;
    background: repeating-linear-gradient(
      0deg,
      #080808,
      #080808 2px,
      #0a0a0a 2px,
      #0a0a0a 4px
    );
    border: 1px solid rgba(226, 43, 42, 0.2);
    border-radius: 4px;
    padding: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    gap: 12px;
  }

  .pc-diagram__cpu,
  .pc-diagram__pcie,
  .pc-diagram__storage {
    background: rgba(226, 43, 42, 0.05);
    border: 1px solid rgba(226, 43, 42, 0.3);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: crosshair;
    transition: all 0.3s ease;
    box-shadow: 0 0 15px rgba(226, 43, 42, 0.1);
  }

  .pc-diagram__cpu {
    grid-column: 1;
    grid-row: 1;
    background: rgba(226, 43, 42, 0.1);
    animation: cpu-breathe 3s ease-in-out infinite;
  }

  @keyframes cpu-breathe {
    0%, 100% { box-shadow: 0 0 15px rgba(226, 43, 42, 0.15); border-color: rgba(226, 43, 42, 0.3); }
    50% { box-shadow: 0 0 25px rgba(226, 43, 42, 0.4); border-color: rgba(226, 43, 42, 0.6); }
  }

  .pc-diagram__cpu:hover,
  .pc-diagram__pcie:hover,
  .pc-diagram__storage:hover {
    background: rgba(226, 43, 42, 0.2);
    border-color: rgba(226, 43, 42, 0.9);
    box-shadow: 
      0 0 30px rgba(226, 43, 42, 0.7),
      inset 0 0 15px rgba(226, 43, 42, 0.4);
    transform: scale(1.05);
    z-index: 10;
  }

  .pc-diagram__ram-slots {
    grid-column: 2;
    grid-row: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
  }

  .pc-diagram__ram {
    width: 100%;
    height: 50%;
    background: rgba(100, 150, 226, 0.05);
    border: 1px solid rgba(100, 150, 226, 0.3);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.5rem;
    color: rgba(255,255,255,0.6);
    font-family: var(--font-gaming, 'Orbitron', monospace);
    letter-spacing: 0.1em;
    cursor: crosshair;
    transition: all 0.3s ease;
  }

  .pc-diagram__ram:hover {
    background: rgba(100, 150, 226, 0.2);
    border-color: #6496e2;
    color: #fff;
    box-shadow: 
      0 0 25px rgba(100, 150, 226, 0.6),
      inset 0 0 10px rgba(100, 150, 226, 0.3);
    transform: scale(1.05) translateX(-2px);
  }

  .pc-diagram__pcie { grid-column: 1 / -1; grid-row: 2; }
  .pc-diagram__storage { grid-column: 1 / -1; grid-row: 3; }

  .pc-diagram__label {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 0.65rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.8);
    letter-spacing: 0.15em;
    text-shadow: 0 0 5px rgba(226, 43, 42, 0.8);
    transition: color 0.3s ease;
  }

  .pc-diagram__cpu:hover .pc-diagram__label,
  .pc-diagram__pcie:hover .pc-diagram__label,
  .pc-diagram__storage:hover .pc-diagram__label {
    color: #fff;
    text-shadow: 0 0 10px rgba(226, 43, 42, 1);
  }

  .pc-diagram__pulse {
    position: absolute;
    inset: -20px;
    border-radius: 12px;
    border: 1px solid rgba(226, 43, 42, 0.2);
    animation: case-pulse 4s ease-in-out infinite;
    pointer-events: none;
  }

  @keyframes case-pulse {
    0%, 100% { opacity: 0; transform: scale(0.98); }
    50% { opacity: 1; transform: scale(1.02); box-shadow: 0 0 30px rgba(226, 43, 42, 0.1); }
  }

  /* ── Steps ── */
  .pc-builder__steps {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }

  .pc-builder__step {
    display: flex;
    gap: 1.25rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 6px;
    transition: border-color 0.3s ease, background 0.3s ease;
  }

  .pc-builder__step:hover {
    border-color: rgba(226, 43, 42, 0.25);
    background: rgba(226, 43, 42, 0.04);
  }

  .pc-builder__step-num {
    width: 36px;
    height: 36px;
    background: var(--amd-red, #e22b2a);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 0.8rem;
    font-weight: 700;
    flex-shrink: 0;
  }

  .pc-builder__step-content { flex: 1; }

  .pc-builder__step-title {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-foreground, #fff);
    margin-bottom: 0.4rem;
  }

  .pc-builder__step-desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin-bottom: 0.75rem;
  }

  .pc-builder__step-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amd-red, #e22b2a);
    text-decoration: none;
    transition: gap 0.25s ease;
  }

  .pc-builder__step-link:hover { gap: 0.55rem; }

  .pc-builder__cta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-top: 0.5rem;
  }

  .pc-builder__cta .btn--primary {
    box-shadow: 0 0 15px rgba(226, 43, 42, 0.3);
    transition: all 0.3s ease;
  }
  
  .pc-builder__cta .btn--primary:hover {
    box-shadow: 0 0 25px rgba(226, 43, 42, 0.7);
    background: #ff3b3a;
    transform: translateY(-2px);
  }

  .pc-builder__cta-note {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.35);
  }

  @media (max-width: 900px) {
    .pc-builder__layout { grid-template-columns: 1fr; gap: 3rem; }
    .pc-builder__diagram { order: -1; }
  }

  @media (max-width: 600px) { .pc-builder { padding: 4rem 0; } }

  @media (max-width: 1023px) {
    .pc-diagram__cpu, .pc-diagram__pcie, .pc-diagram__storage {
      animation: none; border-color: rgba(226, 43, 42, 0.3); box-shadow: none;
    }
    .pc-diagram__ram { animation: none; border-color: rgba(100, 150, 226, 0.3); box-shadow: none; }
    .pc-diagram__pulse { animation: none; opacity: 0.3; }
  }
/* END_SECTION:pc-builder */

/* START_SECTION:processor-showcase (INDEX:21) */
.processor-showcase {
    padding: 6rem 0;
    background: var(--amd-surface, #111111);
    position: relative;
    overflow: hidden;
  }

  .processor-showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--amd-red, #e22b2a), transparent);
  }

  .processor-showcase::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--amd-red, #e22b2a), transparent);
  }

  .processor-showcase__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
  }

  .processor-showcase__content { }

  .processor-showcase__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 2.5rem;
    max-width: 480px;
  }

  .processor-showcase__specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
    margin-bottom: 2.5rem;
  }

  .processor-showcase__spec {
    background: rgba(226, 43, 42, 0.07);
    border: 1px solid rgba(226, 43, 42, 0.18);
    border-radius: 4px;
    padding: 1rem 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    transition: border-color 0.25s ease, background 0.25s ease;
  }

  .processor-showcase__spec:hover {
    border-color: rgba(226, 43, 42, 0.45);
    background: rgba(226, 43, 42, 0.12);
  }

  .processor-showcase__spec-value {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--amd-red, #e22b2a);
    line-height: 1;
  }

  .processor-showcase__spec-label {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  /* ── Visual side ── */
  .processor-showcase__visual {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .processor-showcase__image-wrap {
    position: relative;
  }

  .processor-showcase__image-wrap::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 50% 100%, rgba(226, 43, 42, 0.15) 0%, transparent 65%);
    pointer-events: none;
  }

  .processor-showcase__image {
    border-radius: 8px;
    animation: chip-float 6s ease-in-out infinite;
  }

  @keyframes chip-float {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50%       { transform: translateY(-14px) rotate(1deg); }
  }

  /* ── CSS chip ── */
  .processor-showcase__chip {
    position: relative;
    perspective: 800px;
  }

  .chip__body {
    width: 220px;
    height: 220px;
    background: linear-gradient(145deg, #1e1e1e, #0a0a0a);
    border: 2px solid rgba(226, 43, 42, 0.25);
    border-radius: 8px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: chip-rotate 8s ease-in-out infinite;
    box-shadow:
      0 0 40px rgba(226, 43, 42, 0.15),
      inset 0 0 20px rgba(0, 0, 0, 0.5);
  }

  @keyframes chip-rotate {
    0%   { transform: rotateY(-12deg) rotateX(6deg); }
    50%  { transform: rotateY(12deg) rotateX(-6deg); }
    100% { transform: rotateY(-12deg) rotateX(6deg); }
  }

  .chip__die {
    width: 160px;
    height: 160px;
    background: linear-gradient(145deg, #1a0404, #0d0d0d);
    border: 1px solid rgba(226, 43, 42, 0.35);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    position: relative;
  }

  .chip__core-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
    padding: 8px;
  }

  .chip__core {
    width: 14px;
    height: 14px;
    background: rgba(226, 43, 42, 0.25);
    border: 1px solid rgba(226, 43, 42, 0.5);
    border-radius: 2px;
    animation: core-blink 3s ease-in-out infinite;
  }

  .chip__core:nth-child(2n)  { animation-delay: 0.4s; }
  .chip__core:nth-child(3n)  { animation-delay: 0.8s; }
  .chip__core:nth-child(4n)  { animation-delay: 1.2s; }
  .chip__core:nth-child(5n)  { animation-delay: 0.6s; }
  .chip__core:nth-child(7n)  { animation-delay: 1.0s; }

  @keyframes core-blink {
    0%, 100% { background: rgba(226, 43, 42, 0.2); box-shadow: none; }
    50%       { background: rgba(226, 43, 42, 0.7); box-shadow: 0 0 6px rgba(226, 43, 42, 0.5); }
  }

  .chip__label {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 0.55rem;
    font-weight: 700;
    color: var(--amd-red, #e22b2a);
    letter-spacing: 0.2em;
  }

  .chip__sublabel {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 0.4rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.15em;
  }

  .chip__pins {
    position: absolute;
    display: flex;
    gap: 6px;
  }

  .chip__pins--top {
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
  }

  .chip__pins--bottom {
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: row;
  }

  .chip__pins--left {
    left: -10px;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
  }

  .chip__pins--right {
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    flex-direction: column;
  }

  .chip__pin {
    width: 8px;
    height: 3px;
    background: #888;
    border-radius: 1px;
    flex-shrink: 0;
  }

  .chip__pin--side {
    width: 3px;
    height: 8px;
  }

  .chip__glow {
    position: absolute;
    inset: -30px;
    background: radial-gradient(circle at center, rgba(226, 43, 42, 0.2) 0%, transparent 65%);
    pointer-events: none;
    animation: glow-pulse 3s ease-in-out infinite;
  }

  @keyframes glow-pulse {
    0%, 100% { opacity: 0.6; }
    50%       { opacity: 1; }
  }

  @media (max-width: 900px) {
    .processor-showcase__inner {
      grid-template-columns: 1fr;
      gap: 3rem;
    }

    .processor-showcase__visual {
      order: -1;
    }
  }

  @media (max-width: 600px) {
    .processor-showcase {
      padding: 4rem 0;
    }

    .processor-showcase__specs {
      grid-template-columns: 1fr 1fr;
    }

    .chip__body {
      width: 180px;
      height: 180px;
    }

    .chip__die {
      width: 130px;
      height: 130px;
    }

    .chip__core {
      width: 11px;
      height: 11px;
    }
  }

  /* ─────────────────────────────────────────────
     MOBILE SAFARI CRASH PREVENTION
     Disable all 3D and infinite CSS animations.

     chip-rotate uses rotateX/rotateY in an infinite
     loop — this is the heaviest single animation:
     3D matrix recalculation every frame + box-shadow
     repaint = confirmed OOM crash on iPhone Safari.

     core-blink × 16 = 16 simultaneous animated layers.
  ───────────────────────────────────────────── */
  @media (max-width: 1023px) {
    /* Kill 3D chip rotation — heaviest single animation */
    .chip__body {
      animation: none;
      transform: none;
    }

    /* Kill floating image animation */
    .processor-showcase__image {
      animation: none;
    }

    /* Kill all 16 core blink animations */
    .chip__core {
      animation: none;
      background: rgba(226, 43, 42, 0.35);
    }

    /* Kill glow pulse */
    .chip__glow {
      animation: none;
      opacity: 0.5;
    }

    /* Remove perspective — no longer needed without 3D animation */
    .processor-showcase__chip {
      perspective: none;
    }

    /* Remove box-shadow repaint cost */
    .chip__body {
      box-shadow: 0 0 20px rgba(226, 43, 42, 0.1);
    }
  }
/* END_SECTION:processor-showcase */

/* START_SECTION:product (INDEX:22) */
/* ─── Page wrapper ─────────────────────────────────────── */
  .pd-page {
    padding: 0 0 5rem;
  }

  /* ─── Breadcrumb ───────────────────────────────────────── */
  .pd-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.3rem;
    padding: 1.2rem 0 1.5rem;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
  }
  .pd-breadcrumb__link {
    color: rgba(255,255,255,0.45);
    text-decoration: none;
    transition: color 0.2s ease;
  }
  .pd-breadcrumb__link:hover { color: var(--amd-red, #e22b2a); }
  .pd-breadcrumb__sep { color: rgba(255,255,255,0.2); }
  .pd-breadcrumb__current { color: rgba(255,255,255,0.7); }

  /* ─── 2-column layout ──────────────────────────────────── */
  .pd-layout {
    display: grid;
    grid-template-columns: 45% 1fr;
    gap: 3.5rem;
    align-items: start;
  }

  /* ─── Gallery ──────────────────────────────────────────── */
  .pd-gallery {
    position: sticky;
    top: calc(var(--header-height, 80px) + 1.5rem);
    align-self: start;
  }

  .pd-gallery__main {
    position: relative;
    background: #111;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: zoom-in;
  }

  .pd-gallery__img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.1s ease;
  }

  .pd-gallery__main--zoom:hover .pd-gallery__img {
    transform: scale(2.2);
  }

  .pd-gallery__zoom-hint {
    position: absolute;
    bottom: 0.75rem;
    right: 0.75rem;
    background: rgba(0,0,0,0.5);
    color: rgba(255,255,255,0.6);
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
  }

  .pd-gallery__main:hover .pd-gallery__zoom-hint { opacity: 1; }

  .pd-gallery__thumbs {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
  }

  .pd-gallery__thumb {
    flex-shrink: 0;
    width: 72px;
    height: 72px;
    border: 2px solid rgba(255,255,255,0.1);
    border-radius: 4px;
    overflow: hidden;
    background: #111;
    cursor: pointer;
    padding: 0;
    transition: border-color 0.2s ease;
  }
  .pd-gallery__thumb img { width: 100%; height: 100%; object-fit: cover; }
  .pd-gallery__thumb.is-active,
  .pd-gallery__thumb:hover { border-color: var(--amd-red, #e22b2a); }

  /* ─── Product info ─────────────────────────────────────── */
  .pd-info { display: flex; flex-direction: column; gap: 1.1rem; }

  .pd-info__brand {
    display: inline-block;
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amd-red, #e22b2a);
    text-decoration: none;
    background: rgba(226,43,42,0.1);
    border: 1px solid rgba(226,43,42,0.25);
    padding: 0.25rem 0.75rem;
    border-radius: 2rem;
  }

  .pd-info__title {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: 700;
    color: #fff;
    line-height: 1.2;
    margin: 0;
  }

  /* ─── Price ────────────────────────────────────────────── */
  .pd-info__price-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .pd-info__price {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 1.9rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
  }

  .pd-info__price--sale { color: var(--amd-red, #e22b2a); }

  .pd-info__price-compare {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.35);
    text-decoration: line-through;
  }

  .pd-info__save-badge {
    background: rgba(226,43,42,0.15);
    border: 1px solid rgba(226,43,42,0.4);
    color: #ff6b5a;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 0.25rem 0.6rem;
    border-radius: 2px;
  }

  /* ─── Availability ─────────────────────────────────────── */
  .pd-info__avail { display: flex; align-items: center; }

  .pd-info__stock {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
  }
  .pd-info__stock--in  { color: #4ade80; }
  .pd-info__stock--out { color: #ff6b6b; }

  /* ─── Short description ────────────────────────────────── */
  .pd-info__excerpt {
    font-size: 0.9rem;
    line-height: 1.72;
    color: rgba(255,255,255,0.6);
    margin: 0;
    padding: 1rem;
    background: rgba(255,255,255,0.03);
    border-left: 3px solid rgba(226,43,42,0.4);
    border-radius: 0 4px 4px 0;
  }

  /* ─── Variant options ──────────────────────────────────── */
  .pd-form__options { display: flex; flex-direction: column; gap: 1rem; }

  .pd-form__option-group { display: flex; flex-direction: column; gap: 0.5rem; }

  .pd-form__option-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .pd-form__option-selected {
    color: #fff;
    font-weight: 700;
    text-transform: none;
    letter-spacing: 0;
  }

  .pd-form__option-values { display: flex; flex-wrap: wrap; gap: 0.4rem; }

  .pd-form__opt-btn {
    min-width: 44px;
    padding: 0.45rem 1rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 4px;
    color: rgba(255,255,255,0.75);
    font-size: 0.82rem;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
  }
  .pd-form__opt-btn:hover {
    background: rgba(226,43,42,0.1);
    border-color: rgba(226,43,42,0.5);
    color: #fff;
  }
  .pd-form__opt-btn.is-active {
    background: rgba(226,43,42,0.18);
    border-color: var(--amd-red, #e22b2a);
    color: #fff;
  }

  /* ─── Quantity ─────────────────────────────────────────── */
  .pd-form__qty-row {
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .pd-form__qty-label {
    font-size: 0.78rem;
    font-weight: 600;
    color: rgba(255,255,255,0.6);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    white-space: nowrap;
  }

  .pd-qty-ctrl {
    display: flex;
    align-items: stretch;
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 4px;
    overflow: hidden;
  }

  .pd-qty-btn {
    width: 40px;
    background: rgba(255,255,255,0.05);
    border: none;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease, color 0.2s ease;
  }
  .pd-qty-btn:hover { background: rgba(226,43,42,0.15); color: #fff; }

  .pd-qty-input {
    width: 52px;
    background: transparent;
    border: none;
    border-left: 1px solid rgba(255,255,255,0.1);
    border-right: 1px solid rgba(255,255,255,0.1);
    color: #fff;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    padding: 0.5rem 0.25rem;
    -moz-appearance: textfield;
  }
  .pd-qty-input::-webkit-inner-spin-button,
  .pd-qty-input::-webkit-outer-spin-button { -webkit-appearance: none; }

  /* ─── Action buttons ───────────────────────────────────── */
  .pd-form__actions {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }

 .pd-form__atc {
    width: 100%;
    font-size: 0.95rem;
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    gap: 0.6rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    background: var(--amd-red, #e22b2a);
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.15s ease, box-shadow 0.3s ease;
  }

  .pd-form__atc svg {
    margin-right: 8px;
  }

  .pd-form__atc:hover:not(:disabled) {
    background: #ff3b3a;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(226, 43, 42, 0.4);
  }

  .pd-form__atc:disabled {
    opacity: 0.5;
    background: #333;
    color: #888;
    cursor: not-allowed;
    transform: none !important;
    box-shadow: none;
  }

.pd-form__payment-btn { width: 100%; }
  .pd-form__payment-btn .shopify-payment-button { width: 100%; }
  .pd-form__payment-btn .shopify-payment-button__button { border-radius: 4px !important; }

  /* Premium fix for the 'More payment options' dynamic text link */
  .pd-form__payment-btn .shopify-payment-button__more-options {
    color: rgba(255, 255, 255, 0.6) !important;
    font-size: 0.82rem !important;
    text-decoration: underline !important;
    text-underline-offset: 4px;
    margin-top: 0.5rem;
    display: inline-block;
    transition: color 0.2s ease, text-shadow 0.2s ease;
  }

  .pd-form__payment-btn .shopify-payment-button__more-options:hover {
    color: #ff6b00 !important; /* Turns into your clean theme orange on hover */
    text-shadow: 0 0 8px rgba(255, 107, 0, 0.4);
  }

  /* ─── Trust badges ─────────────────────────────────────── */
  .pd-trust {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.5rem;
    padding: 1.1rem;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 6px;
  }

  .pd-trust__item {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.76rem;
    color: rgba(255,255,255,0.7);
    font-weight: 500;
  }
  .pd-trust__item svg { color: #4ade80; flex-shrink: 0; }

  /* ─── Product meta ─────────────────────────────────────── */
  .pd-meta { display: flex; flex-direction: column; gap: 0.35rem; }

  .pd-meta__row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
  }
  .pd-meta__label { color: rgba(255,255,255,0.4); }
  .pd-meta__val   { color: rgba(255,255,255,0.75); }

  /* ─── Tabs ─────────────────────────────────────────────── */
  .pd-tabs {
    margin-top: 3.5rem;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 6px;
    overflow: hidden;
  }

  .pd-tabs__nav {
    display: flex;
    background: rgba(255,255,255,0.03);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    overflow-x: auto;
  }

  .pd-tabs__btn {
    flex-shrink: 0;
    padding: 1rem 1.75rem;
    background: none;
    border: none;
    color: rgba(255,255,255,0.5);
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
  }
  .pd-tabs__btn:hover { color: rgba(255,255,255,0.8); }
  .pd-tabs__btn.is-active {
    color: #fff;
    border-bottom-color: var(--amd-red, #e22b2a);
  }

  .pd-tabs__panel { display: none; padding: 2rem; }
  .pd-tabs__panel.is-active { display: block; }

  /* ─── Specs table ──────────────────────────────────────── */
  .pd-specs {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
  }

  .pd-specs__row { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .pd-specs__row:nth-child(even) { background: rgba(255,255,255,0.02); }

  .pd-specs__key {
    width: 38%;
    padding: 0.75rem 1rem;
    text-align: left;
    font-weight: 600;
    color: rgba(255,255,255,0.55);
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    vertical-align: top;
  }

  .pd-specs__val {
    padding: 0.75rem 1rem;
    color: rgba(255,255,255,0.85);
    vertical-align: top;
    line-height: 1.55;
  }

  .pd-specs__empty {
    padding: 2rem;
    text-align: center;
    color: rgba(255,255,255,0.35);
    font-size: 0.88rem;
  }

  /* ─── Description / shipping RTE ──────────────────────── */
  .pd-description, .pd-shipping {
    color: rgba(255,255,255,0.72);
    font-size: 0.9rem;
    line-height: 1.75;
  }
  .pd-description h2, .pd-description h3 {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    color: #fff;
    margin: 1.5rem 0 0.75rem;
  }
  .pd-description a { color: var(--amd-red, #e22b2a); }
  .pd-description ul, .pd-description ol {
    padding-left: 1.25rem;
    margin: 0.75rem 0;
  }
  .pd-description li { margin-bottom: 0.35rem; }

  /* ─── Related products ─────────────────────────────────── */
  .pd-related { margin-top: 4rem; }

  .pd-related__hd {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .pd-related__title {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
  }

  .pd-related__all {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--amd-red, #e22b2a);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
  .pd-related__all:hover { text-decoration: underline; }

  .pd-related__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }

  /* ─── Related product cards ────────────────────────────── */
  .pd-rel-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: #111;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
  }
  .pd-rel-card:hover {
    border-color: rgba(226,43,42,0.4);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.5);
  }

  .pd-rel-card__media {
    position: relative;
    aspect-ratio: 1 / 1;
    background: #0d0d0d;
    overflow: hidden;
  }
  .pd-rel-card__img { width: 100%; height: 100%; object-fit: cover; }
  .pd-rel-card__placeholder { width: 100%; height: 100%; background: #0d0d0d; }

  .pd-rel-card__badge {
    position: absolute;
    top: 0.5rem;
    left: 0.5rem;
    background: var(--amd-red, #e22b2a);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.2rem 0.5rem;
    border-radius: 2px;
  }

  .pd-rel-card__info { padding: 0.85rem 0.9rem; display: flex; flex-direction: column; gap: 0.25rem; }

  .pd-rel-card__vendor {
    font-size: 0.65rem;
    font-weight: 600;
    color: var(--amd-red, #e22b2a);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .pd-rel-card__title {
    font-size: 0.82rem;
    font-weight: 600;
    color: rgba(255,255,255,0.88);
    line-height: 1.35;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
  }

  .pd-rel-card__price { display: flex; gap: 0.4rem; align-items: baseline; margin-top: 0.15rem; }
  .pd-rel-card__price-cur { font-size: 0.9rem; font-weight: 700; color: #fff; }
  .pd-rel-card__price-cur.is-sale { color: var(--amd-red, #e22b2a); }
  .pd-rel-card__price-was { font-size: 0.75rem; color: rgba(255,255,255,0.3); text-decoration: line-through; }

  /* ─── Responsive ───────────────────────────────────────── */
  @media (max-width: 1024px) {
    .pd-layout { grid-template-columns: 1fr; gap: 2rem; }
    .pd-gallery { position: static; }
    .pd-gallery__main { aspect-ratio: 4 / 3; max-width: 560px; margin: 0 auto; }
    .pd-related__grid { grid-template-columns: repeat(3, 1fr); }
  }

  @media (max-width: 640px) {
    .pd-trust { grid-template-columns: 1fr; }
    .pd-related__grid { grid-template-columns: repeat(2, 1fr); gap: 0.75rem; }
    .pd-form__qty-row { flex-direction: column; align-items: flex-start; }
    .pd-tabs__btn { padding: 0.85rem 1.25rem; }
    .pd-tabs__panel { padding: 1.5rem 1rem; }
  }

  @media (max-width: 480px) {
    .pd-gallery__thumbs { gap: 0.35rem; }
    .pd-gallery__thumb { width: 58px; height: 58px; }
  }
/* END_SECTION:product */

/* START_SECTION:promo-banner (INDEX:23) */
.promo-banner {
    position: relative;
    overflow: hidden;
  }

  .promo-banner__link {
    display: block;
    text-decoration: none;
    color: #fff;
    position: relative;
  }

  .promo-banner__media {
    aspect-ratio: 21 / 7;
    overflow: hidden;
    background: linear-gradient(135deg, #1a0404 0%, #0d0d0d 100%);
  }

  .promo-banner__media--placeholder {
    background: linear-gradient(135deg, rgba(226,43,42,0.15) 0%, #0d0d0d 100%);
  }

  .promo-banner__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
    display: block;
  }

  .promo-banner__image--mobile {
    display: none;
  }

  .promo-banner__link:hover .promo-banner__image {
    transform: scale(1.03);
  }

  .promo-banner__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.82) 0%, rgba(0,0,0,0.45) 45%, rgba(0,0,0,0.1) 100%);
    pointer-events: none;
  }

  .promo-banner__content {
    position: absolute;
    top: 50%;
    left: clamp(1.5rem, 6%, 7rem);
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
    max-width: 520px;
  }

  .promo-banner__badge {
    display: inline-flex;
    align-items: center;
    background: var(--amd-red, #e22b2a);
    color: #fff;
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    padding: 0.3rem 0.85rem;
    border-radius: 2px;
    width: fit-content;
  }

  .promo-banner__heading {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: clamp(1.3rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  }

  .promo-banner__subheading {
    font-size: clamp(0.85rem, 1.4vw, 1rem);
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.55;
  }

  .promo-banner__cta {
    width: fit-content;
    margin-top: 0.25rem;
    pointer-events: none;
  }

  @media (max-width: 768px) {
    .promo-banner__image--desktop { display: none; }
    .promo-banner__image--mobile { display: block; }

    .promo-banner__media {
      aspect-ratio: 4 / 3;
    }

    .promo-banner__overlay {
      background: linear-gradient(180deg, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.8) 100%);
    }

    .promo-banner__content {
      top: auto;
      bottom: 1.5rem;
      left: 1.25rem;
      right: 1.25rem;
      transform: none;
      max-width: none;
      gap: 0.5rem;
    }

    .promo-banner__cta { display: none; }
  }

  @media (max-width: 480px) {
    .promo-banner__media {
      aspect-ratio: 3 / 2;
    }
  }
/* END_SECTION:promo-banner */

/* START_SECTION:reviews (INDEX:24) */
.reviews {
    padding: 6rem 0;
    background: var(--amd-surface, #111111);
    position: relative;
  }

  .reviews::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(226, 43, 42, 0.3), transparent);
  }

  .reviews__aggregate {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
  }

  .reviews__aggregate-score {
    display: flex;
    align-items: baseline;
    gap: 0.2rem;
  }

  .reviews__aggregate-num {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--amd-red, #e22b2a);
    line-height: 1;
  }

  .reviews__aggregate-max {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.35);
  }

  .reviews__aggregate-stars {
    display: flex;
    gap: 3px;
  }

  .reviews__aggregate-count {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
  }

  .review-star {
    color: rgba(255, 255, 255, 0.15);
    flex-shrink: 0;
  }

  .review-star--full {
    color: #FFB800;
    filter: drop-shadow(0 0 4px rgba(255, 184, 0, 0.4));
  }

  .reviews__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }

  .review-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    transition: border-color 0.3s ease, transform 0.3s ease;
  }

  .review-card:hover {
    border-color: rgba(226, 43, 42, 0.2);
    transform: translateY(-3px);
  }

  .review-card__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .review-card__stars {
    display: flex;
    gap: 2px;
  }

  .review-card__verified {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4caf50;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 2rem;
  }

  .review-card__verified::before {
    content: '✓';
  }

  .review-card__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-foreground, #fff);
    line-height: 1.4;
  }

  .review-card__text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
    flex: 1;
  }

  .review-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .review-card__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .review-card__avatar {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--amd-red, #e22b2a), #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
  }

  .review-card__name {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-foreground, #fff);
  }

  .review-card__product {
    display: block;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.1rem;
  }

  .review-card__date {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3);
    white-space: nowrap;
  }

  @media (max-width: 900px) {
    .reviews__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .reviews {
      padding: 4rem 0;
    }

    .reviews__grid {
      grid-template-columns: 1fr;
    }
  }

  /* SAFARI CRASH FIX: filter: drop-shadow on review stars creates a GPU
     compositing layer per star. With 20 stars on the page (5 aggregate +
     15 in cards), all firing via IntersectionObserver simultaneously,
     this exhausts compositor memory on iPhone Safari. */
  @media (max-width: 1023px) {
    .review-star--full {
      filter: none;
    }
  }
/* END_SECTION:reviews */

/* START_SECTION:search (INDEX:25) */
.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .search-results .prev,
  .search-results .page,
  .search-results .next {
    grid-column: 1 / -1;
  }
/* END_SECTION:search */

/* START_SECTION:top-deals (INDEX:26) */
.top-deals {
    padding: 6rem 0;
    background: var(--amd-surface, #111111);
    position: relative;
  }

  .top-deals::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(226, 43, 42, 0.3), transparent);
  }

  .top-deals__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }

  .deal-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--color-foreground, #fff);
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  }

  .deal-card:hover {
    border-color: rgba(226, 43, 42, 0.4);
    transform: translateY(-5px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.5);
  }

  .deal-card__media {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    background: #0d0d0d;
  }

  .deal-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }

  .deal-card:hover .deal-card__image {
    transform: scale(1.06);
  }

  .deal-card__placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(145deg, #160606, #0d0d0d);
  }

  .deal-card__badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: var(--amd-red, #e22b2a);
    color: #fff;
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 0.62rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.28rem 0.65rem;
    border-radius: 2px;
  }

  .deal-card__info {
    padding: 1rem 1.1rem 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    flex: 1;
  }

  .deal-card__vendor {
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amd-red, #e22b2a);
  }

  .deal-card__title {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-foreground, #fff);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .deal-card__price {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.45rem;
  }

  .deal-card__price--regular,
  .deal-card__price--sale {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 1.05rem;
    font-weight: 700;
  }

  .deal-card__price--regular {
    color: var(--color-foreground, #fff);
  }

  .deal-card__price--sale {
    color: var(--amd-red, #e22b2a);
  }

  .deal-card__price--original {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: line-through;
  }

  .deal-card__savings {
    font-size: 0.7rem;
    font-weight: 700;
    color: #4caf50;
    background: rgba(76, 175, 80, 0.12);
    border: 1px solid rgba(76, 175, 80, 0.22);
    padding: 0.15rem 0.4rem;
    border-radius: 2px;
    font-family: var(--font-gaming, 'Orbitron', monospace);
  }

  .deal-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--amd-red, #e22b2a);
    margin-top: auto;
    padding-top: 0.7rem;
    transition: gap 0.2s ease;
  }

  .deal-card__cta::after {
    content: '→';
  }

  .deal-card:hover .deal-card__cta {
    gap: 0.5rem;
  }

  @media (max-width: 1024px) {
    .top-deals__grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

  @media (max-width: 768px) {
    .top-deals {
      padding: 4rem 0;
    }

    .top-deals__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 480px) {
    .top-deals__grid {
      gap: 1rem;
    }
  }
/* END_SECTION:top-deals */

/* START_SECTION:trust-bar (INDEX:27) */
.trust-bar {
    background: rgba(226, 43, 42, 0.07);
    border-top: 1px solid rgba(226, 43, 42, 0.18);
    border-bottom: 1px solid rgba(226, 43, 42, 0.18);
    padding: 0.8rem 0;
  }

  .trust-bar__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    max-width: var(--max-page-width, 110rem);
    margin: 0 auto;
    padding: 0 var(--page-margin, 20px);
  }

  .trust-bar__item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.4rem 1.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    letter-spacing: 0.04em;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    white-space: nowrap;
  }

  .trust-bar__item:last-child {
    border-right: none;
  }

  .trust-bar__icon {
    color: var(--amd-red, #e22b2a);
    flex-shrink: 0;
  }

  @media (max-width: 900px) {
    .trust-bar__item {
      border-right: none;
      padding: 0.35rem 1rem;
      font-size: 0.75rem;
    }
  }

  @media (max-width: 600px) {
    .trust-bar__inner {
      overflow-x: auto;
      flex-wrap: nowrap;
      justify-content: flex-start;
      -webkit-overflow-scrolling: touch;
      scrollbar-width: none;
    }

    .trust-bar__inner::-webkit-scrollbar { display: none; }

    .trust-bar__item {
      flex-shrink: 0;
      border-right: 1px solid rgba(255, 255, 255, 0.1);
    }
  }
/* END_SECTION:trust-bar */

/* START_SECTION:why-amd (INDEX:28) */
.why-amd {
    padding: 6rem 0;
  }

  .why-amd__grid {
    display: grid;
    grid-template-columns: repeat(var(--columns, 4), 1fr);
    gap: 1.5rem;
  }

  .feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
  }

  .feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--amd-red, #e22b2a), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  .feature-card:hover {
    border-color: rgba(226, 43, 42, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
  }

  .feature-card:hover::before {
    transform: scaleX(1);
  }

  .feature-card__icon {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.25rem;
  }

  .feature-card__title {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-foreground, #fff);
    line-height: 1.3;
  }

  .feature-card__desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
    flex: 1;
  }

  .feature-card__stat {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-top: 0.5rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .feature-card__stat-value {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--amd-red, #e22b2a);
    line-height: 1;
  }

  .feature-card__stat-label {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }

  .why-amd__footer {
    display: flex;
    justify-content: center;
    margin-top: 3.5rem;
  }

  @media (max-width: 1024px) {
    .why-amd__grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 600px) {
    .why-amd {
      padding: 4rem 0;
    }

    .why-amd__grid {
      grid-template-columns: 1fr;
    }
  }
/* END_SECTION:why-amd */

/* CSS from block stylesheet tags */
/* START_BLOCK:benchmark-item (INDEX:29) */
.benchmark-block__header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.6rem;
  }

  .benchmark-block__title {
    font-size: 0.85rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
  }

  .benchmark-block__scores {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8rem;
  }

  .benchmark-block__score--amd {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-weight: 700;
    color: var(--amd-red, #e22b2a);
  }

  .benchmark-block__score--competitor {
    color: rgba(255, 255, 255, 0.4);
  }

  .benchmark-block__vs {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.25);
    text-transform: uppercase;
    letter-spacing: 0.08em;
  }

  .benchmark-block__track {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }

  .benchmark-block__fill {
    height: 8px;
    border-radius: 2px;
    transform-origin: left center;
    transform: scaleX(0);
    transition: transform 1s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .in-view .benchmark-block__fill {
    transform: scaleX(1);
  }

  .benchmark-block__fill--amd {
    width: var(--bar-width, 0%);
    background: linear-gradient(90deg, var(--amd-red, #e22b2a) 0%, #ff6b35 100%);
    box-shadow: 0 0 8px rgba(226, 43, 42, 0.4);
  }

  .benchmark-block__fill--competitor {
    width: var(--bar-width, 0%);
    background: rgba(255, 255, 255, 0.15);
  }

  .sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0,0,0,0);
    white-space: nowrap;
    border: 0;
  }
/* END_BLOCK:benchmark-item */

/* START_BLOCK:collection-card (INDEX:30) */
.collection-block {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: var(--color-foreground, #fff);
    background: var(--amd-surface, #111111);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 4px;
    overflow: hidden;
    transition: border-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
  }

  .collection-block:hover {
    border-color: rgba(226, 43, 42, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(226, 43, 42, 0.12);
  }

  .collection-block__media {
    position: relative;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #0d0d0d;
  }

  .collection-block__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
  }

  .collection-block:hover .collection-block__image {
    transform: scale(1.08);
  }

  .collection-block__placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1a0606 0%, #0d0d0d 100%);
  }

  .collection-block__icon {
    font-size: 3rem;
    opacity: 0.35;
    filter: grayscale(1);
  }

  /* SAFARI CRASH FIX: filter on mobile = unnecessary GPU layer */
  @media (max-width: 1023px) {
    .collection-block__icon { filter: none; }
  }

  .collection-block__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 40%, rgba(0, 0, 0, 0.7) 100%);
    transition: background 0.3s ease;
  }

  .collection-block:hover .collection-block__overlay {
    background: linear-gradient(to bottom, transparent 20%, rgba(10, 0, 0, 0.8) 100%);
  }

  .collection-block__info {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
  }

  .collection-block__icon-small {
    font-size: 1.5rem;
    line-height: 1;
    margin-bottom: 0.2rem;
  }

  .collection-block__title {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--color-foreground, #fff);
    line-height: 1.3;
  }

  .collection-block__count {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
  }

  .collection-block__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--amd-red, #e22b2a);
    margin-top: 0.4rem;
    transition: gap 0.25s ease;
  }

  .collection-block__cta::after {
    content: '→';
    transition: transform 0.25s ease;
  }

  .collection-block:hover .collection-block__cta::after {
    transform: translateX(4px);
  }
/* END_BLOCK:collection-card */

/* START_BLOCK:faq-item (INDEX:31) */
.faq-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 6px;
    overflow: hidden;
    transition: border-color 0.25s ease;
  }

  .faq-block[open] {
    border-color: rgba(226, 43, 42, 0.3);
  }

  .faq-block__question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    list-style: none;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-foreground, #fff);
    line-height: 1.4;
    transition: background 0.25s ease;
    user-select: none;
  }

  .faq-block__question::-webkit-details-marker {
    display: none;
  }

  .faq-block__question:hover {
    background: rgba(226, 43, 42, 0.05);
  }

  .faq-block[open] .faq-block__question {
    background: rgba(226, 43, 42, 0.07);
    color: var(--amd-red, #e22b2a);
  }

  .faq-block__icon {
    flex-shrink: 0;
    transition: transform 0.3s ease;
    color: rgba(255, 255, 255, 0.4);
  }

  .faq-block[open] .faq-block__icon {
    transform: rotate(180deg);
    color: var(--amd-red, #e22b2a);
  }

  .faq-block__answer {
    padding: 0 1.5rem 1.5rem;
  }

  .faq-block__answer p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
  }
/* END_BLOCK:faq-item */

/* START_BLOCK:feature-card (INDEX:32) */
.feature-block {
    padding: 2rem 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    position: relative;
    overflow: hidden;
  }

  .feature-block::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--amd-red, #e22b2a), transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
  }

  .feature-block:hover::before {
    transform: scaleX(1);
  }

  .feature-block__icon {
    font-size: 2rem;
    line-height: 1;
    margin-bottom: 0.25rem;
  }

  .feature-block__title {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--color-foreground, #fff);
    line-height: 1.3;
  }

  .feature-block__desc {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.65;
    flex: 1;
  }

  .feature-block__stat {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    margin-top: 0.25rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .feature-block__stat-value {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--amd-red, #e22b2a);
    line-height: 1;
  }

  .feature-block__stat-label {
    font-size: 0.68rem;
    color: rgba(255, 255, 255, 0.35);
    text-transform: uppercase;
    letter-spacing: 0.1em;
  }
/* END_BLOCK:feature-card */

/* START_BLOCK:group (INDEX:33) */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
/* END_BLOCK:group */

/* START_BLOCK:review-card (INDEX:34) */
.review-block {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 8px;
    padding: 1.75rem;
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
    transition: border-color 0.3s ease, transform 0.3s ease;
  }

  .review-block:hover {
    border-color: rgba(226, 43, 42, 0.2);
    transform: translateY(-3px);
  }

  .review-block__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .review-block__stars {
    display: flex;
    gap: 2px;
  }

  .review-star { color: rgba(255, 255, 255, 0.15); }
  .review-star--full { color: #FFB800; filter: drop-shadow(0 0 4px rgba(255, 184, 0, 0.4)); }

  /* SAFARI CRASH FIX: filter on stars = GPU layer per star element */
  @media (max-width: 1023px) {
    .review-star--full { filter: none; }
  }

  .review-block__verified {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #4caf50;
    background: rgba(76, 175, 80, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 2rem;
  }

  .review-block__verified::before { content: '✓'; }

  .review-block__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-foreground, #fff);
    line-height: 1.4;
  }

  .review-block__text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.65;
    flex: 1;
  }

  .review-block__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
  }

  .review-block__author {
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .review-block__avatar {
    width: 34px;
    height: 34px;
    background: linear-gradient(135deg, var(--amd-red, #e22b2a), #ff6b35);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 0.8rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
  }

  .review-block__name {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-foreground, #fff);
  }

  .review-block__product {
    display: block;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.4);
    margin-top: 0.1rem;
  }

  .review-block__date {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.3);
    white-space: nowrap;
  }
/* END_BLOCK:review-card */

/* START_BLOCK:text (INDEX:35) */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
/* END_BLOCK:text */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:image (INDEX:37) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
/* END_SNIPPET:image */

/* START_SNIPPET:predictive-search (INDEX:39) */
/* ── Overlay ─────────────────────────────────────────────── */
  .psearch {
    position: fixed;
    inset: 0;
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 5.5rem 1rem 2rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.18s ease;
  }

  .psearch.is-open {
    opacity: 1;
    pointer-events: auto;
  }

  .psearch__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    cursor: pointer;
  }

  @media (max-width: 900px) {
    .psearch__backdrop {
      backdrop-filter: none;
      -webkit-backdrop-filter: none;
      background: rgba(0, 0, 0, 0.85);
    }
  }

  /* ── Panel ───────────────────────────────────────────────── */
  .psearch__panel {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 640px;
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 24px 72px rgba(0, 0, 0, 0.9), 0 0 0 1px rgba(226, 43, 42, 0.08);
    transform: translateY(-14px);
    transition: transform 0.18s ease;
  }

  .psearch.is-open .psearch__panel {
    transform: translateY(0);
  }

  /* ── Input row ───────────────────────────────────────────── */
  .psearch__head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.9rem 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
    background: #0e0e0e;
  }

  .psearch__head-icon {
    color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
  }

  .psearch__input {
    flex: 1;
    background: none;
    border: none;
    outline: none;
    font-size: 1rem;
    font-weight: 400;
    color: #fff;
    line-height: 1.5;
    min-width: 0;
    caret-color: var(--amd-red, #e22b2a);
  }

  .psearch__input::placeholder {
    color: rgba(255, 255, 255, 0.28);
  }

  .psearch__input::-webkit-search-cancel-button,
  .psearch__input::-webkit-search-decoration {
    display: none;
  }

  .psearch__close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.15s, color 0.15s;
  }

  .psearch__close-btn:hover {
    background: rgba(255, 255, 255, 0.14);
    color: #fff;
  }

  /* ── Results list ────────────────────────────────────────── */
  .psearch__results {
    max-height: 440px;
    overflow-y: auto;
    overscroll-behavior: contain;
  }

  .psearch__results::-webkit-scrollbar { width: 4px; }
  .psearch__results::-webkit-scrollbar-track { background: transparent; }
  .psearch__results::-webkit-scrollbar-thumb {
    background: rgba(255, 255, 255, 0.12);
    border-radius: 2px;
  }

  /* ── Single result ───────────────────────────────────────── */
  .psearch__result {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    padding: 0.7rem 1rem;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    outline: none;
    transition: background 0.12s;
  }

  .psearch__result:last-of-type {
    border-bottom: none;
  }

  .psearch__result:hover,
  .psearch__result.is-focused {
    background: rgba(255, 255, 255, 0.05);
  }

  .psearch__result-thumb {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 4px;
    background: #0d0d0d;
    border: 1px solid rgba(255, 255, 255, 0.07);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .psearch__result-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
  }

  .psearch__result-thumb svg {
    color: rgba(255, 255, 255, 0.15);
  }

  .psearch__result-info {
    flex: 1;
    min-width: 0;
  }

  .psearch__result-vendor {
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--amd-red, #e22b2a);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.1rem;
  }

  .psearch__result-title {
    font-size: 0.83rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.3;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .psearch__result-price {
    font-family: var(--font-gaming, 'Orbitron', monospace);
    font-size: 0.78rem;
    font-weight: 700;
    color: #fff;
    margin-top: 0.25rem;
  }

  /* ── State messages ──────────────────────────────────────── */
  .psearch__message {
    padding: 2.5rem 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.28);
    line-height: 1.6;
  }

  /* ── View all footer ─────────────────────────────────────── */
  .psearch__view-all {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding: 0.85rem 1rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--amd-red, #e22b2a);
    text-decoration: none;
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    background: rgba(226, 43, 42, 0.04);
    transition: background 0.15s;
  }

  .psearch__view-all:hover {
    background: rgba(226, 43, 42, 0.1);
  }
/* END_SNIPPET:predictive-search */