/**
 * Pickup Locations Map - Stylesheet
 * Stili per il widget di localizzazione punti di ritiro
 */

/* Widget Container */
.pickup-locations-widget {
    width: 100%;
    min-height: 600px;
    background-color: #c41e3a;
    /* Rosso come da grafica */
    color: #ffffff;
}

.pickup-locations-widget .row {
    min-height: 600px;
}

/* Colonna Contenuto */
.pickup-content-col {
    padding: 60px 50px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.pickup-content {
    max-width: 600px;
}

/* Titoli */
.pickup-title {
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
}

.pickup-heading {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #ffffff;
    line-height: 1.2;
}

.pickup-description {
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #ffffff;
    opacity: 0.95;
}

/* Bottoni Tipologie */
.pickup-buttons {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn_default {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #B7001E;
    padding: 10px 24px;
    border-radius: 8px;
    min-height: 38px;
}

.btn_default.btn_outline {
    background-color: transparent;
    border: 1px solid #7A7A7A;
    box-shadow: none;
}

.pickup-buttons .btn_default.btn_outline {
    background-color: #E4EEF0;
    border: 1px solid #7A7A7A;
    color: #4B4B4B;
}

.pickup-buttons .btn_default.btn_outline.active {
    color: #16232B;
    background-color: #fff;
    border: 1px solid #16232B;
}

.pickup-icon {
    font-size: 1.2rem;
}

.pickup-icon svg {
    color: #4B4B4B;
}

.active .pickup-icon svg {
    color: #16232B;
}

/* Box Dettagli Punto di Ritiro */
.pickup-details {
    height: 218.8px;
}

.pickup-details-loading,
.pickup-details-error {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
    color: #ffffff;
    text-align: center;
}

.pickup-detail-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: #ffffff;
}

.pickup-detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 15px;
    color: #ffffff;
}

.pickup-detail-icon {
    font-size: 1.25rem;
    margin-right: 12px;
    min-width: 24px;
}

.pickup-detail-text {
    font-size: 1rem;
    line-height: 1.5;
}

/* Colonna Mappa */
.pickup-map-col {
    padding: 0;
    position: relative;
}

.pickup-map {
    width: 100%;
    height: 100%;
    min-height: 600px;
}

/* Responsive */
@media (max-width: 991px) {
    .pickup-content-col {
        padding: 40px 30px;
    }

    .pickup-heading {
        font-size: 2rem;
    }

    .pickup-map {
        min-height: 400px;
    }

    .pickup-locations-widget .row {
        min-height: auto;
    }
}

@media (max-width: 767px) {
    .pickup-buttons {
        flex-direction: column;
    }

    .pickup-btn {
        width: 100%;
        justify-content: center;
    }

    .pickup-content-col {
        padding: 30px 20px;
    }

    .pickup-heading {
        font-size: 1.75rem;
    }

    .pickup-details {
        padding: 20px;
    }
}

/* Google Maps Info Window personalizzata (opzionale) */
.gm-style .gm-style-iw-c {
    padding: 12px !important;
    border-radius: 8px;
}

.gm-style .gm-style-iw-d {
    overflow: auto !important;
}