/* =========================
   Email suggestions dropdown
   ========================= */

#billing_email_field {
    position: relative;
}

.email-suggestions-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ddd;
    border-top: none;
    border-radius: 0 0 4px 4px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    max-height: 200px;
    overflow-y: auto;
}

.email-suggestion-item {
    padding: 10px 14px;
    cursor: pointer;
    font-size: 14px;
    color: #333;
    border-bottom: 1px solid #f0f0f0;
    transition: background-color 0.15s ease;
}

.email-suggestion-item:last-child {
    border-bottom: none;
}

.email-suggestion-item:hover,
.email-suggestion-item.is-selected {
    background-color: #f5f5f5;
}

.email-suggestion-item.is-selected {
    background-color: #e8f4fd;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .email-suggestion-item {
        padding: 12px 14px;
        font-size: 16px; /* Prevent zoom on iOS */
    }
}
