/* Home styles moved from index.html */
/* ==========================================================================
       DESIGN SYSTEM & TOKENS
       ========================================================================== */
    :root {
      --bg: #070709;
      --surface: #121215;
      --surface-2: #18181c;
      --surface-glass: rgba(18, 18, 22, 0.72);
      --surface-glass-card: rgba(22, 22, 28, 0.78);
      --line: rgba(255, 255, 255, 0.08);
      --line-strong: rgba(255, 255, 255, 0.15);
      --orange: #ff6a00;
      --orange-2: #ffa64d;
      --orange-glow: rgba(255, 106, 0, 0.3);
      --green-glow: rgba(37, 211, 102, 0.35);
      --white: #f4f2ec;
      --gray: #8e8e93;
      --gray-dim: #5c5c60;
      --icon-orange-filter: brightness(0) saturate(100%) invert(47%) sepia(97%) saturate(2934%) hue-rotate(1deg) brightness(105%) contrast(104%);
      --radius-sm: 10px;
      --radius-md: 16px;
      --radius-lg: 20px;
      --maxw: 480px;
      --container-pad: 22px;
      --section-gap: 36px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      -webkit-tap-highlight-color: transparent;
    }

    html {
      background: var(--bg);
      scroll-behavior: smooth;
    }

    body {
      background: var(--bg);
      color: var(--white);
      font-family: 'Inter', sans-serif;
      -webkit-font-smoothing: antialiased;
      max-width: var(--maxw);
      margin: 0 auto;
      position: relative;
      overflow-x: hidden;
      box-shadow: 0 0 80px rgba(0, 0, 0, 0.85);
    }

    .topbar,
    .home-main,
    footer {
      margin-left: 6px;
      margin-right: 6px;
    }



    a {
      color: inherit;
      text-decoration: none;
    }

    section {
      position: relative;
      z-index: 1;
      margin-left: 6px;
      margin-right: 6px;
    }

    /* ==========================================================================
       TOUCH RIPPLE SYSTEM
       ========================================================================== */
    .ripple-host {
      position: relative;
      overflow: hidden;
    }

    .ripple-ring {
      position: absolute;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 106, 0, 0.35), transparent 70%);
      transform: scale(0);
      pointer-events: none;
      z-index: 50;
      animation: rippleExpand 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    @keyframes rippleExpand {
      0% { transform: scale(0); opacity: 0.7; }
      100% { transform: scale(2.5); opacity: 0; }
    }

    /* ==========================================================================
       SCROLL PROGRESS BAR
       ========================================================================== */
    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      z-index: 200;
      max-width: var(--maxw);
      margin: 0 auto;
      pointer-events: none;
    }

    .scroll-progress-fill {
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, var(--orange), var(--orange-2));
      box-shadow: 0 0 10px rgba(255, 106, 0, 0.6);
      border-radius: 0 2px 2px 0;
      transition: width 60ms linear;
    }

    /* ==========================================================================
       HEADER & NAVIGATION
       ========================================================================== */
    .topbar {
      position: sticky;
      top: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 14px var(--container-pad);
      background: rgba(7, 7, 9, 0.82);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--line);
    }

    .topbar::after {
      content: '';
      position: absolute;
      bottom: -1px;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--orange-glow), transparent);
      opacity: 0.8;
    }

    .topbar-loc {
      font-family: 'Chakra Petch', sans-serif;
      font-size: 10.5px;
      letter-spacing: .14em;
      text-transform: uppercase;
      color: var(--gray);
      display: flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 255, 255, 0.04);
      padding: 5px 12px;
      border-radius: 999px;
      border: 1px solid rgba(255, 255, 255, 0.07);
      min-height: 30px;
    }

    .topbar-loc .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--orange);
      box-shadow: 0 0 10px var(--orange);
      animation: pulse 2.4s ease-in-out infinite;
    }

    @keyframes pulse {
      0%, 100% {
        opacity: 1;
        transform: scale(1);
      }
      50% {
        opacity: .4;
        transform: scale(0.85);
      }
    }

    .logo-mark {
      display: flex;
      align-items: center;
      gap: 8px;
      transition: transform .2s ease;
      min-height: 44px;
      padding: 4px 0;
    }

    .logo-mark svg {
      width: 28px;
      height: 28px;
      display: block;
      filter: drop-shadow(0 0 8px rgba(255, 106, 0, 0.4));
    }

    .logo-mark span {
      font-family: 'Chakra Petch', sans-serif;
      font-weight: 700;
      font-size: 16.5px;
      letter-spacing: .02em;
    }

    .logo-mark span b {
      color: var(--orange);
      font-weight: 700;
      text-shadow: 0 0 12px rgba(255, 106, 0, 0.5);
    }

    /* Refined Floating Studio Status Pill */


    /* ==========================================================================
       HERO SECTION
       ========================================================================== */
    .hero {
      padding: 36px var(--container-pad) 28px;
      position: relative;
    }

    .eyebrow {
      font-family: 'Chakra Petch', sans-serif;
      font-size: 11px;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 16px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .eyebrow::before {
      content: '';
      width: 18px;
      height: 2px;
      background: linear-gradient(90deg, var(--orange), transparent);
      border-radius: 2px;
    }

    .print-heading {
      font-family: 'Chakra Petch', sans-serif;
      font-weight: 700;
      font-size: 38px;
      line-height: 1.05;
      letter-spacing: -.01em;
      position: relative;
      text-transform: uppercase;
    }

    .print-heading .row {
      overflow: hidden;
      height: 0;
      animation: openRow .01s linear forwards;
    }

    .print-heading .row span {
      display: block;
      clip-path: inset(0 0 100% 0);
      animation: layerReveal .55s cubic-bezier(.2, .7, .2, 1) forwards;
      animation-delay: calc(var(--i) * .32s + .15s);
    }

    .print-heading .row {
      animation-delay: calc(var(--i) * .32s + .1s);
    }

    @keyframes openRow {
      to {
        height: auto;
      }
    }

    @keyframes layerReveal {
      to {
        clip-path: inset(0 0 0 0);
      }
    }

    .print-heading .accent {
      color: var(--orange);
      text-shadow: 0 0 24px rgba(255, 106, 0, 0.45);
    }



    @media (max-width:380px) {
      .print-heading {
        font-size: 32px;
      }


    }

    @media (prefers-reduced-motion: reduce) {
      .print-heading .row,
      .print-heading .row span {
        animation: none !important;
        height: auto !important;
        clip-path: none !important;
      }
      .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }
      .ripple-ring {
        display: none !important;
      }
      .cat-card {
        transition: none !important;
      }
    }

    .hero-sub {
      margin-top: 20px;
      color: var(--gray);
      font-size: 14.5px;
      line-height: 1.6;
      max-width: 34ch;
    }

    .hero-actions {
      margin-top: 24px;
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    /* Buttons System */
    .btn {
      font-family: 'Chakra Petch', sans-serif;
      font-size: 13.5px;
      font-weight: 600;
      letter-spacing: .03em;
      text-transform: uppercase;
      padding: 14px 24px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      position: relative;
      overflow: hidden;
      transition: all .25s cubic-bezier(0.16, 1, 0.3, 1);
      cursor: pointer;
      min-height: 48px;
      -webkit-user-select: none;
      user-select: none;
    }

    .btn.touch-press {
      transform: scale(0.94) !important;
      transition-duration: 0.08s !important;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--orange), #ff8a1f);
      color: #070709;
      box-shadow: 0 4px 22px rgba(255, 106, 0, 0.35);
    }

    .btn-primary::after {
      content: '';
      position: absolute;
      top: -50%;
      left: -50%;
      width: 200%;
      height: 200%;
      background: linear-gradient(60deg, transparent, rgba(255, 255, 255, 0.28), transparent);
      transform: rotate(30deg) translateY(-100%);
      transition: transform 0.6s ease;
    }

    .btn-ghost {
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--line-strong);
      color: var(--white);
      backdrop-filter: blur(8px);
    }

    @media (hover: none) and (pointer: coarse) {
      .btn-primary:active {
        box-shadow: 0 2px 16px rgba(255, 106, 0, 0.6);
      }
      .btn-primary:active::after {
        transform: rotate(30deg) translateY(100%);
      }
      .btn-ghost:active {
        border-color: rgba(255, 106, 0, 0.5);
        background: rgba(255, 106, 0, 0.12);
      }
    }

    @media (hover: hover) {
      .btn-primary:hover {
        box-shadow: 0 6px 28px rgba(255, 106, 0, 0.55);
        transform: translateY(-2px);
      }
      .btn-primary:hover::after {
        transform: rotate(30deg) translateY(100%);
      }
      .btn-ghost:hover {
        border-color: rgba(255, 106, 0, 0.4);
        background: rgba(255, 106, 0, 0.08);
        transform: translateY(-2px);
      }
    }

    /* Hero Badges */
    .hero-badges {
      margin-top: 28px;
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      border-top: 1px solid var(--line);
      padding-top: 18px;
    }

    .hero-badges div {
      background: var(--surface-glass-card);
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 12px 10px;
      font-size: 10.5px;
      color: var(--gray);
      letter-spacing: .02em;
      backdrop-filter: blur(8px);
      transition: transform .25s cubic-bezier(0.16, 1, 0.3, 1), border-color .25s ease, box-shadow .25s ease;
      min-height: 54px;
    }

    .hero-badges div:active {
      transform: scale(0.96);
      border-color: rgba(255, 106, 0, 0.45);
      box-shadow: 0 0 14px rgba(255, 106, 0, 0.2);
    }

    @media (hover: hover) {
      .hero-badges div:hover {
        transform: translateY(-2px);
        border-color: rgba(255, 106, 0, 0.35);
      }
    }

    .hero-badges b {
      display: block;
      font-family: 'Chakra Petch', sans-serif;
      color: var(--white);
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 2px;
    }



    /* ==========================================================================
       SECTION HEADINGS
       ========================================================================== */
    .section-head {
      padding: var(--section-gap) var(--container-pad) 6px;
    }

    .section-head .eyebrow {
      margin-bottom: 8px;
    }

    .section-head h2 {
      font-family: 'Chakra Petch', sans-serif;
      font-size: 23px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: -.01em;
    }

    .section-head p {
      margin-top: 8px;
      color: var(--gray);
      font-size: 13.5px;
      line-height: 1.55;
      max-width: 36ch;
    }

    /* ==========================================================================
       CATALOG SECTION
       ========================================================================== */
    .catalog {
      margin-left: 6px;
      margin-right: 6px;
      padding: 16px var(--container-pad) 8px;
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
    }

    /* Swipe hint indicator */
    .swipe-hint {
      display: none;
      align-items: center;
      justify-content: center;
      gap: 6px;
      padding: 6px 0 2px;
      font-family: 'Chakra Petch', sans-serif;
      font-size: 10px;
      text-transform: uppercase;
      letter-spacing: .1em;
      color: var(--gray-dim);
      margin: 0 var(--container-pad);
    }

    .swipe-hint img {
      width: 14px;
      height: 14px;
      display: block;
      animation: swipeArrow 1.5s ease-in-out infinite;
    }

    @keyframes swipeArrow {
      0%, 100% { transform: translateX(0); opacity: 0.5; }
      50% { transform: translateX(6px); opacity: 1; }
    }

    @media (max-width: 480px) and (hover: none) {
      .catalog {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 12px;
        padding: 16px var(--container-pad) 14px;
        scrollbar-width: none;
      }

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

      .catalog .cat-card {
        min-width: 72%;
        max-width: 72%;
        flex-shrink: 0;
        scroll-snap-align: start;
      }

      .catalog .cat-card.wide {
        min-width: 85%;
        max-width: 85%;
      }

      .swipe-hint {
        display: flex;
      }
    }

    /* Scroll dots indicator */
    .scroll-dots {
      display: none;
      justify-content: center;
      gap: 6px;
      padding: 8px 0;
      margin: 0 var(--container-pad) 4px;
    }

    .scroll-dots .dot-item {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--gray-dim);
      transition: background .2s ease, transform .2s ease, width .2s ease;
    }

    .scroll-dots .dot-item.active {
      background: var(--orange);
      width: 18px;
      border-radius: 4px;
      box-shadow: 0 0 8px rgba(255, 106, 0, 0.4);
    }

    @media (max-width: 480px) and (hover: none) {
      .scroll-dots {
        display: flex;
      }
    }

    /* Catalog Card */
    .cat-card {
      background: var(--surface-glass-card);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      padding: 20px 16px;
      position: relative;
      overflow: hidden;
      transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1), border-color .3s ease, box-shadow .3s ease, opacity .25s ease;
      will-change: transform;
    }

    .cat-card.tilting {
      transition: none !important;
    }

    .cat-card::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(
        300px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 106, 0, 0.14),
        transparent 60%
      );
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
      z-index: 1;
    }

    .cat-card.glow-active::before {
      opacity: 1;
    }

    @media (hover: hover) {
      .cat-card:hover::before { opacity: 1; }
      .cat-card:hover {
        transform: translateY(-4px) scale(1.015);
        border-color: rgba(255, 106, 0, 0.38);
        box-shadow: 0 12px 30px -8px rgba(0, 0, 0, 0.65), 0 0 22px rgba(255, 106, 0, 0.16);
      }
      .cat-card:hover .icon-box {
        transform: scale(1.08);
        background: rgba(255, 106, 0, 0.18);
      }
    }

    .cat-card::after {
      content: "L-" attr(data-n);
      position: absolute;
      top: 12px;
      right: 12px;
      font-family: 'Chakra Petch', sans-serif;
      font-size: 9.5px;
      font-weight: 600;
      color: var(--orange);
      background: rgba(255, 106, 0, 0.1);
      border: 1px solid rgba(255, 106, 0, 0.2);
      padding: 2px 6px;
      border-radius: 4px;
      letter-spacing: .05em;
    }

    .cat-card .icon-box {
      width: 40px;
      height: 40px;
      border-radius: 10px;
      background: rgba(255, 106, 0, 0.08);
      border: 1px solid rgba(255, 106, 0, 0.18);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 14px;
      transition: transform 0.3s ease, background 0.3s ease;
    }

    .cat-card .icon {
      width: 22px;
      height: 22px;
      display: block;
      color: var(--orange);
      filter: drop-shadow(0 0 4px rgba(255, 106, 0, 0.3));
    }

    .cat-card h3 {
      font-family: 'Chakra Petch', sans-serif;
      font-size: 14.5px;
      font-weight: 600;
      text-transform: uppercase;
      letter-spacing: .01em;
      line-height: 1.25;
      margin-bottom: 6px;
      position: relative;
      z-index: 2;
    }

    .cat-card p {
      font-size: 12px;
      color: var(--gray);
      line-height: 1.5;
      position: relative;
      z-index: 2;
    }

    .card-details,
    .card-details-inner {
      min-width: 0;
    }

    .card-details-toggle {
      display: none;
      width: 100%;
      min-height: 44px;
      margin-top: 12px;
      padding: 10px 0 0;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      border: 0;
      border-top: 1px solid var(--line);
      background: transparent;
      color: var(--orange);
      font-family: 'Chakra Petch', sans-serif;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
      cursor: pointer;
      position: relative;
      z-index: 3;
    }

    .card-details-toggle img {
      width: 16px;
      height: 16px;
      display: block;
      flex-shrink: 0;
      transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .cat-card.is-expanded .card-details-toggle img {
      transform: rotate(180deg);
    }

    .card-details-toggle:focus-visible {
      outline: 2px solid var(--orange);
      outline-offset: 4px;
      border-radius: 4px;
    }

    .cat-card.wide {
      grid-column: 1 / -1;
    }

    @media (min-width: 481px) {
      .cat-card.wide {
        display: flex;
        align-items: center;
        gap: 16px;
      }
      .cat-card.wide .icon-box {
        margin-bottom: 0;
        flex-shrink: 0;
      }
    }

    @media (max-width: 480px) and (hover: none) {
      .cat-card.wide {
        display: flex;
        align-items: center;
        gap: 16px;
      }
      .cat-card.wide .icon-box {
        margin-bottom: 0;
        flex-shrink: 0;
      }
    }

    /* ==========================================================================
       MATERIAL SELECTOR WIDGET
       ========================================================================== */
    .material-selector {
      margin: 20px var(--container-pad) 8px;
      background: var(--surface-glass-card);
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      padding: 18px 16px;
      backdrop-filter: blur(12px);
    }

    .material-header {
      font-family: 'Chakra Petch', sans-serif;
      font-size: 12.5px;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--white);
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .material-header span {
      font-size: 10px;
      color: var(--orange);
      font-weight: 500;
    }

    .material-pills {
      display: flex;
      gap: 8px;
      overflow-x: auto;
      padding-bottom: 4px;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
      scroll-snap-type: x proximity;
    }

    .material-pills::-webkit-scrollbar {
      display: none;
    }

    .mat-pill {
      font-family: 'Chakra Petch', sans-serif;
      font-size: 11px;
      font-weight: 600;
      padding: 8px 14px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--line);
      color: var(--gray);
      white-space: nowrap;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 6px;
      transition: all .2s cubic-bezier(0.16, 1, 0.3, 1);
      min-height: 38px;
      scroll-snap-align: start;
      -webkit-user-select: none;
      user-select: none;
    }

    .mat-pill .mat-dot {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      transition: transform .2s ease, box-shadow .2s ease;
    }

    .mat-pill.active .mat-dot {
      transform: scale(1.3);
      box-shadow: 0 0 8px currentColor;
    }

    .mat-pill:active {
      transform: scale(0.95);
    }

    .mat-pill.active {
      background: rgba(255, 106, 0, 0.14);
      border-color: var(--orange);
      color: var(--white);
      box-shadow: 0 0 14px rgba(255, 106, 0, 0.28);
    }

    #matDesc {
      font-size: 11.5px;
      color: var(--gray);
      margin-top: 10px;
      min-height: 18px;
      transition: opacity 0.2s ease;
    }

    #matDesc.fading {
      opacity: 0;
    }

    /* ==========================================================================
       PROCESS STRIP
       ========================================================================== */
    .process {
      margin: var(--section-gap) var(--container-pad) 8px;
      background: var(--surface-glass-card);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      padding: 22px 18px;
      position: relative;
      overflow: hidden;
    }

    .process::before {
      content: '';
      position: absolute;
      left: 34px;
      top: 34px;
      bottom: 34px;
      width: 2px;
      background: linear-gradient(to bottom, var(--orange), transparent);
      opacity: 0.35;
    }

    .process-row {
      display: flex;
      align-items: flex-start;
      gap: 14px;
      padding: 12px 6px;
      position: relative;
      z-index: 2;
      transition: transform .25s cubic-bezier(0.16, 1, 0.3, 1), background .2s ease;
      border-radius: 10px;
    }

    .process-row:active {
      transform: translateX(6px);
      background: rgba(255, 106, 0, 0.04);
    }

    @media (hover: hover) {
      .process-row:hover {
        transform: translateX(4px);
      }
    }

    .process-row+.process-row {
      border-top: 1px dashed var(--line);
    }

    .process-row .layer {
      font-family: 'Chakra Petch', sans-serif;
      font-size: 11px;
      font-weight: 700;
      color: var(--orange);
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: rgba(255, 106, 0, 0.12);
      border: 1px solid rgba(255, 106, 0, 0.28);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
      box-shadow: 0 0 10px rgba(255, 106, 0, 0.18);
    }

    .process-row div p {
      font-size: 13.5px;
      font-weight: 600;
      line-height: 1.4;
      color: var(--white);
      margin-bottom: 2px;
    }

    .process-row div span {
      font-size: 11.5px;
      color: var(--gray);
      line-height: 1.45;
      display: block;
    }

    /* ==========================================================================
       FAQ SECTION
       ========================================================================== */
    .faq-section {
      margin: var(--section-gap) var(--container-pad) 10px;
    }

    .faq-item {
      background: var(--surface-glass-card);
      border: 1px solid var(--line);
      border-radius: 14px;
      margin-top: 10px;
      overflow: hidden;
      transition: border-color .3s ease, box-shadow .3s ease;
    }

    .faq-item.open {
      border-color: rgba(255, 106, 0, 0.3);
      box-shadow: 0 0 16px rgba(255, 106, 0, 0.1);
    }

    .faq-question {
      width: 100%;
      padding: 16px 18px;
      background: transparent;
      border: none;
      color: var(--white);
      font-family: 'Chakra Petch', sans-serif;
      font-size: 13.5px;
      font-weight: 600;
      text-align: left;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      cursor: pointer;
      min-height: 52px;
      -webkit-user-select: none;
      user-select: none;
      transition: background .2s ease;
    }

    .faq-question:active {
      background: rgba(255, 106, 0, 0.05);
    }

    .faq-question img {
      width: 18px;
      height: 18px;
      display: block;
      transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1);
      flex-shrink: 0;
    }

    .faq-item.open .faq-question img {
      transform: rotate(180deg);
    }

    .faq-answer {
      max-height: 0;
      overflow: hidden;
      transition: max-height .4s cubic-bezier(0.16, 1, 0.3, 1), padding .4s ease;
      font-size: 12.5px;
      color: var(--gray);
      line-height: 1.6;
      padding: 0 18px;
    }

    .faq-item.open .faq-answer {
      max-height: 200px;
      padding: 0 18px 18px;
    }

    /* ==========================================================================
       CTA SECTION
       ========================================================================== */
    .cta {
      margin: var(--section-gap) var(--container-pad) 30px;
      background: linear-gradient(145deg, rgba(28, 28, 33, 0.92), rgba(18, 18, 22, 0.96));
      backdrop-filter: blur(14px);
      border: 1px solid rgba(255, 106, 0, 0.28);
      border-radius: var(--radius-lg);
      padding: 28px 22px;
      text-align: left;
      position: relative;
      overflow: hidden;
      box-shadow: 0 16px 40px -10px rgba(0, 0, 0, 0.6), 0 0 28px rgba(255, 106, 0, 0.14);
    }

    .cta::before {
      content: '';
      position: absolute;
      width: 240px;
      height: 240px;
      background: radial-gradient(circle, rgba(255, 106, 0, 0.32), transparent 70%);
      top: -70px;
      right: -70px;
      pointer-events: none;
      animation: floatGlow 8s ease-in-out infinite alternate;
    }

    .cta h2 {
      font-family: 'Chakra Petch', sans-serif;
      font-size: 22px;
      font-weight: 700;
      text-transform: uppercase;
      line-height: 1.15;
      position: relative;
      z-index: 2;
    }

    .cta p {
      margin-top: 10px;
      color: var(--gray);
      font-size: 13.5px;
      line-height: 1.55;
      max-width: 32ch;
      position: relative;
      z-index: 2;
    }

    .cta .hero-actions {
      margin-top: 22px;
      position: relative;
      z-index: 2;
    }

    /* ==========================================================================
       FLOATING WHATSAPP BUTTON (MOBILE)
       ========================================================================== */
    .floating-whatsapp {
      position: fixed;
      bottom: 20px;
      right: 20px;
      z-index: 99;
      background: linear-gradient(135deg, #25D366, #128C7E);
      color: #fff;
      padding: 14px 20px;
      border-radius: 999px;
      display: flex;
      align-items: center;
      gap: 8px;
      font-family: 'Chakra Petch', sans-serif;
      font-weight: 600;
      font-size: 12.5px;
      letter-spacing: .02em;
      text-transform: uppercase;
      box-shadow: 0 8px 24px rgba(37, 211, 102, 0.45), 0 0 18px rgba(37, 211, 102, 0.25);
      transform: translateY(100px);
      opacity: 0;
      transition: transform .4s cubic-bezier(0.16, 1, 0.3, 1), opacity .4s ease, box-shadow .2s ease;
      min-height: 48px;
    }

    .floating-whatsapp.show {
      transform: translateY(0);
      opacity: 1;
    }

    .floating-whatsapp:active {
      transform: scale(0.93) !important;
      box-shadow: 0 4px 16px rgba(37, 211, 102, 0.6);
    }

    .floating-whatsapp img {
      width: 20px;
      height: 20px;
      display: block;
    }

    .floating-whatsapp .badge-dot {
      position: absolute;
      top: -2px;
      right: -2px;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: #ff6a00;
      border: 2px solid #070709;
      animation: pulse 1.5s infinite;
    }

    .floating-whatsapp.near-footer {
      transform: translateY(100px) !important;
      opacity: 0 !important;
    }

    /* ==========================================================================
       REVEAL ANIMATIONS
       ========================================================================== */
    .reveal {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.6s cubic-bezier(0.16, 1, 0.3, 1), transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
      will-change: opacity, transform;
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }

    /* ==========================================================================
       FOOTER
       ========================================================================== */
    footer {
      padding: 28px var(--container-pad) 40px;
      border-top: 1px solid var(--line);
      position: relative;
      z-index: 1;
    }

    .footer-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 16px;
    }

    .footer-social {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--gray);
      font-size: 12.5px;
      transition: color .2s ease;
      min-height: 44px;
    }

    .footer-social:active {
      color: var(--orange);
    }

    @media (hover: hover) {
      .footer-social:hover {
        color: var(--orange);
      }

      .footer-social:hover img {
        filter: var(--icon-orange-filter);
      }
    }

    .footer-social img {
      width: 18px;
      height: 18px;
      display: block;
      transition: filter .2s ease;
    }

    footer .meta {
      font-size: 11px;
      color: var(--gray-dim);
      line-height: 1.6;
    }

    /* ==========================================================================
       RESPONSIVE LAYOUT SYSTEM
       ========================================================================== */
    :root {
      --maxw: 1200px;
      --container-pad: clamp(20px, 4vw, 48px);
      --section-gap: clamp(38px, 6vw, 68px);
    }

    body {
      width: 100%;
    }

    .home-main,
    .hero-copy,
    .support-grid,
    .closing-grid {
      min-width: 0;
    }

    .catalog-cta {
      padding: 10px var(--container-pad) 0;
    }

    .catalog-cta .btn {
      width: 100%;
    }

    @media (max-width: 600px) {
      :root {
        --container-pad: clamp(18px, 5.5vw, 24px);
        --section-gap: clamp(40px, 12vw, 56px);
      }

      .topbar {
        min-height: 64px;
      }

      .topbar-loc {
        max-width: 58vw;
        padding-inline: 10px;
        font-size: 9.5px;
        letter-spacing: .1em;
      }



      .hero {
        min-height: calc(100svh - 116px);
        padding-top: clamp(34px, 8vh, 68px);
        padding-bottom: clamp(34px, 8vh, 68px);
        display: flex;
        flex-direction: column;
        justify-content: center;
      }

      .hero-actions {
        align-items: stretch;
      }

      .hero-actions .btn {
        flex: 1 1 100%;
        width: 100%;
      }

      .hero-badges {
        display: flex;
        gap: 10px;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        overscroll-behavior-inline: contain;
        padding-bottom: 4px;
      }

      .hero-badges::-webkit-scrollbar,
      .catalog::-webkit-scrollbar {
        display: none;
      }

      .hero-badges div {
        flex: 0 0 78%;
        min-height: 72px;
        padding: 16px 14px;
        scroll-snap-align: start;
      }



      .catalog {
        --catalog-card-width: 84vw;
        --catalog-edge-space: calc((100% - 12px - var(--catalog-card-width)) / 2);
        display: flex;
        align-items: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: var(--catalog-edge-space);
        scrollbar-width: none;
        overscroll-behavior-inline: contain;
        gap: 12px;
        padding: 16px var(--catalog-edge-space) 14px;
      }

      .catalog .cat-card,
      .catalog .cat-card.wide {
        min-width: var(--catalog-card-width);
        max-width: var(--catalog-card-width);
        flex: 0 0 var(--catalog-card-width);
        scroll-snap-align: center;
        scroll-snap-stop: always;
      }

      .catalog.has-featured-card .cat-card {
        opacity: 0.42;
      }

      .catalog.has-featured-card .cat-card.is-featured {
        opacity: 1;
      }

      .catalog .cat-card.wide {
        display: flex;
        align-items: center;
        gap: 16px;
      }

      .catalog .cat-card.wide .icon-box {
        margin-bottom: 0;
        flex-shrink: 0;
      }

      .catalog .reveal {
        opacity: 1;
        transform: none;
        transition-delay: 0s;
      }

      .card-details {
        display: grid;
        grid-template-rows: 0fr;
        opacity: 0;
        transition: grid-template-rows .3s cubic-bezier(0.16, 1, 0.3, 1), opacity .2s ease, margin-top .3s ease;
      }

      .card-details-inner {
        overflow: hidden;
      }

      .cat-card.is-expanded .card-details {
        grid-template-rows: 1fr;
        opacity: 1;
        margin-top: 6px;
      }

      .card-details-toggle {
        display: inline-flex;
      }

      .cat-card.is-expanded {
        border-color: rgba(255, 106, 0, 0.38);
        box-shadow: 0 12px 30px -12px rgba(0, 0, 0, 0.72), 0 0 20px rgba(255, 106, 0, 0.12);
      }

      .swipe-hint,
      .scroll-dots {
        display: flex;
      }

      .material-selector,
      .process,
      .faq-section,
      .cta {
        scroll-margin-top: 84px;
      }

      .floating-whatsapp {
        right: max(16px, env(safe-area-inset-right));
        bottom: max(16px, env(safe-area-inset-bottom));
      }

      .footer-top {
        gap: 16px;
        flex-wrap: wrap;
      }
    }

    @media (min-width: 601px) {
      .hero {
        padding-top: clamp(52px, 8vw, 88px);
        padding-bottom: clamp(48px, 7vw, 76px);
      }

      .hero-sub {
        max-width: 48ch;
      }

      .catalog {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
      }

      .catalog .cat-card,
      .catalog .cat-card.wide {
        min-width: 0;
        max-width: none;
      }

      .swipe-hint,
      .scroll-dots {
        display: none;
      }
    }

    @media (min-width: 768px) {
      .support-grid,
      .closing-grid {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: clamp(18px, 3vw, 28px);
        margin: var(--section-gap) var(--container-pad) 0;
        align-items: stretch;
      }

      .support-grid .material-selector,
      .support-grid .process,
      .closing-grid .faq-section,
      .closing-grid .cta {
        margin: 0;
        height: 100%;
      }

      .closing-grid {
        grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
        margin-bottom: 40px;
      }
    }

    @media (min-width: 1024px) {
      .topbar {
        padding-block: 16px;
      }

      .live-status-container {
        justify-content: flex-start;
      }

      .hero {
        display: grid;
        grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
        gap: clamp(48px, 7vw, 92px);
        align-items: center;
        min-height: 590px;
      }

      .print-heading {
        font-size: 48px;
      }



      .hero-badges {
        margin-top: 0;
        padding-top: 0;
        border-top: none;
        grid-template-columns: 1fr;
        gap: 12px;
      }

      .hero-badges div {
        min-height: 88px;
        padding: 20px 18px;
        display: flex;
        flex-direction: column;
        justify-content: center;
      }



      .section-head p {
        max-width: 58ch;
      }

      .catalog {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
      }

      .catalog .cat-card.wide {
        grid-column: span 2;
      }

      .cat-card {
        min-height: 210px;
      }

      .floating-whatsapp {
        right: max(calc((100vw - var(--maxw)) / 2 + 28px), 28px);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      .swipe-hint img,
      .floating-whatsapp .badge-dot,
      .cta::before {
        animation: none !important;
      }

      .card-details,
      .card-details-toggle img {
        transition: none !important;
      }
    }

/* Catalog styles moved from the catalog page */
/* ==========================================================================
       DESIGN SYSTEM & TOKENS
       ========================================================================== */
    :root {
      --bg: #070709;
      --surface: #121215;
      --surface-2: #18181c;
      --surface-glass: rgba(18, 18, 22, 0.72);
      --surface-glass-card: rgba(22, 22, 28, 0.78);
      --line: rgba(255, 255, 255, 0.08);
      --line-strong: rgba(255, 255, 255, 0.15);
      --orange: #ff6a00;
      --orange-2: #ffa64d;
      --orange-glow: rgba(255, 106, 0, 0.3);
      --green-glow: rgba(37, 211, 102, 0.35);
      --white: #f4f2ec;
      --gray: #8e8e93;
      --gray-dim: #5c5c60;
      --icon-orange-filter: brightness(0) saturate(100%) invert(47%) sepia(97%) saturate(2934%) hue-rotate(1deg) brightness(105%) contrast(104%);
      --radius-sm: 10px;
      --radius-md: 16px;
      --radius-lg: 20px;
      --maxw: 480px;
      --container-pad: 20px;
      --section-gap: 32px;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      -webkit-tap-highlight-color: transparent;
    }

    html {
      background: var(--bg);
      scroll-behavior: smooth;
    }

    body {
      background: var(--bg);
      color: var(--white);
      font-family: 'Inter', sans-serif;
      -webkit-font-smoothing: antialiased;
      max-width: var(--maxw);
      margin: 0 auto;
      position: relative;
      overflow-x: hidden;
      box-shadow: 0 0 80px rgba(0, 0, 0, 0.85);
      min-height: 100vh;
      display: flex;
      flex-direction: column;
    }



    a {
      color: inherit;
      text-decoration: none;
    }

    main {
      flex: 1;
      position: relative;
      z-index: 1;
    }

    /* ==========================================================================
       TOUCH RIPPLE SYSTEM
       ========================================================================== */
    .ripple-host {
      position: relative;
      overflow: hidden;
    }

    .ripple-ring {
      position: absolute;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(255, 106, 0, 0.35), transparent 70%);
      transform: scale(0);
      pointer-events: none;
      z-index: 50;
      animation: rippleExpand 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
    }

    @keyframes rippleExpand {
      0% { transform: scale(0); opacity: 0.7; }
      100% { transform: scale(2.5); opacity: 0; }
    }

    /* ==========================================================================
       SCROLL PROGRESS BAR
       ========================================================================== */
    .scroll-progress {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      z-index: 200;
      max-width: var(--maxw);
      margin: 0 auto;
      pointer-events: none;
    }

    .scroll-progress-fill {
      height: 100%;
      width: 0%;
      background: linear-gradient(90deg, var(--orange), var(--orange-2));
      box-shadow: 0 0 10px rgba(255, 106, 0, 0.6);
      border-radius: 0 2px 2px 0;
      transition: width 60ms linear;
    }

    /* ==========================================================================
       HEADER & TOPBAR WITH BACK BUTTON
       ========================================================================== */
    .topbar {
      position: sticky;
      top: 0;
      z-index: 100;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 12px var(--container-pad);
      background: rgba(7, 7, 9, 0.84);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--line);
    }

    .topbar::after {
      content: '';
      position: absolute;
      bottom: -1px;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, var(--orange-glow), transparent);
      opacity: 0.8;
    }

    .back-btn {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-family: 'Chakra Petch', sans-serif;
      font-size: 11.5px;
      font-weight: 600;
      text-transform: uppercase;
      color: var(--gray);
      background: rgba(255, 255, 255, 0.04);
      padding: 6px 14px;
      border-radius: 999px;
      border: 1px solid var(--line);
      transition: all .2s ease;
      min-height: 36px;
    }

    .back-btn:active {
      transform: scale(0.95);
      border-color: var(--orange);
      color: var(--white);
    }

    .logo-mark {
      display: flex;
      align-items: center;
      gap: 8px;
    }

    .logo-mark svg {
      width: 26px;
      height: 26px;
      filter: drop-shadow(0 0 6px rgba(255, 106, 0, 0.4));
    }

    .logo-mark span {
      font-family: 'Chakra Petch', sans-serif;
      font-weight: 700;
      font-size: 15.5px;
    }

    .logo-mark span b {
      color: var(--orange);
      text-shadow: 0 0 10px rgba(255, 106, 0, 0.4);
    }

    /* ==========================================================================
       CATALOG HERO & CONTROLS
       ========================================================================== */
    .cat-hero {
      padding: 24px var(--container-pad) 14px;
    }

    .eyebrow {
      font-family: 'Chakra Petch', sans-serif;
      font-size: 11px;
      letter-spacing: .22em;
      text-transform: uppercase;
      color: var(--orange);
      margin-bottom: 10px;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .eyebrow::before {
      content: '';
      width: 18px;
      height: 2px;
      background: linear-gradient(90deg, var(--orange), transparent);
      border-radius: 2px;
    }

    .cat-hero h1 {
      font-family: 'Chakra Petch', sans-serif;
      font-size: 26px;
      font-weight: 700;
      text-transform: uppercase;
      line-height: 1.1;
      letter-spacing: -.01em;
    }

    .cat-hero p {
      margin-top: 8px;
      color: var(--gray);
      font-size: 13px;
      line-height: 1.5;
    }

    /* Search Box */
    .search-box {
      margin: 14px var(--container-pad) 12px;
      position: relative;
    }

    .search-input {
      width: 100%;
      padding: 12px 16px 12px 42px;
      background: var(--surface-glass-card);
      border: 1px solid var(--line);
      border-radius: 999px;
      color: var(--white);
      font-family: 'Inter', sans-serif;
      font-size: 13px;
      outline: none;
      backdrop-filter: blur(12px);
      transition: border-color .25s ease, box-shadow .25s ease;
    }

    .search-input:focus {
      border-color: var(--orange);
      box-shadow: 0 0 16px rgba(255, 106, 0, 0.25);
    }

    .search-icon {
      position: absolute;
      left: 14px;
      top: 50%;
      transform: translateY(-50%);
      width: 18px;
      height: 18px;
      display: block;
      z-index: 10;
      pointer-events: none;
    }

    /* Category Filter Pills */
    .filter-pills {
      --filter-edge-space: var(--container-pad);
      display: flex;
      gap: 6px;
      overflow-x: auto;
      padding: 4px var(--filter-edge-space) 12px;
      scroll-padding-inline: var(--filter-edge-space);
      scroll-snap-type: x mandatory;
      scrollbar-width: none;
      -webkit-overflow-scrolling: touch;
    }

    .filter-pills::-webkit-scrollbar {
      display: none;
    }

    .filter-pill {
      font-family: 'Chakra Petch', sans-serif;
      font-size: 10.5px;
      font-weight: 600;
      padding: 7px 13px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--line);
      color: var(--gray);
      white-space: nowrap;
      cursor: pointer;
      opacity: 0.46;
      scroll-snap-align: center;
      scroll-snap-stop: always;
      transition: all .2s cubic-bezier(0.16, 1, 0.3, 1);
      min-height: 34px;
      display: inline-flex;
      align-items: center;
    }

    .filter-pill:active {
      transform: scale(0.95);
    }

    .filter-pill.active {
      background: rgba(255, 106, 0, 0.15);
      border-color: var(--orange);
      color: var(--white);
      opacity: 1;
      box-shadow: 0 0 12px rgba(255, 106, 0, 0.25);
    }

    /* View Switcher Toolbar */
    .view-toolbar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 4px var(--container-pad) 14px;
    }

    .results-count {
      font-family: 'Chakra Petch', sans-serif;
      font-size: 10.5px;
      text-transform: uppercase;
      letter-spacing: .08em;
      color: var(--gray-dim);
    }

    .view-switch {
      display: flex;
      align-items: center;
      gap: 4px;
      background: rgba(255, 255, 255, 0.04);
      border: 1px solid var(--line);
      border-radius: 8px;
      padding: 2px;
    }

    .view-btn {
      width: 30px;
      height: 28px;
      border-radius: 6px;
      border: none;
      background: transparent;
      color: var(--gray);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all .2s ease;
    }

    .view-btn img {
      width: 15px;
      height: 15px;
      display: block;
      transition: filter .2s ease;
    }

    .view-btn.active {
      background: rgba(255, 106, 0, 0.2);
      color: var(--orange);
    }

    .view-btn.active img {
      filter: var(--icon-orange-filter);
    }

    /* ==========================================================================
       OPTIMIZED MOBILE CATALOG GRID (2 COLUMNS DEFAULT ON MOBILE)
       ========================================================================== */
    .cat-grid {
      padding: 0 var(--container-pad) 24px;
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 12px;
    }

    /* Forced List Mode */
    .cat-grid.list-mode {
      grid-template-columns: 1fr !important;
    }

    .cat-card-full {
      background: var(--surface-glass-card);
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      padding: 16px 14px;
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1), border-color .3s ease, box-shadow .3s ease;
    }

    .cat-card-full::before {
      content: '';
      position: absolute;
      inset: 0;
      background: radial-gradient(
        240px circle at var(--mouse-x, 50%) var(--mouse-y, 50%),
        rgba(255, 106, 0, 0.14),
        transparent 60%
      );
      opacity: 0;
      transition: opacity 0.4s ease;
      pointer-events: none;
      z-index: 1;
    }

    .cat-card-full.glow-active::before {
      opacity: 1;
    }

    @media (hover: hover) {
      .cat-card-full:hover::before { opacity: 1; }
      .cat-card-full:hover {
        transform: translateY(-3px);
        border-color: rgba(255, 106, 0, 0.38);
        box-shadow: 0 10px 24px -6px rgba(0, 0, 0, 0.65), 0 0 18px rgba(255, 106, 0, 0.15);
      }
    }

    .cat-card-full .card-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      margin-bottom: 12px;
    }

    .cat-card-full .icon-box {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: rgba(255, 106, 0, 0.08);
      border: 1px solid rgba(255, 106, 0, 0.18);
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .cat-card-full .icon {
      width: 20px;
      height: 20px;
      color: var(--orange);
      filter: drop-shadow(0 0 4px rgba(255, 106, 0, 0.3));
    }

    .cat-card-full .layer-tag {
      font-family: 'Chakra Petch', sans-serif;
      font-size: 9px;
      font-weight: 600;
      color: var(--orange);
      background: rgba(255, 106, 0, 0.1);
      border: 1px solid rgba(255, 106, 0, 0.2);
      padding: 2px 6px;
      border-radius: 4px;
      letter-spacing: .05em;
    }

    .cat-card-full h3 {
      font-family: 'Chakra Petch', sans-serif;
      font-size: 13.5px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: .01em;
      line-height: 1.25;
      margin-bottom: 6px;

      /* Clamp lines in 2-col mode */
      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .cat-card-full p {
      font-size: 11.5px;
      color: var(--gray);
      line-height: 1.45;
      margin-bottom: 12px;

      /* Clamp lines in 2-col mode */
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
    }

    .list-mode .cat-card-full h3,
    .list-mode .cat-card-full p {
      display: block;
    }

    /* Specs Pills */
    .specs-list {
      display: flex;
      flex-wrap: wrap;
      gap: 4px;
      margin-bottom: 14px;
    }

    .spec-chip {
      font-family: 'Chakra Petch', sans-serif;
      font-size: 9px;
      font-weight: 500;
      padding: 3px 7px;
      border-radius: 5px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid rgba(255, 255, 255, 0.06);
      color: var(--gray);
      white-space: nowrap;
    }

    .product-card-details,
    .product-card-details-inner {
      min-width: 0;
    }

    .product-card-toggle {
      display: none;
      width: 100%;
      min-height: 44px;
      margin: 8px 0 10px;
      padding: 10px 0;
      align-items: center;
      justify-content: space-between;
      gap: 8px;
      border: 0;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
      background: transparent;
      color: var(--orange);
      font-family: 'Chakra Petch', sans-serif;
      font-size: 10.5px;
      font-weight: 700;
      letter-spacing: .06em;
      text-transform: uppercase;
      cursor: pointer;
      position: relative;
      z-index: 3;
    }

    .product-card-toggle img {
      width: 16px;
      height: 16px;
      display: block;
      flex-shrink: 0;
      transition: transform .3s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .cat-card-full.is-expanded .product-card-toggle img {
      transform: rotate(180deg);
    }

    .product-card-toggle:focus-visible {
      outline: 2px solid var(--orange);
      outline-offset: 3px;
      border-radius: 4px;
    }

    /* Card Action Button */
    .card-act-btn {
      width: 100%;
      font-family: 'Chakra Petch', sans-serif;
      font-size: 11.5px;
      font-weight: 600;
      text-transform: uppercase;
      padding: 10px 12px;
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(255, 106, 0, 0.16), rgba(255, 106, 0, 0.05));
      border: 1px solid rgba(255, 106, 0, 0.32);
      color: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      transition: all .25s ease;
      min-height: 40px;
      text-align: center;
    }

    .card-act-btn:active {
      transform: scale(0.95);
      background: rgba(255, 106, 0, 0.25);
    }

    @media (hover: hover) {
      .card-act-btn:hover {
        background: linear-gradient(135deg, var(--orange), #ff8a1f);
        color: #070709;
        border-color: var(--orange);
        box-shadow: 0 4px 16px rgba(255, 106, 0, 0.4);
      }
    }

    /* Empty state */
    .no-results {
      text-align: center;
      padding: 40px 20px;
      color: var(--gray);
      display: none;
      grid-column: 1 / -1;
    }

    .no-results h3 {
      font-family: 'Chakra Petch', sans-serif;
      font-size: 16px;
      color: var(--white);
      margin-bottom: 8px;
    }

    /* ==========================================================================
       CUSTOM ORDER BANNER
       ========================================================================== */
    .custom-banner {
      margin: 10px var(--container-pad) 32px;
      background: linear-gradient(145deg, rgba(28, 28, 33, 0.92), rgba(18, 18, 22, 0.96));
      border: 1px solid rgba(255, 106, 0, 0.28);
      border-radius: var(--radius-lg);
      padding: 22px 18px;
      text-align: left;
      position: relative;
      overflow: hidden;
    }

    .custom-banner h2 {
      font-family: 'Chakra Petch', sans-serif;
      font-size: 19px;
      font-weight: 700;
      text-transform: uppercase;
      margin-bottom: 8px;
    }

    .custom-banner p {
      font-size: 12.5px;
      color: var(--gray);
      line-height: 1.5;
      margin-bottom: 16px;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--orange), #ff8a1f);
      color: #070709;
      font-family: 'Chakra Petch', sans-serif;
      font-size: 12.5px;
      font-weight: 600;
      text-transform: uppercase;
      padding: 12px 20px;
      border-radius: 999px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      box-shadow: 0 4px 20px rgba(255, 106, 0, 0.35);
      min-height: 44px;
    }

    .btn-primary:active {
      transform: scale(0.95);
    }

    /* ==========================================================================
       FOOTER
       ========================================================================== */
    footer {
      padding: 26px var(--container-pad) 36px;
      border-top: 1px solid var(--line);
      position: relative;
      z-index: 1;
      margin-top: auto;
    }

    .footer-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      margin-bottom: 14px;
    }

    .footer-social {
      display: flex;
      align-items: center;
      gap: 8px;
      color: var(--gray);
      font-size: 12px;
    }

    .footer-social img {
      width: 16px;
      height: 16px;
      display: block;
      transition: filter .2s ease;
    }

    @media (hover: hover) {
      .footer-social:hover img {
        filter: var(--icon-orange-filter);
      }
    }

    footer .meta {
      font-size: 11px;
      color: var(--gray-dim);
      line-height: 1.6;
    }

    /* REVEAL ANIMATIONS */
    .reveal {
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.5s ease, transform 0.5s ease;
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    /* ==========================================================================
       RESPONSIVE LAYOUT SYSTEM
       ========================================================================== */
    :root {
      --maxw: 1200px;
      --container-pad: clamp(20px, 4vw, 48px);
      --section-gap: clamp(36px, 6vw, 64px);
    }

    body {
      width: 100%;
    }

    .catalog-controls,
    .cat-grid,
    .cat-card-full {
      min-width: 0;
    }

    .search-input,
    .filter-pill,
    .view-btn,
    .back-btn,
    .card-act-btn,
    .btn-primary,
    .footer-social {
      min-height: 44px;
    }

    .view-btn {
      width: 44px;
      height: 44px;
    }

    .cat-grid,
    .cat-grid.list-mode {
      grid-template-columns: minmax(0, 1fr);
      gap: 16px;
    }

    .cat-grid.grid-mode {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 12px;
    }

    .cat-grid.list-mode .cat-card-full h3,
    .cat-grid.list-mode .cat-card-full p {
      display: block;
      overflow: visible;
    }

    .cat-card-full[hidden] {
      display: none !important;
    }

    @media (max-width: 600px) {
      :root {
        --container-pad: clamp(18px, 5.5vw, 24px);
      }

      .topbar {
        min-height: 64px;
      }

      .cat-hero {
        padding-top: 30px;
        padding-bottom: 20px;
      }

      .cat-hero h1 {
        font-size: clamp(24px, 7vw, 29px);
      }

      .cat-hero p {
        max-width: 42ch;
      }

      .filter-pills {
        overscroll-behavior-inline: contain;
      }

      .filter-pill {
        scroll-snap-align: center;
      }

      .view-toolbar {
        padding-top: 6px;
      }

      .view-switch {
        display: none;
      }

      .cat-card-full {
        padding: 20px 18px;
        min-height: 250px;
        justify-content: flex-start;
      }

      .cat-grid.list-mode .cat-card-full {
        min-height: 0;
      }

      .cat-grid.list-mode .cat-card-full h3 {
        font-size: 16px;
      }

      .cat-grid.list-mode .cat-card-full p {
        font-size: 12.5px;
        max-width: 48ch;
      }

      .cat-grid.list-mode .card-act-btn {
        margin-top: 4px;
      }

      .product-card-details {
        display: grid;
        grid-template-rows: 0fr;
        opacity: 0;
        transition: grid-template-rows .3s cubic-bezier(0.16, 1, 0.3, 1), opacity .2s ease;
      }

      .product-card-details-inner {
        overflow: hidden;
      }

      .cat-card-full.is-expanded .product-card-details {
        grid-template-rows: 1fr;
        opacity: 1;
      }

      .product-card-toggle {
        display: inline-flex;
      }

      .cat-card-full.is-expanded {
        border-color: rgba(255, 106, 0, 0.38);
        box-shadow: 0 12px 28px -12px rgba(0, 0, 0, 0.72), 0 0 18px rgba(255, 106, 0, 0.12);
      }

      .cat-card-full .card-act-btn {
        margin-top: auto;
      }

      .cat-grid.grid-mode .cat-card-full {
        min-height: 238px;
        padding: 14px 12px;
      }

      .cat-grid.grid-mode .cat-card-full .card-top {
        margin-bottom: 10px;
      }

      .cat-grid.grid-mode .cat-card-full .icon-box {
        width: 34px;
        height: 34px;
      }

      .cat-grid.grid-mode .cat-card-full h3 {
        font-size: 12px;
        line-height: 1.2;
      }

      .cat-grid.grid-mode .product-card-toggle {
        min-height: 44px;
        font-size: 9.5px;
        letter-spacing: .03em;
      }

      .cat-grid.grid-mode .product-card-toggle img {
        width: 14px;
        height: 14px;
      }

      .cat-grid.grid-mode .card-act-btn {
        min-height: 44px;
        padding: 8px 6px;
        font-size: 10px;
        line-height: 1.25;
      }

      .cat-grid.grid-mode .spec-chip {
        white-space: normal;
      }

      .cat-grid .reveal {
        opacity: 1;
        transform: none;
      }

      .custom-banner {
        margin-top: 18px;
      }

      .footer-top {
        gap: 16px;
        flex-wrap: wrap;
      }
    }

    @media (max-width: 359px) {
      .filter-pill {
        padding-inline: 12px;
      }
    }

    @media (min-width: 601px) {
      .cat-hero {
        padding-top: clamp(42px, 6vw, 72px);
        padding-bottom: 24px;
      }

      .cat-hero h1 {
        font-size: clamp(30px, 4vw, 44px);
      }

      .cat-hero p {
        max-width: 58ch;
        font-size: 14px;
      }

      .catalog-controls {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 12px 20px;
        align-items: center;
        padding: 0 var(--container-pad) 24px;
      }

      .catalog-controls .search-box {
        grid-column: 1 / -1;
        margin: 0;
      }

      .catalog-controls .filter-pills {
        min-width: 0;
        padding: 0;
      }

      .catalog-controls .view-toolbar {
        padding: 0;
        gap: 18px;
      }

      .cat-grid.grid-mode {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
      }

      .cat-grid.list-mode .cat-card-full {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(190px, 230px);
        gap: 24px;
        align-items: center;
      }

      .cat-grid.list-mode .card-act-btn {
        margin: 0;
      }

      .custom-banner {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 8px 32px;
        align-items: center;
        padding: 28px 26px;
      }

      .custom-banner p {
        margin-bottom: 0;
      }

      .custom-banner .btn-primary {
        grid-column: 2;
        grid-row: 1 / span 2;
        justify-content: center;
      }
    }

    @media (min-width: 1024px) {
      .topbar {
        padding-block: 16px;
      }

      .catalog-controls {
        grid-template-columns: minmax(280px, .8fr) minmax(0, 1.5fr) auto;
        gap: 24px;
      }

      .catalog-controls .search-box {
        grid-column: auto;
      }

      .catalog-controls .filter-pills {
        flex-wrap: wrap;
        overflow: visible;
      }

      .cat-grid.grid-mode {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
      }

      .cat-card-full {
        min-height: 310px;
        padding: 22px 20px;
      }

      .cat-grid.list-mode .cat-card-full {
        min-height: 0;
      }

      .cat-grid.list-mode .cat-card-full > div:first-child {
        display: grid;
        grid-template-columns: auto minmax(0, 1fr);
        column-gap: 18px;
      }

      .cat-grid.list-mode .card-top {
        grid-row: 1 / span 3;
        align-content: start;
        flex-direction: column;
      }

      .cat-grid.list-mode .specs-list {
        margin-bottom: 0;
      }
    }

    /* ==========================================================================
       PRODUCT MEDIA, CATEGORY CONTEXT & IMAGE CREDITS
       ========================================================================== */
    .category-context {
      margin: 0 var(--container-pad) 18px;
      padding: 13px 15px;
      display: flex;
      align-items: baseline;
      gap: 8px 12px;
      flex-wrap: wrap;
      background: rgba(255, 106, 0, 0.045);
      border: 1px solid rgba(255, 106, 0, 0.14);
      border-radius: var(--radius-sm);
      color: var(--gray);
      font-size: 12px;
      line-height: 1.5;
    }

    .category-context h2 {
      color: var(--white);
      font-family: 'Chakra Petch', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: .06em;
      line-height: 1.4;
      text-transform: uppercase;
    }

    .filter-pill {
      opacity: 1;
    }

    .results-count,
    footer .meta {
      color: var(--gray);
    }

    .cat-card-full {
      padding: 0;
      justify-content: flex-start;
      isolation: isolate;
    }

    .product-media {
      aspect-ratio: 4 / 3;
      width: 100%;
      margin: 0;
      position: relative;
      z-index: 2;
      overflow: hidden;
      flex-shrink: 0;
      background:
        radial-gradient(circle at 50% 42%, rgba(255, 106, 0, 0.11), transparent 58%),
        #0d0d10;
      border-bottom: 1px solid var(--line);
    }

    .product-media img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain;
      background: transparent;
    }

    .product-media figcaption {
      position: absolute;
      left: 8px;
      bottom: 8px;
      padding: 4px 7px;
      border: 1px solid rgba(255, 255, 255, 0.11);
      border-radius: 999px;
      background: rgba(7, 7, 9, 0.76);
      backdrop-filter: blur(8px);
      color: rgba(244, 242, 236, 0.72);
      font-family: 'Chakra Petch', sans-serif;
      font-size: 8px;
      font-weight: 600;
      letter-spacing: .05em;
      text-transform: uppercase;
    }

    .product-card-body {
      min-width: 0;
      min-height: 0;
      padding: 15px 14px 16px;
      display: flex;
      flex: 1;
      flex-direction: column;
      position: relative;
      z-index: 2;
    }

    .product-card-main {
      min-width: 0;
      flex: 1;
    }

    .cat-card-full .card-top {
      align-items: flex-start;
      margin-bottom: 10px;
    }

    .category-badge {
      min-width: 0;
      color: var(--orange-2);
      font-family: 'Chakra Petch', sans-serif;
      font-size: 9px;
      font-weight: 600;
      letter-spacing: .045em;
      line-height: 1.25;
      text-transform: uppercase;
    }

    .cat-card-full .layer-tag {
      flex-shrink: 0;
    }

    .price-label {
      align-self: flex-start;
      margin: auto 0 9px;
      color: var(--white);
      font-family: 'Chakra Petch', sans-serif;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: .08em;
      text-transform: uppercase;
    }

    .price-label::before {
      content: '';
      display: inline-block;
      width: 6px;
      height: 6px;
      margin-right: 6px;
      border-radius: 50%;
      background: var(--orange);
      box-shadow: 0 0 7px rgba(255, 106, 0, 0.65);
      vertical-align: 1px;
    }

    .image-credits {
      margin: 0 var(--container-pad) 32px;
      border: 1px solid var(--line);
      border-radius: var(--radius-md);
      background: rgba(18, 18, 22, 0.62);
      overflow: hidden;
    }

    .image-credits summary {
      min-height: 48px;
      padding: 13px 16px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      color: var(--gray);
      font-family: 'Chakra Petch', sans-serif;
      font-size: 10.5px;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      cursor: pointer;
      list-style: none;
    }

    .image-credits summary::-webkit-details-marker {
      display: none;
    }

    .image-credits summary::after {
      content: '+';
      color: var(--orange);
      font-size: 18px;
      line-height: 1;
    }

    .image-credits[open] summary::after {
      content: '−';
    }

    .credits-note {
      padding: 0 16px 12px;
      color: var(--gray);
      font-size: 10.5px;
      line-height: 1.55;
    }

    .credits-list {
      padding: 4px 16px 16px 34px;
      columns: 1;
      color: var(--gray);
      font-size: 10.5px;
      line-height: 1.5;
    }

    .credits-list li {
      break-inside: avoid;
      margin: 0 0 7px;
      padding-left: 2px;
    }

    .credits-list a {
      color: var(--orange-2);
      text-decoration: underline;
      text-underline-offset: 2px;
    }

    .credits-list strong {
      color: var(--white);
      font-weight: 600;
    }

    :where(a, button, input, summary):focus-visible {
      outline: 2px solid var(--orange);
      outline-offset: 3px;
    }

    @media (max-width: 600px) {
      .category-context {
        margin-bottom: 16px;
      }

      .cat-card-full,
      .cat-grid.grid-mode .cat-card-full {
        min-height: 0;
        padding: 0;
      }

      .product-card-body {
        padding: 12px 11px 13px;
      }

      .category-badge {
        display: -webkit-box;
        max-width: calc(100% - 32px);
        overflow: hidden;
        -webkit-box-orient: vertical;
        -webkit-line-clamp: 2;
        font-size: 7.8px;
      }

      .product-media figcaption {
        left: 6px;
        bottom: 6px;
        padding: 3px 5px;
        font-size: 6.8px;
      }

      .cat-grid.grid-mode .cat-card-full h3 {
        min-height: 2.4em;
        margin-bottom: 2px;
        font-size: 12px;
      }

      .cat-grid.grid-mode .price-label {
        font-size: 8.5px;
      }

      .cat-grid.grid-mode .card-act-btn {
        min-height: 44px;
      }
    }

    @media (max-width: 359px) {
      .cat-grid.grid-mode {
        grid-template-columns: minmax(0, 1fr);
        gap: 14px;
      }

      .product-card-body {
        padding: 16px;
      }

      .category-badge {
        font-size: 9px;
      }

      .cat-grid.grid-mode .cat-card-full h3 {
        min-height: 0;
        font-size: 15px;
      }

      .cat-grid.grid-mode .price-label {
        font-size: 10px;
      }
    }

    @media (min-width: 601px) {
      .credits-list {
        columns: 2;
        column-gap: 36px;
      }

      .cat-grid.list-mode .cat-card-full {
        display: grid;
        grid-template-columns: minmax(220px, 32%) minmax(0, 1fr);
        gap: 0;
        align-items: stretch;
      }

      .cat-grid.list-mode .product-media {
        min-height: 240px;
        aspect-ratio: auto;
        border-right: 1px solid var(--line);
        border-bottom: 0;
      }

      .cat-grid.list-mode .product-card-body {
        padding: 22px;
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(190px, 230px);
        grid-template-rows: minmax(0, 1fr) auto;
        gap: 12px 24px;
        align-items: end;
      }

      .cat-grid.list-mode .product-card-main {
        grid-row: 1 / span 2;
        align-self: center;
      }

      .cat-grid.list-mode .price-label {
        grid-column: 2;
        margin: 0;
      }

      .cat-grid.list-mode .card-act-btn {
        grid-column: 2;
        margin: 0;
      }
    }

    @media (min-width: 1024px) {
      .credits-list {
        columns: 3;
      }

      .cat-grid.list-mode .card-top {
        flex-direction: row;
      }
    }

    /* ==========================================================================
       PRODUCT DETAILS MODAL
       ========================================================================== */
    body.product-modal-open {
      overflow: hidden;
    }

    .cat-card-full {
      cursor: pointer;
    }

    .cat-card-full .product-card-details,
    .cat-card-full .price-label,
    .cat-card-full .card-act-btn {
      display: none !important;
    }

    .product-card-toggle {
      display: inline-flex;
      margin: auto 0 0;
      padding: 10px 13px;
      justify-content: center;
      border: 1px solid rgba(255, 106, 0, 0.32);
      border-radius: 999px;
      background: linear-gradient(135deg, rgba(255, 106, 0, 0.14), rgba(255, 106, 0, 0.04));
      color: var(--white);
    }

    .product-card-toggle img {
      transform: rotate(-90deg);
    }

    .product-card-toggle:active {
      transform: scale(0.97);
      background: rgba(255, 106, 0, 0.22);
    }

    @media (hover: hover) {
      .product-card-toggle:hover {
        border-color: var(--orange);
        background: rgba(255, 106, 0, 0.2);
      }
    }

    .product-modal {
      width: min(calc(100% - 32px), 920px);
      max-width: 920px;
      max-height: min(90dvh, 760px);
      margin: auto;
      padding: 0;
      overflow: hidden;
      border: 1px solid rgba(255, 106, 0, 0.34);
      border-radius: clamp(18px, 3vw, 26px);
      background: #101013;
      color: var(--white);
      box-shadow: 0 28px 80px rgba(0, 0, 0, 0.78), 0 0 36px rgba(255, 106, 0, 0.12);
      animation: productModalEnter .28s cubic-bezier(0.16, 1, 0.3, 1);
    }

    .product-modal:not([open]) {
      display: none;
    }

    .product-modal::backdrop {
      background: rgba(2, 2, 4, 0.82);
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    @keyframes productModalEnter {
      from {
        opacity: 0;
        transform: translateY(18px) scale(0.98);
      }
      to {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    .product-modal-shell {
      max-height: min(90dvh, 760px);
      overflow-y: auto;
      overscroll-behavior: contain;
      scrollbar-color: var(--orange) rgba(255, 255, 255, 0.04);
    }

    .product-modal-close {
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 5;
      width: 44px;
      height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 50%;
      background: rgba(7, 7, 9, 0.82);
      color: var(--white);
      cursor: pointer;
      backdrop-filter: blur(12px);
      -webkit-backdrop-filter: blur(12px);
      transition: transform .2s ease, border-color .2s ease, background .2s ease;
    }

    .product-modal-close img {
      width: 20px;
      height: 20px;
      display: block;
    }

    .product-modal-close:active {
      transform: scale(0.92);
    }

    @media (hover: hover) {
      .product-modal-close:hover {
        border-color: var(--orange);
        background: rgba(255, 106, 0, 0.18);
      }
    }

    .product-modal-layout {
      display: grid;
      min-width: 0;
    }

    .product-modal-media {
      position: relative;
      min-height: 230px;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      border-bottom: 1px solid var(--line);
      background:
        radial-gradient(circle at 50% 42%, rgba(255, 106, 0, 0.13), transparent 58%),
        #0b0b0e;
    }

    .product-modal-media img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: contain;
    }

    .product-modal-media figcaption {
      position: absolute;
      left: 12px;
      bottom: 12px;
      padding: 5px 9px;
      border: 1px solid rgba(255, 255, 255, 0.13);
      border-radius: 999px;
      background: rgba(7, 7, 9, 0.78);
      color: rgba(244, 242, 236, 0.78);
      font-family: 'Chakra Petch', sans-serif;
      font-size: 8px;
      font-weight: 600;
      letter-spacing: .06em;
      text-transform: uppercase;
      backdrop-filter: blur(8px);
      -webkit-backdrop-filter: blur(8px);
    }

    .product-modal-content {
      min-width: 0;
      padding: 24px 20px 22px;
    }

    .product-modal-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      margin-bottom: 12px;
      padding-right: 42px;
    }

    .product-modal-category {
      color: var(--orange-2);
      font-family: 'Chakra Petch', sans-serif;
      font-size: 10px;
      font-weight: 600;
      letter-spacing: .06em;
      line-height: 1.35;
      text-transform: uppercase;
    }

    .product-modal-number {
      flex-shrink: 0;
      padding: 3px 7px;
      border: 1px solid rgba(255, 106, 0, 0.22);
      border-radius: 5px;
      background: rgba(255, 106, 0, 0.1);
      color: var(--orange);
      font-family: 'Chakra Petch', sans-serif;
      font-size: 9px;
      font-weight: 600;
      letter-spacing: .05em;
    }

    .product-modal h2 {
      max-width: 20ch;
      margin-bottom: 12px;
      font-family: 'Chakra Petch', sans-serif;
      font-size: clamp(23px, 4vw, 34px);
      font-weight: 700;
      letter-spacing: -.01em;
      line-height: 1.08;
      text-transform: uppercase;
    }

    .product-modal-description {
      color: var(--gray);
      font-size: 13.5px;
      line-height: 1.65;
    }

    .product-modal-specs {
      display: flex;
      flex-wrap: wrap;
      gap: 7px;
      margin-top: 18px;
    }

    .product-modal-specs .spec-chip {
      padding: 6px 9px;
      border-color: rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.045);
      font-size: 9.5px;
    }

    .product-modal-action {
      margin-top: 24px;
      padding-top: 20px;
      border-top: 1px solid var(--line);
    }

    .product-modal-action .price-label {
      display: block;
      margin: 0 0 12px;
    }

    .product-modal-cta {
      width: 100%;
      justify-content: center;
    }

    .product-modal-cta img {
      width: 18px;
      height: 18px;
      display: block;
      flex-shrink: 0;
    }

    .product-modal-note {
      margin-top: 10px;
      color: var(--gray-dim);
      font-size: 10px;
      line-height: 1.5;
      text-align: center;
    }

    @media (min-width: 720px) {
      .product-modal-layout {
        grid-template-columns: minmax(300px, .95fr) minmax(0, 1.05fr);
        min-height: 560px;
      }

      .product-modal-media {
        min-height: 560px;
        aspect-ratio: auto;
        border-right: 1px solid var(--line);
        border-bottom: 0;
      }

      .product-modal-content {
        align-self: center;
        padding: 54px 38px 38px;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      html {
        scroll-behavior: auto;
      }

      .ripple-ring {
        animation: none !important;
      }

      .reveal {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
      }

      .cat-card-full,
      .card-act-btn,
      .filter-pill,
      .view-btn {
        transition: none !important;
      }

      .product-card-details,
      .product-card-toggle img,
      .product-modal,
      .product-modal-close {
        transition: none !important;
        animation: none !important;
      }
    }

    /* ==========================================================================
       SHARED EXTERNAL-PAGE ADJUSTMENTS
       ========================================================================== */
    .catalog-page {
      position: relative;
      z-index: 1;
      margin-left: 6px;
      margin-right: 6px;
    }

    .topbar {
      padding: 14px var(--container-pad);
      background: rgba(7, 7, 9, 0.82);
    }

    .hero .eyebrow {
      margin-bottom: 16px;
    }

    .faq-head {
      padding: 0 0 12px 0;
    }

    .btn.btn-primary {
      font-size: 13.5px;
      letter-spacing: .03em;
      padding: 14px 24px;
      min-height: 48px;
      justify-content: center;
      position: relative;
      overflow: hidden;
      box-shadow: 0 4px 22px rgba(255, 106, 0, 0.35);
    }

    /* ==========================================================================
       SINGLE-PAGE VIEW ROUTING
       ========================================================================== */
    body[data-view="home"] #viewCatalog {
      display: none !important;
    }

    body[data-view="home"] #backBtn {
      display: none !important;
    }

    body[data-view="catalog"] #viewHome {
      display: none !important;
    }

    body[data-view="catalog"] #topbarLoc {
      display: none !important;
    }
