.wildworld_recent_posts_container {
  display: none;
}

.col-12 {
  display: none;
}

.wildworld_page_title {
  font-weight: 700;
}

.footer_widget.widget_nav_menu ul.menu li a {
  font-weight: 400;
  color: #ffffff;
}

.wildworld_blog_carousel_widget .wildworld_blog_title {
  font-size: 23px;
  text-align: center;
  font-weight: 700;
  white-space: normal;
}

.wildworld_blog_carousel_widget .wildworld_blog_date {
  text-align: center;
  font-size: 15px;
  font-weight: 500;
}

.wildworld_hamburger-box {
  visibility: hidden;
}



  }

  .tickets-container {
    display: flex;
    justify-content: center;
}

  .ticket-box {
    background-color: #ffffff;
    border-radius: 20px;
    padding: 30px;
    width: 100%;
    box-shadow: 0 0px 10px rgba(0, 0, 0, 0.14);
    text-align: center;
  }

  .ticket-box h2 {
    font-size: 26px;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333333;
  }

  .ticket-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: ##fcb900;
  }

  .subtitle_ticket {
    font-size: 14px;
    color: #777777;
    margin-bottom: 40px;
  }

  ul {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
  }

  li {
    font-size: 14px;
    margin-bottom: 40px;
		margin-top: 24 px;
    line-height: 1.5;
    text-align: left;
    color: #333333;
  }

  li .price {
    float: right;
    font-weight: bold;
    color: #000;
    font-size: 16px;
  }

  li small {
    display: block;
    font-size: 12px;
    color: #777777;
  }

  .btn-primary {
    display: block;
    background-color: #ffF;
    color: #000;
    font-size: 16px;
    font-weight: 600;
    border: none;
    padding: 10px 46px;
    border-radius: 25px;
    cursor: pointer;
    width: 100%;
    margin-bottom: 10px;
		margin-top: 24px;
		box-shadow: 0 0px 10px rgba(0, 0, 0, 0.14);

  }

  .btn-primary:hover {
		border: 2px solid #000;
		background-color: #ffF;
		color: #000;


  }

  .btn-secondary {
    display: block;
    background-color: transparent;
    color: #000;
    font-weight: 600;
    border: 2px solid #000;
    padding: 10px 46px;
    border-radius: 25px;
    cursor: pointer;
    width: 100%;
  }

  .btn-secondary:hover {
    background-color: #000;
		color: #fff;
  }
/* --- Styles Globaux et Conteneur --- */
.activities-container {
    padding: 0px 0;
    background-color: #FFFFF;
    font-family: Montserrat, sans-serif;
    text-align: center;
}

.activities-wrapper {
    display: flex;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
}

/* --- Style des Cartes (activity-card) --- */
.activity-card {
    flex: 1;
    min-width: 250px;
    max-width: 350px;
    padding: 30px;
    background-color: #ffffff;
    
    /* Demande client : Angles de 5px */
    border-radius: 5px; 
    
    /* Bordure initiale (gris clair) */
    border: 1px solid #e0e0e0;
    
    text-decoration: none;
    color: inherit; 
    transition: all 0.3s ease;
    text-align: left; /* Assure que tout est ferré à gauche */
    display: flex; 
}

/* Demande client : Bordure noire de 1px au survol */
.activity-card:hover {
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border: 1px solid #000000; /* Bordure noire au survol */
}

/* Styles spécifiques à la carte 3 (bordure initiale non survolée) */
.activity-card-primary {
    border: 1px solid #c7d8e8; /* Garde la couleur de bordure de l'image originale */
}
/* S'assurer que la carte 3 a la bordure noire au survol aussi */
.activity-card-primary:hover {
    border: 1px solid #000000;
}

/* --- Contenu, Icônes et Titres --- */
.card-icon-title {
    display: flex;
    align-items: center;
    margin-bottom: 10px; /* Réduit l'espace après le titre */
}

.card-icon-title svg {
    /* Ajustement de la taille de l'icône */
    height: 16px; 
    width: 16px;
    margin-right: 8px;
    color: #000000;
    
    /* Augmente l'épaisseur du trait (la "graisse" de l'icône) */
    /* Note : Ceci modifie la propriété 'stroke' dans les SVG fournis */
    stroke-width: 1.5; /* Valeur supérieure à la valeur par défaut pour épaissir */
    fill: none; /* S'assurer que le remplissage n'est pas utilisé, sauf si voulu */
}

/* Demande client : Titre en 16px */
.card-title {
    font-size: 16px; 
    font-weight: 600;
    color: #000000;
    margin: 0;
    padding: 0;
		margin-left: 0px;
    line-height: 1.2;
}

/* Demande client : Description en 14px */
.card-description {
    font-size: 16px; 
    color: #555555;
    line-height: 1.5;
    margin: 0;
    text-align: left; /* Assure que la description est ferrée à gauche */
}


/* --- Pied de page / Lien (inchangé) --- */
.activities-footer {
    padding-top: 20px;
}

.activities-link {
    font-size: 16px;
    font-weight: 600;
    color: #555555;
    text-decoration: none;
    border-bottom: 2px solid #555555;
    padding-bottom: 3px;
    transition: color 0.3s ease, border-color 0.3s ease;
}

.activities-link:hover {
    color: #acfdaa;
    border-color: #acfdaa;
}

/* --- Responsive Design (3 colonnes PC, 3 lignes Mobile) --- */
@media (max-width: 992px) {
    .activities-wrapper {
        flex-direction: column; 
        align-items: center;
    }

    .activity-card {
        flex: 0 0 auto; 
        width: 90%; 
        max-width: 500px;
        margin-bottom: 20px;
    }
}

.hotel-booking-rooms-search {
  margin-bottom: 20px;
  margin-top: 200px;
}

body.single-hb_room.wp-hotel-booking-page:not(.tp-themes-premium) .hb_single_room {
  margin-top: 150px;
}

.col-2 {
  -ms-flex: 0 0 16.666667%;
  -webkit-box-flex: 0;
  flex: 0 0 16.666667%;
  max-width: 100%;
}

body.single-hb_room.wp-hotel-booking-page:not(.tp-themes-premium) .hb_related_other_room {
  visibility: hidden;
}