/*
 * Funcionalia - Descuento en 2º ud. por marca
 * Version: 1.1
 */



.woocommerce ul.products li.product .woocommerce-loop-product__link,
.woocommerce div.product .woocommerce-product-gallery {
    position: relative;
    overflow: hidden;
}

.fnc-sale-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #00632e;
    color: #ffffff;
    font-size: 12px;
    font-weight: bold;
    padding: 5px 10px;
    border-radius: 3px;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 10;
}


/* SECTION 3: NOTICE UNDER PRODUCT NAME IN CART */

.fnc-cart-item-notice {
    color: #1e88e5; /* A clear blue to indicate information */
    font-style: italic;
    font-weight: bold;
}

.fnc-single-product-notice-elegant {
    color: #333;
    font-size: 0.95em;
    font-weight: 500;
    padding: 5px 0 15px 25px; /* Space for the icon and margin bottom */
    position: relative;
    border-bottom: 1px solid #eee;
    margin-bottom: 15px;
}

/* Elegant tag/sparkle icon using CSS */
.fnc-single-product-notice-elegant::before {
    content: '🏷️';
    position: absolute;
    left: 0;
    top: 5px;
    font-size: 1.1em;
    opacity: 0.8;
}