/* 
* CSS para Listado de hoteles GRID
*/


.enaf-hotels-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.enaf-hotel-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.enaf-hotel-card--sold-out {
    opacity: 0.75;
}

.enaf-hotel-card__image {
    position: relative;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    background: #f3f3f3;
}

.enaf-hotel-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}

.enaf-hotel-card:hover .enaf-hotel-card__image img {
    transform: scale(1.04);
}

.enaf-hotel-card__image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    text-align: center;
    text-decoration: none;
}

.enaf-hotel-card__content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 14px;
    flex: 1;
}

.enaf-hotel-card__title {
    margin: 0;
    font-size: 22px;
    line-height: 1.25;
}

.enaf-hotel-card__title a {
    text-decoration: none;
    color: inherit;
}

.enaf-hotel-card__distance {
    font-size: 15px;
}

.enaf-hotel-card__prices {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding-top: 4px;
}

.enaf-hotel-card__price {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 16px;
}

.enaf-hotel-card__price strong {
    white-space: nowrap;
}

.enaf-hotel-card__price--sold-out strong,
.enaf-hotel-card__price--unavailable strong {
    font-weight: 600;
}

.enaf-hotel-card__notice {
    padding: 10px 12px;
    border-radius: 8px;
    background: #f5f5f5;
    font-size: 14px;
    font-weight: 600;
}

.enaf-hotel-card__actions {
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
}

.enaf-hotel-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid currentColor;
}

.enaf-hotel-card__map {
    font-size: 15px;
    text-decoration: underline;
}


.enaf-hotel-card__price-note {
    font-size: 13px;
    line-height: 1.4;
    color: #666;
    background: #f7f7f7;
    padding: 8px 10px;
    border-radius: 8px;
}


@media (max-width: 1024px) {
    .enaf-hotels-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .enaf-hotels-grid {
        grid-template-columns: 1fr;
    }
}


/* 
* FIN CSS para Listado de hoetes GRID
*/









/* 
*  CSS para Tabla de precios
*/



.enaf-hotel-rates {
    width: 100%;
}

.enaf-hotel-rates__title {
    margin: 0 0 18px;
    font-size: 26px;
    line-height: 1.25;
}

.enaf-hotel-rates__table-wrapper {
    width: 100%;
    overflow-x: auto;
}

.enaf-hotel-rates__table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 14px;
    overflow: hidden;
}

.enaf-hotel-rates__table th,
.enaf-hotel-rates__table td {
    padding: 16px;
    border-bottom: 1px solid #e5e5e5;
    text-align: left;
    vertical-align: middle;
}

.enaf-hotel-rates__table thead th {
    font-weight: 700;
    background: #f7f7f7;
}

.enaf-hotel-rates__table tbody tr:last-child th,
.enaf-hotel-rates__table tbody tr:last-child td {
    border-bottom: 0;
}

.enaf-hotel-rates__room {
    font-weight: 700;
}

.enaf-hotel-rates__price {
    font-weight: 700;
    white-space: nowrap;
}

.enaf-hotel-rates__row--sold-out {
    opacity: 0.7;
}

.enaf-hotel-rates__empty {
    font-weight: 400;
    color: #777;
}

.enaf-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 13px;
    line-height: 1;
    font-weight: 700;
    white-space: nowrap;
}

.enaf-status-badge--available {
    background: #eef8ef;
    color: #247a35;
}

.enaf-status-badge--sold-out {
    background: #f9eeee;
    color: #a83232;
}

.enaf-status-badge--unavailable {
    background: #f2f2f2;
    color: #666;
}

.enaf-hotel-rates__note {
    margin: 12px 0 0;
    font-size: 14px;
    line-height: 1.5;
    color: #666;
}


.enaf-hotel-rates__availability {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 18px;
}

.enaf-hotel-rates__availability-item {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 6px 10px;
    border-radius: 10px;
    background: #f7f7f7;
    font-size: 14px;
    line-height: 1.4;
}

.enaf-hotel-rates__availability-item span {
    font-weight: 600;
}


@media (max-width: 640px) {
    .enaf-hotel-rates__title {
        font-size: 22px;
    }

    .enaf-hotel-rates__table th,
    .enaf-hotel-rates__table td {
        padding: 12px;
        font-size: 14px;
    }
}





/* 
* FIN CSS para Tabla de precios
*/











/* 
* CSS para la Galeria
*/

.enaf-hotel-gallery--featured-layout {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.enaf-hotel-gallery__main {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 14px;
    background: #f3f3f3;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.10);
}

.enaf-hotel-gallery__main-image {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.25s ease;
}

.enaf-hotel-gallery__main:hover .enaf-hotel-gallery__main-image {
    transform: scale(1.03);
}

.enaf-hotel-gallery__thumbs {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.enaf-hotel-gallery__thumb {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    overflow: hidden;
    border-radius: 8px;
    background: #f3f3f3;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.enaf-hotel-gallery__thumb-image {
    width: 100%;
    height: 100% !important;
    object-fit: cover;
    object-position: center center;
    display: block;
    transition: transform 0.25s ease;
}

.enaf-hotel-gallery__thumb:hover .enaf-hotel-gallery__thumb-image {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .enaf-hotel-gallery__thumbs {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}



/* 
* FIN CSS para la Galeria
*/







/* 
* CSS para la la Informacion del hotel
*/


.enaf-hotel-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.enaf-hotel-info__content {
    font-size: 17px;
    line-height: 1.7;
}

.enaf-hotel-info__content > *:first-child {
    margin-top: 0;
}

.enaf-hotel-info__content > *:last-child {
    margin-bottom: 0;
}

.enaf-hotel-info__meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px;
    border-radius: 14px;
    background: #f7f7f7;
}

.enaf-hotel-info__meta-item {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    font-size: 15px;
    line-height: 1.5;
}

.enaf-hotel-info__meta-item strong {
    font-weight: 700;
}

.enaf-hotel-info__actions {
    margin-top: 8px;
}

.enaf-hotel-info__map-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 11px 18px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 600;
    border: 1px solid currentColor;
}

/* 
* FIN CSS para la la Informacion del hotel
*/





/* 
* CSS para el formulario del hotel
*/


.enaf-hotel-booking {
    width: 100%;
}

.enaf-hotel-booking__intro {
    margin-bottom: 20px;
}

.enaf-hotel-booking__title {
    margin: 0 0 10px;
    font-size: 26px;
    line-height: 1.25;
}

.enaf-hotel-booking__text {
    margin: 0;
    font-size: 15px;
    line-height: 1.6;
}

.enaf-hotel-booking__summary {
    margin: 10px 0 15px;
    padding: 12px 18px;
    border-radius: 14px;
    background: #f7f7f7;
    border: 1px solid #e5e5e5;
}

.enaf-hotel-booking__summary > strong {
    display: block;
    margin-bottom: 10px;
    font-size: 17px;
}

.enaf-hotel-booking__summary-content {
    font-size: 14px;
    line-height: 1.4;
}

.enaf-hotel-booking__summary-row {
    margin-bottom: 4px;
}

.enaf-hotel-booking__breakdown {
    margin: 12px 0 !important;
    padding-left: 20px;
}

.enaf-hotel-booking__total {
    margin-top: 12px;
    font-size: 18px;
}

.enaf-room-option--disabled {
    opacity: 0.55;
}

.jet-form-builder__action-button{
    color: #fff; 
}

.jet-form-builder__action-button:hover{
    color: #fff; 
    background: #333;
}


/* 
* FIN CSS para el formulario del hotel
*/