/**
 * StanekTech Booking Widget Styles
 * 
 * @package StanekTechBooking
 */

/* ==========================================================================
   Widget Container
   ========================================================================== */

.stanektech-booking-widget {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.stanektech-booking-widget * {
    box-sizing: border-box;
}

.booking-widget-title {
    margin: 0 0 24px 0;
    font-size: 24px;
    font-weight: 600;
    color: #2c3e50;
    text-align: center;
}

/* ==========================================================================
   Form Layout
   ========================================================================== */

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-field label {
    font-weight: 500;
    color: #2c3e50;
    margin-bottom: 4px;
}

.required {
    color: #e74c3c;
    margin-left: 2px;
}

/* ==========================================================================
   Form Messages
   ========================================================================== */

.booking-form-messages {
    margin-bottom: 16px;
}

.booking-message {
    padding: 12px 16px;
    border-radius: 4px;
    margin-bottom: 12px;
}

.booking-success {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.booking-error {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* ==========================================================================
   Service Selection
   ========================================================================== */

.service-field select {
    padding: 12px 16px;
    border: 2px solid #e0e6ed;
    border-radius: 6px;
    font-size: 16px;
    background-color: #fff;
    transition: border-color 0.2s ease;
}

.service-field select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.service-description {
    padding: 12px;
    background-color: #f8f9fa;
    border-radius: 4px;
    font-size: 14px;
    color: #6c757d;
}

/* ==========================================================================
   Calendar Widget
   ========================================================================== */

.date-picker-container {
    position: relative;
}

.calendar-widget {
    border: 2px solid #e0e6ed;
    border-radius: 8px;
    background: #fff;
    overflow: hidden;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.calendar-month-year {
    font-weight: 600;
    font-size: 18px;
}

.calendar-nav {
    background: none;
    border: none;
    color: white;
    font-size: 20px;
    cursor: pointer;
    padding: 8px 12px;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.calendar-nav:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    background-color: #f8f9fa;
    padding: 0;
}

.calendar-weekdays span {
    padding: 12px;
    text-align: center;
    font-weight: 600;
    color: #6c757d;
    font-size: 14px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background-color: #e9ecef;
    padding: 0;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #fff;
    color: #6c757d;
    cursor: default;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
    position: relative;
}

.calendar-day.other-month {
    color: #ced4da;
    background-color: #f8f9fa;
}

.calendar-day.today {
    background-color: #e3f2fd;
    color: #1976d2;
    font-weight: 600;
}

.calendar-day.available {
    background-color: #d4edda;
    color: #155724;
    cursor: pointer;
    border: 2px solid transparent;
}

.calendar-day.available:hover {
    background-color: #c3e6cb;
    border-color: #28a745;
    transform: scale(1.05);
}

.calendar-day.unavailable {
    background-color: #f8d7da;
    color: #721c24;
    cursor: not-allowed;
}

.calendar-day.selected {
    background-color: #007bff !important;
    color: white !important;
    font-weight: 600;
    border: 2px solid #0056b3;
}

.selected-date-display {
    padding: 16px;
    background-color: #e3f2fd;
    border: 2px solid #2196f3;
    border-radius: 8px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.selected-date-text {
    color: #1976d2;
    font-weight: 500;
}

.change-date-btn {
    background: #2196f3;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    transition: background-color 0.2s ease;
}

.change-date-btn:hover {
    background: #1976d2;
}

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 16px;
    padding: 12px;
    background-color: #f8f9fa;
    border-top: 1px solid #e9ecef;
    font-size: 12px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
}

.legend-color {
    width: 16px;
    height: 16px;
    border-radius: 3px;
}

.legend-color.available {
    background-color: #d4edda;
    border: 1px solid #28a745;
}

.legend-color.unavailable {
    background-color: #f8d7da;
    border: 1px solid #dc3545;
}

.legend-color.today {
    background-color: #e3f2fd;
    border: 1px solid #2196f3;
}

/* ==========================================================================
   Guest Count Input
   ========================================================================== */

.number-input-container {
    display: flex;
    align-items: center;
    border: 2px solid #e0e6ed;
    border-radius: 6px;
    overflow: hidden;
    width: fit-content;
}

.number-btn {
    background: #f8f9fa;
    border: none;
    width: 40px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-size: 18px;
    font-weight: 600;
    color: #6c757d;
    transition: background-color 0.2s ease;
}

.number-btn:hover {
    background: #e9ecef;
    color: #495057;
}

.number-btn:active {
    background: #dee2e6;
}

.number-input-container input[type="number"] {
    border: none;
    outline: none;
    text-align: center;
    width: 80px;
    height: 48px;
    font-size: 16px;
    font-weight: 500;
    appearance: textfield;
    -moz-appearance: textfield;
}

.number-input-container input[type="number"]::-webkit-outer-spin-button,
.number-input-container input[type="number"]::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.guests-info {
    margin-top: 4px;
}

.max-guests-text {
    color: #6c757d;
    font-size: 13px;
}

/* ==========================================================================
   Input Fields
   ========================================================================== */

.form-field input[type="tel"],
.form-field input[type="email"],
.form-field select {
    padding: 12px 16px;
    border: 2px solid #e0e6ed;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.2s ease;
}

.form-field input:focus,
.form-field select:focus {
    outline: none;
    border-color: #3498db;
    box-shadow: 0 0 0 3px rgba(52, 152, 219, 0.1);
}

.field-hint {
    margin-top: 4px;
}

.field-hint small {
    color: #6c757d;
    font-size: 13px;
}

/* ==========================================================================
   Price Display
   ========================================================================== */

.price-summary {
    background: #f8f9fa;
    padding: 16px;
    border-radius: 6px;
    border: 1px solid #e9ecef;
}

.price-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.price-line:last-child {
    margin-bottom: 0;
}

.price-line.total-price {
    border-top: 1px solid #dee2e6;
    padding-top: 12px;
    margin-top: 12px;
    font-weight: 600;
    color: #2c3e50;
}

.price-label {
    color: #6c757d;
}

.total-price-display {
    font-size: 18px;
    color: #28a745;
    font-weight: 600;
}

/* ==========================================================================
   Terms & reCAPTCHA
   ========================================================================== */

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    font-size: 14px;
    line-height: 1.5;
}

.recaptcha-field {
    display: flex;
    justify-content: center;
}

/* ==========================================================================
   Submit Button
   ========================================================================== */

.booking-submit-btn {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    padding: 16px 32px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    min-height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.booking-submit-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
}

.booking-submit-btn:active:not(:disabled) {
    transform: translateY(0);
}

.booking-submit-btn:disabled {
    background: #6c757d;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.btn-loading {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.spinner {
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==========================================================================
   Modal
   ========================================================================== */

.booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: white;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid #e9ecef;
}

.modal-header h4 {
    margin: 0;
    color: #2c3e50;
}

.modal-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #6c757d;
    padding: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.modal-close:hover {
    background-color: #f8f9fa;
}

.modal-body {
    padding: 24px;
}

.booking-summary {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.summary-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
}

.summary-row.total {
    border-top: 1px solid #e9ecef;
    padding-top: 16px;
    margin-top: 8px;
    font-size: 18px;
    color: #28a745;
}

.modal-footer {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    padding: 20px 24px;
    border-top: 1px solid #e9ecef;
}

.btn {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.2s ease;
}

.btn-secondary {
    background: #6c757d;
    color: white;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-primary {
    background: #007bff;
    color: white;
}

.btn-primary:hover {
    background: #0056b3;
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 768px) {
    .stanektech-booking-widget {
        margin: 0 16px;
        padding: 16px;
    }
    
    .booking-widget-title {
        font-size: 20px;
        margin-bottom: 20px;
    }
    
    .calendar-widget {
        font-size: 14px;
    }
    
    .calendar-header {
        padding: 12px;
    }
    
    .calendar-month-year {
        font-size: 16px;
    }
    
    .calendar-weekdays span {
        padding: 8px 4px;
        font-size: 12px;
    }
    
    .calendar-day {
        font-size: 13px;
    }
    
    .calendar-legend {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .number-input-container {
        width: 100%;
        max-width: 200px;
    }
    
    .modal-content {
        width: 95%;
        margin: 0 2.5%;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .stanektech-booking-widget {
        margin: 0 8px;
        padding: 12px;
    }
    
    .form-field {
        gap: 6px;
    }
    
    .booking-form {
        gap: 16px;
    }
    
    .calendar-days {
        gap: 0;
    }
    
    .calendar-day {
        font-size: 12px;
    }
    
    .selected-date-display {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

/* ==========================================================================
   Theme Variations
   ========================================================================== */

.stanektech-booking-widget.theme-compact {
    padding: 16px;
}

.stanektech-booking-widget.theme-compact .booking-form {
    gap: 16px;
}

.stanektech-booking-widget.theme-compact .form-field {
    gap: 6px;
}

.stanektech-booking-widget.theme-compact .booking-widget-title {
    font-size: 20px;
    margin-bottom: 16px;
}

.stanektech-booking-widget.theme-minimal .calendar-widget {
    border: 1px solid #e0e6ed;
}

.stanektech-booking-widget.theme-minimal .calendar-header {
    background: #f8f9fa;
    color: #2c3e50;
}

.stanektech-booking-widget.theme-minimal .booking-submit-btn {
    background: #2c3e50;
}

.stanektech-booking-widget.theme-minimal .booking-submit-btn:hover:not(:disabled) {
    background: #34495e;
}

/* ==========================================================================
   Wedding Calendar Widget Styles
   ========================================================================== */

.stanektech-wedding-widget {
    max-width: 900px;
    margin: 0 auto;
    padding: 50px 30px;
    font-family: 'Georgia', 'Times New Roman', serif;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.wedding-widget-header {
    display: none;
}

.wedding-widget-header .widget-title {
    color: #b99d75;
    font-size: 42px;
    font-weight: 400;
    margin: 0 0 15px 0;
    line-height: 1.2;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.wedding-widget-header .widget-subtitle {
    color: #777;
    font-size: 22px;
    font-weight: 300;
    font-style: italic;
    margin: 0;
    letter-spacing: 1px;
}

.wedding-widget-description {
    display: none;
}

.wedding-widget-description p {
    margin: 0 0 20px 0;
    font-size: 16px;
}

.wedding-widget-description strong {
    font-weight: 600;
    color: #b99d75;
}

/* Wedding Calendar Styles */
.wedding-calendar-container {
    background: #fff;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 5px 25px rgba(185, 157, 117, 0.2);
    border: 1px solid #e8dcc7;
}

.wedding-calendar-container .calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #b99d75;
    background: transparent;
}

.wedding-calendar-container .calendar-month-year {
    font-size: 28px;
    font-weight: 400;
    color: #b99d75;
    margin: 0;
    letter-spacing: 2px;
}

.wedding-calendar-container .calendar-nav {
    background: linear-gradient(135deg, #b99d75 0%, #a68a5f 100%);
    border: none;
    color: #fff;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;
    padding: 10px 20px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 25px;
    box-shadow: 0 2px 8px rgba(185, 157, 117, 0.3);
    user-select: none;
    -webkit-user-select: none;
}

.wedding-calendar-container .calendar-nav * {
    pointer-events: none;
}

.wedding-calendar-container .calendar-nav:hover {
    background: linear-gradient(135deg, #a68a5f 0%, #8f7548 100%);
    box-shadow: 0 4px 12px rgba(185, 157, 117, 0.4);
    transform: translateY(-1px);
}

.wedding-calendar-container .calendar-nav:active {
    transform: translateY(0);
}

.wedding-calendar-container .calendar-nav span {
    font-size: 12px;
}

.wedding-calendar-container .calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
    margin-bottom: 20px;
    background: #faf8f5;
    padding: 15px 10px;
    border-radius: 8px;
}

.wedding-calendar-container .weekday {
    text-align: center;
    font-weight: 600;
    color: #b99d75;
    font-size: 14px;
    padding: 10px 0;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.wedding-calendar-container .calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 12px;
    padding: 10px 0;
}

.wedding-calendar-container .calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 17px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: #fafafa;
}

.wedding-calendar-container .calendar-day:not(.empty):not(.disabled):not(.booked):hover {
    background: linear-gradient(135deg, #b99d75 0%, #a68a5f 100%);
    color: #fff;
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(185, 157, 117, 0.4);
}

.wedding-calendar-container .calendar-day.empty {
    cursor: default;
    background: transparent;
}

.wedding-calendar-container .calendar-day.today {
    background: linear-gradient(135deg, #d4af37 0%, #b99d75 100%);
    color: #fff;
    font-weight: 700;
    box-shadow: 0 3px 10px rgba(212, 175, 55, 0.4);
}

.wedding-calendar-container .calendar-day.available {
    border-color: #b99d75;
    color: #333;
    background: #fff;
}

.wedding-calendar-container .calendar-day.available:hover {
    border-color: #b99d75;
    background: linear-gradient(135deg, #b99d75 0%, #a68a5f 100%);
    color: #fff;
}

.wedding-calendar-container .calendar-day.booked {
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    color: #fff;
    cursor: not-allowed;
    position: relative;
    font-weight: 600;
    border: 2px solid #dc3545;
}

.wedding-calendar-container .calendar-day.booked::after {
    display: none;
}

.wedding-calendar-container .calendar-day.disabled {
    color: #ccc;
    cursor: not-allowed;
    background: #f5f5f5;
    border: 2px solid #e0e0e0;
}

/* Range selection styling */
.wedding-calendar-container .calendar-day.range-start,
.wedding-calendar-container .calendar-day.range-end {
    background: linear-gradient(135deg, #b99d75 0%, #a68a5f 100%);
    color: #fff;
    font-weight: 700;
    border: 2px solid #b99d75;
    box-shadow: 0 4px 12px rgba(185, 157, 117, 0.6);
}

.wedding-calendar-container .calendar-day.in-range {
    background: rgba(185, 157, 117, 0.2);
    color: #333;
    border: 2px solid #b99d75;
    font-weight: 600;
}

.wedding-calendar-container .calendar-day.in-range:hover {
    background: rgba(185, 157, 117, 0.3);
}

/* Wedding Booking Modal */
.wedding-booking-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.wedding-booking-modal.is-open {
    visibility: visible !important;
    opacity: 1 !important;
    pointer-events: auto !important;
}

.wedding-booking-modal .modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 10001;
    backdrop-filter: blur(3px);
}

.wedding-booking-modal .modal-content {
    position: relative;
    background: #fff;
    border-radius: 15px;
    max-width: 950px;
    width: 95%;
    max-height: 85vh;
    overflow-y: auto;
    z-index: 10002;
    box-shadow: 0 15px 50px rgba(185, 157, 117, 0.4);
    border: 2px solid #e8dcc7;
}

.wedding-booking-modal .modal-close {
    position: absolute;
    top: 10px;
    right: 20px;
    background: linear-gradient(135deg, #b99d75 0%, #a68a5f 100%);
    border: none;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10003;
    box-shadow: 0 2px 8px rgba(185, 157, 117, 0.3);
}

.wedding-booking-modal .modal-close:hover {
    background: linear-gradient(135deg, #a68a5f 0%, #8f7548 100%);
    transform: rotate(90deg);
    box-shadow: 0 4px 12px rgba(185, 157, 117, 0.5);
}

.wedding-booking-modal .modal-header {
    padding: 15px 30px 15px;
    border-bottom: 2px solid #b99d75;
    background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
}

.wedding-booking-modal .modal-title {
    color: #b99d75;
    font-size: 32px;
    font-weight: 400;
    margin: 0;
    letter-spacing: 2px;
    text-align: center;
    text-transform: uppercase;
}

.wedding-booking-modal .modal-body {
    padding: 20px 30px 30px;
}

/* Wedding Booking Form */
.wedding-booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.wedding-booking-form .form-group {
    display: flex;
    flex-direction: column;
}

.wedding-booking-form .form-group.full-width {
    grid-column: 1 / -1;
}

.wedding-booking-form label {
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
    font-size: 15px;
    letter-spacing: 0.5px;
}

.wedding-booking-form .required {
    color: #b99d75;
}

.wedding-booking-form input[type="text"],
.wedding-booking-form input[type="email"],
.wedding-booking-form input[type="tel"],
.wedding-booking-form input[type="number"],
.wedding-booking-form textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 15px;
    transition: border-color 0.2s;
}

.wedding-booking-form input[type="text"]:focus,
.wedding-booking-form input[type="email"]:focus,
.wedding-booking-form input[type="tel"]:focus,
.wedding-booking-form input[type="number"]:focus,
.wedding-booking-form textarea:focus {
    outline: none;
    border-color: #b99d75;
    box-shadow: 0 0 8px rgba(185, 157, 117, 0.3);
}

.wedding-booking-form input::placeholder,
.wedding-booking-form textarea::placeholder {
    color: #999;
}

.wedding-booking-form textarea {
    resize: vertical;
    min-height: 100px;
}

.wedding-booking-form .checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 5px;
}

.wedding-booking-form .checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    font-weight: 400;
    font-size: 15px;
}

.wedding-booking-form .checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    margin: 0;
    flex-shrink: 0;
    accent-color: #b99d75;
    pointer-events: auto;
}



.wedding-booking-form .checkbox-label span {
    user-select: none;
    color: #555;
    pointer-events: none;
}

.wedding-booking-form .checkbox-label.newsletter {
    margin-bottom: 10px;
}

.wedding-booking-form .privacy-link {
    color: #777;
    text-decoration: underline;
    font-size: 14px;
    transition: color 0.2s;
}

.wedding-booking-form .privacy-link:hover {
    color: #b99d75;
}

.wedding-booking-form .form-actions {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.wedding-booking-form .btn-submit {
    background: linear-gradient(135deg, #b99d75 0%, #a68a5f 100%);
    color: #fff;
    border: none;
    padding: 18px 70px;
    font-size: 17px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    box-shadow: 0 4px 15px rgba(185, 157, 117, 0.4);
}

.wedding-booking-form .btn-submit:hover {
    background: linear-gradient(135deg, #a68a5f 0%, #8f7548 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(185, 157, 117, 0.5);
}

.wedding-booking-form .btn-submit:disabled {
    background-color: #ccc;
    cursor: not-allowed;
}

.wedding-booking-form .form-messages {
    margin-top: 20px;
}

.wedding-booking-form .message {
    padding: 12px 15px;
    border-radius: 4px;
    margin-bottom: 10px;
}

.wedding-booking-form .success-message {
    background-color: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.wedding-booking-form .error-message {
    background-color: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stanektech-wedding-widget {
        padding: 30px 15px;
    }
    
    .wedding-widget-header .widget-title {
        font-size: 28px;
        letter-spacing: 1px;
    }
    
    .wedding-widget-header .widget-subtitle {
        font-size: 16px;
    }
    
    .wedding-widget-description {
        font-size: 14px;
    }
    
    .wedding-calendar-container {
        padding: 20px 15px;
    }
    
    .wedding-calendar-container .calendar-header {
        flex-direction: row;
        gap: 10px;
    }
    
    .wedding-calendar-container .calendar-month-year {
        font-size: 20px;
    }
    
    .wedding-calendar-container .calendar-nav {
        font-size: 13px;
        padding: 8px 15px;
    }
    
    .wedding-calendar-container .calendar-days {
        gap: 8px;
    }
    
    .wedding-calendar-container .calendar-day {
        font-size: 15px;
    }
    
    .wedding-booking-modal {
        padding: 10px;
    }
    
    .wedding-booking-modal .modal-content {
        width: 98%;
        max-height: 92vh;
        border-radius: 10px;
    }
    
    .wedding-booking-modal .modal-header,
    .wedding-booking-modal .modal-body {
        padding: 25px 20px;
    }
    
    .wedding-booking-modal .modal-title {
        font-size: 24px;
        letter-spacing: 1px;
    }
    
    .wedding-booking-modal .modal-close {
        top: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .wedding-booking-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .wedding-booking-form .btn-submit {
        padding: 15px 50px;
        font-size: 15px;
        letter-spacing: 1.5px;
    }
}

@media (max-width: 480px) {
    .wedding-widget-header .widget-title {
        font-size: 24px;
    }
    
    .wedding-calendar-container .calendar-weekdays,
    .wedding-calendar-container .calendar-days {
        gap: 5px;
    }
    
    .wedding-calendar-container .calendar-day {
        font-size: 14px;
    }
    
    .wedding-booking-modal .modal-header,
    .wedding-booking-modal .modal-body {
        padding: 20px 15px;
    }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
    .stanektech-booking-widget {
        box-shadow: none;
        border: 1px solid #000;
    }
    
    .booking-submit-btn {
        display: none;
    }
    
    .calendar-widget {
        page-break-inside: avoid;
    }
}