/**
* 2007-2026 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    David Escudero Digital Studio <contacto@davidescudero.com>
*  @copyright 2007-2026 David Escudero Digital Studio
*  @license   http://opensource.org/licenses/afl-3.0.php  Academic Free License (AFL 3.0)
*/

/* Estilo base de la etiqueta (bg/color vienen inline desde label.tpl). */
.deslabel {
    display: inline-block;
    padding: 4px 8px;
    border-radius: 4px;
    font: 700 10px/14px Outfit, "Outfit Fallback", sans-serif;
    white-space: nowrap;
}

/* ── Miniatura de producto: esquina superior IZQUIERDA sobre la imagen ─────── */
.des-product-card__media,
.thumbnail-container,
.product-miniature {
    position: relative; /* ancla de posicionamiento (defensivo) */
}
.des-product-card__media .deslabel,
.thumbnail-container .deslabel,
.product-miniature .deslabel {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 3;
    max-width: calc(100% - 20px);
    overflow: hidden;
    text-overflow: ellipsis;
    pointer-events: none;
}

/* ── Ficha de producto: en flujo, ENCIMA del nombre ───────────────────────── */
.des-product__info .deslabel {
    margin-bottom: 10px;
}
