/* Estilos para el formulario de reservas frontend */
.reservas-booking-container {
    margin: 0 auto;
    padding: 0px;
}

.booking-step {
    margin-bottom: 20px;
}

.step-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.person-selector{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 5px;
}

.person-selector label {
    margin: 0px !important;
}

.step-card .h33 {
    background: #EFCF4B;
    margin: 0;
    padding: 20px;
    text-align: center;
    font-weight: bold !important;
    font-size: 24px !important;
    color: #333 !important;
    font-family: 'Duran-Medium' !important;
    letter-spacing: 1px !important;
}

.booking-steps-grid span{
    font-family: 'Duran-Regular';
}
.booking-steps-grid label{
    font-family: 'Duran-Regular';
}
.booking-steps-grid div{
    font-family: 'Duran-Regular';
}
#reservas-detalles span{
    font-family: 'Duran-Regular';
}
#reservas-detalles label{
    font-family: 'Duran-Regular';
}
#reservas-detalles div{
    font-family: 'Duran-Regular';
}

/* === PASO 1: CALENDARIO === */
.calendar-container {
    padding: 40px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 20px;
}

.calendar-header button {
    background: #efcf4b00;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 55px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-grid .calendar-day-header:first-child {
    border-top-left-radius: 5px;
    border-bottom-left-radius: 5px;
}

.calendar-grid .calendar-day-header:nth-child(7) {
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
}

.calendar-header span {
    font-size: 24px;
    font-weight: bold;
    color: #333;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0px;
    overflow: hidden;
    margin-bottom: 20px;
}

.calendar-day-header {
    background: #B7B7B7;
    color: white;
    padding: 10px;
    text-align: center;
    font-weight: bold;
    font-size: 16px;
    border-radius: 0px;
    margin-bottom: 5px;
}

.calendar-day {
    background: white;
    color: black;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    position: relative;
    transition: all 0.3s;
    font-size: 20px;
    border-radius: 5px;
    width: 55px;
    margin: 0 auto;
}

.calendar-day:hover {
    background: #f8f9fa;
}

.calendar-day.other-month {
    color: #B7B7B7;
    cursor: not-allowed;
}

.calendar-day.no-disponible {
    color: #B7B7B7;
    cursor: not-allowed;
}

.calendar-day.disponible {
    background: white;
    cursor: pointer;
}

.calendar-day.selected {
    background: #DB7461 !important;
    color: white;
}

.calendar-day.oferta {
    background: #EFCF4B;
    color: #000000;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 25px;
    margin-bottom: 30px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: #2E2D2C;
}

.legend-color {
    width: 20px;
    height: 20px;
    border-radius: 4px;
}

.legend-color.no-disponible {
    background: #B7B7B7;
}

.legend-color.seleccion {
    background: #DB7461;
}

.legend-color.oferta {
    background: #EFCF4B;
}

.horarios-section {
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.horarios-section label {
    display: block;
    color: #000000;
    font-size: 18px;
    font-weight: 300 !important;
}

.horarios-section select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background: white;
}

.horarios-section select:disabled {
    background: #f5f5f5;
    color: #999;
}

/* === PASO 2: PERSONAS === */
.persons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(46%, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.person-selector label {
    display: block;
    font-weight: bold;
    margin-bottom: 8px;
    color: #333;
    font-size: 14px;
}

.person-selector select {
    width: 100%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background: white;
}

.price-summary {
    border-radius: 5px;
    border: 2px solid #B7B7B7;
}

.price-row {
    display: flex;
    justify-content: space-evenly;
    font-weight: bold;
    background-color: #B7B7B7;
    padding: 5px;
    color: white;
    ;
}

.price-row span {
    color: #ffffff;
    font-size: 17px;
    font-weight: 300 !important;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
#price-adultos{
    color: #ffffff;
    font-size: 25px;
    font-weight: bold !important;
}
#price-ninos{
    color: #ffffff;
    font-size: 25px;
    font-weight: bold !important;
}

.price-notes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    padding: 10px;
}

.price-notes img {
    width: 20px;

}

.price-notes p {
    margin: 5px 0;
    font-size: 13px;
    color: #666;
}

.total-price {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 20px;
}

.total-price .discount {
color: black;
    font-size: 25px;
    font-family: 'Duran-Medium';
}

#total-discount{
    background-color: #871727;
    color: white !important;
    border-radius: 5px;
    padding: 5px;
}

.total-price .total {
    color: black;
    font-size: 25px;
    font-family: 'Duran-Medium';
}

/* === PASO 3: COMPLETAR === */
.complete-booking {
    text-align: center;
    padding: 40px 20px !important;
}

#total-price{
    background-color: #871727;
    color: white !important;
    border-radius: 5px;
    padding: 5px;
    font-weight: bold;
}

.complete-btn {
    background: #EFCF4B;
    border: none;
    padding: 15px 100px;
    font-size: 20px;
    font-weight: bold;
    color: #2E2D2C;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 200px;
    font-family: 'Duran-Medium';
    text-transform: uppercase;
    border-radius: 10px;
    letter-spacing: 1px;
    margin: 0 auto;
    box-shadow: rgba(0, 0, 0, 0.8) 0px 2px 4px 0px;
}

.complete-btn:hover {
    background: #EFCF4B;
    transform: translateY(-2px);
}

/* === NAVEGACIÓN === */
.booking-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 30px;
    padding: 0 20px;
}

.booking-navigation button {
    background: #3498DB;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s;
}

.booking-navigation button:hover:not(:disabled) {
    background: #2980B9;
    transform: translateY(-1px);
}

.booking-navigation button:disabled {
    background: #bdc3c7;
    cursor: not-allowed;
    transform: none;
}

/* Grid para mostrar ambos pasos juntos */
.booking-steps-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

/* Responsive */
@media (max-width: 1024px) {
    .booking-steps-grid {
        grid-template-columns: 1fr;
    }
}

/* === RESPONSIVE === */
@media (max-width: 768px) {
    .reservas-booking-container {
        padding: 10px;
    }
    
    .persons-grid {
        grid-template-columns: repeat(1, 1fr);
        gap: 10px;
    }
    
    .price-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .total-price {
        gap: 10px;
        text-align: center;
    }
    
    .calendar-legend {
        align-items: center;
    }
    
    .booking-navigation {
        padding: 0;
    }
}

.details-summary{
    border-radius: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(4px)
}


/* Estilos para la página de detalles de reserva */
.reservas-details-container {
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    min-height: 100vh;
}





/* Secciones individuales */
.details-section {
    padding: 20px;
}

.details-section:last-child {
    border-right: none;
}



/* Filas de detalles */
.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 0;
}

.detail-row .label {
    color: black;
    font-weight: bold;
    font-size: 16px;
    flex: 1;
}

.detail-row .value {
    color: black;
    font-weight: bold;
    font-size: 16px;
    text-align: right;
    min-width: 80px;
}

/* Fila del total */
.total-row {

}

.total-row .label {
    font-size: 25px;
    color: #000;
}



/* Botón de confirmar */
.confirm-section {
    text-align: center;
    margin: 30px 0;
}

.confirm-btn {
    background: #EFCF4B;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.confirm-btn:hover {
    background: #F1C40F;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Formularios de datos */
.forms-section {
    margin-top: 30px;
}

.forms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.form-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-card h3 {
    background: #E74C3C;
    color: white;
    text-align: center;
    margin: 0;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
}

.form-card form {
    padding: 20px;
}

.form-group {
    margin-bottom: 15px;
}

#personal-data-form .form-group input {
    width: 100% !important;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-group input::placeholder {
    color: #999;
    font-weight: normal;
}

.form-group input:focus {
    outline: none;
    border-color: #E74C3C;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.1);
}

/* Botones finales */
.final-buttons {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}







/* Responsive */
@media (max-width: 768px) {
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .details-section {
        border-right: none;
        border-bottom: 1px solid #ddd;
    }
    
    .details-section:last-child {
        border-bottom: none;
    }
    
    .forms-grid {
        grid-template-columns: 1fr;
    }
    
    .final-buttons {
        flex-direction: column;
    }
    
    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .detail-row .value {
        text-align: left;
    }
}

.discount-message {
    background: #871727;
    color: white;
    padding: 8px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: bold;
    text-align: center;
    margin: 10px 0;
    display: none; /* Oculto por defecto */
    animation: fadeIn 0.3s ease-in;
}

.discount-message.show {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mejorar el estilo del total price */
.total-price {
    display: flex;
    gap: 10px;
    margin-top: 30px;
}

.total-price .discount-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.total-price .total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}




.details-summary h2 {
    background: #B7B7B7;
    color: white;
    text-align: center;
    padding: 20px;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    margin-top: 15px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    margin-bottom: 0px !important;
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    background: white;
    margin-bottom: 20px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.details-section {
    padding: 30px;
}

.details-section:last-child {
    border-right: none;
}

.details-section h3 {

    color: #DB7461;
    text-align: center;
    margin: 0px 0px;
    padding: 12px;
    font-size: 23px;
    font-weight: bold;
}

.detail-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    padding: 8px 0;
}



.page-id-172 header{
    display: none !important;
}



.total-row .label {
    font-size: 25px;
    color: #000;
}

.total-row .value {
    font-size: 28px;
    color: #871727;
    font-weight: bold;
    margin: 0px !important;
    font-family: 'Duran-Bold';
}

.confirm-section {
    text-align: center;
    margin: 30px 0;
}

.confirm-btn {
    background: #EFCF4B;
    border: none;
    padding: 15px 40px;
    border-radius: 25px;
    font-size: 16px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.confirm-btn:hover {
    background: #F1C40F;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.forms-section {
    margin-top: 30px;
}

.forms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 30px;
}

.form-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.form-card h3 {
    background: #E74C3C;
    color: white;
    text-align: center;
    margin: 0;
    padding: 15px;
    font-size: 16px;
    font-weight: bold;
}

.form-card form {
    padding: 20px;
}

.form-group {
    margin-bottom: 15px;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-group input::placeholder {
    color: #999;
    font-weight: normal;
}

.form-group input:focus {
    outline: none;
    border-color: #E74C3C;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.1);
}

.final-buttons {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
}

.back-btn {
    color: black;
    border: none;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: none !important;
}



.process-btn {
    background: #EFCF4B;
    border: none;
    padding: 15px 100px;
    font-size: 20px;
    font-weight: bold;
    color: #2E2D2C;
    cursor: pointer;
    transition: all 0.3s;
    min-width: 200px;
    font-family: 'Duran-Medium';
    text-transform: uppercase;
    border-radius: 10px;
    letter-spacing: 1px;
    margin: 0 auto;
    box-shadow: rgba(0, 0, 0, 0.8) 0px 2px 4px 0px;
}

.form-group input, .form-group textarea{
    width: 95% !important;
}

.process-btn:hover {
    background: #EFCF4B;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .details-grid {
        grid-template-columns: 1fr;
    }
    
    .details-section {
        border-right: none;
        border-bottom: 1px solid #ddd;
    }
    
    .details-section:last-child {
        border-bottom: none;
    }
    
    .forms-grid {
        grid-template-columns: 1fr;
    }
    
    .final-buttons {
        flex-direction: column;
    }
    
    .detail-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .detail-row .value {
        text-align: left;
    }
}

/* Estilos adicionales para la nueva estructura */
.personal-data-section {
    margin: 20px 0;
}

.form-card-single {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    border-radius: 20px;
}

.form-card-single h3 {
    background: #DB7461;
    color: white;
    text-align: center;
    margin: 0;
    padding: 15px;
    font-size: 24px;
    font-weight: bold;
    letter-spacing: 2px;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.form-card-single form {
    padding: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 15px;
}

.person-input {
    width: 50%;
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 16px;
    background: white;
    text-align: center;
    font-weight: bold;
}

.person-input:focus {
    outline: none;
    border-color: #EFCF4B;
    box-shadow: 0 0 0 3px rgba(244, 208, 63, 0.2);
}

.person-input::-webkit-outer-spin-button,
.person-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.person-input[type=number] {
    -moz-appearance: textfield;
}

.form-group {
    margin-bottom: 0;
}

.form-group input {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 14px;
    box-sizing: border-box;
}

.form-group input::placeholder {
    color: #999;
    font-weight: normal;
}

.form-group input:focus {
    outline: none;
    border-color: #E74C3C;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.1);
}

/* Responsive para formularios */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
}






