.h2-dosis {
  margin: 0 0 10px 0;
  font-family: 'Dosis', sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 20px;
  line-height: 24px;
  text-transform: uppercase;
  color: rgb(252, 251, 248);
  text-align: left !important;
}

.span-lato {
  font-family: 'Lato', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px !important;
  line-height: 24px;
  color: rgb(252, 251, 248);
}

#bottone_card{
    display: flex;
    width: 100%;
    box-sizing: border-box;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 15px 31px; 
    background-color: #ffffff; 
    color: #4a4a4a; 
    border: 2px solid #ffffff; /* Bordo bianco fisso */
    border-radius: 1rem;
    box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.2);
    font-family: 'Dosis', sans-serif;
    font-weight: 700;
    font-size: 14px;
    line-height: 20px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0px;
    text-align: center;
    transition: background-color 0.3s ease, color 0.3s ease; /* Transizione fluida solo per colori */
    cursor: pointer;    
}

/* Colore degli elementi SVG (per sicurezza) */
.content-icon-wrapper svg circle {
    stroke: #1B1712 !important; /* Forza il colore scuro */
    stroke-width: 0.6px;
}

.content-icons {
    pointer-events: none;  /* evita interferenze col click sulla mappa */
    z-index: 10;           /* sopra l'immagine */
}


.content-icon-wrapper {
    width: 20px; /* Dimensione dell'iconcina SVG */
    height: 20px;
}

.content-icon-wrapper svg {
    width: 20px !important;
    height: 20px !important;
    display: block !important;
    overflow: visible !important;
}
/* Contenitore marker + testo sotto */
.tdc-marker-wrapper {
    position: absolute !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    /* Trasla il marker in modo che il centro sia sulle coordinate lat/lng */
    transform: translate(-50%, -50%); 
    pointer-events: auto;
    z-index: 100; /* Porta in primo piano */
}


#map-collezione-tdc .tdc-marker-wrapper .tdc-marker-img {
    width: 120px !important;
    height: auto !important;
    display: block !important;
}

/* Testo sotto icona */
.tdc-marker-text {
    color: #333;
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    white-space: nowrap;
    margin-top: 4px; /* distanza dal marker */
    background: transparent !important; /* niente sfondo */
}

/* Stile per le città (Roma, Firenze) */
.tdc-marker-wrapper.is-city .tdc-marker-text {
    background: transparent !important; /* Togliamo il rettangolo bianco */
    color: #555 !important;            /* Grigio scuro elegante */
    font-size: 14px !important;         /* Più piccolo delle tenute */
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: serif;
    padding: 0 !important;
    box-shadow: none !important;        /* Rimuoviamo eventuali ombre */
}

/* Opzionale: un leggero alone bianco per leggere il nome se la mappa è scura in quel punto */
.tdc-marker-wrapper.is-city .tdc-marker-text {
    text-shadow: 1px 1px 2px rgba(255,255,255,0.8);
}


/* Il contenitore del marker deve permettere il passaggio del mouse */
.tdc-marker-wrapper {
    pointer-events: none; /* Il wrapper è invisibile al mouse */
}

/* Ma i cerchietti dei vini devono catturarlo! */
.content-icons {
    pointer-events: auto !important; /* Forza la cattura del mouse */
    cursor: pointer !important;      /* Cambia la freccia in manina */
}

/* Anche l'immagine della tenuta se vuoi che sia cliccabile */
.tdc-marker-img {
    pointer-events: auto;
    cursor: pointer;
    width: 120px !important;
    height: auto !important;
    display: block !important;    
}

/* La card deve ignorare il mouse per non chiudersi mentre ci passi sopra 
   (o puoi metterla su auto se vuoi che i link siano cliccabili) */
.wine-hover-card {
    pointer-events: none; 
}

/* Selettore ultra-specifico: ID + Classe */
div#map-collezione-tdc.tdc-custom-map-container {
    height: 700px !important;
    min-height: 700px !important;
    width: 100% !important;
    display: block !important;
    position: relative !important;
}

/* Importante: a volte Google Maps crea un wrapper interno 
   che eredita l'altezza dal genitore */
#map-collezione-tdc .gm-style {
    height: 700px !important;
}



/*CSS RELATIVO ALLA MAPPA OCCASIONI SPECIALI*/


/* Altezza per la mappa Occasioni Speciali */
#occasioni_speciali_map {
    height: 700px !important;
    min-height: 700px !important;
    width: 100% !important;
    display: block !important;
    position: relative !important;
}

/* Forza l'altezza del contenitore interno di Google Maps */
#occasioni_speciali_map .gm-style {
    height: 700px !important;
}



/*CSS RELATIVO ALLA MAPPA SPECIAL OCCASIONS*/

/* Altezza per la mappa Occasioni Speciali */
#special_occasions_map {
    height: 700px !important;
    min-height: 700px !important;
    width: 100% !important;
    display: block !important;
    position: relative !important;
}

/* Forza l'altezza del contenitore interno di Google Maps */
#special_occasions_map .gm-style {
    height: 700px !important;
}


/*CSS RELATIVO ALLA MAPPA IL QUOTIDIANO*/

/* Altezza per la mappa > il quotidiano */
#il_quotidiano_map {
    height: 700px !important;
    min-height: 700px !important;
    width: 100% !important;
    display: block !important;
    position: relative !important;
}

/* Forza l'altezza del contenitore interno di Google Maps */
#il_quotidiano_map .gm-style {
    height: 700px !important;
}


/*CSS RELATIVO ALLA MAPPA > EVERYDAY*/

/* Altezza per la mappa > EVERYDAY */
#everyday_map {
    height: 700px !important;
    min-height: 700px !important;
    width: 100% !important;
    display: block !important;
    position: relative !important;
}

/* Forza l'altezza del contenitore interno di Google Maps */
#everyday_map .gm-style {
    height: 700px !important;
}


/*CSS RELATIVO ALLA MAPPA > MOMENTI IN COMPAGNIA*/

/* Altezza per la mappa > MOMENTI IN COMPAGNIA */
#momenti_in_compagnia {
    height: 700px !important;
    min-height: 700px !important;
    width: 100% !important;
    display: block !important;
    position: relative !important;
}

/* Forza l'altezza del contenitore interno di Google Maps */
#momenti_in_compagnia .gm-style {
    height: 700px !important;
}


/*CSS RELATIVO ALLA MAPPA > MOMENTS TOGHETER*/

/* Altezza per la mappa > MOMENTS TOGHETER */
#moments_together {
    height: 700px !important;
    min-height: 700px !important;
    width: 100% !important;
    display: block !important;
    position: relative !important;
}

/* Forza l'altezza del contenitore interno di Google Maps */
#moments_together .gm-style {
    height: 700px !important;
}


/*CSS RELATIVO ALLA MAPPA > COLLEZIONE*/

/* Altezza per la mappa > COLLEZIONE */
#collezione_map {
    height: 700px !important;
    min-height: 700px !important;
    width: 100% !important;
    display: block !important;
    position: relative !important;
}

/* Forza l'altezza del contenitore interno di Google Maps */
#collezione_map .gm-style {
    height: 700px !important;
}


/*CSS RELATIVO ALLA MAPPA > COLLECTION*/

/* Altezza per la mappa > COLLECTION */
#collection_map {
    height: 700px !important;
    min-height: 700px !important;
    width: 100% !important;
    display: block !important;
    position: relative !important;
}

/* Forza l'altezza del contenitore interno di Google Maps */
#collection_map .gm-style {
    height: 700px !important;
}




/*CSS RELATIVO ALLA MAPPA > ARCHIVE ESTATE*/

/* Altezza per la mappa > ARCHIVE ESTATE */
#archive_estate_map {
    height: 700px !important;
    min-height: 700px !important;
    width: 100% !important;
    display: block !important;
    position: relative !important;
}

/* Forza l'altezza del contenitore interno di Google Maps */
#archive_estate_map .gm-style {
    height: 700px !important;
}


/*CSS RELATIVO ALLA MAPPA > ARCHIVE ESTATE EN*/

/* Altezza per la mappa > ARCHIVE ESTATE EN*/
#archive_estate_en_map {
    height: 700px !important;
    min-height: 700px !important;
    width: 100% !important;
    display: block !important;
    position: relative !important;
}

/* Forza l'altezza del contenitore interno di Google Maps */
#archive_estate_en_map .gm-style {
    height: 700px !important;
}


/*CSS RELATIVO ALLA MAPPA > ARCHIVE EXPERIENCE VINO*/

/* Altezza per la mappa > ARCHIVE EXPERIENCE VINO */
#archive_experience_map {
    height: 700px !important;
    min-height: 700px !important;
    width: 100% !important;
    display: block !important;
    position: relative !important;
}

/* Forza l'altezza del contenitore interno di Google Maps */
#archive_experience_map .gm-style {
    height: 700px !important;
}

/*CSS RELATIVO ALLA MAPPA > ARCHIVE EXPERIENCE WINE*/

/* Altezza per la mappa > ARCHIVE EXPERIENCE WINE */
#archive_experience_map_en {
    height: 700px !important;
    min-height: 700px !important;
    width: 100% !important;
    display: block !important;
    position: relative !important;
}

/* Forza l'altezza del contenitore interno di Google Maps */
#archive_experience_map_en .gm-style {
    height: 700px !important;
}


/*CSS RELATIVO ALLA MAPPA > ARCHIVE EXPERIENCE RISTORANTE*/

/* Altezza per la mappa > ARCHIVE EXPERIENCE RISTORANTE */
#archive_experience_ristorante_map {
    height: 700px !important;
    min-height: 700px !important;
    width: 100% !important;
    display: block !important;
    position: relative !important;
}

/* Forza l'altezza del contenitore interno di Google Maps */
#archive_experience_ristorante_map .gm-style {
    height: 700px !important;
}

/*CSS RELATIVO ALLA MAPPA > ARCHIVE EXPERIENCE RISTORANTE EN*/

/* Altezza per la mappa > ARCHIVE EXPERIENCE RISTORANTE EN */
#archive_experience_ristorante_en_map {
    height: 700px !important;
    min-height: 700px !important;
    width: 100% !important;
    display: block !important;
    position: relative !important;
}

/* Forza l'altezza del contenitore interno di Google Maps */
#archive_experience_ristorante_en_map .gm-style {
    height: 700px !important;
}

/*CSS RELATIVO ALLA MAPPA > ARCHIVE EXPERIENCE INDOOR OUTDOOR */

/* Altezza per la mappa > ARCHIVE EXPERIENCE INDOOR OUTDOOR */
#archive_experience_new_indoor_outdoor_map {
    height: 700px !important;
    min-height: 700px !important;
    width: 100% !important;
    display: block !important;
    position: relative !important;
}

/* Forza l'altezza del contenitore interno di Google Maps */
#archive_experience_new_indoor_outdoor_map .gm-style {
    height: 700px !important;
}

/*CSS RELATIVO ALLA MAPPA > ARCHIVE EXPERIENCE INDOOR OUTDOOR EN*/

/* Altezza per la mappa > ARCHIVE EXPERIENCE INDOOR OUTDOOR EN*/
#archive_experience_indoor_outdoor_en_map {
    height: 700px !important;
    min-height: 700px !important;
    width: 100% !important;
    display: block !important;
    position: relative !important;
}

/* Forza l'altezza del contenitore interno di Google Maps */
#archive_experience_indoor_outdoor_en_map .gm-style {
    height: 700px !important;
}


/*
 * CSS RELATIVO ALLA MAPPA > ARCHIVE SPECIALITY
*/

/* Altezza per la mappa > ARCHIVE SPECIALITY */
#archive_speciality_map {
    height: 700px !important;
    min-height: 700px !important;
    width: 100% !important;
    display: block !important;
    position: relative !important;
}

/* Forza l'altezza del contenitore interno di Google Maps */
#archive_speciality_map .gm-style {
    height: 700px !important;
}

/*CSS RELATIVO ALLA MAPPA > ARCHIVE SPECIALITY EN*/

/* Altezza per la mappa > ARCHIVE SPECIALITY EN*/
#archive_speciality_map_en {
    height: 700px !important;
    min-height: 700px !important;
    width: 100% !important;
    display: block !important;
    position: relative !important;
}

/* Forza l'altezza del contenitore interno di Google Maps */
#archive_speciality_map_en .gm-style {
    height: 700px !important;
}
