
    /* ============================================================
       DESIGN TOKENS — inherited from Stone Hub Traders index.html
    ============================================================ */
    :root {
      --gold:           #A89070;
      --gold-light:     #C4AB8C;
      --gold-dark:      #7D6A53;
      --gold-muted:     rgba(168, 144, 112, 0.10);
      --gold-rule:      rgba(168, 144, 112, 0.32);
      --charcoal:       #111111;
      --mid-dark:       #1E1E1E;
      --text-dark:      #0D0D0D;
      --text-mid:       #4A4747;
      --text-light:     #7A7672;
      --pure-white:     #FFFFFF;
      --stone-white:    #F6F3EF;
      --stone-off:      #EDE8E1;
      --whatsapp-green: #25D366;
    }

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

    html {
      scroll-behavior: smooth;
      font-size: 16px;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--stone-white);
      color: var(--text-dark);
      line-height: 1.6;
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* ============================================================
       NAV — scrolled state only (no transparent start)
    ============================================================ */
    .pg-nav {
      position: fixed;
      top: 0;
      width: 100%;
      z-index: 1000;
      background: rgba(246, 243, 239, 0.97);
      backdrop-filter: blur(24px) saturate(160%);
      -webkit-backdrop-filter: blur(24px) saturate(160%);
      border-bottom: 1px solid rgba(168, 144, 112, 0.22);
      padding: clamp(0.75rem, 1.3vw, 1.05rem) 0;
    }

    .pg-nav-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 clamp(20px, 4vw, 60px);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }

    /* Back link */
    .pg-nav-back {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(0.55rem, 0.8vw, 0.62rem);
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--text-mid);
      text-decoration: none;
      transition: color 0.22s ease, gap 0.25s ease;
    }

    .pg-nav-back:hover { color: var(--charcoal); gap: 13px; }

    .pg-nav-back-icon {
      color: var(--gold);
      font-size: 0.62rem;
      transition: transform 0.25s ease;
    }

    .pg-nav-back:hover .pg-nav-back-icon { transform: translateX(-3px); }

    /* Wordmark */
    .pg-nav-logo {
      display: flex;
      flex-direction: column;
      gap: 3px;
      text-decoration: none;
      flex-shrink: 0;
    }

    .pg-nav-logo-name {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(0.62rem, 0.95vw, 0.8rem);
      font-weight: 700;
      letter-spacing: clamp(2px, 0.4vw, 4px);
      text-transform: uppercase;
      color: var(--charcoal);
      white-space: nowrap;
    }

    .pg-nav-logo-sub {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(0.44rem, 0.56vw, 0.52rem);
      font-weight: 400;
      letter-spacing: clamp(2px, 0.45vw, 4px);
      text-transform: uppercase;
      color: var(--gold);
      white-space: nowrap;
    }

    /* ============================================================
       PAGE HERO — dark slab, architectural
    ============================================================ */
    .pg-hero {
      background: var(--charcoal);
      position: relative;
      overflow: hidden;
      padding-top: clamp(78px, 10vw, 96px); /* nav offset */
    }

    /* Subtle stone grain texture */
    .pg-hero::before {
      content: '';
      position: absolute;
      inset: 0;
      opacity: 0.035;
      background-image:
        radial-gradient(ellipse at 20% 50%, rgba(168,144,112,0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(168,144,112,0.15) 0%, transparent 50%);
      pointer-events: none;
    }

    .pg-hero-inner {
      max-width: 1280px;
      margin: 0 auto;
      padding: clamp(3rem, 6vw, 5.5rem) clamp(20px, 4vw, 60px)
               clamp(2.8rem, 5.5vw, 5rem);
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 3rem;
      align-items: end;
      position: relative;
      z-index: 1;
    }

    /* Eyebrow */
    .pg-hero-eyebrow {
      display: flex;
      align-items: center;
      gap: 12px;
      margin-bottom: clamp(14px, 2.5vh, 22px);
    }

    .pg-hero-eyebrow::before {
      content: '';
      display: block;
      width: 24px;
      height: 1px;
      background: var(--gold);
      flex-shrink: 0;
    }

    .pg-hero-eyebrow-label {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(0.52rem, 0.78vw, 0.6rem);
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
    }

    /* Display — ultra-thin, the SHT signature */
    .pg-hero-title {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(2.6rem, 6vw, 5.5rem);
      font-weight: 200;
      line-height: 1.06;
      letter-spacing: clamp(-0.5px, -0.08vw, -1.5px);
      color: var(--pure-white);
      margin-bottom: clamp(12px, 2vh, 18px);
    }

    .pg-hero-title em {
      font-style: normal;
      color: var(--gold);
    }

    /* Tagline */
    .pg-hero-tagline {
      font-family: 'Inter', sans-serif;
      font-size: clamp(0.76rem, 1vw, 0.88rem);
      font-weight: 300;
      line-height: 1.74;
      color: rgba(255, 255, 255, 0.48);
      max-width: 40ch;
    }

    /* Ghost number — right side */
    .pg-hero-ghost {
      text-align: right;
      align-self: flex-end;
      flex-shrink: 0;
      padding-bottom: 6px;
    }

    .pg-hero-ghost-num {
      display: block;
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(3rem, 7vw, 6.5rem);
      font-weight: 200;
      line-height: 1;
      letter-spacing: -3px;
      color: rgba(255, 255, 255, 0.07);
      user-select: none;
    }

    .pg-hero-ghost-label {
      display: block;
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(0.52rem, 0.72vw, 0.6rem);
      font-weight: 700;
      letter-spacing: 4px;
      text-transform: uppercase;
      color: var(--gold);
      text-align: right;
      margin-top: 6px;
    }

    /* Gold extending rule — mirrors loader */
    .pg-hero-rule {
      height: 1px;
      background: linear-gradient(to right,
        var(--gold) 0%,
        rgba(168,144,112,0.25) 40%,
        transparent 100%
      );
    }

    /* ============================================================
       PRODUCTS SECTION
    ============================================================ */
    .products-section {
      padding: clamp(3rem, 6vh, 5.5rem) 0 clamp(4rem, 7vh, 6rem);
    }

    .products-container {
      max-width: 1280px;
      margin: 0 auto;
      padding: 0 clamp(20px, 4vw, 60px);
    }

    /* Meta bar */
    .products-meta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: clamp(1.8rem, 3.5vh, 2.8rem);
      padding-bottom: clamp(1rem, 2vh, 1.4rem);
      border-bottom: 1px solid var(--stone-off);
    }

    .products-count {
      font-family: 'Inter', sans-serif;
      font-size: clamp(0.7rem, 0.85vw, 0.78rem);
      font-weight: 400;
      color: var(--text-light);
      letter-spacing: 0.3px;
    }

    .products-count strong {
      font-family: 'Montserrat', sans-serif;
      font-weight: 600;
      color: var(--text-mid);
    }

    .products-filter {
      display: flex;
      gap: 6px;
      flex-wrap: wrap;
    }

    .filter-pill {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.54rem;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--text-light);
      background: transparent;
      border: 1px solid rgba(168, 144, 112, 0.28);
      padding: 6px 13px;
      cursor: pointer;
      transition: all 0.22s ease;
      line-height: 1;
    }

    .filter-pill:hover { color: var(--gold); border-color: var(--gold); }

    .filter-pill.active {
      color: var(--pure-white);
      background: var(--charcoal);
      border-color: var(--charcoal);
    }

    /* ============================================================
       PRODUCT GRID
    ============================================================ */
    .products-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: clamp(10px, 1.5vw, 20px);
    }

    /* ============================================================
       PRODUCT CARD
    ============================================================ */
    .product-card {
      background: var(--pure-white);
      display: flex;
      flex-direction: column;
      cursor: pointer;
      position: relative;
      overflow: hidden;
      contain: layout style paint;

      /* Performance: promote to own layer only on hover intent */
      transition:
        box-shadow 0.35s ease,
        transform  0.35s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .product-card:hover {
      box-shadow: 0 8px 40px rgba(0,0,0,0.10);
      transform: translateY(-4px);
    }

    /* Gold sweep: top border expands from left on hover */
    .product-card::before {
      content: '';
      position: absolute;
      top: 0; left: 0; right: 0;
      height: 2px;
      background: var(--gold);
      transform: scaleX(0);
      transform-origin: left center;
      transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: 3;
    }

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

    /* Image container */
    .card-img-wrap {
      position: relative;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      background: var(--charcoal);
      flex-shrink: 0;
    }

    .card-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
      /* No will-change by default — added on mouseenter via JS */
    }

    .product-card:hover .card-img { transform: scale(1.06); }

    /* Badge */
    .card-badge {
      position: absolute;
      top: 12px;
      left: 12px;
      z-index: 2;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.50rem;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--charcoal);
      background: var(--gold);
      padding: 5px 10px;
      line-height: 1;
    }

    /* Premium star */
    .card-badge-star {
      position: absolute;
      top: 12px;
      right: 12px;
      z-index: 2;
      width: 30px;
      height: 30px;
      background: rgba(0,0,0,0.55);
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .card-badge-star i {
      color: var(--gold);
      font-size: 0.65rem;
    }

    /* Card body */
    .card-body {
      padding: clamp(1.1rem, 1.8vw, 1.6rem);
      display: flex;
      flex-direction: column;
      flex: 1;
    }

    /* 1px extending rule */
    .card-rule {
      display: block;
      width: 20px;
      height: 1px;
      background: var(--gold);
      margin-bottom: clamp(0.65rem, 1.2vh, 0.9rem);
      transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
      flex-shrink: 0;
    }

    .product-card:hover .card-rule { width: 38px; }

    .card-name {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(0.88rem, 1.2vw, 1.05rem);
      font-weight: 500;
      line-height: 1.28;
      color: var(--charcoal);
      letter-spacing: 0.15px;
      margin-bottom: 7px;
    }

    .card-desc {
      font-family: 'Inter', sans-serif;
      font-size: clamp(0.73rem, 0.88vw, 0.80rem);
      font-weight: 400;
      line-height: 1.68;
      color: var(--text-mid);
      flex: 1;
      margin-bottom: clamp(0.9rem, 1.6vh, 1.3rem);
    }

    /* Actions */
    .card-actions {
      display: flex;
      gap: 7px;
    }

    .card-btn {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.54rem;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      padding: 10px 14px;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 6px;
      text-decoration: none;
      transition: background 0.22s ease, color 0.22s ease;
      flex: 1;
      line-height: 1;
    }

    .card-btn--wa {
      background: var(--whatsapp-green);
      color: var(--pure-white);
    }

    .card-btn--wa:hover { background: #128C7E; }

    .card-btn--view {
      background: var(--charcoal);
      color: var(--pure-white);
    }

    .card-btn--view:hover { background: var(--gold-dark); }

    /* ============================================================
       LOAD MORE
    ============================================================ */
    .load-more-section {
      margin-top: clamp(2.5rem, 5vh, 4rem);
      padding-top: clamp(1.5rem, 3vh, 2.5rem);
      border-top: 1px solid var(--stone-off);
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 14px;
    }

    .load-more-btn {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.62rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--charcoal);
      background: transparent;
      border: 1px solid var(--charcoal);
      padding: 13px 38px;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: background 0.22s ease, color 0.22s ease;
    }

    .load-more-btn:hover {
      background: var(--charcoal);
      color: var(--pure-white);
    }

    .load-more-btn:disabled {
      opacity: 0.35;
      cursor: not-allowed;
      pointer-events: none;
    }

    .load-more-info {
      font-family: 'Inter', sans-serif;
      font-size: clamp(0.68rem, 0.82vw, 0.75rem);
      font-weight: 400;
      color: var(--text-light);
      letter-spacing: 0.3px;
    }

    /* Progress bar */
    .load-progress-wrap {
      width: 120px;
      height: 1px;
      background: rgba(168, 144, 112, 0.22);
      position: relative;
      overflow: hidden;
    }

    .load-progress-bar {
      position: absolute;
      left: 0; top: 0; bottom: 0;
      background: var(--gold);
      transition: width 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* ============================================================
       MODAL — side panel (right slide-in, refined)
    ============================================================ */
    .modal-backdrop {
      position: fixed;
      inset: 0;
      background: rgba(0, 0, 0, 0.60);
      backdrop-filter: blur(6px);
      -webkit-backdrop-filter: blur(6px);
      z-index: 9000;
      opacity: 0;
      visibility: hidden;
      transition:
        opacity    0.38s ease,
        visibility 0.38s ease;
    }

    .modal-backdrop.open {
      opacity: 1;
      visibility: visible;
    }

    /* Panel slides from right */
    .modal-panel {
      position: fixed;
      top: 0;
      right: 0;
      bottom: 0;
      width: min(580px, 92vw);
      background: var(--pure-white);
      z-index: 9001;
      display: flex;
      flex-direction: column;
      overflow-y: auto;
      transform: translateX(100%);
      transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);

      /* Custom scrollbar */
      scrollbar-width: thin;
      scrollbar-color: var(--gold) transparent;
    }

    .modal-panel::-webkit-scrollbar { width: 4px; }
    .modal-panel::-webkit-scrollbar-track { background: transparent; }
    .modal-panel::-webkit-scrollbar-thumb {
      background: var(--gold-rule);
      border-radius: 2px;
    }

    .modal-backdrop.open .modal-panel {
      transform: translateX(0);
    }

    /* Modal image */
    .modal-img-wrap {
      position: relative;
      aspect-ratio: 4 / 3;
      overflow: hidden;
      background: var(--charcoal);
      flex-shrink: 0;
    }

    .modal-img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      cursor: zoom-in;
      transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .modal-img:hover { transform: scale(1.03); }

    /* Image zoom hint */
    .modal-img-hint {
      position: absolute;
      bottom: 12px;
      right: 12px;
      font-family: 'Montserrat', sans-serif;
      font-size: 0.48rem;
      font-weight: 700;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: rgba(255,255,255,0.65);
      background: rgba(0,0,0,0.45);
      padding: 5px 9px;
      display: flex;
      align-items: center;
      gap: 5px;
      pointer-events: none;
    }

    /* Close button */
    .modal-close {
      position: absolute;
      top: 14px;
      right: 14px;
      width: 38px;
      height: 38px;
      background: var(--charcoal);
      color: var(--pure-white);
      border: none;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.8rem;
      z-index: 3;
      transition: background 0.22s ease;
    }

    .modal-close:hover { background: var(--gold); }

    /* Modal body */
    .modal-body {
      padding: clamp(1.6rem, 3vw, 2.4rem);
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .modal-eyebrow {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 12px;
    }

    .modal-badge {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.50rem;
      font-weight: 700;
      letter-spacing: 3px;
      text-transform: uppercase;
      color: var(--gold);
    }

    .modal-rule {
      display: block;
      width: 24px;
      height: 1px;
      background: var(--gold);
      margin-bottom: 14px;
    }

    .modal-title {
      font-family: 'Montserrat', sans-serif;
      font-size: clamp(1.3rem, 2.8vw, 1.9rem);
      font-weight: 200;
      line-height: 1.14;
      color: var(--charcoal);
      letter-spacing: -0.3px;
      margin-bottom: clamp(0.9rem, 1.8vh, 1.3rem);
    }

    .modal-separator {
      display: block;
      height: 1px;
      background: var(--stone-off);
      margin-bottom: clamp(0.9rem, 1.8vh, 1.3rem);
    }

    .modal-desc {
      font-family: 'Inter', sans-serif;
      font-size: clamp(0.78rem, 0.95vw, 0.86rem);
      font-weight: 400;
      line-height: 1.76;
      color: var(--text-mid);
      margin-bottom: clamp(1.2rem, 2.5vh, 1.8rem);
    }

    /* Features */
    .modal-features-head {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.56rem;
      font-weight: 700;
      letter-spacing: 3.5px;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 10px;
    }

    .modal-features {
      list-style: none;
      margin-bottom: clamp(1.4rem, 3vh, 2.2rem);
      flex: 1;
    }

    .modal-features li {
      font-family: 'Inter', sans-serif;
      font-size: clamp(0.76rem, 0.9vw, 0.83rem);
      font-weight: 400;
      color: var(--text-mid);
      padding: 9px 0;
      border-bottom: 1px solid var(--stone-off);
      display: flex;
      align-items: center;
      gap: 12px;
      line-height: 1.5;
    }

    .modal-features li:last-child { border-bottom: none; }

    /* Feature bullet: 5px gold dash */
    .modal-features li::before {
      content: '';
      display: block;
      width: 6px;
      height: 1px;
      background: var(--gold);
      flex-shrink: 0;
    }

    /* Modal actions */
    .modal-actions {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 8px;
      margin-top: auto;
      padding-top: clamp(1rem, 2vh, 1.5rem);
      border-top: 1px solid var(--stone-off);
    }

    .modal-btn {
      font-family: 'Montserrat', sans-serif;
      font-size: 0.57rem;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      padding: 12px 22px;
      border: none;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      text-decoration: none;
      transition: background 0.22s ease, color 0.22s ease, border-color 0.22s ease;
      line-height: 1;
    }

    .modal-btn--wa {
      background: var(--whatsapp-green);
      color: var(--pure-white);
    }

    .modal-btn--wa:hover { background: #128C7E; }

    .modal-btn--share {
      background: transparent;
      color: var(--text-mid);
      border: 1px solid var(--stone-off);
      padding: 12px 16px;
    }

    .modal-btn--share:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    /* ============================================================
       LIGHTBOX — full-screen image zoom
    ============================================================ */
    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.96);
      z-index: 9500;
      display: flex;
      align-items: center;
      justify-content: center;
      opacity: 0;
      visibility: hidden;
      transition: opacity 0.3s ease, visibility 0.3s ease;
    }

    .lightbox.open {
      opacity: 1;
      visibility: visible;
    }

    .lightbox img {
      max-width: 90vw;
      max-height: 88vh;
      object-fit: contain;
      border: 1px solid rgba(168,144,112,0.3);
    }

    .lightbox-close {
      position: fixed;
      top: 20px;
      right: 20px;
      background: var(--gold);
      color: var(--charcoal);
      border: none;
      width: 40px;
      height: 40px;
      cursor: pointer;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 0.85rem;
      z-index: 9501;
      transition: background 0.22s ease;
    }

    .lightbox-close:hover { background: var(--pure-white); }

    /* ============================================================
       WHATSAPP FLOAT — inherited from index.html
    ============================================================ */
    .whatsapp-float {
      position: fixed;
      bottom: 28px;
      left: 28px;
      width: 52px;
      height: 52px;
      background: var(--whatsapp-green);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      box-shadow:
        0 2px 8px rgba(0, 0, 0, 0.15),
        0 6px 24px rgba(37, 211, 102, 0.28);
      z-index: 8000;
      text-decoration: none;
      transition: transform 0.25s cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    .whatsapp-float:hover { transform: translateY(-3px) scale(1.06); }
    .whatsapp-float i { color: white; font-size: 26px; }

    .whatsapp-float::after {
      content: '';
      position: absolute;
      inset: -4px;
      border-radius: 50%;
      border: 1.5px solid rgba(37, 211, 102, 0.4);
      animation: wa-ring 2.5s ease-out infinite;
    }

    @keyframes wa-ring {
      0%   { transform: scale(1);   opacity: 1; }
      80%  { transform: scale(1.4); opacity: 0; }
      100% { transform: scale(1.4); opacity: 0; }
    }

    /* ============================================================
       SCROLL REVEAL
    ============================================================ */
    .fade-up {
      opacity: 0;
      transform: translateY(22px);
      transition: opacity 0.6s ease, transform 0.6s ease;
    }

    .fade-up.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ============================================================
       EMPTY / LOADING STATES
    ============================================================ */
    .skeleton {
      background: linear-gradient(
        90deg,
        var(--stone-off) 25%,
        var(--stone-white) 50%,
        var(--stone-off) 75%
      );
      background-size: 200% 100%;
      animation: shimmer 1.4s infinite;
      border-radius: 0;
    }

    @keyframes shimmer {
      0%   { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }

    /* ============================================================
       RESPONSIVE
    ============================================================ */
    @media (max-width: 991px) {
      .products-grid {
        grid-template-columns: repeat(2, 1fr);
      }

      .pg-hero-ghost { display: none; }
    }

    @media (max-width: 600px) {
      .products-grid {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .modal-panel { width: 100vw; }

      .modal-actions {
        grid-template-columns: 1fr;
      }

      .products-meta {
        flex-direction: column;
        align-items: flex-start;
      }

      .pg-nav-back span { display: none; }
    }

    @media (max-width: 480px) {
      .pg-nav-logo-name { font-size: 0.65rem; letter-spacing: 1.5px; }
      .pg-nav-logo-sub  { font-size: 0.44rem; letter-spacing: 1.5px; }
    }

    /* ============================================================
       ACCESSIBILITY
    ============================================================ */
    :focus-visible {
      outline: 2px solid var(--gold);
      outline-offset: 3px;
    }

    :focus:not(:focus-visible) { outline: none; }

    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
      }
      .fade-up { opacity: 1 !important; transform: none !important; }
    }

    @media print {
      .pg-nav, .whatsapp-float, .modal-backdrop { display: none !important; }
    }