/* =====================================================
   HERO
===================================================== */

.hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 80px);
    /* header */
    background: url("../images/sbustatutto.png") no-repeat;
    background-size: cover;
    background-position: 80% center;

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

/* overlay scuro per contrasto */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
}

.hero-overlay {
    position: relative;
    z-index: 2;
}


/* CTA */
.hero-btn {
    font-size: 16px;
    padding: 14px 26px;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 0.4px;

    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);

    backdrop-filter: blur(10px);
    box-shadow:
        0 10px 30px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);

    transition: all 0.2s ease;
}

.hero-btn:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

/* =====================================================
   MOBILE HERO
===================================================== */

@media (max-width: 600px) {
    .hero {
        height: 80vh;
        /* 🔥 più corto */
        min-height: 360px;
        background: url("../images/logo_verticale.jpg") no-repeat;
        background-size: cover;
        /* 🔥 Pikachu più visibile */
    }
}

/* =====================================================
   MOBILE DEALS – OFFERTE
===================================================== */

.mobile-deals {
    padding: 26px 18px 36px;
    background: linear-gradient(180deg, #0b3c5d, #0f172a);
}

/* grid 3 card */
.deals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}


/* card */
.deal-card {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 12px 10px;

    display: flex;
    flex-direction: column;
    align-items: center;

    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);

    transition: transform 0.2s ease, background 0.2s ease;
}

.deal-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.14);
}


/* immagine pack */
.deal-card img {
    height: 130px;
    width: 100%;
    object-fit: contain;
    margin-bottom: 6px;
    filter: drop-shadow(0 10px 20px rgba(0, 0, 0, .45));
}


/* prezzo */
.deal-price {
    color: #ffffff;
    font-weight: 800;
    font-size: 14px;
}


.catalogo {
    padding: 30px;
    background: linear-gradient(135deg, #000000, #4b61db);
    color: #ffffff;
    text-align: center;
    align-items: center;

    display: flex;
    flex-direction: column;
    gap: 16px; /* spazio tra i bottoni */
}

/* =====================================================
   DESKTOP
===================================================== */

@media (min-width: 769px) {

    .mobile-deals {
        max-width: 1100px;
        margin: 0 auto;
        border-radius: 28px;
    }
}

/* OFFERTRE: NASCOSTE SU DESKTOP */
@media (min-width: 769px) {
    .mobile-deals {
        display: none;
    }
}

.mobile-deals-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 16px;
    text-align: center;
}

.deals-title {
    margin-bottom: 18px;
    font-size: 22px;
    font-weight: 800;
    color: #fff;
}

.mobile-deals {
    text-align: center;
}

/* ===== BUY STEPS SLIDER ===== */
.buy-steps-slider {
    padding: 70px 20px 90px;
    background: linear-gradient(135deg, #0f172a, #0b3c5d);
    color: #ffffff;
    text-align: center;
}

.buy-steps-slider h2 {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 30px;
}

.steps-slider {
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 20px;
}

.steps-slider::-webkit-scrollbar {
    display: none;
}

.step-card {
    flex: 0 0 260px;
    scroll-snap-align: center;

    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 22px;
    padding: 24px;
}

.step-number {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: #ffffff;    
    color: #000;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    margin-bottom: 12px;
}

.step-card h3 {
    font-size: 16px;
    font-weight: 800;
    margin-bottom: 6px;
}

.step-card p {
    font-size: 14px;
    line-height: 1.4;
    opacity: 0.9;
}

/* PAYPAL BUTTON */
.paypal-btn {
    margin-top: 12px;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.25);
    color: #fff;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}

.paypal-btn:hover {
    background: rgba(255, 255, 255, 0.18);
}

/* PAYPAL EMAIL */
.paypal-email {
    margin-top: 10px;
    font-size: 14px;
    font-weight: 800;
    color: #22c55e;
    display: none;
    word-break: break-all;
    cursor: pointer;
}

/* CTA */
.buy-cta {
    display: inline-block;
    margin-top: 10px;
    background: #373097;
    color: #000;
    padding: 14px 30px;
    border-radius: 999px;
    font-weight: 800;
    text-decoration: none;
}

/* NOTE */
.buy-note {
    margin-top: 14px;
    font-size: 13px;
    opacity: 0.85;
}

/* DESKTOP FIX */
@media (min-width: 900px) {
    .steps-slider {
        justify-content: center;
        overflow: visible;
    }
}

/* SPEDIZIONI */
.shipping-steps {
    background: linear-gradient(135deg, #0b3c5d, #0f172a);
}

/* numeri diversi per distinguerle */
.shipping-steps .step-number {
    background: #ffffff;
    /* azzurro */
    color: #000;
}

.paypal-btn {
    text-decoration: none;
}
