/* ============================================================
   Smart Booking — contextual conversion card
   Injected site-wide by scripts/inject-smart-booking.js on pages
   that do not ship the full booking widget. Deliberately small and
   self-contained: this file loads on ~135 pages, so it must not
   pull in anything else.
   ============================================================ */

.sb-cta {
    --sb-primary: #1E4B8B;
    --sb-accent: #FFA500;
    --sb-green: #25D366;
    max-width: 46rem;
    margin: 3rem auto;
    padding: 0 1.25rem;
    box-sizing: border-box;
}

.sb-cta-inner {
    background: #fff;
    border: 1px solid #e7e5e4;
    border-radius: 1.5rem;
    padding: 1.75rem 1.5rem;
    box-shadow: 0 10px 30px rgba(28, 25, 23, 0.06);
}

.sb-cta-eyebrow {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--sb-accent);
    margin: 0 0 0.5rem;
}

.sb-cta-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.5rem;
    line-height: 1.25;
    font-weight: 700;
    color: #1c1917;
    margin: 0 0 0.5rem;
}

.sb-cta-blurb {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #57534e;
    margin: 0 0 1rem;
}

.sb-cta-facts {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 1.25rem;
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
}

.sb-cta-facts li {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: #57534e;
}

.sb-cta-facts li::before {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--sb-accent);
    flex: none;
}

.sb-cta-price {
    font-size: 1rem;
    font-weight: 700;
    color: var(--sb-primary);
    margin: 0 0 1.25rem;
}

.sb-cta-price .sb-cta-price-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #78716c;
    display: block;
    margin-bottom: 0.15rem;
}

.sb-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.sb-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-height: 48px;
    padding: 0.85rem 1.35rem;
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
    flex: 1 1 auto;
    text-align: center;
}

.sb-cta-btn:focus-visible {
    outline: 3px solid var(--sb-accent);
    outline-offset: 2px;
}

.sb-cta-btn-primary {
    background: var(--sb-primary);
    color: #fff;
}

.sb-cta-btn-primary:hover {
    background: #163a6d;
    transform: translateY(-1px);
}

.sb-cta-btn-wa {
    background: #fff;
    color: #1c1917;
    border: 1.5px solid #e7e5e4;
}

.sb-cta-btn-wa:hover {
    border-color: var(--sb-green);
    color: #128C4A;
    transform: translateY(-1px);
}

.sb-cta-note {
    margin: 0.9rem 0 0;
    font-size: 0.7rem;
    color: #a8a29e;
    line-height: 1.5;
}

@media (min-width: 640px) {
    .sb-cta-inner {
        padding: 2rem;
    }

    .sb-cta-title {
        font-size: 1.75rem;
    }

    .sb-cta-btn {
        flex: 0 0 auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .sb-cta-btn {
        transition: none;
    }

    .sb-cta-btn:hover {
        transform: none;
    }
}
