/**
* 2007-2024 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.
*
* @author    PrestaShop SA <contact@prestashop.com>
* @copyright 2007-2024 PrestaShop SA
* @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
* International Registered Trademark & Property of PrestaShop SA
*/

/* Badge dédié dans les listes de produits */
.product-flag.dedicated {
    background-color: #2fb5d2;
    color: #fff;
    font-weight: 600;
    padding: 0.1875rem 0.4375rem;
    font-size: 0.8125rem;
    margin-top: 0.25rem;
    position: absolute;
    left: 0.3125rem;
    z-index: 2;
}

/* Position spéciale si d'autres badges sont présents */
.product-flag.dedicated + .product-flag,
.product-flag + .product-flag.dedicated {
    margin-top: 2.2rem;
}

/* Badge dédié dans le panier */
.dedicated-cart-badge {
    display: inline-block;
    background-color: #2fb5d2;
    color: #fff;
    font-weight: 600;
    padding: 0.1875rem 0.4375rem;
    font-size: 0.7rem;
    border-radius: 0.25rem;
    margin-left: 0.5rem;
}

/* Légende des produits dédiés en bas du panier */
.cart-dedicated-products-info {
    margin-top: 1rem;
    padding: 0.75rem;
    background-color: #f8f8f8;
    border-radius: 0.25rem;
}

.dedicated-legend {
    display: flex;
    align-items: center;
}

.dedicated-badge-example {
    display: inline-block;
    width: 2rem;
    height: 1rem;
    background-color: #2fb5d2;
    border-radius: 0.25rem;
    margin-right: 0.5rem;
}

.dedicated-text {
    font-size: 0.9rem;
    color: #232323;
}

.product_list .product-miniature {
    margin-bottom: 2rem;
} 