/* Mensaje en Ficha de Producto Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;600&display=swap');

.mfp-message-container {
    margin: 30px 0;
    font-family: 'Outfit', sans-serif;
    clear: both;
}

.mfp-message-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #F9F7F5; /* var(--em-bg) */
    border: 1px solid #A6886A; /* var(--em-secondary) */
    padding: 20px 25px;
    border-radius: 12px;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(166, 136, 106, 0.05);
}

.mfp-message-link:hover {
    background-color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(166, 136, 106, 0.15);
    border-color: #5c2a1d; /* var(--em-primary) */
}

.mfp-message-content {
    color: #232323; /* var(--em-text) */
    font-size: 1.05rem;
    line-height: 1.5;
    font-weight: 400;
    flex: 1;
}

/* If user uses text-align: center, ensure flex doesn't break it */
.mfp-message-content > div[style*="text-align:center"],
.mfp-message-content > div[style*="text-align: center"] {
    width: 100%;
}

.mfp-message-arrow {
    color: #A6886A;
    margin-left: 20px;
    transition: transform 0.3s ease;
}

.mfp-message-link:hover .mfp-message-arrow {
    transform: translateX(5px);
    color: #5c2a1d;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .mfp-message-link {
        padding: 15px 20px;
    }
    
    .mfp-message-content {
        font-size: 0.95rem;
    }
}
