/* ==========================================================
   GEEKSTORE V8 — PRODUCTOS SIN BANNER NI MENÚ LATERAL
   ========================================================== */

.gp-page-hero {
    position: relative;
    padding: 76px 0 66px;
    overflow: hidden;
    text-align: center;
    background:
        radial-gradient(circle at 50% 0%, rgba(239, 23, 34, .17), transparent 38%),
        linear-gradient(180deg, #080303, #050505);
    border-bottom: 1px solid rgba(239, 23, 34, .24);
}

.gp-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .11;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(239,23,34,.2) 1px, transparent 1px),
        linear-gradient(90deg, rgba(239,23,34,.2) 1px, transparent 1px);
    background-size: 52px 52px;
    mask-image: radial-gradient(circle at 50% 0%, #000, transparent 70%);
}

.gp-page-hero .gs-container {
    position: relative;
    z-index: 2;
}

.gp-page-hero h1 {
    margin: 12px 0 14px;
    color: #fff;
    font-size: clamp(46px, 5vw, 72px);
    line-height: 1;
    letter-spacing: -2.6px;
}

.gp-page-hero p {
    max-width: 720px;
    margin: auto;
    color: #bdbdbd;
    font-size: 18px;
    line-height: 1.65;
}

.gp-products-section {
    padding: 70px 0 90px;
    background:
        radial-gradient(circle at 85% 10%, rgba(239,23,34,.09), transparent 28%),
        #060606;
}

.gp-products-section .gs-container {
    width: min(1460px, calc(100% - 44px));
}

.gp-products-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 32px;
    margin-bottom: 28px;
}

.gp-products-heading h2 {
    margin: 9px 0 10px;
    color: #fff;
    font-size: clamp(34px, 3.5vw, 52px);
    line-height: 1;
    letter-spacing: -1.8px;
}

.gp-products-heading p {
    max-width: 660px;
    margin: 0;
    color: #aaa;
    font-size: 16px;
    line-height: 1.6;
}

.gp-advisor-button {
    min-height: 50px;
    padding: 12px 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    flex: 0 0 auto;
    color: #fff;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.18);
    border-radius: 11px;
    font-weight: 900;
    cursor: pointer;
    transition: border-color .25s ease, transform .25s ease;
}

.gp-advisor-button:hover {
    transform: translateY(-2px);
    border-color: rgba(239,23,34,.65);
}

.gp-category-pills {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 0 24px;
    scrollbar-width: thin;
}

.gp-category-pills button {
    min-height: 42px;
    flex: 0 0 auto;
    padding: 9px 18px;
    color: #bbb;
    background: rgba(255,255,255,.025);
    border: 1px solid rgba(255,255,255,.10);
    border-radius: 999px;
    font-weight: 800;
    cursor: pointer;
}

.gp-category-pills button:hover,
.gp-category-pills button.is-active {
    color: #fff;
    background: rgba(239,23,34,.13);
    border-color: rgba(239,23,34,.62);
}

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

.gp-product-card {
    position: relative;
    min-width: 0;
    overflow: hidden;
    background:
        linear-gradient(160deg, rgba(255,255,255,.045), transparent 33%),
        #0b0b0b;
    border: 1px solid rgba(255,255,255,.11);
    border-radius: 21px;
    box-shadow: 0 20px 42px rgba(0,0,0,.25);
    transition: transform .28s ease, border-color .28s ease, box-shadow .28s ease;
}

.gp-product-card:hover {
    transform: translateY(-8px);
    border-color: rgba(239,23,34,.55);
    box-shadow: 0 30px 55px rgba(0,0,0,.42), 0 0 28px rgba(239,23,34,.08);
}

.gp-product-visual {
    position: relative;
    height: 245px;
    display: grid;
    place-items: center;
    overflow: hidden;
    background:
        radial-gradient(circle at center, rgba(239,23,34,.24), transparent 54%),
        linear-gradient(145deg, #151515, #080808);
    border-bottom: 1px solid rgba(255,255,255,.08);
}

.gp-product-visual::before,
.gp-product-visual::after {
    content: "";
    position: absolute;
    width: 160px;
    height: 160px;
    border: 1px solid rgba(239,23,34,.20);
    transform: rotate(45deg);
}

.gp-product-visual::after {
    width: 105px;
    height: 105px;
    border-color: rgba(255,255,255,.08);
}

.gp-product-icon {
    position: relative;
    z-index: 2;
    color: #fff;
    font-size: 82px;
    font-weight: 900;
    text-shadow: 0 0 28px rgba(239,23,34,.34);
}

.gp-product-visual small {
    position: absolute;
    z-index: 2;
    left: 18px;
    bottom: 15px;
    color: rgba(255,255,255,.68);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 1.4px;
}

.gp-product-visual--desktop {
    background:
        radial-gradient(circle, rgba(83,69,255,.25), transparent 54%),
        linear-gradient(145deg, #111329, #07070b);
}

.gp-product-visual--monitor {
    background:
        radial-gradient(circle, rgba(0,154,255,.23), transparent 54%),
        linear-gradient(145deg, #071725, #050708);
}

.gp-product-visual--printer {
    background:
        radial-gradient(circle, rgba(10,201,159,.20), transparent 54%),
        linear-gradient(145deg, #071c19, #050807);
}

.gp-product-visual--keyboard {
    background:
        radial-gradient(circle, rgba(172,72,255,.22), transparent 54%),
        linear-gradient(145deg, #1a0925, #080509);
}

.gp-product-visual--audio {
    background:
        radial-gradient(circle, rgba(255,112,25,.22), transparent 54%),
        linear-gradient(145deg, #251008, #080505);
}

.gp-product-content {
    padding: 23px 22px 24px;
}

.gp-product-label {
    color: #ef1722;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.gp-product-content h3 {
    margin: 8px 0 10px;
    color: #fff;
    font-size: 24px;
    line-height: 1.1;
}

.gp-product-content p {
    min-height: 52px;
    margin: 0 0 18px;
    color: #aaa;
    font-size: 14px;
    line-height: 1.55;
}

.gp-product-button {
    padding: 0;
    color: #ef1722;
    background: transparent;
    border: 0;
    font-weight: 900;
    cursor: pointer;
}

.gp-product-button:hover {
    color: #fff;
}

.gp-help-banner {
    margin-top: 30px;
    padding: 30px 34px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    background:
        radial-gradient(circle at 80% 50%, rgba(239,23,34,.16), transparent 32%),
        linear-gradient(145deg, #151515, #090909);
    border: 1px solid rgba(239,23,34,.30);
    border-radius: 20px;
}

.gp-help-banner > div > span {
    color: #ef1722;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.gp-help-banner h2 {
    margin: 7px 0 8px;
    color: #fff;
    font-size: 30px;
}

.gp-help-banner p {
    margin: 0;
    color: #aaa;
}

@media (max-width: 1050px) {
    .gp-product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 720px) {
    .gp-products-heading,
    .gp-help-banner {
        align-items: stretch;
        flex-direction: column;
    }

    .gp-advisor-button,
    .gp-help-banner .gs-btn {
        width: 100%;
    }
}

@media (max-width: 620px) {
    .gp-products-section .gs-container {
        width: calc(100% - 28px);
    }

    .gp-product-grid {
        grid-template-columns: 1fr;
    }

    .gp-product-visual {
        height: 220px;
    }

    .gp-page-hero {
        padding-block: 58px;
    }

    .gp-page-hero h1 {
        font-size: 45px;
    }
}