/* 
Theme Name: Hello Elementor Child
Theme URI: https://github.com/elementor/hello-theme-child/
Description: Hello Elementor Child is a child theme of Hello Elementor, created by Elementor team
Author: Elementor Team
Author URI: https://elementor.com/
Template: hello-elementor
Version: 2.0.0
Text Domain: hello-elementor-child
License: GNU General Public License v3 or later.
License URI: https://www.gnu.org/licenses/gpl-3.0.html
Tags: flexible-header, custom-colors, custom-menu, custom-logo, editor-style, featured-images, rtl-language-support, threaded-comments, translation-ready
*/

/* Add your custom styles here */
/* Import Poppins Font from Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap');

/* Main Notification Container */
.woocommerce-message, 
.woocommerce-info, 
.woocommerce-error {
    font-family: 'Poppins', sans-serif !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
    background-color: #ffffff !important;
    color: #444 !important;
    border: none !important;
    border-radius: 10px !important;
    padding: 15px 25px !important;
    box-shadow: 0 8px 25px rgba(0,0,0,0.06) !important;
    
    display: flex !important;
    align-items: center !important;
    flex-wrap: wrap !important;
    gap: 12px !important;
    margin-bottom: 25px !important;
    position: relative !important;
}

/* Hide default WooCommerce icons to fix the overlap in image_947993.png */
.woocommerce-message::before, 
.woocommerce-info::before, 
.woocommerce-error::before {
    display: none !important;
}

/* Custom Side Border for a Clean Look */
.woocommerce-message { border-left: 5px solid #2ecc71 !important; }
.woocommerce-info { border-left: 5px solid #3498db !important; }
.woocommerce-error { border-left: 5px solid #e74c3c !important; }

/* Styling for the Link/Button (e.g., View Cart) */
.woocommerce-message .button, 
.woocommerce-info .button {
    font-family: 'Poppins', sans-serif !important;
    font-size: 13px !important;
    font-weight: 600 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 18px !important;
    background-color: #222 !important;
    color: #fff !important;
    border-radius: 6px !important;
    margin-left: auto !important; /* Pushes to right */
    transition: all 0.3s ease !important;
    text-decoration: none !important;
}

.woocommerce-message .button:hover {
    background-color: #444 !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15) !important;
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .woocommerce-message, 
    .woocommerce-info, 
    .woocommerce-error {
        flex-direction: column !important;
        align-items: flex-start !important;
        padding: 20px !important;
    }
    
    .woocommerce-message .button, 
    .woocommerce-info .button {
        margin-left: 0 !important;
        width: 100%;
        text-align: center;
        margin-top: 5px !important;
    }
}