/* ========================================
   AI MODAL STYLES - ai-modal.css
   Product modals for AI sessions page
   ======================================== */

/* AI Session Modals */
#purpleModal .modal,
#greenModal .modal {
    max-width: 600px;
    max-height: 85vh;
    overflow-y: auto;
    scroll-behavior: smooth;
}

/* Scrollbar styling */
#purpleModal .modal::-webkit-scrollbar,
#greenModal .modal::-webkit-scrollbar {
    width: 8px;
}

#purpleModal .modal::-webkit-scrollbar-track,
#greenModal .modal::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
}

#purpleModal .modal::-webkit-scrollbar-thumb,
#greenModal .modal::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

#purpleModal .modal::-webkit-scrollbar-thumb:hover,
#greenModal .modal::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.3);
}

/* Firefox scrollbar */
#purpleModal .modal,
#greenModal .modal {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 0, 0, 0.2) rgba(0, 0, 0, 0.05);
}

.modal-title {
    font-family: 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.modal-title .flower {
    font-size: 18px;
}

.modal-price {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-style: italic;
    color: var(--text-dark);
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.1);
}

.modal-section {
    margin-bottom: 25px;
}

.modal-section-title {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 12px;
    color: #666;
}

.modal-list {
    list-style: none;
    padding: 0;
}

.modal-list li {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    line-height: 1.7;
    padding-left: 20px;
    position: relative;
    margin-bottom: 8px;
}

.modal-list li::before {
    content: '✿';
    position: absolute;
    left: 0;
    font-size: 12px;
    opacity: 0.6;
}

.modal-text {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    line-height: 1.8;
}

/* Purple modal highlight (was yellow) */
.modal-highlight {
    font-style: italic;
    background: linear-gradient(to bottom, transparent 60%, rgba(180, 160, 220, 0.4) 60%);
}

.shopify-buy-button {
    margin-top: 30px;
    text-align: center;
}

/* Green modal specific */
.modal-green .modal-list li::before {
    content: '◆';
}

.modal-green .modal-highlight {
    background: linear-gradient(to bottom, transparent 60%, rgba(140, 200, 170, 0.5) 60%);
}

/* Desktop modal adjustments */
@media (min-width: 768px) {
    #purpleModal .modal,
    #greenModal .modal {
        padding: 50px;
    }

    .modal-title {
        font-size: 24px;
    }

    .modal-price {
        font-size: 32px;
    }

    .modal-list li {
        font-size: 17px;
    }
}