/* ===========================
   CONTAINER
=========================== */

.container {
    max-width: 1200px;
   
}
/* ===== RESET HEADER PER PAGINE PROMO ===== */
.main-header {
    padding-top: 0px;
    padding-bottom: 0px;
}


/* ===========================
   CARD OFFERTA
=========================== */

.offer-row {
    display: flex;
    gap: 10px;
    background: #fff;
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 10px;
    border: 1px solid #eee;
    box-shadow: 0 2px 6px rgba(0,0,0,0.04);
}

.offer-row:not(:last-child) {
    border-bottom: 3px solid #f2f2f2;
}

/* ===========================
   COLONNE
=========================== */

.offer-img {
    flex: 0 0 260px;
    margin-bottom: 0;
}

.offer-img img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
}

.offer-info {
    flex: 1;
}

/* ===========================
   CTA COLUMN – DESKTOP
=========================== */

.offer-cta-col {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: stretch;
}

/* ===========================
   CTA NORMALIZZATI
=========================== */

.offer-cta-col .btn-prenota,
.offer-cta-col .offer-cta {
    min-height: 42px;
    padding: 8px 14px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
    box-sizing: border-box;
}

/* CTA ROSSA */
.offer-cta-primary,
.btn-prenota {
    background: #e60000;
    color: #fff;
    border: none;
    text-decoration: none;
}

.offer-cta-primary:hover,
.btn-prenota:hover {
    background: #c40000;
}

/* CTA BORDO ROSSO */
.offer-cta-secondary {
    background: #fff;
    color: #e60000;
    border: 2px solid #e60000;
}

.offer-cta-secondary:hover {
    background: #e60000;
    color: #fff;
}

/* ===========================
   TESTI
=========================== */

.offer-info h3 {
    margin: 0;
    font-size: 18px;
    margin-top: 0;
}

.offer-title {
    margin: 6px 0;
    font-size: 16px;
    color: #d10000;
    font-weight: bold;
}

.stars {
    display: block;          /* vanno a capo */
    white-space: nowrap;     /* mai su più righe */
    margin: 4px 0 6px;
    color: #f5a623;
}

.stars span {
    display: inline-block;
}

.hotel-location {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
}

.desc-short,
.desc-full {
    color: #555;
    font-size: 14px;
    line-height: 1.5;
}

.desc-full {
    display: none;
}

.read-more {
    color: #007BFF;
    cursor: pointer;
    font-size: 14px;
    margin-left: 5px;
}
  .breadcrumb {
    font-size: 14px;
    line-height: 1.4;
    margin: 12px 0 16px 0;
    color: #666;
}

.breadcrumb a {
    color: #0453BE; /* colore Bedsearch */
    text-decoration: none;
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb span {
    color: #444;
    font-weight: 500;
}

/* separatore */
.breadcrumb a::after {
    content: "›";
    margin: 0 6px;
    color: #999;
}

/* ultimo elemento (non cliccabile) */
.breadcrumb span::after {
    content: "";
}


/* ===========================
   SPECIAL RATES – DESKTOP
=========================== */

.offer-special-rates-wrapper {
    width: 100%;
}

.special-rate-box {
    display: flex;
    flex-direction: column;
    gap: 6px;
    border-left: 2px solid #eee;
    padding-left: 12px;
}

.sr-info {
    font-size: 14px;
}

.sr-row {
    display: flex;
    justify-content: space-between;
}

.sr-label {
    color: #777;
    font-size: 13px;
}

.sr-value {
    font-weight: 600;
}

.sr-price {
    font-size: 20px;
    font-weight: 700;
    color: #c00;
}

.sr-actions {
    display: flex;
    flex-direction: column;
    gap: 6px;
}
     /* SEPARAZIONE TRA PIÙ DATE IN EVIDENZA */
.special-rate-box.special-rate-sep {
    border-top: 1px dashed #ddd;
    margin-top: 8px;
    padding-top: 8px;
}
.more-dates-link {
    margin-top: 6px;
    font-size: 13px;
    margin-top: 10px;
    text-align: center;
}

.more-dates-link a {
    color: #007BFF;
    text-decoration: none;
    cursor: pointer;
    margin-top: 10px;
    justify-content: center;
}

.more-dates-link a:hover {
    text-decoration: underline;
    margin-top: 10px;
    justify-content: center;
}


/* ===========================
   MOBILE
=========================== */

@media (max-width: 768px) {

    .offer-row {
        flex-direction: column;
        padding: 8px;
        gap: 10px;
    }

    .offer-img {
        flex: none !important;      /* annulla flex-basis desktop */
        width: 100%;
        height: auto;
        margin: 0 !important;
        padding: 0 !important;
    }

    .offer-img img {
        display: block;
        width: 100%;
        height: 200px;              /* o auto se preferisci */
        object-fit: cover;
    }

    .offer-info h3 {
        margin-top: 0 !important;
        margin-bottom: 6px; /* piccolo respiro, non zero */
        line-height: 1.25;
    }

    /* BLOCCO DATE – SEPARAZIONE VISIVA */
    .offer-special-rates-wrapper {
        border-top: 1px solid #e5e5e5;
        margin-top: 10px;
        padding-top: 10px;
    }

    /* BLOCCO EVIDENZIATO */
    .special-rate-box {
        background: #fafafa;
        border-radius: 6px;
        padding: 8px;
        gap: 8px;
    }

    /* RIGO 1: INFO IN LINEA */
    .sr-info {
        display: flex;
        flex-direction: row;
        gap: 10px;
        align-items: center;
        white-space: nowrap;
        font-size: 13px;
    }

    .sr-row {
        display: inline-flex;
        gap: 4px;
    }

    .sr-label {
        font-size: 12px;
        color: #777;
    }

    .sr-value {
        font-size: 13px;
        font-weight: 600;
    }

    .sr-price {
        font-size: 16px;
        font-weight: 700;
        margin: 0;
    }

    /* RIGO 2: CTA AFFIANCATE */
    .sr-actions {
        display: flex;
        flex-direction: row;
        gap: 8px;
    }

    .sr-actions .btn-prenota,
    .offer-cta-col .offer-cta {
        flex: 1;
        min-height: 30px;
        font-size: 12px;
    }

    /* CTA GENERALE MOBILE */
    .offer-cta-col {
        flex-direction: column;
        gap: 8px;
    }
    /* SEPARAZIONE TRA PIÙ DATE IN EVIDENZA */
.special-rate-box.special-rate-sep {
    border-top: 1px dashed #ddd;
    margin-top: 8px;
    padding-top: 8px;
         line-height: 1.25;
    }  


}





