```css
/* =========================================================
   BUSCAR.PHP - ESTILOS ESPECÍFICOS
   NewComputers
   ========================================================= */


/* =========================
   PRODUCTOS
   ========================= */

.search-result-card .product-image,
.search-result-card .product-image a {
    background-color: #fff !important;
}

html[data-theme="dark"] .search-result-card .product-image img {
    background-color: #fff !important;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1rem;
}

.results-grid.results-grid--few {
    grid-template-columns: repeat(auto-fit, minmax(260px, 320px));
    justify-content: flex-start;
}

.search-result-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.search-result-card .product-image {
    margin-bottom: .5rem;
    flex-shrink: 0;
}

.search-result-bottom {
    margin-top: auto;
    padding-top: .75rem;
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.search-result-actions {
    display: flex;
    flex-direction: column;
    gap: .45rem;
}

.search-result-actions .icon-btn {
    justify-content: center;
    font-size: .8rem;
    padding: .45rem .7rem;
}


/* =========================
   ORDEN Y FILTROS
   ========================= */

.order-form {
    margin: 0 0 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: .75rem;
    align-items: center;
    font-size: .85rem;
}

.order-form label {
    font-weight: 600;
}

.order-form select {
    padding: .25rem .5rem;
    border-radius: 999px;
    border: 1px solid var(--nc-border-subtle);
    background: var(--nc-bg-soft);
    color: var(--nc-text);
    font-size: .85rem;
}

html[data-theme="light"] .order-form select {
    background: #fff;
}

.order-form button {
    border-radius: 999px;
    border: 1px solid var(--nc-border-subtle);
    background: var(--nc-gray-900);
    color: var(--nc-text);
    padding: .25rem .8rem;
    font-size: .8rem;
    cursor: pointer;
}

html[data-theme="light"] .order-form button {
    background: var(--nc-gray-200);
}

.order-form .stock-only {
    display: inline-flex;
    align-items: center;
    gap: .25rem;
    font-weight: 500;
}

.order-form .stock-only input[type="checkbox"] {
    width: 14px;
    height: 14px;
    cursor: pointer;
}


/* =========================
   PAGINACIÓN
   ========================= */

.pagination {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: .35rem;
    align-items: center;
    font-size: .85rem;
}

.pagination .page-link {
    padding: .25rem .55rem;
    border-radius: 999px;
    border: 1px solid var(--nc-border-subtle);
    text-decoration: none;
    color: var(--nc-text);
}

.pagination .page-link--current {
    background: var(--nc-red);
    border-color: var(--nc-red-dark);
    color: #fff;
    cursor: default;
}

.pagination .page-link--disabled {
    opacity: .5;
    cursor: default;
    border-style: dashed;
}


/* =========================
   SIN STOCK
   ========================= */

.nostock-pill {
    display: inline-flex;
    align-items: center;
    gap: .3rem;
    padding: .15rem .5rem;
    border-radius: 999px;
    background: var(--nc-gray-900);
    color: var(--nc-text-soft);
    font-size: .75rem;
    margin-top: .4rem;
}

.nostock-pill-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #b91c1c;
}


/* =========================================================
   BANNER NOTEBOOKS MIAMI
   ========================================================= */

.banner-miami {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;

    margin: 0 0 1.35rem;
    padding: 1.4rem 1.5rem;

    overflow: hidden;

    border-radius: 1rem;
    border: 1px solid rgba(59, 130, 246, .42);

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(59, 130, 246, .30),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            #06152a 0%,
            #092344 52%,
            #0d3568 100%
        );

    color: #fff;
    text-decoration: none;

    box-shadow:
        0 12px 30px rgba(0, 0, 0, .25),
        inset 0 1px 0 rgba(255, 255, 255, .08);

    transition:
        transform .18s ease,
        box-shadow .18s ease,
        border-color .18s ease;
}

.banner-miami:hover {
    transform: translateY(-2px);

    border-color: rgba(96, 165, 250, .8);

    box-shadow:
        0 16px 34px rgba(0, 0, 0, .32),
        0 0 22px rgba(59, 130, 246, .13);
}

.banner-miami::before {
    content: "";
    position: absolute;

    width: 260px;
    height: 260px;

    right: -100px;
    top: -130px;

    border-radius: 50%;
    background: rgba(255, 255, 255, .045);

    pointer-events: none;
}

.banner-miami::after {
    content: "💻";

    position: absolute;
    right: 145px;
    bottom: -22px;

    font-size: 6.8rem;
    line-height: 1;

    opacity: .07;

    transform: rotate(-10deg);

    pointer-events: none;
}

.banner-miami-contenido {
    position: relative;
    z-index: 2;
    min-width: 0;
}

.banner-miami-badge {
    display: inline-flex;
    align-items: center;
    gap: .4rem;

    margin-bottom: .55rem;
    padding: .28rem .62rem;

    border-radius: 999px;

    background: rgba(59, 130, 246, .20);
    border: 1px solid rgba(147, 197, 253, .25);

    color: #bfdbfe;

    font-size: .67rem;
    font-weight: 900;
    letter-spacing: .07em;
    text-transform: uppercase;
}

.banner-miami-titulo {
    margin: 0;

    font-size: 1.4rem;
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: -.025em;

    color: #fff;
}

.banner-miami-texto {
    margin: .48rem 0 0;

    max-width: 700px;

    font-size: .88rem;
    line-height: 1.5;

    color: rgba(255, 255, 255, .78);
}

.banner-miami-texto strong {
    color: #fff;
}

.banner-miami-cta {
    position: relative;
    z-index: 2;

    flex-shrink: 0;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    gap: .4rem;

    padding: .75rem 1.05rem;

    border-radius: .75rem;

    background: #fff;
    color: #0b2345;

    font-size: .82rem;
    font-weight: 900;

    white-space: nowrap;

    box-shadow: 0 6px 18px rgba(0, 0, 0, .20);

    transition:
        transform .15s ease,
        background .15s ease;
}

.banner-miami:hover .banner-miami-cta {
    background: #eff6ff;
    transform: translateX(2px);
}


/* =========================
   BANNER MIAMI - TEMA CLARO
   ========================= */

html[data-theme="light"] .banner-miami {
    border-color: rgba(37, 99, 235, .22);

    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(59, 130, 246, .14),
            transparent 38%
        ),
        linear-gradient(
            135deg,
            #eff6ff 0%,
            #dbeafe 100%
        );

    box-shadow: 0 10px 25px rgba(0, 0, 0, .08);
}

html[data-theme="light"] .banner-miami-titulo {
    color: #102a56;
}

html[data-theme="light"] .banner-miami-texto {
    color: #475569;
}

html[data-theme="light"] .banner-miami-texto strong {
    color: #172554;
}

html[data-theme="light"] .banner-miami-badge {
    background: rgba(37, 99, 235, .09);
    border-color: rgba(37, 99, 235, .15);
    color: #1d4ed8;
}

html[data-theme="light"] .banner-miami-cta {
    background: #1d4ed8;
    color: #fff;
}

html[data-theme="light"] .banner-miami:hover .banner-miami-cta {
    background: #1e40af;
}


/* =========================
   PROMOCIÓN ESPECIAL
   ========================= */

.promo-listado {
    position: relative;
    display: block;
    overflow: hidden;

    margin: .15rem 0 .75rem;
    padding: .85rem .9rem;

    border-radius: .8rem;
    border: 1px solid rgba(255, 55, 55, .48);

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(255, 60, 60, .25),
            transparent 43%
        ),
        linear-gradient(
            135deg,
            #5c0c0c 0%,
            #300707 56%,
            #1d0404 100%
        );

    color: #fff;
    text-decoration: none;

    box-shadow:
        0 10px 24px rgba(0, 0, 0, .28),
        inset 0 1px 0 rgba(255, 255, 255, .06);

    transition:
        transform .16s ease,
        border-color .16s ease,
        box-shadow .16s ease;
}

.promo-listado:hover {
    transform: translateY(-2px);

    border-color: rgba(255, 90, 90, .8);

    box-shadow:
        0 14px 30px rgba(0, 0, 0, .34),
        0 0 18px rgba(225, 0, 15, .12);
}

.promo-listado::after {
    content: "";

    position: absolute;

    width: 110px;
    height: 110px;

    top: -62px;
    right: -45px;

    border-radius: 50%;

    background: rgba(255, 255, 255, .045);

    pointer-events: none;
}

.promo-listado-top {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    gap: .4rem;

    margin-bottom: .42rem;
}

.promo-listado-icono {
    width: 25px;
    height: 25px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border-radius: .45rem;

    background: #ed111d;

    font-size: .82rem;

    box-shadow:
        0 4px 12px rgba(255, 0, 0, .35),
        inset 0 1px 0 rgba(255, 255, 255, .18);
}

.promo-listado-badge {
    font-size: .66rem;
    font-weight: 900;
    letter-spacing: .075em;
    color: #ffb7bb;
}

.promo-listado-cuotas {
    position: relative;
    z-index: 1;

    font-size: .98rem;
    line-height: 1.1;
    font-weight: 900;
    letter-spacing: .01em;

    color: #fff;
}

.promo-listado-valor {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: .25rem;

    margin-top: .18rem;
    line-height: 1;
}

.promo-listado-valor span {
    font-size: .76rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .82);
}

.promo-listado-valor strong {
    font-size: 1.8rem;
    line-height: 1.05;
    font-weight: 950;
    letter-spacing: -.04em;

    color: #fff29d;

    text-shadow:
        0 3px 12px rgba(255, 220, 80, .16),
        0 2px 3px rgba(0, 0, 0, .3);
}

.promo-listado-total {
    position: relative;
    z-index: 1;

    margin-top: .35rem;

    font-size: .72rem;

    color: rgba(255, 255, 255, .78);
}

.promo-listado-total strong {
    color: #fff;
    font-size: .77rem;
}

.promo-listado-locales {
    position: relative;
    z-index: 1;

    margin-top: .35rem;
    padding-top: .35rem;

    border-top: 1px solid rgba(255, 255, 255, .12);

    font-size: .68rem;
    font-weight: 600;

    color: rgba(255, 255, 255, .68);
}


/* =========================
   PROMO - TEMA CLARO
   ========================= */

html[data-theme="light"] .promo-listado {
    border-color: rgba(205, 0, 0, .28);

    background:
        radial-gradient(
            circle at 100% 0,
            rgba(255, 90, 90, .18),
            transparent 43%
        ),
        linear-gradient(
            135deg,
            #fff2f2,
            #ffe2e2
        );

    box-shadow: 0 9px 22px rgba(0, 0, 0, .1);
}

html[data-theme="light"] .promo-listado-badge {
    color: #a9000a;
}

html[data-theme="light"] .promo-listado-cuotas,
html[data-theme="light"] .promo-listado-total strong {
    color: #171717;
}

html[data-theme="light"] .promo-listado-valor strong {
    color: #b5000c;
    text-shadow: none;
}

html[data-theme="light"] .promo-listado-valor span,
html[data-theme="light"] .promo-listado-total,
html[data-theme="light"] .promo-listado-locales {
    color: #555;
}

html[data-theme="light"] .promo-listado-locales {
    border-top-color: rgba(0, 0, 0, .1);
}


/* =========================
   RESPONSIVE
   ========================= */

@media (max-width: 680px) {

    .banner-miami {
        flex-direction: column;
        align-items: stretch;

        gap: 1rem;

        padding: 1.15rem;
    }

    .banner-miami::after {
        right: -20px;
        bottom: 30px;

        font-size: 6rem;
    }

    .banner-miami-titulo {
        font-size: 1.15rem;
    }

    .banner-miami-texto {
        font-size: .82rem;
    }

    .banner-miami-cta {
        width: 100%;
        box-sizing: border-box;
    }
}
```
