/**
 * Agenda Online - Elegant & Sophisticated Styles
 * High contrast, refined design system
 */

/* ============================
   CSS VARIABLES - Enhanced Palette
   ============================ */
:root {
    /* Primary - Deep Indigo with better contrast */
    --ao-primary: #4f46e5;
    --ao-primary-light: #6366f1;
    --ao-primary-dark: #3730a3;
    --ao-primary-subtle: rgba(79, 70, 229, 0.08);
    --ao-primary-glow: rgba(79, 70, 229, 0.25);

    /* Semantic Colors - Higher contrast */
    --ao-success: #059669;
    --ao-success-light: #d1fae5;
    --ao-success-dark: #047857;
    --ao-warning: #d97706;
    --ao-danger: #dc2626;
    --ao-danger-light: #fef2f2;

    /* Neutrals - Refined gray scale */
    --ao-white: #ffffff;
    --ao-gray-25: #fcfcfd;
    --ao-gray-50: #f9fafb;
    --ao-gray-100: #f3f4f6;
    --ao-gray-200: #e5e7eb;
    --ao-gray-300: #d1d5db;
    --ao-gray-400: #9ca3af;
    --ao-gray-500: #6b7280;
    --ao-gray-600: #4b5563;
    --ao-gray-700: #374151;
    --ao-gray-800: #1f2937;
    --ao-gray-900: #111827;

    /* Shadows - Layered depth */
    --ao-shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --ao-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --ao-shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.07), 0 2px 4px -1px rgba(0, 0, 0, 0.04);
    --ao-shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --ao-shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.08), 0 10px 10px -5px rgba(0, 0, 0, 0.03);
    --ao-shadow-inner: inset 0 2px 4px rgba(0, 0, 0, 0.04);
    --ao-shadow-focus: 0 0 0 3px var(--ao-primary-glow);

    /* Border Radius */
    --ao-radius-xs: 4px;
    --ao-radius-sm: 6px;
    --ao-radius-md: 8px;
    --ao-radius-lg: 12px;
    --ao-radius-xl: 16px;

    /* Transitions */
    --ao-ease-out: cubic-bezier(0.33, 1, 0.68, 1);
    --ao-ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --ao-transition-fast: 120ms var(--ao-ease-out);
    --ao-transition-base: 200ms var(--ao-ease-out);
    --ao-transition-slow: 300ms var(--ao-ease-in-out);
}

/* ============================
   ANIMATIONS
   ============================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(12px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.6; }
}

@keyframes checkDraw {
    to { stroke-dashoffset: 0; }
}

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* ============================
   FORM CONTAINER
   ============================ */
.agenda-booking-form {
    background: var(--ao-white);
    padding: 24px;
    border-radius: var(--ao-radius-xl);
    box-shadow: var(--ao-shadow-lg), 0 0 0 1px rgba(0, 0, 0, 0.03);
    max-width: 480px;
    margin: 0 auto;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    position: relative;
    animation: fadeInUp 0.4s var(--ao-ease-out);
}

/* Elegant top accent */
.agenda-booking-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 24px;
    right: 24px;
    height: 3px;
    background: linear-gradient(90deg, var(--ao-primary), var(--ao-primary-light));
    border-radius: 0 0 3px 3px;
}

/* ============================
   HEADER
   ============================ */
.agenda-form-header {
    max-height: 150px;
    overflow: hidden;
    transition: all 0.35s var(--ao-ease-in-out);
    margin-bottom: 20px;
}

.agenda-form-header.hidden {
    max-height: 0;
    opacity: 0;
    margin-bottom: 0;
}

.agenda-form-title {
    margin: 0 0 6px;
    font-size: 20px;
    font-weight: 700;
    color: var(--ao-gray-900);
    text-align: center;
    letter-spacing: -0.4px;
    line-height: 1.3;
}

.agenda-form-description {
    margin: 0;
    color: var(--ao-gray-500);
    text-align: center;
    font-size: 13px;
    line-height: 1.5;
}

/* ============================
   STEP CONTENT
   ============================ */
.agenda-step-content {
    animation: fadeIn 0.3s var(--ao-ease-out);
}

.agenda-step-content[style*="display: none"] {
    display: none !important;
}

/* ============================
   FORM FIELDS
   ============================ */
.agenda-field {
    margin-bottom: 16px;
}

.agenda-field > label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 13px;
    color: var(--ao-gray-700);
    letter-spacing: -0.1px;
}

.agenda-field input[type="text"],
.agenda-field input[type="email"],
.agenda-field input[type="tel"],
.agenda-field select,
.agenda-field textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1.5px solid var(--ao-gray-200);
    border-radius: var(--ao-radius-md);
    font-size: 14px;
    font-weight: 450;
    color: var(--ao-gray-900);
    background: var(--ao-white);
    box-sizing: border-box;
    transition: border-color var(--ao-transition-fast), box-shadow var(--ao-transition-fast);
    -webkit-appearance: none;
}

.agenda-field input::placeholder,
.agenda-field textarea::placeholder {
    color: var(--ao-gray-400);
    font-weight: 400;
}

.agenda-field input:hover,
.agenda-field select:hover,
.agenda-field textarea:hover {
    border-color: var(--ao-gray-300);
}

.agenda-field input:focus,
.agenda-field select:focus,
.agenda-field textarea:focus {
    outline: none;
    border-color: var(--ao-primary);
    box-shadow: var(--ao-shadow-focus);
}

.agenda-field textarea {
    resize: vertical;
    min-height: 80px;
}

/* ============================
   SERVICES LIST
   ============================ */
.agenda-services-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.agenda-service-option {
    cursor: pointer;
    display: block;
}

.agenda-service-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.agenda-service-option .service-card {
    display: block;
    padding: 14px 16px;
    border: 1.5px solid var(--ao-gray-200);
    border-left: 4px solid var(--ao-gray-300);
    border-radius: var(--ao-radius-md);
    background: var(--ao-white);
    transition: all var(--ao-transition-base);
    position: relative;
}

.agenda-service-option:hover .service-card {
    border-color: var(--ao-gray-300);
    border-left-color: var(--ao-primary-light);
    background: var(--ao-gray-25);
    box-shadow: var(--ao-shadow-sm);
}

.agenda-service-option input:checked + .service-card {
    border-color: var(--ao-primary);
    border-left-color: var(--ao-primary);
    background: var(--ao-primary-subtle);
    box-shadow: var(--ao-shadow-focus);
}

.agenda-service-option .service-name {
    display: block;
    font-weight: 600;
    font-size: 14px;
    color: var(--ao-gray-900);
    margin-bottom: 3px;
    letter-spacing: -0.2px;
}

.agenda-service-option .service-desc {
    display: block;
    font-size: 12px;
    color: var(--ao-gray-500);
    margin-bottom: 8px;
    line-height: 1.4;
}

.agenda-service-option .service-meta {
    display: flex;
    align-items: center;
    gap: 12px;
}

.agenda-service-option .service-duration {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    color: var(--ao-gray-600);
    font-weight: 500;
}

.agenda-service-option .service-duration svg {
    width: 14px;
    height: 14px;
    opacity: 0.7;
}

.agenda-service-option .service-price {
    font-weight: 600;
    font-size: 12px;
    color: var(--ao-success-dark);
    background: var(--ao-success-light);
    padding: 3px 10px;
    border-radius: 100px;
}

/* Radio indicator */
.agenda-service-option .service-card::after {
    content: '';
    position: absolute;
    top: 14px;
    right: 14px;
    width: 18px;
    height: 18px;
    border: 2px solid var(--ao-gray-300);
    border-radius: 50%;
    background: var(--ao-white);
    transition: all var(--ao-transition-fast);
}

.agenda-service-option:hover .service-card::after {
    border-color: var(--ao-gray-400);
}

.agenda-service-option input:checked + .service-card::after {
    border-color: var(--ao-primary);
    background: var(--ao-primary);
    box-shadow: inset 0 0 0 3px var(--ao-white);
}

/* ============================
   CALENDAR
   ============================ */
.agenda-calendar {
    background: var(--ao-white);
    border: 1.5px solid var(--ao-gray-200);
    border-radius: var(--ao-radius-md);
    overflow: hidden;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 12px;
    background: var(--ao-gray-50);
    border-bottom: 1px solid var(--ao-gray-200);
    gap: 8px;
}

.calendar-month-year {
    font-weight: 600;
    font-size: 13px;
    color: var(--ao-gray-800);
    flex: 1;
    text-align: center;
    letter-spacing: -0.2px;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 8px 6px 6px;
    background: var(--ao-gray-50);
}

.calendar-weekdays span {
    text-align: center;
    font-size: 10px;
    font-weight: 600;
    color: var(--ao-gray-500);
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    padding: 6px;
    gap: 3px;
    background: var(--ao-white);
}

.calendar-days .day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--ao-radius-xs);
    font-size: 12px;
    font-weight: 500;
    cursor: default;
    transition: all var(--ao-transition-fast);
    position: relative;
    color: var(--ao-gray-700);
}

.calendar-days .day.other-month {
    color: var(--ao-gray-300);
}

.calendar-days .day.disabled {
    color: var(--ao-gray-300);
    cursor: not-allowed;
}

.calendar-days .day.today {
    font-weight: 700;
    color: var(--ao-primary);
}

.calendar-days .day.today::after {
    content: '';
    position: absolute;
    bottom: 2px;
    width: 4px;
    height: 4px;
    background: var(--ao-primary);
    border-radius: 50%;
}

.calendar-days .day.available {
    cursor: pointer;
    color: var(--ao-gray-800);
    background: var(--ao-gray-50);
}

.calendar-days .day.available:hover {
    background: var(--ao-primary);
    color: var(--ao-white);
    font-weight: 600;
}

.calendar-days .day.selected {
    background: var(--ao-primary);
    color: var(--ao-white);
    font-weight: 600;
    box-shadow: 0 2px 4px var(--ao-primary-glow);
}

/* ============================
   TIME SLOTS
   ============================ */
.agenda-time-field {
    animation: fadeIn 0.25s var(--ao-ease-out);
}

.agenda-time-field > label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 13px;
    color: var(--ao-gray-700);
}

.agenda-time-slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
}

@media (max-width: 400px) {
    .agenda-time-slots {
        grid-template-columns: repeat(3, 1fr);
    }
}

.agenda-time-slot {
    padding: 8px 4px;
    text-align: center;
    border: 1.5px solid var(--ao-gray-200);
    border-radius: var(--ao-radius-sm);
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    color: var(--ao-gray-700);
    background: var(--ao-white);
    transition: all var(--ao-transition-fast);
}

.agenda-booking-form .agenda-time-slot:hover {
    border-color: var(--ao-primary) !important;
    color: var(--ao-primary) !important;
    background: var(--ao-primary-subtle) !important;
}

.agenda-booking-form .agenda-time-slot.selected,
.agenda-time-slot.selected {
    background: var(--ao-primary) !important;
    border-color: var(--ao-primary) !important;
    color: var(--ao-white) !important;
    box-shadow: 0 2px 4px var(--ao-primary-glow);
}

.agenda-time-slots .loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 16px;
    color: var(--ao-gray-500);
    font-size: 13px;
}

.agenda-time-slots .loading::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    margin: 0 auto 8px;
    border: 2px solid var(--ao-gray-200);
    border-top-color: var(--ao-primary);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
}

.agenda-time-slots .no-slots {
    grid-column: 1 / -1;
    text-align: center;
    padding: 16px;
    color: var(--ao-gray-500);
    background: var(--ao-gray-50);
    border-radius: var(--ao-radius-sm);
    font-size: 12px;
    border: 1px dashed var(--ao-gray-300);
}

/* ============================
   BOOKING SUMMARY
   ============================ */
.agenda-booking-summary {
    background: var(--ao-gray-50);
    border: 1.5px solid var(--ao-gray-200);
    border-radius: var(--ao-radius-md);
    padding: 14px;
    margin-bottom: 16px;
}

.agenda-booking-summary h4 {
    margin: 0 0 12px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ao-gray-800);
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.agenda-booking-summary h4::before {
    content: '';
    width: 3px;
    height: 14px;
    background: var(--ao-primary);
    border-radius: 2px;
}

.agenda-booking-summary .summary-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.agenda-booking-summary p {
    margin: 0;
    font-size: 13px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 12px;
    background: var(--ao-white);
    border-radius: var(--ao-radius-sm);
    border: 1px solid var(--ao-gray-100);
}

.agenda-booking-summary strong {
    color: var(--ao-gray-500);
    font-weight: 500;
}

.agenda-booking-summary span {
    color: var(--ao-gray-900);
    font-weight: 600;
}

/* ============================
   NAVIGATION & BUTTONS
   ============================ */
.agenda-step-nav {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--ao-gray-100);
}

.agenda-step-nav .agenda-btn:only-child {
    margin-left: auto;
}

.agenda-btn {
    padding: 10px 20px;
    border: none;
    border-radius: var(--ao-radius-md);
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--ao-transition-fast);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    letter-spacing: -0.1px;
}

.agenda-btn-next,
.agenda-submit-btn {
    background: var(--ao-primary);
    color: var(--ao-white);
    box-shadow: var(--ao-shadow-sm), inset 0 1px 0 rgba(255,255,255,0.1);
}

.agenda-btn-next:hover:not(:disabled),
.agenda-submit-btn:hover:not(:disabled) {
    background: var(--ao-primary-dark);
    box-shadow: var(--ao-shadow-md), inset 0 1px 0 rgba(255,255,255,0.1);
    transform: translateY(-1px);
}

.agenda-btn-next:active:not(:disabled),
.agenda-submit-btn:active:not(:disabled) {
    transform: translateY(0);
    box-shadow: var(--ao-shadow-sm);
}

.agenda-btn-prev {
    background: var(--ao-white);
    color: var(--ao-gray-700);
    border: 1.5px solid var(--ao-gray-200);
}

.agenda-btn-prev:hover {
    background: var(--ao-gray-50);
    border-color: var(--ao-gray-300);
    color: var(--ao-gray-800);
}

.agenda-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none !important;
}

.agenda-submit-btn.btn-full-width {
    width: 100%;
}

/* Loading state */
.agenda-submit-btn .btn-loading {
    display: flex;
    align-items: center;
    gap: 8px;
}

.agenda-submit-btn .btn-loading .spinner {
    width: 16px;
    height: 16px;
    animation: spin 0.7s linear infinite;
}

.agenda-submit-btn .btn-loading .spinner circle {
    stroke-dasharray: 80;
    stroke-dashoffset: 60;
    stroke-linecap: round;
}

/* ============================
   SUCCESS MESSAGE
   ============================ */
.agenda-success-message {
    text-align: center;
    padding: 32px 20px;
    animation: scaleIn 0.3s var(--ao-ease-out);
}

.agenda-success-message .success-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 16px;
    background: var(--ao-success-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 8px rgba(5, 150, 105, 0.08);
}

.agenda-success-message .success-icon svg {
    width: 28px;
    height: 28px;
    color: var(--ao-success);
}

.agenda-success-message .success-icon svg path,
.agenda-success-message .success-icon svg polyline {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: checkDraw 0.4s ease-out 0.2s forwards;
}

.agenda-success-message p {
    font-size: 14px;
    color: var(--ao-gray-600);
    margin-bottom: 20px;
    line-height: 1.6;
}

.agenda-new-booking {
    background: var(--ao-white);
    color: var(--ao-gray-700);
    border: 1.5px solid var(--ao-gray-200);
}

.agenda-new-booking:hover {
    background: var(--ao-gray-50);
    border-color: var(--ao-gray-300);
    color: var(--ao-gray-800);
}

/* ============================
   ERROR MESSAGE
   ============================ */
.agenda-error-message {
    background: var(--ao-danger-light);
    border: 1.5px solid #fecaca;
    border-radius: var(--ao-radius-md);
    padding: 12px 14px;
    margin-top: 12px;
    color: var(--ao-danger);
    animation: slideDown 0.25s var(--ao-ease-out);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.agenda-error-message::before {
    content: '!';
    min-width: 18px;
    height: 18px;
    background: var(--ao-danger);
    color: var(--ao-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 11px;
    margin-top: 1px;
}

.agenda-error-message p {
    margin: 0;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
}

/* ============================
   NO SERVICES
   ============================ */
.agenda-no-services {
    text-align: center;
    padding: 40px 20px;
    color: var(--ao-gray-500);
    font-size: 14px;
}

/* ============================
   LAYOUT SINGLE
   ============================ */
.agenda-booking-form.layout-single .agenda-step-content {
    display: block !important;
    border-bottom: 1px solid var(--ao-gray-100);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.agenda-booking-form.layout-single .agenda-step-content:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

.agenda-booking-form.layout-single .agenda-step-nav {
    display: none;
}

.agenda-booking-form.layout-single .agenda-step-content[data-step="3"] .agenda-step-nav {
    display: flex;
    border-top: none;
    padding-top: 0;
}

.agenda-booking-form.layout-single .agenda-btn-prev {
    display: none;
}

/* ============================
   DATETIME PICKER GRID
   ============================ */
.agenda-datetime-picker {
    display: grid;
    gap: 20px;
}

@media (min-width: 768px) {
    .agenda-booking-form.layout-single .agenda-datetime-picker {
        grid-template-columns: 1fr 1fr;
    }
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 600px) {
    .agenda-booking-form {
        padding: 20px 16px;
        margin: 8px;
        border-radius: var(--ao-radius-lg);
    }

    .agenda-booking-form::before {
        left: 16px;
        right: 16px;
    }

    .agenda-form-title {
        font-size: 18px;
    }

    .agenda-form-description {
        font-size: 12px;
    }

    .agenda-service-option .service-card {
        padding: 12px 14px;
    }

    .agenda-service-option .service-card::after {
        top: 12px;
        right: 12px;
        width: 16px;
        height: 16px;
    }

    .agenda-step-nav {
        flex-direction: column;
    }

    .agenda-btn {
        width: 100%;
        padding: 12px 16px;
    }

    .agenda-step-nav .agenda-btn:only-child {
        margin-left: 0;
    }
}

/* ============================
   CALENDAR NAV BUTTONS
   ============================ */
.agenda-booking-form .calendar-nav,
.agenda-booking-form button.calendar-nav {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 28px !important;
    height: 28px !important;
    min-width: 28px !important;
    min-height: 28px !important;
    max-width: 28px !important;
    max-height: 28px !important;
    flex-shrink: 0 !important;
    border: 1.5px solid var(--ao-gray-200) !important;
    background: var(--ao-white) !important;
    border-radius: var(--ao-radius-sm) !important;
    cursor: pointer;
    font-size: 12px !important;
    font-weight: 600;
    color: var(--ao-gray-600) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0 !important;
    margin: 0;
    line-height: 1 !important;
    transition: all var(--ao-transition-fast);
    text-decoration: none !important;
    outline: none;
}

.agenda-booking-form .calendar-nav:hover,
.agenda-booking-form button.calendar-nav:hover {
    background: var(--ao-primary) !important;
    border-color: var(--ao-primary) !important;
    color: var(--ao-white) !important;
}

.agenda-booking-form .calendar-nav:disabled,
.agenda-booking-form button.calendar-nav:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background: var(--ao-gray-50) !important;
    border-color: var(--ao-gray-200) !important;
    color: var(--ao-gray-400) !important;
}

/* ============================
   ELEMENTOR INTEGRATION
   ============================ */
.elementor-widget-agenda-online-booking .agenda-btn-next,
.elementor-widget-agenda-online-booking .agenda-submit-btn {
    background: var(--ao-primary);
}

.elementor-widget-agenda-online-booking .calendar-days .day.available:hover,
.elementor-widget-agenda-online-booking .calendar-days .day.selected {
    background: var(--ao-primary);
}

.elementor-widget-agenda-online-booking .agenda-time-slot:hover {
    border-color: var(--ao-primary) !important;
    color: var(--ao-primary) !important;
    background: var(--ao-primary-subtle) !important;
}

.elementor-widget-agenda-online-booking .agenda-time-slot.selected {
    background: var(--ao-primary) !important;
    border-color: var(--ao-primary) !important;
    color: var(--ao-white) !important;
}

.elementor-widget-agenda-online-booking .agenda-service-option:hover .service-card,
.elementor-widget-agenda-online-booking .agenda-service-option input:checked + .service-card {
    border-color: var(--ao-primary);
}

.elementor-widget-agenda-online-booking .agenda-field input:focus,
.elementor-widget-agenda-online-booking .agenda-field textarea:focus,
.elementor-widget-agenda-online-booking .agenda-field select:focus {
    border-color: var(--ao-primary);
    box-shadow: var(--ao-shadow-focus);
}

.elementor-widget-agenda-online-booking .calendar-days .day.today {
    color: var(--ao-primary);
}

.elementor-widget-agenda-online-booking .calendar-days .day.today::after {
    background: var(--ao-primary);
}
