/* Match existing theme purchase cards exactly */
.ebm-package-cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 0 auto;
}

.ebm-package-card {
    width: 25rem !important;
    min-height: 36rem;
    background: #FFFFFF;
    border-top: 1px solid #F3F4F6;
    border-radius: 14px;
    box-shadow: 0px 4px 6px -4px #0000001A, 0px 10px 15px -3px #0000001A;
    position: relative;
    padding: 16px;
    box-sizing: border-box;
    opacity: 1;
    margin-bottom: 2rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ebm-package-card:hover {
    transform: translateY(-5px);
    box-shadow: 0px 8px 12px -4px #0000002A, 0px 15px 20px -3px #0000002A;
}

.ebm-package-card .ebm-popular-badge {
    width: 161px;
    height: 36px;
    padding: 0 24px;
    border-radius: 9999px;
    background-color: #4A90E2;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -1rem;
    left: 7rem;
    color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 14px;
    line-height: 20px;
}

.ebm-package-card .ebm-package-icon {
    width: 48px;
    height: 48px;
    background: #9B7EBD15;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 12px;
    font-size: 24px;
}

.ebm-package-card h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 25px;
    line-height: 40px;
    letter-spacing: 0.37px;
    color: #9B7EBD;
    margin: 16px 0;
}

.ebm-package-description {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 22.75px;
    color: #4A5565;
    margin: 12px 0;
}

.ebm-package-price {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 30px;
    line-height: 36px;
    letter-spacing: 0.4px;
    color: #D4AF37;
    margin: 20px 0;
}

.ebm-price-per {
    font-size: 14px;
    font-weight: 400;
    color: #666;
    margin-left: 4px;
}

.ebm-features-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.ebm-features-list li {
    font-family: 'Inter', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #1A1A1A;
    margin-bottom: 18px;
    padding-left: 32px;
    position: relative;
}

.ebm-features-list li:before {
    content: '';
    position: absolute;
    left: 0;
    top: 2px;
    width: 18px;
    height: 18px;
    border-radius: 18px;
    background: #4A90E220 url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAiIGhlaWdodD0iOCIgdmlld0JveD0iMCAwIDEwIDgiIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PHBhdGggZD0iTTEgNEw0IDdMOSAxIiBzdHJva2U9IiM0QTkwRTIiIHN0cm9rZS13aWR0aD0iMiIgc3Ryb2tlLWxpbmVjYXA9InJvdW5kIi8+PC9zdmc+') center no-repeat;
    background-size: 10px;
}

.ebm-select-button {
    border-radius: 12px !important;
    color: #fff !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    font-family: 'Inter', sans-serif !important;
    padding: 12px 24px !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    margin-top: 42px !important;
    margin-bottom: 0 !important;
    width: 100%;
    height: 48px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: url(/wp-content/uploads/2025/10/base-1.svg) no-repeat center top !important;
    background-size: 100% !important;
}

.ebm-select-button:hover {
    opacity: 0.95;
    transform: translateY(-2px);
}

.ebm-login-required-btn {
    text-decoration: none !important;
    color: #fff !important;
}

/* Modal Styles */
.ebm-modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    overflow-y: auto;
    animation: fadeIn 0.3s ease;
}

.ebm-modal.active {
    display: block;
}

.ebm-modal-content {
    background-color: #fff;
    margin: 3% auto;
    padding: 0;
    border-radius: 16px;
    width: 90%;
    max-width: 900px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 10px 50px rgba(0,0,0,0.3);
    animation: slideIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideIn {
    from { transform: translateY(-50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.ebm-modal-header {
    background: linear-gradient(135deg, #4A90E2, #9B7EBD);
    color: white;
    padding: 30px;
    border-radius: 16px 16px 0 0;
    position: relative;
}

.ebm-modal-header h2 {
    margin: 0;
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 28px;
}

.ebm-modal-close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 32px;
    font-weight: 300;
    color: white;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.2s;
}

.ebm-modal-close:hover {
    transform: scale(1.2);
}

.ebm-modal-body {
    padding: 30px;
}

/* Form Styling Inside Modal */
.ebm-booking-form {
    max-width: 100%;
}

.ebm-form-section {
    margin-bottom: 30px;
}

.ebm-form-section h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #1A1A2E;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.ebm-form-group {
    margin-bottom: 20px;
}

.ebm-form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    color: #1A1A2E;
}

.ebm-form-group input,
.ebm-form-group select,
.ebm-form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #E5E7EB;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    transition: border-color 0.3s;
}

.ebm-form-group input:focus,
.ebm-form-group select:focus,
.ebm-form-group textarea:focus {
    outline: none;
    border-color: #4A90E2;
    box-shadow: 0 0 0 3px rgba(74, 144, 226, 0.1);
}

.ebm-form-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 15px;
}

.ebm-payment-options {
    display: flex;
    gap: 20px;
    margin-top: 10px;
    justify-content: center;
}

.ebm-payment-options label {
    display: flex;
    align-items: center;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    cursor: pointer;
}

.ebm-payment-options input[type="radio"] {
    width: auto;
    margin-right: 8px;
}

.ebm-submit-btn {
    background: url(/wp-content/uploads/2025/10/newyelowright.svg) no-repeat center !important;
    background-size: 100% !important;
    color: #fff !important;
    padding: 20px 40px !important;
    border: none !important;
    border-radius: 20px !important;
    font-size: 18px !important;
    font-weight: 700 !important;
    font-family: 'Inter', sans-serif !important;
    cursor: pointer !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease !important;
    margin: auto;
}

.ebm-submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.15) !important;
}

.ebm-submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.ebm-error {
    color: #e74c3c;
    font-size: 13px;
    margin-top: 5px;
    font-family: 'Inter', sans-serif;
}

.ebm-blocked-dates-notice {
    background: #fff3cd;
    border-left: 4px solid #ffc107;
    color: #856404;
    padding: 10px 12px;
    margin-top: 8px;
    border-radius: 4px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    line-height: 1.5;
}

/* Selected Package Info */
.ebm-selected-package-info {
    background: linear-gradient(135deg, #f0f8ff, #f5f0ff);
    border-left: 4px solid #4A90E2;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
}

.ebm-selected-package-info h4 {
    margin: 0 0 10px 0;
    color: #4A90E2;
    font-family: 'Inter', sans-serif;
}

.ebm-selected-package-info p {
    margin: 5px 0;
    font-family: 'Inter', sans-serif;
    color: #4A5565;
}

.ebm-total-price {
    color: #D4AF37;
    font-size: 24px;
    font-weight: 700;
}

/* Login Required Message */
.ebm-login-required {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 400px;
    padding: 40px 20px;
}

.ebm-login-message {
    background: linear-gradient(135deg, #f0f8ff, #f5f0ff);
    border: 2px solid #4A90E2;
    border-radius: 16px;
    padding: 60px 40px;
    text-align: center;
    max-width: 500px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.ebm-login-message h3 {
    font-family: 'Inter', sans-serif;
    font-size: 28px;
    color: #4A90E2;
    margin: 0 0 20px 0;
}

.ebm-login-message p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #4A5565;
    margin-bottom: 30px;
}

.ebm-login-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.ebm-login-btn,
.ebm-register-btn {
    padding: 14px 32px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.ebm-login-btn {
    background: #4A90E2;
    color: #fff;
    border: 2px solid #4A90E2;
}

.ebm-login-btn:hover {
    background: #3a7bc8;
    border-color: #3a7bc8;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.ebm-register-btn {
    background: transparent;
    color: #4A90E2;
    border: 2px solid #4A90E2;
}

.ebm-register-btn:hover {
    background: #4A90E2;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

/* Responsive */
@media (max-width: 768px) {
    .ebm-package-card {
        width: 100% !important;
    }
    
    .ebm-modal-content {
        width: 95%;
        margin: 5% auto;
    }
    
    .ebm-form-row {
        grid-template-columns: 1fr;
    }
}

/* ========== Multi-Step Booking Flow Styles ========== */

.ebm-booking-flow {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Step Container */
.ebm-step {
    opacity: 0;
    display: none;
    transform: translateY(20px);
    transition: all 0.4s ease;
    padding: 40px 20px;
    margin: 0 auto;
}

.ebm-step.active {
    opacity: 1;
    display: block;
    transform: translateY(0);
}

/* Progress Bar */
.ebm-progress-bar {
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
    margin: 20px auto;
    max-width: 600px;
}

.ebm-progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #4A90E2, #9B7EBD);
    transition: width 0.4s ease;
}

/* Step Header */
.ebm-step-header {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.ebm-step-header h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 32px;
    color: #1A1A2E;
    margin: 20px 0;
}

.ebm-back-btn {
    background: transparent;
    border: 2px solid #4A90E2;
    color: #4A90E2;
    padding: 10px 24px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    position: absolute;
    left: 0;
    top: 0;
    transition: all 0.3s ease;
}

.ebm-back-btn:hover {
    background: #4A90E2;
    color: #fff;
    transform: translateX(-5px);
}

/* Selected Package Summary (Step 2) */
.ebm-selected-package-summary {
    background: linear-gradient(135deg, #f0f8ff, #f5f0ff);
    border-left: 4px solid #4A90E2;
    padding: 20px;
    border-radius: 8px;
    margin: 0 auto 30px auto;
    max-width: 800px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    color: #1A1A2E;
}

.ebm-price-highlight {
    color: #D4AF37;
    font-weight: 700;
}

/* Party Benefits Recap (Step 2) */
.ebm-party-benefits-recap {
    background: #ffffff;
    border: 2px solid #4A90E2;
    border-radius: 12px;
    padding: 24px;
    margin: 0 auto 30px auto;
    max-width: 800px;
    box-shadow: 0 2px 8px rgba(74, 144, 226, 0.1);
}

.ebm-party-benefits-recap h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 20px;
    color: #1A1A2E;
    margin: 0 0 16px 0;
    text-align: center;
}

.ebm-benefits-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.ebm-benefits-list li {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 24px;
    color: #4A5565;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
}

.ebm-benefits-list li:hover {
    background: #f0f8ff;
    transform: translateX(5px);
}

.ebm-benefit-icon {
    font-size: 20px;
    min-width: 24px;
    text-align: center;
}

/* Selected Summary (Step 3) */
.ebm-selected-summary {
    background: #f8f9fa;
    border: 2px solid #e5e7eb;
    padding: 15px 20px;
    border-radius: 8px;
    margin: 0 auto 30px auto;
    max-width: 800px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #4A5565;
}

/* Time Slots Grid (Step 3) */
.ebm-timeslots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 15px;
    margin: 30px auto;
    max-width: 900px;
    padding: 20px;
}

.ebm-timeslot-btn {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    padding: 18px 24px;
    border-radius: 12px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: #1A1A2E;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.ebm-timeslot-btn:hover:not(:disabled) {
    border-color: #4A90E2;
    background: #f0f8ff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.15);
}

.ebm-timeslot-btn.selected {
    background: linear-gradient(135deg, #4A90E2, #9B7EBD);
    border-color: #4A90E2;
    color: #ffffff;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.3);
}

.ebm-timeslot-btn:disabled {
    background: #f3f4f6;
    color: #9ca3af;
    cursor: not-allowed;
    border-color: #e5e7eb;
    opacity: 0.6;
}

/* Checkout Layout (Step 4) */
.ebm-checkout-layout {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 40px;
    margin: 30px auto;
    max-width: 1200px;
    padding: 20px;
}

.ebm-form-column {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
}

.ebm-summary-column {
    position: relative;
}

.ebm-booking-summary {
    background: linear-gradient(135deg, #f0f8ff, #f5f0ff);
    border: 2px solid #4A90E2;
    border-radius: 12px;
    padding: 24px;
    position: sticky;
    top: 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.ebm-booking-summary h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 24px;
    color: #1A1A2E;
    margin: 0 0 20px 0;
    padding-bottom: 15px;
    border-bottom: 2px solid #e5e7eb;
}

.ebm-summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    color: #4A5565;
}

.ebm-summary-row span {
    color: #6B7280;
}

.ebm-summary-row strong {
    color: #1A1A2E;
    font-weight: 600;
}

.ebm-summary-divider {
    height: 2px;
    background: #e5e7eb;
    margin: 20px 0;
}

.ebm-summary-total {
    font-size: 18px;
    padding-top: 10px;
}

.ebm-summary-total .ebm-total-price {
    color: #D4AF37;
    font-size: 28px;
    font-weight: 700;
}

.ebm-summary-highlight {
    background: rgba(74, 144, 226, 0.1);
    padding: 12px;
    border-radius: 8px;
    margin: 10px 0;
}

.ebm-summary-highlight .ebm-amount-due {
    color: #4A90E2;
    font-size: 20px;
    font-weight: 700;
}

.ebm-balance-due {
    color: #e59500;
    font-weight: 600;
}

/* Loading State */
.ebm-loading {
    text-align: center;
    padding: 20px;
    font-family: 'Inter', sans-serif;
    color: #4A90E2;
}

/* Responsive - Multi-Step Flow */
@media (max-width: 968px) {
    .ebm-checkout-layout {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .ebm-booking-summary {
        position: relative;
        top: 0;
        margin-bottom: 20px;
    }
    
    .ebm-summary-column {
        order: -1;
    }
    
    .ebm-timeslots-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
    }
    
    .ebm-step-header h2 {
        font-size: 24px;
    }
    
    .ebm-back-btn {
        position: static;
        margin-bottom: 20px;
        display: block;
        width: fit-content;
    }
}

@media (max-width: 480px) {
    .ebm-timeslots-grid {
        grid-template-columns: 1fr;
    }
    
    .ebm-step {
        padding: 20px 10px;
    }
    
    .ebm-booking-flow {
        padding: 10px;
    }
}

/* Responsive Custom Calendar */
@media (max-width: 768px) {
    #ebm-calendar-container {
        margin: 20px 10px;
    }
    
    .ebm-custom-calendar {
        border-radius: 16px;
    }
    
    .ebm-calendar-header {
        padding: 20px 16px;
    }
    
    .ebm-calendar-month {
        font-size: 20px;
    }
    
    .ebm-cal-prev,
    .ebm-cal-next {
        width: 40px;
        height: 40px;
    }
    
    .ebm-calendar-weekdays {
        padding: 14px 16px;
    }
    
    .ebm-calendar-weekdays > div {
        font-size: 11px;
    }
    
    .ebm-calendar-days {
        gap: 6px;
        padding: 16px;
    }
    
    .ebm-cal-day {
        font-size: 14px;
        border-radius: 12px;
    }
}

/* Calendar Container */
#ebm-calendar-container {
    max-width: 800px;
    margin: 30px auto;
    padding: 0;
}

/* Flatpickr Minimal Styling */
.flatpickr-rContainer {
    width: 100% !important;
}
.flatpickr-calendar {
    width: 100% !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1) !important;
    border-radius: 16px !important;
    border: none !important;
}

.flatpickr-months {
    background: linear-gradient(135deg, #4A90E2, #9B7EBD) !important;
    padding: 25px !important;
}

.flatpickr-current-month {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #fff !important;
}

.flatpickr-weekdays {
    background: #f8fafc !important;
    padding: 16px 0 !important;
    width: 100% !important;
    height: 28px !important;
}

.flatpickr-weekday {
    color: #64748b !important;
    font-weight: 600 !important;
    font-size: 12px !important;
    text-transform: uppercase !important;
}

.flatpickr-days {
    padding: 20px !important;
    width: 100%;


}

.flatpickr-day {
    border-radius: 10px !important;
    margin: 5px 8px !important;
    height: 48px !important;
    line-height: 48px !important;
    flex-basis: 12.285714%;
    width: 12.285714% !important;
    max-width: 100% !important;
}

.flatpickr-day.selected {
    background: #4A90E2 !important;
    border-color: #4A90E2 !important;
}

.flatpickr-day.today {
    border-color: #9B7EBD !important;
}

.flatpickr-day.flatpickr-disabled,
.flatpickr-day.prevMonthDay,
.flatpickr-day.nextMonthDay {
    background: #f3f4f6 !important;
    color: #9ca3af !important;
    cursor: not-allowed !important;
    opacity: 0.5 !important;
    text-decoration: line-through !important;
}

.flatpickr-day.flatpickr-disabled:hover,
.flatpickr-day.prevMonthDay:hover,
.flatpickr-day.nextMonthDay:hover {
    background: #f3f4f6 !important;
    color: #9ca3af !important;
    border-color: transparent !important;
}

/* Flatpickr full-width grid fix */
.flatpickr-calendar {
    min-width: 0 !important;
}
.flatpickr-innerContainer,
.flatpickr-days,
.flatpickr-weekdays,
.flatpickr-weekdays .flatpickr-weekdaycontainer {
    width: 100% !important;
}
.flatpickr-weekdays .flatpickr-weekdaycontainer {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr);
    column-gap: 6px;
    padding: 0 20px;
    box-sizing: border-box;
    text-align: center;
}
.flatpickr-days {
    padding: 20px !important;
}
.flatpickr-days .dayContainer {
    display: grid !important;
    grid-template-columns: repeat(7, minmax(42px, 1fr));
    gap: 6px;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    box-sizing: border-box;
}
.flatpickr-day {
    width: 100% !important;
    margin: 0 !important;
    height: 48px !important;
    line-height: 48px !important;
}

/* ========== Add-Ons Section Styles ========== */

.ebm-addons-section {
    background: linear-gradient(135deg, #f0f8ff, #f5f0ff);
    border: 2px solid #4A90E2;
    border-radius: 12px;
    padding: 30px;
    margin-bottom: 30px;
}

.ebm-addons-section h3 {
    margin-bottom: 10px;
}

.ebm-optional-text {
    font-size: 14px;
    font-weight: 400;
    color: #6B7280;
}

.ebm-section-desc {
    font-size: 14px;
    color: #4A5565;
    margin-bottom: 20px;
}

.ebm-addons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.ebm-addon-card {
    background: #ffffff;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
}

.ebm-addon-card:hover {
    border-color: #4A90E2;
    box-shadow: 0 4px 12px rgba(74, 144, 226, 0.15);
    transform: translateY(-2px);
}

.ebm-addon-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.ebm-addon-name {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #1A1A2E;
    margin: 0 0 8px 0;
}

.ebm-addon-badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ebm-required-badge {
    background: #fee2e2;
    color: #991b1b;
}

.ebm-optional-badge {
    background: #dbeafe;
    color: #1e40af;
}

.ebm-addon-price-display {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #D4AF37;
    white-space: nowrap;
}

.ebm-addon-description {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.6;
    color: #4A5565;
    margin: 0 0 16px 0;
}

.ebm-addon-controls {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid #e5e7eb;
}

.ebm-addon-qty-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #6B7280;
    margin-bottom: 8px;
}

.ebm-addon-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ebm-qty-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #4A90E2;
    background: #ffffff;
    color: #4A90E2;
    border-radius: 8px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ebm-qty-btn:hover {
    background: #4A90E2;
    color: #ffffff;
    transform: scale(1.05);
}

.ebm-qty-btn:active {
    transform: scale(0.95);
}

.ebm-addon-qty-input {
    width: 70px;
    height: 40px;
    text-align: center;
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 600;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
    color: #1A1A2E;
}

.ebm-addon-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px;
    background: #f9fafb;
    border-radius: 8px;
}

.ebm-addon-total-label {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #6B7280;
}

.ebm-addon-total-price {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #4A90E2;
}

/* Responsive Addons */
@media (max-width: 768px) {
    .ebm-addons-grid {
        grid-template-columns: 1fr;
    }
    
    .ebm-addons-section {
        padding: 20px;
    }
    
    .ebm-addon-card {
        padding: 16px;
    }
}
