.lang-text {
    display: none;
}

.booking-v2-container {
    max-width: 900px;
    margin: 40px auto;
    background: rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: 24px;
    border: 2px solid rgba(255, 193, 7, 0.2);
    backdrop-filter: blur(15px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

/* Progress Bar */
.progress-stepper {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.progress-stepper::before {
    content: '';
    position: absolute;
    top: 25px;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 1;
}

.step-indicator {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 50px;
}

.step-number {
    width: 50px;
    height: 50px;
    background: #222;
    border: 3px solid #555;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    color: #777;
    margin: 0 auto 10px;
    transition: all 0.4s ease;
    font-family: 'Fredoka One', cursive;
}

.step-indicator.active .step-number {
    background: #ffc107;
    border-color: #ffc107;
    color: #1a103c;
    box-shadow: 0 0 20px rgba(255, 193, 7, 0.5);
    transform: scale(1.1);
}

.step-indicator.completed .step-number {
    background: #4caf50;
    border-color: #4caf50;
    color: white;
}

.step-label {
    font-size: 0.8em;
    font-weight: 700;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-indicator.active .step-label {
    color: #ffc107;
}

/* Step Content */
.step-pane {
    display: none;
    animation: slideIn 0.5s ease-out;
}

.step-pane.active {
    display: block;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Custom Calendar */
.custom-calendar {
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #444;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
    text-align: center;
}

.day-name {
    font-weight: 900;
    color: #ffc107;
    font-size: 0.85em;
    padding-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.day-name.lunes {
    color: #ff8a80;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.2s;
    font-weight: 700;
    border: 1px solid transparent;
}

.calendar-day:hover:not(.empty):not(.disabled) {
    border-color: #ffc107;
}

.calendar-day.today {
    border-color: #ffc107;
    color: #ffc107;
}

.calendar-day {
    aspect-ratio: 0.85;
    display: flex;
    flex-direction: column;
    cursor: default;
    border-radius: 12px;
    overflow: hidden;
    background: rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0 0 6px 0 !important;
    transition: transform 0.15s;
}

.day-number {
    font-size: 0.75em;
    padding: 4px 2px;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    font-weight: 900;
    color: #bbb;
    letter-spacing: 0.5px;
}

.calendar-day.lunes .day-number {
    background: rgba(244, 67, 54, 0.08);
    color: #ff8a80;
}

.calendar-day.today .day-number {
    color: #ffc107;
    background: rgba(255, 193, 7, 0.15);
}

.slot-zone {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    transition: all 0.2s;
    cursor: pointer;
    margin: 2px 10px;
    border-radius: 10px;
    padding: 4px 2px;
}

.slot-time {
    font-size: 0.62em;
    font-weight: 800;
    letter-spacing: 0.3px;
    line-height: 1.4;
    text-align: center;
}

.slot-zone.occupied {
    background: transparent;
    cursor: not-allowed;
}

.slot-zone.closed {
    background: transparent;
    cursor: not-allowed;
}

.slot-zone.available {
    background: rgba(76, 175, 80, 0.25);
    color: #d1f8da;
}

.calendar-day.selected {
    border: 2px solid #ffc107 !important;
    background: transparent !important;
}

.slot-zone.available:hover {
    background: rgba(255, 255, 255, 0.08);
}

.slot-zone.selected {
    background: transparent !important;
    outline: 2px solid #4caf50;
    outline-offset: -2px;
    border-radius: 4px;
    color: #a5d6a7 !important;
}

.calendar-day.disabled .slot-zone {
    background: rgba(255, 255, 255, 0.01) !important;
    color: rgba(255, 255, 255, 0.15) !important;
    cursor: not-allowed;
}

.calendar-day.empty {
    cursor: default;
}

/* Forms */
.form-group {
    margin-bottom: 24px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: #ffc107;
    font-weight: 700;
    font-size: 1.05em;
}

.form-control {
    width: 100%;
    padding: 14px 18px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid #555;
    border-radius: 12px;
    color: white;
    font-family: inherit;
    font-size: 1.1em;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: #ffc107;
    background: rgba(0, 0, 0, 0.6);
    box-shadow: 0 0 15px rgba(255, 193, 7, 0.1);
}

.stepper-input {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.stepper-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #ffc107;
    font-size: 1.5em;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    flex-shrink: 0;
    font-family: inherit;
}

.stepper-btn-minus {
    background: rgba(255, 193, 7, 0.2);
    color: #ffc107;
}

.stepper-btn-plus {
    background: #ffc107;
    color: #1a103c;
}

.stepper-btn:active {
    transform: scale(0.9);
}

.stepper-value {
    font-size: 1.6em;
    font-weight: 900;
    color: white;
    min-width: 50px;
    text-align: center;
    font-family: 'Fredoka One', cursive;
    background: transparent;
    border: none;
}

/* Buttons */
.nav-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    gap: 20px;
}

.btn-custom {
    padding: 16px 32px;
    border-radius: 50px;
    font-family: 'Fredoka One', cursive;
    font-size: 1.2em;
    cursor: pointer;
    transition: all 0.3s;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-prev {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}

.btn-prev:hover {
    background: rgba(255, 255, 255, 0.2);
}

.btn-next {
    background: linear-gradient(45deg, #ff6f00, #ff8f00);
    color: white;
    flex-grow: 1;
    box-shadow: 0 10px 20px rgba(255, 111, 0, 0.3);
}

.btn-next:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 111, 0, 0.4);
}

.btn-next:disabled {
    background: #555;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* Catering Cards */
.catering-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.catering-card {
    background: rgba(255, 255, 255, 0.03);
    border: 2px solid #555;
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
}

.catering-card.selected {
    border-color: #ffc107;
    background: rgba(255, 193, 7, 0.1);
    transform: translateY(-5px);
}

.catering-card h4 {
    color: #ffc107;
    margin-bottom: 10px;
}

.catering-card p {
    font-size: 0.9em;
    color: #ccc;
}

/* Price Tag */
.price-badge {
    background: rgba(255, 193, 7, 0.15);
    padding: 20px;
    border-radius: 16px;
    border: 1px dashed #ffc107;
    text-align: center;
    margin-top: 30px;
}

.price-value {
    font-size: 2.5em;
    font-family: 'Fredoka One', cursive;
    color: #ffc107;
    text-shadow: 0 0 15px rgba(255, 193, 7, 0.3);
}

/* Success & Modal */
.modal-v2 {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.modal-v2-content {
    background: #1a103c;
    padding: 50px;
    border-radius: 30px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    border: 2px solid #ffc107;
    box-shadow: 0 0 50px rgba(255, 193, 7, 0.2);
}

canvas#signaturePad {
    width: 100%;
    height: 200px;
    background: white;
    border-radius: 12px;
    border: 2px solid #ffc107;
    touch-action: none;
    display: block;
}

.is-invalid {
    border-color: #ff4444 !important;
    box-shadow: 0 0 10px rgba(255, 68, 68, 0.3) !important;
}

.unit-price {
    display: block;
    font-size: 0.6em;
    color: #ffc107;
    margin-top: 5px;
    font-family: 'Fredoka One', cursive;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .booking-v2-container {
        padding: 20px;
        margin: 20px 10px;
    }

    .step-label {
        display: none;
    }

    #floatingTotal {
        bottom: 10px;
        right: 10px;
        padding: 10px 16px;
    }
}
