/* * {
    box-sizing: border-box;
}

.simple-booking-wrapper {
    max-width: 800px;
    margin: 20px auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.booking-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 25px;
    text-align: center;
}

.booking-header h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 600;
}

.booking-content {
    padding: 30px;
}

.accordion-wrapper {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
} */

.accordion-section {
    border-bottom: 1px solid #ddd;
}

.accordion-section:last-child {
    border-bottom: none;
}

.accordion-header {
    background: #f8f9fa;
    padding: 15px 20px;
    font-weight: 600;
    font-size: 16px;
    color: #333;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.3s;
    border-left: 4px solid #667eea;
    position: relative;
}

 /* .accordion-header:hover {
    background: #e9ecef;
} */

.accordion-header::after {
    content: '+';
    position: absolute;
    right: 20px;
    font-size: 20px;
    transition: transform 0.3s;
}

.accordion-header.active::after {
    transform: rotate(45deg);
}
/*
.accordion-content {
    padding: 20px;
    background: #fff;
    display: none;
}

.accordion-content.show {
    display: block;
}

.appointment-date input[type="date"] {
    width: 100%;
    padding: 12px;
    border: 2px solid #e0e7ff;
    border-radius: 6px;
    font-size: 16px;
    margin-bottom: 15px;
}

.bookable_appointment {
    width: 100%;
}

#appointment_slots_wrapper {
    width: 100%;
}

.calendar-wrapper {
    background: #f8f9ff;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
    margin-top: 10px;
}

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

.calendar-nav {
    background: #667eea;
    color: white;
    border: none;
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 16px;
}

.calendar-nav:hover {
    background: #5a6fd8;
}

.calendar-nav:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.month-year {
    font-size: 18px;
    font-weight: 600;
    color: #333;
}

.day-header {
    text-align: center;
    padding: 10px 5px;
    font-weight: 600;
    color: #666;
    font-size: 12px;
    text-transform: uppercase;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 6px;
    transition: all 0.2s;
    font-weight: 500;
    min-height: 40px;
}

.calendar-day:hover:not(.disabled):not(.unavailable) {
    background: #e8f2ff;
    transform: scale(1.05);
}

.calendar-day.available {
    background: #fff;
    border: 2px solid #e0e7ff;
    color: #333;
}

.calendar-day.selected {
    background: #667eea;
    color: white;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
    background: #f5f5f5;
}

.calendar-day.unavailable {
    background: #fee;
    color: #999;
    cursor: not-allowed;
    border: 2px solid #fbb;
}

.calendar-day.other-month {
    color: #ddd;
}

.time-slots-wrapper {
    background: #f8f9ff;
    border-radius: 8px;
    padding: 20px;
    display: none;
}

.time-slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.time-slot {
    padding: 12px;
    text-align: center;
    border: 2px solid #e0e7ff;
    border-radius: 6px;
    cursor: pointer;
    transition: all 0.2s;
    background: #fff;
    font-weight: 500;
}

.time-slot:hover:not(.unavailable) {
    background: #e8f2ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.time-slot.selected {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

.time-slot.unavailable {
    background: #fee;
    color: #999;
    cursor: not-allowed;
    border-color: #fbb;
}

.booking-info {
    background: #f0f9ff;
    padding: 20px;
    border-radius: 8px;
    margin-top: 20px;
    display: none;
}

.booking-info.show {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

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

.booking-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.booking-price {
    font-size: 24px;
    font-weight: 700;
    color: #667eea;
}

.add-to-cart-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    width: 100%;
    transition: all 0.3s;
}

.add-to-cart-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.3);
}

.add-to-cart-btn:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.error-message {
    background: #fee;
    color: #c53030;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    border-left: 4px solid #fc8181;
}

.success-message {
    background: #f0fff4;
    color: #2d5016;
    padding: 15px;
    border-radius: 8px;
    margin-top: 15px;
    border-left: 4px solid #68d391;
} */

