/**
* 2007-2025 PrestaShop
*
* NOTICE OF LICENSE
*
* This source file is subject to the Academic Free License (AFL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://opensource.org/licenses/afl-3.0.php
* If you did not receive a copy of the license and are unable to
* obtain it through the world-wide-web, please send an email
* to license@prestashop.com so we can send you a copy immediately.
*
* DISCLAIMER
*
* Do not edit or add to this file if you wish to upgrade PrestaShop to newer
* versions in the future. If you wish to customize PrestaShop for your
* needs please refer to http://www.prestashop.com for more information.
*
*  @author    PrestaShop SA <contact@prestashop.com>
*  @copyright 2007-2025 PrestaShop SA
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*  International Registered Trademark & Property of PrestaShop SA
*
* Don't forget to prefix your containers with your own identifier
* to avoid any conflicts with others containers.
*/

@media (min-width: 991px) {
    .nb-banner {
        display: none !important;
    }
}

@media (max-width: 992px) {
    .nb-fullwidth-banner {
        display: none !important;
    }

    .header-banner
    {
        padding-bottom: 2rem;
    }

    .nb-banner {
        position: fixed;
        top: 0;
        z-index: 9999;
        display: block !important;
        width: 100%;
    }
}

.nb-banner p,
.nb-fullwidth-banner p {
    margin: 0;
    padding: 0;
}

.nb-banner a,
.nb-fullwidth-banner a {
    color: inherit;
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.2s ease;
}

.nb-banner a:hover,
.nb-fullwidth-banner a:hover {
    opacity: 0.8;
}


.nb-fullwidth-banner {
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 6px;
}

.nb-fullwidth-banner .container {
    max-width: 1200px;
    margin: 0 auto;
}

.nb-fullwidth-banner .important {
    font-weight: 600;
    font-size: 15px;
}

.nb-banner.alertbn,
.nb-fullwidth-banner.alertbn {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
    color: #ffffff;
}

.nb-banner.promo,
.nb-fullwidth-banner.promo {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: #ffffff;
}

.nb-banner.info,
.nb-fullwidth-banner.info {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #ffffff;
}

.nb-banner.success,
.nb-fullwidth-banner.success {
    background: linear-gradient(135deg, #56ab2f 0%, #a8e063 100%);
    color: #ffffff;
}

.nb-banner.dark,
.nb-fullwidth-banner.dark {
    background: #1a1a1a;
    color: #ffffff;
}

.nb-banner.light,
.nb-fullwidth-banner.light {
    background: #f8f9fa;
    color: #212529;
    border-bottom: 1px solid #dee2e6;
}

/* Style Personnalisé - Défini par l'utilisateur via inline CSS */
.nb-banner.custom,
.nb-fullwidth-banner.custom {
}

.nb-banner.promo a,
.nb-banner.alert a,
.nb-banner.info a,
.nb-banner.success a,
.nb-banner.dark a,
.nb-fullwidth-banner.promo a,
.nb-fullwidth-banner.alert a,
.nb-fullwidth-banner.info a,
.nb-fullwidth-banner.success a,
.nb-fullwidth-banner.dark a {
    color: #ffffff;
    text-decoration: underline;
}

.nb-banner.light a,
.nb-fullwidth-banner.light a {
    color: #212529;
}