.reis-container-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1080px;
    margin: 0 auto;
    padding: 20px 0;
}
.reis-kaart {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
    width: 280px;
    max-width: 320px;
    margin: 0 auto;
}
.reis-kaart:hover { transform: translateY(-8px); }
.reis-kaart > p,
.reis-kaart a + p,
.reis-foto-link + p,
.reis-footer > p,
.reis-foto-wrapper p {
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 0 !important;
    line-height: 0 !important;
}
.reis-foto-link { display: block; text-decoration: none; }
.reis-foto-wrapper {
    height: 320px;
    overflow: hidden;
    position: relative;
    border-radius: 20px 20px 0 0;
}
.reis-foto {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.5s ease;
}
.reis-kaart:hover .reis-foto { transform: scale(1.05); }
.reis-midden {
    position: absolute !important;
    top: 50% !important;
    left: 20px !important;
    transform: translateY(-50%) !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 8px !important;
}
.reis-pill {
    background: rgba(0,0,0,0.75);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: block !important;
    width: 100px;
    text-align: center;
}
.reis-foto-balk {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0,0,0,0.65);
}
.reis-info-regel {
    padding: 8px 14px 6px;
    border-bottom: 0.5px solid rgba(255,255,255,0.15);
    color: #000;
    font-size: 12px;
    font-weight: 600;
}
.reis-datum-regel {
    padding: 6px 14px 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #000;
    font-size: 13px;
    font-weight: 600;
}
.reis-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
}


.reis-footer {
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Zorgt dat alle onderliggende divs links beginnen */
    padding: 15px;
    gap: 15px;
}

.reis-foto-balk-nieuw {
    width: 100%;
    text-align: left;        /* Forceert tekst naar links */
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Lijn de datum-regel en info-regel links uit */
    gap: 5px;
}

.reis-info-regel {
    text-align: left;
    width: 100%;
}

.reis-datum-regel {
    display: flex;
    justify-content: flex-start; /* SVG en datum tekst strak links */
    align-items: center;
    gap: 8px;
    width: 100%;
}

/* De onderste balk moet nog wel de knop links en prijs rechts houden */
.footer-acties {
    width: 100%;
    display: flex;
    justify-content: space-between; 
    align-items: center;
}



.btn-bekijk {
    text-decoration: none;
    color: #444;
    border: 1px solid #ddd;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    transition: 0.3s;
    display: inline-block;
}
.reis-kaart:hover .btn-bekijk { background: #333; color: #fff; border-color: #333; }
.reis-prijs { text-align: right; }
.bedrag { font-size: 22px; font-weight: 800; color: #111; display: block; }
.vanaf { font-size: 11px; color: #999; text-transform: uppercase; display: block; }

/* =====================
   DETAIL PAGINA
   ===================== */
.gb-detail-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    /*padding: 0px 0 60px; */
}
.gb-detail-kolommen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
.gb-detail-info-kolom { width: 100%; }

/* Kenmerken */
.gb-detail-kenmerken {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
}
.gb-kenmerk {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 16px;
    background: #f8f8f8;
    border-radius: 12px;
}
.gb-kenmerk-label {
    /*font-size: 13px;*/
    color: #333;
    display: flex;
    align-items: center;
    gap: 6px;
}
.gb-kenmerk-waarde {
    font-size: 14px;
    font-weight: 700;
    color: #111;
    text-align: right;
}

/* Prijstabel */
.gb-prijstabel {
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #eee;
    margin-bottom: 24px;
}
.gb-prijstabel-titel {
    background: #111;
    color: #fff;
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.gb-prijs-rij {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
}
.gb-prijs-rij:last-child { border-bottom: none; }
.gb-prijs-label { font-size: 14px; color: #555; }
.gb-prijs-bedrag { font-size: 18px; font-weight: 800; color: #111; }

/* Omschrijving */
.gb-detail-omschrijving {
    font-size: 15px;
    line-height: 1.8;
    color: #444;
    border-top: 1px solid #f0f0f0;
    padding-top: 24px;
}

/* Formulier kolom */
.gb-detail-form-kolom { width: 100%; }
.gb-form-wrapper {
    background: #fff;
    border-radius: 20px;
    border: 1px solid #eee;
    padding: 28px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}
.gb-form-titel {
    font-size: 20px;
    font-weight: 800;
    color: #111;
    margin: 0 0 20px;
}

/* CF7 formulier stijlen */
.gb-form-wrapper .wpcf7-form p {
    margin-bottom: 14px;
}
.gb-form-wrapper .wpcf7-form label {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    display: block;
    margin-bottom: 6px;
}
.gb-form-wrapper .wpcf7-form input[type="text"],
.gb-form-wrapper .wpcf7-form input[type="email"],
.gb-form-wrapper .wpcf7-form input[type="tel"],
.gb-form-wrapper .wpcf7-form input[type="number"],
.gb-form-wrapper .wpcf7-form select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    color: #111;
    background: #fafafa;
    box-sizing: border-box;
    transition: border-color 0.3s;
}
.gb-form-wrapper .wpcf7-form input:focus,
.gb-form-wrapper .wpcf7-form select:focus {
    border-color: #007bff;
    outline: none;
    background: #fff;
}
.gb-form-wrapper .wpcf7-form input[type="submit"] {
    width: 100%;
    background: #111;
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 8px;
}
.gb-form-wrapper .wpcf7-form input[type="submit"]:hover {
    background: #007bff;
}

/* Responsive */
@media (max-width: 768px) {
    .gb-detail-kolommen {
        grid-template-columns: 1fr;
       align-items: start; 
    }
    .gb-form-wrapper {
        position: static;
    }
}
@media (max-width: 400px) {
    .reis-foto-wrapper { height: 280px; }
}

/* Detail pagina twee kolommen */
.gb-detail-kolommen {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Formulier kolom */
.gb-detail-form-kolom {
    position: sticky;
    top: 30px;
}
.gb-form-wrapper {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.gb-form-titel {
    font-size: 18px;
    font-weight: 700;
    color: #111;
    margin: 0 0 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #f0f0f0;
}

/* CF7 velden styling */
.gb-detail-form-kolom .wpcf7-form p {
    margin: 0 0 14px;
}
.gb-detail-form-kolom .wpcf7-form label {
    font-size: 13px;
    font-weight: 600;
    color: #444;
    display: block;
    margin-bottom: 5px;
}
.gb-detail-form-kolom .wpcf7-form input[type="text"],
.gb-detail-form-kolom .wpcf7-form input[type="email"],
.gb-detail-form-kolom .wpcf7-form input[type="tel"],
.gb-detail-form-kolom .wpcf7-form input[type="number"],
.gb-detail-form-kolom .wpcf7-form select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 10px;
    font-size: 14px;
    box-sizing: border-box;
    background: #fafafa;
    transition: border 0.2s;
}
.gb-detail-form-kolom .wpcf7-form input:focus,
.gb-detail-form-kolom .wpcf7-form select:focus {
    border-color: #007bff;
    outline: none;
    background: #fff;
}
.gb-detail-form-kolom .wpcf7-form input[type="submit"] {
    width: 100%;
    background: #111;
    color: #fff;
    border: none;
    padding: 13px 30px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.3s;
    margin-top: 8px;
}
.gb-detail-form-kolom .wpcf7-form input[type="submit"]:hover {
    background: #007bff;
}

/* Responsive */
@media (max-width: 768px) {
    .gb-detail-kolommen {
        grid-template-columns: 1fr;
    }
    .gb-detail-form-kolom {
        position: static;
    }
}
/* =============================================
   GlobalBridge Reis Detail — Hotel stijlen
   ============================================= */

.gb-hotels-titel {
    margin-bottom: 16px;
}

.gb-hotel-item {
    margin-bottom: 24px;
    border: 1px solid #ddd;
    padding: 12px;
}

/* Plaats — volle breedte bovenaan */
.gb-hotel-plaats {
    width: 100%;
    font-size: 1.1em;
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid #ddd;
}

/* Inhoud: foto links, tekst rechts */
.gb-hotel-inhoud {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

/* Foto kolom */
.gb-hotel-foto-kolom {
    flex: 0 0 100px;
}

.gb-hotel-foto {
    width: 100px;
    height: 100px !important;
    object-fit: cover;
    display: block;
}

.gb-hotel-foto-leeg {
    width: 100px;
    height: 100px;
    background: #eee;
}
.gb-prijs-rechts { display: flex; align-items: center; gap: 10px; }
.gb-prijs-extra { font-size: 12px; color: #999; }
.gb-prijs-omschrijving { font-size: 13px; color: #888; margin-top: 4px; padding: 0 16px 8px; }
/* Nieuw prijs */
.gb-prijs-rij {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f0f0;
}
.gb-prijs-rij:last-child { border-bottom: none; }
.gb-prijs-label {
    font-size: 14px;
    color: #555;
}
.gb-prijs-rechts {
    display: flex;
    align-items: center;
    gap: 8px;
    text-align: right;
}
.gb-prijs-bedrag {
    font-size: 18px;
    font-weight: 800;
    color: #111;
}
.gb-prijs-extra {
    font-size: 13px;
    font-weight: 700;
    color: #111;
}
.gb-prijs-omschrijving {
    width: 100%;
    font-size: 13px;
    color: #888;
    margin-top: 4px;
    text-align: right;
}