/* =============================================
   Leonard Legal, P.A. — Chat Widget
   Brand: #8b1a1a burgundy | #1a2744 navy | #f5f0eb cream | #ffffff white
   ============================================= */

.chatbot-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: transparent !important;
}

.chatbot-backdrop {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0,0,0,0.5) !important;
    z-index: 9998;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.chatbot-backdrop.active {
    opacity: 1;
    pointer-events: all;
}

/* Trigger Button */
.chatbot-trigger {
    position: relative;
    height: 52px;
    padding: 0 20px 0 16px;
    border-radius: 26px;
    background: #ffffff !important;
    border: 2px solid #8b1a1a;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15), 0 0 0 0 rgba(139,26,26,0);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #1a1a1a !important;
    font-family: 'Outfit', sans-serif;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    white-space: nowrap;
    transition: all 0.3s ease;
    animation: chatPulse 3s ease-in-out infinite;
}
@keyframes chatPulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(0,0,0,0.15), 0 0 0 0 rgba(139,26,26,0.5); }
    50%       { box-shadow: 0 4px 20px rgba(0,0,0,0.15), 0 0 0 8px rgba(139,26,26,0); }
}
.chatbot-trigger:hover {
    background: #8b1a1a !important;
    border-color: #8b1a1a;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(139,26,26,0.4);
    animation: none;
}
.chatbot-trigger.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0);
}
.chatbot-trigger__icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: inherit;
    transition: color 0.3s;
}
.chatbot-trigger__label { line-height: 1; }

/* Badge */
.chatbot-badge {
    position: absolute;
    top: -5px; right: -5px;
    background: #8b1a1a !important;
    color: #ffffff !important;
    font-size: 11px;
    font-weight: 700;
    width: 20px; height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
}

/* Chat Window */
.chatbot-window {
    position: fixed;
    bottom: 20px; right: 20px;
    width: 380px;
    max-width: calc(100vw - 40px);
    height: 600px;
    max-height: calc(100vh - 40px);
    background: #ffffff !important;
    border-radius: 16px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.22);
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: scale(0.85) translateY(20px);
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    overflow: hidden;
}
.chatbot-window.size-small  { width: 380px; height: 600px; }
.chatbot-window.size-medium { width: 760px; height: 600px; }
.chatbot-window.size-large  { width: 80vw; height: 90vh; top: 50%; left: 50%; right: auto; bottom: auto; transform: translate(-50%, -50%); }
.chatbot-window.size-large.open { transform: translate(-50%, -50%) scale(1); }
.chatbot-window.open { opacity: 1; transform: scale(1) translateY(0); pointer-events: all; }

/* Header */
.chatbot-header {
    background: #8b1a1a !important;
    color: #ffffff !important;
    padding: 16px 20px;
    border-radius: 16px 16px 0 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-shrink: 0;
}
.chatbot-header-left { display: flex; align-items: center; gap: 12px; }
.chatbot-logo {
    width: 40px; height: 40px;
    border-radius: 6px;
    background: rgba(255,255,255,0.15) !important;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.chatbot-logo svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
}
.chatbot-header-text h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #ffffff !important;
    font-family: 'Playfair Display', serif;
    letter-spacing: 0.02em;
}
.chatbot-status {
    font-size: 11px;
    color: rgba(255,255,255,0.7) !important;
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Outfit', sans-serif;
}
.status-dot {
    width: 6px; height: 6px;
    background: #4ade80 !important;
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
.chatbot-header-actions { display: flex; gap: 4px; }
.chatbot-minimize,
.chatbot-close {
    background: transparent !important;
    border: none;
    width: 30px; height: 30px;
    border-radius: 50%;
    color: rgba(255,255,255,0.7) !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
}
.chatbot-minimize:hover,
.chatbot-close:hover {
    background: rgba(255,255,255,0.15) !important;
    color: #ffffff !important;
}

/* Body */
.chatbot-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #f9f7f5 !important;
    position: relative;
    overflow: hidden;
}

/* Welcome Screen */
.chatbot-welcome { text-align: center; padding: 24px 20px; }
.chatbot-welcome h4 {
    margin: 0 0 8px;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a !important;
    font-family: 'Playfair Display', serif;
}
.chatbot-welcome p {
    margin: 0 0 20px;
    color: #3a3a3a !important;
    font-size: 0.9rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
}
.welcome-suggestions { display: flex; flex-direction: column; gap: 8px; margin-top: 16px; }
.suggestion-btn {
    background: #ffffff !important;
    border: 1px solid #8b1a1a;
    padding: 12px 16px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 13px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    text-align: left;
    color: #1a1a1a !important;
}
.suggestion-btn:hover {
    background: #8b1a1a !important;
    border-color: #8b1a1a;
    color: #ffffff !important;
    transform: translateX(4px);
}

/* Messages */
.chatbot-messages {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 20px;
    background: #f9f7f5 !important;
}
.chatbot-messages::-webkit-scrollbar { width: 6px; }
.chatbot-messages::-webkit-scrollbar-track { background: #f9f7f5 !important; }
.chatbot-messages::-webkit-scrollbar-thumb { background: #8b1a1a !important; border-radius: 4px; }
.messages-container { display: flex; flex-direction: column; gap: 16px; }
.messages-spacer { height: 18px; flex-shrink: 0; }

.message { display: flex; gap: 12px; animation: slideIn 0.3s ease; }
@keyframes slideIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}
.message-avatar {
    width: 32px; height: 32px;
    border-radius: 50%;
    background: #1a2744 !important;
    color: #ffffff !important;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    flex-shrink: 0;
    font-family: 'Outfit', sans-serif;
    border: 1px solid #8b1a1a;
}
.message.user .message-avatar {
    background: #8b1a1a !important;
    color: #ffffff !important;
    border-color: #8b1a1a;
}
.message-content {
    flex: 1;
    background: #ffffff !important;
    padding: 12px 16px;
    border-radius: 12px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    line-height: 1.6;
    font-size: 14px;
    color: #1a1a1a !important;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
}
.message.user .message-content {
    background: #1a2744 !important;
    color: #ffffff !important;
}

/* AI Content */
.message-content div, .message-content .ai-response { color: inherit; background: transparent !important; }
.message-content h1,.message-content h2,.message-content h3,
.message-content h4,.message-content h5,.message-content h6 {
    color: #1a1a1a !important;
    margin: 0.75rem 0 0.4rem;
    font-weight: 700;
    font-family: 'Playfair Display', serif;
}
.message-content h3 { font-size: 1.1em; }
.message-content h4 { font-size: 1em; }
.message-content p { color: #1a1a1a !important; margin: 0.4rem 0; line-height: 1.6; }
.message-content ul, .message-content ol { color: #1a1a1a !important; margin: 0.4rem 0; padding-left: 1.5rem; }
.message-content li { color: #1a1a1a !important; margin: 0.2rem 0; }
.message-content a { color: #8b1a1a !important; text-decoration: underline; }
.message-content a:hover { color: #1a1a1a !important; }
.message-content strong, .message-content b { color: #1a1a1a !important; font-weight: 700; }
.message-content em, .message-content i { color: #1a1a1a !important; }
.message-content blockquote { background: #f5f0eb !important; color: #5a5a5a !important; border-left: 3px solid #8b1a1a; padding: 0.75rem 1rem; margin: 0.75rem 0; border-radius: 0 6px 6px 0; }
.message-content hr { border: none; border-top: 1px solid #f5f0eb; margin: 1rem 0; }
.message-content span { color: inherit; }

/* Images in AI responses */
.message-content img { max-width: 100%; height: auto; display: block; border-radius: 8px; margin: 0; box-shadow: 0 2px 8px rgba(0,0,0,0.1); }
.message-content .image-container { max-width: 350px; margin: 0.75rem 0; }
.message-content .image-container img { max-width: 100%; width: 100%; }
.message-content .images-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; margin: 1rem 0; }
.message-content .images-grid .image-container { flex: 1 1 calc(50% - 0.5rem); min-width: 140px; max-width: 280px; margin: 0; }
.message-content .image-text-flex { display: flex; flex-direction: column; gap: 1rem; margin: 1rem 0; }

/* Responsive image sizing per chat window size */
.chatbot-window.size-small .message-content .image-container { max-width: 100%; }
.chatbot-window.size-small .message-content .images-grid .image-container { flex: 1 1 100%; max-width: 100%; }
.chatbot-window.size-medium .message-content .image-container { max-width: 300px; }
.chatbot-window.size-medium .message-content .image-text-flex,
.chatbot-window.size-large .message-content .image-text-flex { flex-direction: row; align-items: flex-start; }
.chatbot-window.size-medium .message-content .image-text-flex img,
.chatbot-window.size-large .message-content .image-text-flex img { max-width: 250px; flex-shrink: 0; }

/* Follow-up Suggestion Chips (inside AI responses) */
.message-content .follow-up-suggestions { margin-top: 1rem; }
.message-content .suggestions-prompt {
    font-size: 0.78rem;
    font-weight: 600;
    color: #5a5a5a !important;
    margin-bottom: 0.5rem;
    font-family: 'Outfit', sans-serif;
}
.message-content .suggestion-chips-container {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}
.message-content .suggestion-chip {
    background: #ffffff !important;
    border: 1px solid #8b1a1a;
    color: #1a1a1a !important;
    padding: 6px 14px;
    border-radius: 16px;
    cursor: pointer;
    font-size: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    transition: all 0.2s;
    white-space: nowrap;
}
.message-content .suggestion-chip:hover {
    background: #8b1a1a !important;
    color: #ffffff !important;
    border-color: #8b1a1a;
}

/* Service cards inside AI responses */
.message-content .service-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin: 0.75rem 0;
}
.message-content .service-card {
    background: #f9f7f5 !important;
    border: 1px solid #f5f0eb;
    border-radius: 8px;
    padding: 0.75rem;
    flex: 1 1 calc(50% - 0.5rem);
    min-width: 140px;
    max-width: 200px;
}
.message-content .service-icon {
    font-size: 1.5rem;
    margin-bottom: 0.25rem;
}
.message-content .service-info h3 {
    font-size: 0.8rem !important;
    margin: 0 0 0.15rem 0;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    color: #1a1a1a !important;
}
.message-content .service-category {
    font-size: 0.65rem;
    color: #8b1a1a !important;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin: 0 0 0.25rem 0;
    font-weight: 600;
}
.message-content .service-description {
    font-size: 0.78rem;
    color: #5a5a5a !important;
    line-height: 1.5;
    margin: 0;
}

/* User message text always white */
.message.user .message-content h1,.message.user .message-content h2,
.message.user .message-content h3,.message.user .message-content h4,
.message.user .message-content p,.message.user .message-content li,
.message.user .message-content strong,.message.user .message-content em,
.message.user .message-content span,.message.user .message-content div,
.message.user .message-content a { color: #ffffff !important; }

/* Scroll to Bottom */
.scroll-to-bottom {
    position: absolute;
    bottom: 80px; right: 20px;
    width: 36px; height: 36px;
    background: #ffffff !important;
    border: 1px solid #8b1a1a;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.2s;
    color: #8b1a1a !important;
}
.scroll-to-bottom:hover { background: #8b1a1a !important; color: #ffffff !important; }
.scroll-to-bottom.hidden { opacity: 0; pointer-events: none; }

/* Footer */
.chatbot-footer {
    padding: 14px 16px;
    background: #ffffff !important;
    border-top: 1px solid #f5f0eb;
    border-radius: 0 0 16px 16px;
    flex-shrink: 0;
}
.chatbot-suggestions { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 10px; }
.chatbot-form { display: flex; gap: 8px; align-items: flex-end; }

.chatbot-input {
    flex: 1;
    border: 1.5px solid #f5f0eb;
    border-radius: 22px;
    padding: 10px 16px;
    font-size: 14px;
    font-family: 'Outfit', sans-serif;
    font-weight: 400;
    color: #1a1a1a !important;
    background: #f9f7f5 !important;
    resize: none;
    outline: none;
    transition: border-color 0.2s, box-shadow 0.2s;
    max-height: 120px;
    line-height: 1.4;
}
.chatbot-input:focus {
    border-color: #8b1a1a;
    box-shadow: 0 0 0 3px rgba(139,26,26,0.08);
}
.chatbot-input::placeholder { color: rgba(26,26,26,0.35); }

.chatbot-send {
    width: 40px; height: 40px;
    background: #8b1a1a !important;
    border: none;
    border-radius: 50%;
    color: #ffffff !important;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s, transform 0.2s;
}
.chatbot-send:hover {
    background: #6b1010 !important;
    transform: scale(1.05);
}

.chatbot-branding {
    text-align: center;
    padding: 6px 0 2px;
    font-size: 10px;
    color: rgba(26,26,26,0.3);
    font-family: 'Outfit', sans-serif;
}
.chatbot-branding a {
    color: rgba(26,26,26,0.45);
    text-decoration: none;
}
.chatbot-branding a:hover { color: #8b1a1a; }

/* Suggestion Chips */
.chatbot-suggestions .suggestion-chip {
    background: #ffffff !important;
    border: 1px solid #e8dfd6;
    padding: 6px 14px;
    border-radius: 16px;
    cursor: pointer;
    font-size: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    color: #1a1a1a !important;
    transition: all 0.2s;
    white-space: nowrap;
}
.chatbot-suggestions .suggestion-chip:hover {
    background: #8b1a1a !important;
    color: #ffffff !important;
    border-color: #8b1a1a;
}

/* Mobile */
@media (max-width: 768px) {
    /* Only fullscreen when OPEN — not when closed */
    .chatbot-window.open,
    .chatbot-window.open.size-small,
    .chatbot-window.open.size-medium,
    .chatbot-window.open.size-large {
        width: 100vw !important;
        height: 100dvh !important;
        max-width: 100vw !important;
        max-height: 100dvh !important;
        bottom: 0 !important;
        right: 0 !important;
        top: 0 !important;
        left: 0 !important;
        border-radius: 0 !important;
        position: fixed !important;
        transform: none !important;
        opacity: 1 !important;
        pointer-events: all !important;
    }

    .chatbot-header { border-radius: 0; padding: 12px 16px; }
    .chatbot-footer { border-radius: 0; padding: 10px 12px; }
    .chatbot-messages { padding: 12px; }
    .chatbot-minimize { display: none !important; }
    .messages-container { gap: 12px; }
    .message-avatar { width: 28px; height: 28px; font-size: 9px; }
    .message-content { font-size: 13px; padding: 10px 14px; }
    .chatbot-input { font-size: 16px; padding: 8px 14px; } /* 16px prevents iOS zoom */

    /* Trigger button — above mobile bottom nav, visible and tappable */
    .chatbot-trigger {
        bottom: 75px !important;
        right: 16px !important;
        height: 48px;
        padding: 0 16px 0 14px;
        font-size: 0.7rem;
        z-index: 9999 !important;
    }
    .chatbot-trigger.hidden {
        opacity: 0 !important;
        pointer-events: none !important;
        transform: scale(0) !important;
    }
    .chatbot-trigger__icon { width: 20px; height: 20px; }

    .chatbot-welcome h4 { font-size: 16px; }
    .chatbot-welcome p { font-size: 0.82rem; }
    .suggestion-btn { font-size: 12px; padding: 10px 14px; }
    .message-content .image-container { max-width: 100% !important; }
    .message-content .images-grid .image-container { flex: 1 1 100% !important; max-width: 100% !important; }
    .message-content .image-text-flex { flex-direction: column !important; }
    .message-content .follow-up-suggestions { margin-top: 0.75rem; }
    .message-content .suggestion-chip { font-size: 11px; padding: 5px 10px; }
}

/* =============================================
   Payment Modal (fullscreen overlay)
   ============================================= */
.chat-payment-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: rgba(0,0,0,0.6);
}
.chat-payment-modal__overlay {
    display: none;
}
.chat-payment-modal__content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 420px;
    box-shadow: 0 12px 48px rgba(0,0,0,0.25);
    overflow: hidden;
    margin: 3rem auto;
}
.chat-payment-modal__header {
    background: #8b1a1a;
    color: #fff;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.chat-payment-modal__header h3 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: #fff !important;
}
.chat-payment-modal__close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 24px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
}
.chat-payment-modal__close:hover { color: #fff; }
.chat-payment-modal__body {
    padding: 20px;
}
.chat-payment-modal__amount {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 4px;
}
.chat-payment-modal__desc {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    color: #5a5a5a;
    text-align: center;
    margin: 0 0 16px;
}
#chatStripeElement {
    padding: 12px;
    border: 1px solid #e8dfd6;
    margin-bottom: 12px;
    min-height: 50px;
}
.chat-payment-modal__error {
    color: #dc3545;
    font-size: 0.8rem;
    font-family: 'Outfit', sans-serif;
    min-height: 20px;
    text-align: center;
}
.chat-payment-modal__footer {
    padding: 0 20px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.chat-payment-modal__pay {
    background: #8b1a1a;
    color: #fff;
    border: none;
    padding: 12px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: background 0.2s;
}
.chat-payment-modal__pay:hover { background: #6b1010; }
.chat-payment-modal__pay:disabled { background: #999; cursor: wait; }
.chat-payment-modal__cancel {
    background: none;
    border: 1px solid #e8dfd6;
    padding: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.8rem;
    color: #5a5a5a;
    cursor: pointer;
    transition: all 0.2s;
}
.chat-payment-modal__cancel:hover { border-color: #8b1a1a; color: #8b1a1a; }

@media (max-width: 768px) {
    .chat-payment-modal__content {
        width: 95%;
        max-width: none;
        margin: 0 10px;
    }
}

/* =============================================
   AI Disclaimer / Terms Acceptance Modal
   ============================================= */
.ll-disclaimer-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99998;
    overflow-y: auto;
    background: rgba(0,0,0,0.6);
}
.ll-disclaimer-modal__content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 460px;
    margin: 3rem auto;
    box-shadow: 0 12px 48px rgba(0,0,0,0.25);
    overflow: hidden;
}
.ll-disclaimer-modal__header {
    background: #1a2744;
    color: #fff;
    padding: 18px 24px;
}
.ll-disclaimer-modal__header h3 {
    margin: 0;
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    color: #fff !important;
}
.ll-disclaimer-modal__body {
    padding: 20px 24px;
}
.ll-disclaimer-modal__body p {
    font-family: 'Outfit', sans-serif;
    font-size: 0.88rem;
    color: #1a1a1a;
    line-height: 1.6;
    margin: 0 0 12px;
}
.ll-disclaimer-modal__body ul {
    padding-left: 18px;
    margin: 0 0 16px;
}
.ll-disclaimer-modal__body li {
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    color: #5a5a5a;
    line-height: 1.7;
    margin-bottom: 6px;
}
.ll-disclaimer-modal__body li strong {
    color: #1a1a1a;
}
.ll-disclaimer-modal__checkbox {
    padding: 14px 16px;
    background: #f9f7f5;
    border: 1px solid #e8dfd6;
    border-radius: 6px;
    margin-top: 8px;
}
.ll-disclaimer-modal__checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    color: #1a1a1a;
    line-height: 1.5;
}
.ll-disclaimer-modal__checkbox input[type="checkbox"] {
    margin-top: 3px;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    accent-color: #8b1a1a;
}
.ll-disclaimer-modal__footer {
    padding: 0 24px 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.ll-disclaimer-modal__accept {
    background: #8b1a1a;
    color: #fff;
    border: none;
    padding: 13px;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    border-radius: 4px;
    transition: background 0.2s;
}
.ll-disclaimer-modal__accept:hover:not(:disabled) { background: #6b1010; }
.ll-disclaimer-modal__accept:disabled { background: #ccc; cursor: not-allowed; color: #888; }
.ll-disclaimer-modal__decline {
    background: none;
    border: 1px solid #e8dfd6;
    padding: 11px;
    font-family: 'Outfit', sans-serif;
    font-size: 0.82rem;
    color: #5a5a5a;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
}
.ll-disclaimer-modal__decline:hover { border-color: #8b1a1a; color: #8b1a1a; }

@media (max-width: 768px) {
    .ll-disclaimer-modal__content {
        width: 95%;
        margin: 1.5rem auto;
    }
    .ll-disclaimer-modal__body { padding: 16px 20px; }
    .ll-disclaimer-modal__footer { padding: 0 20px 16px; }
}
