/*
Theme Name: Elessi Theme Child
Theme URI: https://elessi.nasatheme.com/demo/
Description: This is a child theme for Elessi Theme
Author: NasaTheme team
Author URI: https://nasatheme.com
Template: elessi-theme
Version: 1.0
*/


/*************** ADD YOUR CUSTOM CSS IN THIS AREA ***************/
/* Mesaje personalizate stoc și precomandă */
.custom-stock-msg {
    padding: 12px 18px;
    margin: 15px 0;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

/* Stoc pozitiv – verde */
.custom-stock-msg.stock-available {
    background-color: #e6f4ea;
    border: 2px solid #4caf50;
    color: #2e7d32;
}

.custom-stock-msg.stock-available::before {
    content: "🟢";
    margin-right: 10px;
}

/* Precomandă – portocaliu */
.custom-stock-msg.backorder {
    background-color: #fff8e1;
    border: 2px solid #ff9800;
    color: #e65100;
}

.custom-stock-msg.backorder::before {
    content: "⏳";
    margin-right: 10px;
}

/* Produs indisponibil – gri */
.custom-stock-msg.out-of-stock {
    background-color: #f5f5f5;
    border: 2px solid #b0bec5;
    color: #546e7a;
}

.custom-stock-msg.out-of-stock::before {
    content: "❌";
    margin-right: 10px;
}
