/* ========================================
   SHOP MODAL STYLES - shop-modal.css
   Size selection modal for shop products
   ======================================== */

/* Size Selection Modal */
#sizeModal .modal {
    max-width: 450px;
}

.modal-title {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-style: italic;
    margin-bottom: 8px;
    text-align: center;
}

.modal-price {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

.size-label {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 15px;
    display: block;
}

.size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 30px;
}

.size-option {
    flex: 1;
    min-width: 60px;
    padding: 12px 8px;
    border: 2px solid var(--text-dark);
    border-radius: 8px;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
}

.size-option:hover {
    background: rgba(0,0,0,0.05);
}

.size-option.selected {
    background: var(--text-dark);
    color: var(--bg-cream);
}

.modal-add-btn {
    width: 100%;
    background: var(--text-dark);
    color: var(--bg-cream);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 16px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.modal-add-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.2);
}

.modal-add-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}