/* Product Detail Overlay — Form & messages */

/* ================== ERROR MESSAGE ================== */
.error-message {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 600px;
    padding: 1rem;
    background: #ffe5e5;
    color: #b30000;
    border-left: 6px solid #b30000;
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    z-index: 10002;
}
