/* Shop Scheduler — Schedule CTA widget */
.nl-schedule-cta {
    margin: 24px auto;
    font-family: 'Oswald', 'Barlow Condensed', 'Helvetica Neue', Arial, sans-serif;
}

.nl-schedule-cta--dark {
    background: linear-gradient(135deg, #0f1115 0%, #1a1d24 100%);
    color: #e6e6e6;
    padding: 48px 24px;
    border-radius: 8px;
    border: 1px solid #23272f;
}

.nl-schedule-cta--light {
    background: #f7f7f8;
    color: #111;
    padding: 48px 24px;
    border-radius: 8px;
    border: 1px solid #e5e7eb;
}

.nl-schedule-cta--minimal {
    background: transparent;
    padding: 8px 0;
    text-align: center;
}

.nl-schedule-cta__inner {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.nl-schedule-cta__heading {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin: 0 0 12px;
    color: inherit;
}

.nl-schedule-cta__subheading {
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 24px;
    opacity: 0.85;
    color: inherit;
}

.nl-schedule-cta__actions {
    margin-bottom: 24px;
}

.nl-schedule-cta__btn {
    display: inline-block;
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 4px;
    transition: transform 0.15s ease, background-color 0.15s ease, box-shadow 0.15s ease;
    cursor: pointer;
}

.nl-schedule-cta__btn--primary {
    background-color: var(--theme-color, #e63946);
    color: #fff;
    border: 0;
}

.nl-schedule-cta__btn--primary:hover,
.nl-schedule-cta__btn--primary:focus {
    background-color: #c92e3b;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(230, 57, 70, 0.3);
}

.nl-schedule-cta__types {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 0;
    padding: 0;
}

.nl-schedule-cta__type a {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid currentColor;
    transition: background-color 0.15s ease, color 0.15s ease;
}

.nl-schedule-cta--dark .nl-schedule-cta__type a {
    color: #e6e6e6;
    border-color: #3a3f48;
}

.nl-schedule-cta--dark .nl-schedule-cta__type a:hover {
    background-color: var(--theme-color, #e63946);
    border-color: var(--theme-color, #e63946);
    color: #fff;
}

.nl-schedule-cta--light .nl-schedule-cta__type a {
    color: #111;
    border-color: #d0d4dc;
}

.nl-schedule-cta--light .nl-schedule-cta__type a:hover {
    background-color: var(--theme-color, #e63946);
    border-color: var(--theme-color, #e63946);
    color: #fff;
}

@media (max-width: 600px) {
    .nl-schedule-cta--dark,
    .nl-schedule-cta--light {
        padding: 32px 16px;
    }

    .nl-schedule-cta__types {
        flex-direction: column;
        align-items: stretch;
    }
}
