.shop-page {
    padding: 50px 0 100px;
    background:
        radial-gradient(100% 120% at 50% 0%, rgba(255, 255, 255, .05) 0%, rgba(0, 0, 0, 0) 60%),
        linear-gradient(to bottom, rgba(0, 0, 0, .3), rgba(0, 0, 0, .55));
}

.shop-page .sp-head {
    margin-bottom: 60px;
}

.shop-page .sp-title {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.shop-page .sp-title span {
    color: var(--red);
}

.shop-page .sp-sub {
    margin-top: 15px;
    color: var(--muted);
    max-width: 720px;
    line-height: 1.6;
    font-size: 15px;
}

/* ===== Sección / Header del carrusel ===== */
.shop-page .sp-section {
    margin-bottom: 70px;
}

.shop-page .sp-section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.shop-page .sp-section-title {
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .3px;
}

.shop-page .sp-hint {
    color: rgba(255, 255, 255, .55);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .55px;
    white-space: nowrap;
}

/* ===== Carrusel ===== */
.shop-page .sp-carousel-wrapper {
    position: relative;
}

.shop-page .sp-carousel {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding-bottom: 10px;

    /* snap */
    scroll-snap-type: x mandatory;
    scroll-padding: 6px;
    -webkit-overflow-scrolling: touch;
}

.shop-page .sp-carousel::-webkit-scrollbar {
    height: 6px;
}

.shop-page .sp-carousel::-webkit-scrollbar-thumb {
    background: var(--line);
}

/* ===== Card ===== */
.shop-page .sp-card {
    min-width: 240px;
    max-width: 240px;
    background: var(--bg2);
    border: 1px solid var(--line);
    overflow: hidden;
    text-decoration: none;
    transition: transform .25s ease, border-color .25s ease;
    flex-shrink: 0;
    scroll-snap-align: start;
}

.shop-page .sp-card:hover {
    border-color: var(--red);
    transform: translateY(-5px);
}

.shop-page .sp-thumb {
    position: relative;
    width: 100%;
    height: 240px;
    background: rgba(0, 0, 0, .2);
    overflow: hidden;
}

.shop-page .sp-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    filter: saturate(1.05) contrast(1.02);
    transform: scale(1.01);
}

.shop-page .sp-thumb::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, .55) 0%, rgba(0, 0, 0, 0) 55%);
    pointer-events: none;
}

.shop-page .sp-badge {
    position: absolute;
    left: 10px;
    top: 10px;
    z-index: 2;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, .12);
    background: rgba(0, 0, 0, .45);
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .6px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .92);
    backdrop-filter: blur(6px);
    white-space: nowrap;
}

.shop-page .sp-badge i {
    width: 7px;
    height: 7px;
    background: var(--red);
    display: inline-block;
}

.shop-page .sp-card-body {
    padding: 14px 14px 16px;
}

.shop-page .sp-product-name {
    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .45px;
    margin-bottom: 8px;
    line-height: 1.2;
}

.shop-page .sp-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 10px;
}

.shop-page .sp-product-price {
    color: var(--red);
    font-weight: 900;
    font-size: 14px;
    letter-spacing: .3px;
    white-space: nowrap;
}

.shop-page .sp-meta {
    color: rgba(255, 255, 255, .65);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: .55px;
    line-height: 1.3;
}

.shop-page .sp-btn {
    margin-top: 12px;
    width: 100%;
    padding: 10px 12px;
    background: var(--red);
    border: none;
    color: var(--text);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: .6px;
    cursor: pointer;
    height: 42px;
}

.shop-page .sp-btn:hover {
    background: #b80500;
}

/* ===== Flechas ===== */
.shop-page .sp-arrow {
    position: absolute;
    top: 38%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background: rgba(0, 0, 0, .55);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 2;

    /* sin cuadrito duro: solo hover con borde suave */
    border: 1px solid rgba(255, 255, 255, .10);
    user-select: none;
}

.shop-page .sp-arrow:hover {
    border-color: rgba(225, 6, 0, .55);
}

.shop-page .sp-arrow.left {
    left: -10px;
}

.shop-page .sp-arrow.right {
    right: -10px;
}

/* ===== Responsivo ===== */
@media (max-width: 980px) {
    .shop-page .sp-section-head {
        flex-direction: column;
        align-items: flex-start;
    }

    .shop-page .sp-hint {
        white-space: normal;
    }
}

@media (max-width: 768px) {
    .shop-page {
        padding: 40px 0 80px;
    }

    .shop-page .sp-arrow {
        display: none;
    }

    /* cards ligeramente más pequeñas en móviles */
    .shop-page .sp-card {
        min-width: 210px;
        max-width: 210px;
    }

    .shop-page .sp-thumb {
        height: 210px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .shop-page .sp-carousel {
        scroll-behavior: auto;
    }

    .shop-page .sp-card {
        transition: none;
    }

    .shop-page .sp-card:hover {
        transform: none;
    }
}