/* =====================================================
   PRINTANET — SHOP CSS
   Tipografía: Plus Jakarta Sans
   Paleta: celeste + turquesa + azul profundo + amarillo/naranja
   ===================================================== */

:root {
    --pn-sky:        #86c2d8;
    --pn-teal:       #1f9aae;
    --pn-teal-dark:  #147b8c;
    --pn-navy:       #063449;
    --pn-navy-soft:  #0b4861;
    --pn-yellow:     #f8b400;
    --pn-orange:     #f47c00;
    --pn-orange-dark:#d96500;
    --pn-orange-soft:rgba(244,124,0,.11);
    --pn-gray-900:   #102a36;
    --pn-gray-800:   #284858;
    --pn-gray-600:   #657985;
    --pn-gray-300:   #c9d8de;
    --pn-gray-100:   #f2f7f9;
    --pn-white:      #ffffff;
    --pn-black:      var(--pn-navy);
    --pn-red:        var(--pn-orange);
    --pn-red-dark:   var(--pn-orange-dark);
    --pn-red-light:  var(--pn-orange-soft);
    --pn-radius:     10px;
    --pn-radius-lg:  16px;
    --pn-nav-h:      88px;
    --pn-announce-h: 38px;
    --pn-font:       'Plus Jakarta Sans', sans-serif;
    --pn-shadow:     0 2px 16px rgba(6,52,73,.10);
    --pn-shadow-md:  0 8px 32px rgba(6,52,73,.16);
}

*, *::before, *::after { box-sizing: border-box; }
body {
    font-family: var(--pn-font); font-size: .9rem; 
    color: var(--pn-gray-900); background: var(--pn-white);
    margin: 0; line-height: 1.6;
}

/* ---- TOPBAR ANNOUNCE ---- */
.topbar-announce {
    background: var(--pn-teal); color: #fff;
    height: var(--pn-announce-h); display: flex; align-items: center;
    position: relative; font-size: .78rem;
}
.topbar-announce a { color: inherit; }

/* ---- NAVBAR ---- */
.pn-navbar {
    position: sticky; top: 0; z-index: 800;
    background: var(--pn-navy);
    height: var(--pn-nav-h);
    display: flex; align-items: center;
    transition: box-shadow .2s;
}
.pn-navbar.scrolled { box-shadow: var(--pn-shadow); }
.pn-navbar .container { display: flex; align-items: center; }

/* Logo */
.pn-brand { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.pn-navbar .pn-brand img {
    filter: brightness(0) invert(1);
    height: clamp(56px, 5.5vw, 72px);
    width: auto;
    object-fit: contain;
    transform: translateY(4px);
    filter: brightness(0) invert(1) drop-shadow(0 8px 14px rgba(0,0,0,.18));
}
.pn-logo-icon {
    width: 36px; height: 36px; border-radius: 9px;
    background: var(--pn-yellow); display: flex; align-items: center; justify-content: center;
    color: var(--pn-navy); font-size: 1.1rem;
}
.pn-logo-icon--sm { width: 28px; height: 28px; border-radius: 7px; font-size: .9rem; }
.pn-logo-name { font-size: 1.1rem; font-weight: 700; color: #fff; line-height: 1; }
.pn-logo-tld  { font-size: .65rem; color: var(--pn-yellow); font-weight: 500; line-height: 1; margin-top: 1px; }

/* Nav links */
.pn-nav-link {
    display: inline-flex; align-items: center; gap: 4px;
    padding: .35rem .65rem; border-radius: 7px;
    font-size: .82rem; font-weight: 600; color: var(--pn-white);
    text-decoration: none; transition: all .15s; white-space: nowrap;
}
.pn-nav-link:hover { background: rgba(255,255,255,.12); color: #fff; }
.pn-nav-link--hot { color: var(--pn-yellow) !important; }
.pn-nav-link--hot:hover { background: rgba(248,180,0,.16); }

/* Buscador */
.pn-search {
    display: flex; align-items: center;
    background: #fff; border-radius: 9px;
    overflow: hidden; width: 280px;
    border: 1.5px solid rgba(134,194,216,.42); transition: all .2s;
}
.pn-search:focus-within { background: #fff; border-color: var(--pn-yellow); width: 320px; }
.pn-search input {
    flex: 1; border: none; background: transparent;
    padding: .42rem .85rem; font-size: .82rem; outline: none;
    font-family: var(--pn-font); color: var(--pn-black);
}
.pn-search button {
    padding: .42rem .85rem; background: none; border: none;
    color: var(--pn-teal-dark); cursor: pointer; font-size: .9rem;
    transition: color .15s;
}
.pn-search:focus-within button { color: var(--pn-orange); }

/* Iconos */
.pn-icon-btn {
    position: relative; display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px; border-radius: 9px;
    background: none; border: none; cursor: pointer;
    color: rgba(255,255,255,.82); font-size: 1.1rem;
    text-decoration: none; transition: all .15s;
}
.pn-icon-btn:hover { background: rgba(255,255,255,.12); color: #fff; }
.pn-cart-count {
    position: absolute; top: -4px; right: -4px;
    min-width: 18px; height: 18px; padding: 0 4px;
    background: var(--pn-yellow); color: var(--pn-navy);
    font-size: .6rem; font-weight: 700; border-radius: 9px;
    display: flex; align-items: center; justify-content: center;
    line-height: 1;
}

/* Mobile menu */
.pn-mobile-menu {
    position: fixed; top: calc(var(--pn-announce-h) + var(--pn-nav-h)); left: 0; right: 0; bottom: 0;
    background: #fff; z-index: 700; transform: translateX(100%); transition: transform .25s ease;
    overflow-y: auto;
}
.pn-mobile-menu.show { transform: translateX(0); }
.pn-mobile-menu-inner { padding: 1.25rem; }
.pn-mobile-cats { display: flex; flex-direction: column; gap: .25rem; margin-bottom: 1rem; }
.pn-mobile-cats a {
    padding: .6rem .75rem; border-radius: 8px; color: var(--pn-gray-900);
    text-decoration: none; font-size: .88rem; font-weight: 500; display: block;
}
.pn-mobile-cats a:hover { background: var(--pn-gray-100); }
.pn-mobile-link {
    display: block; padding: .6rem .75rem; color: var(--pn-gray-900);
    text-decoration: none; font-size: .88rem;
}

/* =====================================================
   BOTONES
   ===================================================== */
.btn-pn-primary {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    background: var(--pn-orange); color: #fff; border: none;
    padding: .6rem 1.25rem; border-radius: var(--pn-radius);
    font-family: var(--pn-font); font-size: .85rem; font-weight: 600;
    cursor: pointer; text-decoration: none; transition: all .15s;
}
.btn-pn-primary:hover { background: var(--pn-orange-dark); color: #fff; transform: translateY(-1px); box-shadow: 0 4px 12px rgba(244,124,0,.32); }
.btn-pn-primary:active { transform: translateY(0); }
.btn-pn-primary.btn-lg { padding: .8rem 1.75rem; font-size: .95rem; }
.btn-pn-primary.btn-xl { padding: 1rem 2.25rem; font-size: 1rem; }

.btn-pn-dark {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    background: var(--pn-navy); color: #fff; border: none;
    padding: .6rem 1.25rem; border-radius: var(--pn-radius);
    font-family: var(--pn-font); font-size: .85rem; font-weight: 600;
    cursor: pointer; text-decoration: none; transition: all .15s;
}
.btn-pn-dark:hover { background: var(--pn-teal-dark); color: #fff; }

.btn-pn-outline {
    display: inline-flex; align-items: center; justify-content: center; gap: 6px;
    background: transparent; color: var(--pn-teal-dark); 
    border: 1.5px solid var(--pn-teal);
    padding: .55rem 1.25rem; border-radius: var(--pn-radius);
    font-family: var(--pn-font); font-size: .85rem; font-weight: 600;
    cursor: pointer; text-decoration: none; transition: all .15s;
}
.btn-pn-outline:hover { background: var(--pn-teal); color: #fff; }

/* =====================================================
   HERO
   ===================================================== */
.pn-hero {
    position: relative; overflow: hidden;
    background: var(--pn-navy);
    min-height: 520px; display: flex; align-items: center;
}
.pn-hero-bg {
    position: absolute; inset: 0;
    background:
        linear-gradient(135deg, rgba(134,194,216,.18) 0%, transparent 28%),
        linear-gradient(135deg, var(--pn-navy) 0%, var(--pn-navy-soft) 55%, var(--pn-teal-dark) 100%);
}
.pn-hero-bg::after {
    content: '';
    position: absolute; right: 0; top: 0; bottom: 0; width: 55%;
    background: linear-gradient(90deg, transparent 0%, rgba(248,180,0,.16) 56%, rgba(244,124,0,.20) 100%);
}
.pn-hero-content { position: relative; z-index: 2; padding: 4rem 0; }
.pn-hero-eyebrow {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(248,180,0,.18); color: var(--pn-yellow);
    padding: .3rem .85rem; border-radius: 20px;
    font-size: .75rem; font-weight: 600; letter-spacing: .04em;
    margin-bottom: 1.25rem;
}
.pn-hero h1 {
    font-size: clamp(2rem, 5vw, 3.25rem); font-weight: 700;
    color: #fff; line-height: 1.15; margin-bottom: 1rem;
}
.pn-hero h1 span { color: var(--pn-yellow); }
.pn-hero p {
    font-size: 1rem; color: rgba(255,255,255,.6);
    margin-bottom: 2rem; max-width: 500px; line-height: 1.7;
}
.pn-hero-badges { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.75rem; }
.pn-hero-badge {
    display: inline-flex; align-items: center; gap: 5px;
    background: rgba(255,255,255,.06); color: rgba(255,255,255,.7);
    padding: .3rem .75rem; border-radius: 6px; font-size: .75rem;
    border: 1px solid rgba(134,194,216,.22);
}

/* =====================================================
   CATEGORÍAS HOME
   ===================================================== */
.pn-cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    gap: 1rem;
}
.pn-cat-card {
    background: #fff; border-radius: var(--pn-radius-lg);
    border: 1.5px solid var(--pn-gray-100);
    padding: 1.5rem 1rem; text-align: center;
    text-decoration: none; color: var(--pn-gray-900);
    transition: all .2s; display: flex; flex-direction: column;
    align-items: center; gap: .6rem;
}
.pn-cat-card:hover {
    border-color: var(--pn-teal); color: var(--pn-teal-dark);
    transform: translateY(-3px); box-shadow: var(--pn-shadow);
}
.pn-cat-icon {
    width: 52px; height: 52px; border-radius: 12px;
    background: var(--pn-gray-100); display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--pn-gray-600); transition: all .2s;
}
.pn-cat-card:hover .pn-cat-icon { background: rgba(31,154,174,.12); color: var(--pn-teal-dark); }
.pn-cat-name { font-size: .8rem; font-weight: 600; line-height: 1.3; }
.pn-cat-count { font-size: .7rem; color: var(--pn-gray-600); }

/* =====================================================
   PRODUCT CARDS
   ===================================================== */
.pn-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.25rem;
}
.pn-product-card {
    background: #fff; border-radius: var(--pn-radius-lg);
    border: 1.5px solid var(--pn-gray-100);
    overflow: hidden; transition: all .2s;
    display: flex; flex-direction: column;
}
.pn-product-card:hover {
    border-color: var(--pn-gray-300);
    box-shadow: var(--pn-shadow-md); transform: translateY(-4px);
}
.pn-product-img {
    aspect-ratio: 1; overflow: hidden;
    background: var(--pn-gray-100); position: relative;
}
.pn-product-img img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .35s ease;
}
.pn-product-card:hover .pn-product-img img { transform: scale(1.06); }
.pn-product-badge {
    position: absolute; top: .6rem; left: .6rem;
    background: var(--pn-orange); color: #fff;
    padding: .2rem .55rem; border-radius: 5px;
    font-size: .65rem; font-weight: 700;
}
.pn-product-badge.badge-custom {
    background: var(--pn-teal); top: .6rem; right: .6rem; left: auto;
}
.pn-product-actions {
    position: absolute; bottom: .6rem; right: .6rem;
    display: flex; gap: .3rem; opacity: 0; transition: opacity .2s;
}
.pn-product-card:hover .pn-product-actions { opacity: 1; }
.pn-product-action-btn {
    width: 32px; height: 32px; border-radius: 8px;
    background: rgba(255,255,255,.92); backdrop-filter: blur(4px);
    border: none; cursor: pointer; display: flex; align-items: center;
    justify-content: center; font-size: .85rem; color: var(--pn-black);
    transition: all .15s;
}
.pn-product-action-btn:hover { background: var(--pn-teal); color: #fff; }
.pn-product-body { padding: .85rem; flex: 1; display: flex; flex-direction: column; }
.pn-product-cat { font-size: .68rem; color: var(--pn-teal-dark); font-weight: 600; text-transform: uppercase; letter-spacing: .04em; margin-bottom: .25rem; }
.pn-product-name {
    font-size: .85rem; font-weight: 600; color: var(--pn-black);
    text-decoration: none; line-height: 1.35;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    margin-bottom: .4rem;
}
.pn-product-name:hover { color: var(--pn-teal-dark); }
.pn-product-desc {
    font-size: .75rem; color: var(--pn-gray-600); line-height: 1.5;
    display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
    flex: 1;
}
.pn-product-footer { display: flex; align-items: center; justify-content: space-between; margin-top: .85rem; }
.pn-product-price { font-size: 1rem; font-weight: 700; color: var(--pn-black); }
.pn-product-price-old { font-size: .75rem; color: var(--pn-gray-600); text-decoration: line-through; }
.pn-product-price-sale { color: var(--pn-orange); }
.pn-product-add {
    width: 32px; height: 32px; border-radius: 8px;
    background: var(--pn-navy); color: #fff; border: none;
    cursor: pointer; display: flex; align-items: center; justify-content: center;
    font-size: .95rem; transition: all .15s; flex-shrink: 0;
}
.pn-product-add:hover { background: var(--pn-orange); transform: scale(1.1); }
.pn-product-custom-tag {
    display: inline-flex; align-items: center; gap: 3px;
    background: rgba(31,154,174,.11); color: var(--pn-teal-dark);
    font-size: .65rem; font-weight: 600; padding: 2px 6px; border-radius: 4px;
    margin-top: .4rem;
}

/* =====================================================
   SECCIÓN GENÉRICA
   ===================================================== */
.pn-section { padding: 4rem 0; }
.pn-section--gray { background: var(--pn-gray-100); }
.pn-section-title { font-size: clamp(1.4rem, 3vw, 1.85rem); font-weight: 700; margin-bottom: .5rem; }
.pn-section-sub { color: var(--pn-gray-600); font-size: .9rem; margin-bottom: 0; }
.pn-section-header { margin-bottom: 2.25rem; }

/* =====================================================
   CHECKOUT
   ===================================================== */
.checkout-step-bar {
    display: flex; align-items: center; gap: 0;
    margin-bottom: 2.5rem; padding: 1.25rem;
    background: #fff; border-radius: var(--pn-radius-lg);
    border: 1.5px solid var(--pn-gray-100);
}
.checkout-step {
    flex: 1; display: flex; align-items: center; gap: 8px;
    font-size: .8rem; font-weight: 500; color: var(--pn-gray-600);
    position: relative;
}
.checkout-step:not(:last-child)::after {
    content: ''; position: absolute; right: 0; top: 50%;
    width: 30px; height: 1px; background: var(--pn-gray-300);
    transform: translateY(-50%);
}
.checkout-step-num {
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--pn-gray-100); display: flex; align-items: center;
    justify-content: center; font-size: .75rem; font-weight: 700;
    flex-shrink: 0; transition: all .2s;
}
.checkout-step.active .checkout-step-num { background: var(--pn-orange); color: #fff; }
.checkout-step.done .checkout-step-num { background: #10b981; color: #fff; }
.checkout-step.active { color: var(--pn-black); }

/* =====================================================
   ORDER STATUS BADGES
   ===================================================== */
.order-badge {
    display: inline-flex; align-items: center; gap: 5px;
    padding: .3rem .8rem; border-radius: 20px;
    font-size: .75rem; font-weight: 600;
}
.order-badge--pending      { background: #fef9c3; color: #854d0e; }
.order-badge--confirmed    { background: #dbeafe; color: #1e40af; }
.order-badge--in_production { background: #ede9fe; color: #5b21b6; }
.order-badge--ready        { background: #d1fae5; color: #065f46; }
.order-badge--shipped      { background: #e0f2fe; color: #0369a1; }
.order-badge--delivered    { background: #d1fae5; color: #065f46; }
.order-badge--cancelled    { background: #fee2e2; color: #991b1b; }
.order-badge--paid         { background: #d1fae5; color: #065f46; }
.order-badge--failed       { background: #fee2e2; color: #991b1b; }

/* =====================================================
   MINI CART
   ===================================================== */
.pn-cart-overlay {
    position: fixed; inset: 0; z-index: 1100;
    background: rgba(0,0,0,.4); backdrop-filter: blur(3px);
}
.pn-mini-cart {
    position: absolute; top: 0; right: 0; bottom: 0;
    width: min(400px, 92vw); background: #fff;
    display: flex; flex-direction: column; box-shadow: -8px 0 32px rgba(0,0,0,.15);
}
.pn-mini-cart-header {
    display: flex; align-items: center; justify-content: space-between;
    padding: 1.25rem; border-bottom: 1px solid var(--pn-gray-100);
    font-size: .95rem;
}
.pn-mini-cart-items { flex: 1; overflow-y: auto; padding: .75rem 1.25rem; }
.pn-mini-cart-item {
    display: flex; gap: .75rem; padding: .75rem 0;
    border-bottom: 1px solid var(--pn-gray-100);
}
.pn-mini-cart-item img {
    width: 52px; height: 52px; object-fit: cover; border-radius: 8px;
    border: 1px solid var(--pn-gray-100); flex-shrink: 0;
}
.pn-mini-cart-item-name { font-size: .82rem; font-weight: 600; line-height: 1.3; }
.pn-mini-cart-item-price { font-size: .85rem; color: var(--pn-orange); font-weight: 600; }
.pn-mini-cart-footer { padding: 1.25rem; border-top: 1px solid var(--pn-gray-100); }

/* =====================================================
   TOAST
   ===================================================== */
.pn-toast-container {
    position: fixed; bottom: 1.5rem; right: 1.5rem;
    z-index: 2000; display: flex; flex-direction: column; gap: .5rem;
}
.pn-toast {
    min-width: 260px; max-width: 360px;
    background: var(--pn-navy); color: #fff;
    padding: .85rem 1.1rem; border-radius: 10px;
    font-size: .82rem; font-weight: 500;
    display: flex; align-items: center; gap: .6rem;
    box-shadow: 0 8px 24px rgba(0,0,0,.25);
    animation: toastIn .25s ease; cursor: pointer;
}
.pn-toast.success { border-left: 3px solid #10b981; }
.pn-toast.error   { border-left: 3px solid var(--pn-orange); }
.pn-toast.info    { border-left: 3px solid var(--pn-teal); }
@keyframes toastIn {
    from { transform: translateX(100%); opacity: 0; }
    to   { transform: translateX(0);   opacity: 1; }
}

/* =====================================================
   FOOTER
   ===================================================== */
.pn-footer {
    background: var(--pn-navy); color: rgba(255,255,255,.66);
    padding: 4rem 0 0;
}
.pn-footer-title {
    font-size: .78rem; font-weight: 700; color: #fff;
    text-transform: uppercase; letter-spacing: .08em;
    margin-bottom: 1rem;
}
.pn-footer-links { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: .4rem; }
.pn-footer-links a {
    font-size: .8rem; color: rgba(255,255,255,.5); text-decoration: none; transition: color .15s;
}
.pn-footer-links a:hover { color: #fff; }
.pn-footer-social {
    width: 34px; height: 34px; border-radius: 8px;
    background: rgba(255,255,255,.08); color: rgba(255,255,255,.6);
    display: flex; align-items: center; justify-content: center;
    font-size: 1rem; text-decoration: none; transition: all .15s;
}
.pn-footer-social:hover { background: var(--pn-orange); color: #fff; }
.pn-payment-badge {
    display: inline-flex; align-items: center;
    background: rgba(255,255,255,.07); color: rgba(255,255,255,.65);
    padding: .3rem .75rem; border-radius: 7px; font-size: .75rem;
    border: 1px solid rgba(255,255,255,.08);
}
.pn-footer-bottom {
    margin-top: 3rem; padding: 1.25rem 0;
    border-top: 1px solid rgba(255,255,255,.07);
    display: flex; align-items: center; flex-wrap: wrap; gap: .5rem;
    font-size: .75rem; color: rgba(255,255,255,.3);
}

/* =====================================================
   UTILITIES
   ===================================================== */
.fw-500 { font-weight: 500; }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }
.text-red { color: var(--pn-orange) !important; }
.bg-black-soft { background: var(--pn-gray-900); }

/* =====================================================
   RESPONSIVE
   ===================================================== */
@media (max-width: 768px) {
    .pn-hero { min-height: 380px; }
    .pn-hero h1 { font-size: 1.75rem; }
    .pn-section { padding: 2.5rem 0; }
    .pn-products-grid { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: .85rem; }
    .pn-cat-grid { grid-template-columns: repeat(auto-fill, minmax(110px, 1fr)); gap: .7rem; }
}

/* =====================================================
   MOBILE FIXES — Hero y navbar
   ===================================================== */
@media (max-width: 767px) {

    /* Hero */
    .pn-hero {
        min-height: auto;
        padding: 0;
    }
    .pn-hero-content {
        padding: .9rem 1rem 1.25rem !important;
    }
    .pn-hero-eyebrow {
        font-size: .72rem;
        padding: .25rem .7rem;
        margin-bottom: 1rem;
    }
    .pn-hero h1 {
        font-size: 1.65rem !important;
        margin-bottom: .75rem;
        line-height: 1.2;
    }
    .pn-hero p {
        font-size: .88rem !important;
        margin-bottom: 1.25rem;
        color: rgba(255,255,255,.65);
    }

    /* Botones hero mobile — no ocupan todo el ancho */
    .pn-hero .d-flex.flex-wrap {
        gap: .6rem !important;
    }
    .pn-hero .btn-pn-primary,
    .pn-hero .btn-pn-dark {
        padding: .6rem 1.1rem !important;
        font-size: .82rem !important;
        flex: 0 0 auto !important;
        width: auto !important;
    }

    /* Badges hero */
    .pn-hero-badges {
        gap: .4rem;
        margin-top: 1.25rem;
    }
    .pn-hero-badge {
        font-size: .7rem;
        padding: .25rem .6rem;
    }

    /* Secciones */
    .pn-section {
        padding: 2rem 0;
    }
    .pn-section-title {
        font-size: 1.25rem !important;
    }

    /* Cat grid mobile */
    .pn-cat-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: .65rem;
    }
    .pn-cat-card {
        padding: 1rem .75rem;
    }
    .pn-cat-icon {
        width: 42px;
        height: 42px;
        font-size: 1.1rem;
    }
    .pn-cat-name {
        font-size: .72rem;
    }

    /* Products grid mobile */
    .pn-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: .75rem;
    }
    .pn-product-body {
        padding: .65rem;
    }
    .pn-product-name {
        font-size: .78rem;
    }
    .pn-product-price {
        font-size: .88rem;
    }

    /* Navbar logo */
    .pn-brand img {
        max-height: 44px !important;
        transform:none;
    }
}

@media (max-width: 400px) {
    .pn-hero h1 {
        font-size: 1.4rem !important;
    }
    .pn-products-grid {
        grid-template-columns: 1fr 1fr;
        gap: .5rem;
    }
}
