﻿.destination-details .product-code {
    margin-top:-40px;
}

.destination-details .vs-btn.style1 {
    border: none;
    vertical-align: middle;
    display: inline-block;
    text-align: center;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    padding: 15px 30px;
    border-radius: 10px;
    position: relative;
}

.alert-warning {
    margin-bottom: 20px;
    font-size: 16px;
}

.table.table-striped th,
.table.table-striped td {
    padding: 10px;
    text-align: left;
}

.product-dates {
    font-size: 16px;
    font-weight: bold;
    color: #333;
    margin-top: 5px;
    margin-bottom: 15px;
}

.destination-text {
    font-size: 14px;
    color: #555;
}

.posizione-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
}

/* [Logo operatore in dettaglio prodotto] */
.logo-operatore-container {
    position: absolute;
    bottom: 10px;
    right: 10px;
    z-index: 20;
    max-width: 100px;
    background-color: rgba(255, 255, 255, 0.85);
    padding: 5px;
    border-radius: 8px;
    box-shadow: 0 0 5px rgba(0,0,0,0.2);
}

    .logo-operatore-container img {
        width: 100%;
        height: auto;
        display: block;
    }
/* [/Logo operatore in dettaglio prodotto] */

/* [Stile pulsante YouTube] */
/*.youtube-button {
    margin: 10px 0;
    padding: 10px 20px;
    font-weight: bold;
    font-size: 16px;
    border-radius: 8px;
    background-color: #ff0000;
    color: #fff;
    border: none;
    cursor: pointer;
}

    .youtube-button:hover {
        background-color: #cc0000;
    }*/
/* [/Stile pulsante YouTube] */

.modal {
    z-index: 99999 !important;
}

.table.table-striped.table-responsive.table-light th ,
.table.table-striped.table-responsive.table-light td {
    border:1px solid #000;
}
/*#region [Stili griglia prodotti stile shop.html]*/

/* [Card prodotto principale] */
.vs-product {
    margin-bottom: 30px;
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
}

    .vs-product:hover {
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    }
    /* [/Card prodotto principale] */

    /* [Immagine prodotto con effetto zoom 10%] */
    .vs-product .product-img {
        position: relative;
        overflow: hidden;
        border-radius: 10px 10px 0 0;
    }

        .vs-product .product-img a {
            display: block;
            overflow: hidden;
        }

        .vs-product .product-img img {
            width: 100%;
            height: auto;
            display: block;
            transition: transform 0.4s ease;
        }

        /* [Effetto zoom 10% al mouseover] */
        .vs-product .product-img:hover img {
            transform: scale(1.1);
        }
        /* [/Effetto zoom 10% al mouseover] */

        /* [Badge prezzo SEMPRE visibile con !important] */
        .vs-product .product-img .badge {
            position: absolute !important;
            top: 15px !important;
            left: 15px !important;
            background-color: var(--theme-color, #ff7324) !important;
            color: #fff !important;
            padding: 8px 15px !important;
            border-radius: 5px !important;
            font-size: 16px !important;
            font-weight: 700 !important;
            z-index: 999 !important;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2) !important;
            pointer-events: none !important;
            opacity: 1 !important;
            visibility: visible !important;
            display: inline-block !important;
            transition: none !important;
        }

        /* [Forza visibilità anche al hover della card] */
        .vs-product:hover .product-img .badge,
        .vs-product .product-img:hover .badge,
        .vs-product .product-img a:hover ~ .badge {
            opacity: 1 !important;
            visibility: visible !important;
            display: inline-block !important;
        }
    /* [/Badge prezzo SEMPRE visibile con !important] */
    /* [/Immagine prodotto con effetto zoom 10%] */

    /* [Corpo della card con padding ridotto] */
    .vs-product .product-body {
        padding: 15px;
        text-align: center;
    }
    /* [/Corpo della card con padding ridotto] */

    /* [Date partenza-arrivo con margine ridotto] */
    .vs-product .product-dates-wrap {
        margin-bottom: 8px;
        min-height: 20px;
    }

    .vs-product .product-dates-item {
        display: inline-block;
        color: #666;
        font-size: 14px;
        font-weight: 500;
        line-height: 1.3;
    }
    /* [/Date partenza-arrivo con margine ridotto] */

    /* [Titolo prodotto con margine ridotto] */
    .vs-product .product-title {
        font-size: 20px; /* [Aumentato da 18px a 20px (+10% circa)] */
        font-weight: 700;
        margin-bottom: 8px;
        line-height: 1.3;
        min-height: 52px; /* [Aumentato proporzionalmente da 48px a 52px] */
        display: flex;
        align-items: center;
        justify-content: center;
    }

        .vs-product .product-title a {
            color: #333;
            text-decoration: none;
            transition: color 0.3s ease;
        }

            .vs-product .product-title a:hover {
                color: var(--theme-color, #ff7324);
            }
    /* [/Titolo prodotto con margine ridotto] */

    /* [Codice prodotto con margine ridotto] */
    .vs-product .product-price {
        display: block;
        font-size: 14px;
        color: #999;
        margin-bottom: 12px;
        font-weight: 500;
    }
    /* [/Codice prodotto con margine ridotto] */

    /* [Pulsante Vedi Dettagli] */
    .vs-product .vs-btn.style4 {
        width: 100%;
        padding: 12px 20px;
        font-size: 16px;
        font-weight: 600;
        text-align: center;
        border-radius: 5px;
        transition: all 0.3s ease;
    }

        .vs-product .vs-btn.style4:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
        }
/* [/Pulsante Vedi Dettagli] */

/* [Responsive: adattamento mobile] */
@media (max-width: 767px) {
    .vs-product .product-title {
        font-size: 18px;
        min-height: 40px;
    }

    .vs-product .product-body {
        padding: 12px;
    }

    .vs-product .product-img .badge {
        font-size: 14px !important;
        padding: 6px 12px !important;
    }

    /* [Margini ancora più ridotti su mobile] */
    .vs-product .product-dates-wrap {
        margin-bottom: 6px;
    }

    .vs-product .product-title {
        margin-bottom: 6px;
    }

    .vs-product .product-price {
        margin-bottom: 10px;
    }
    /* [/Margini ancora più ridotti su mobile] */
}
/* [/Responsive: adattamento mobile] */

/*#endregion [/Stili griglia prodotti stile shop.html]*/