/* ─── Enow Product Labels ─────────────────────────────── */

/* Container: full overlay on the product image area */
.enow-product-labels {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 5;
}

/* Ensure parent is positioned */
.product-item-info {
    position: relative;
}
.product-image-container {
    position: relative;
}

/* ─── Common label base ─────────────────────────────────── */
.enow-label {
    display: inline-block;
    font-weight: 700;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    pointer-events: auto;
}

/* ─── Envío Gratis - Top Right (50x50 box) ──────────────── */
.enow-label-envio {
    position: absolute;
    top: 10px;
    right: 6px;
    width: 50px;
    height: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
    border-radius: 10%;
    text-align: center;
    white-space: normal;
    line-height: 1.1;
    z-index: 2;
}

/* ─── Descuento % - Top Left ────────────────────────────── */
.enow-label-discount {
    position: absolute;
    top: 6px;
    left: 6px;
    color: #ffffff;
    font-size: 12px;
    font-weight: 800;
    padding: 4px 8px;
    border-radius: 4px;
    white-space: nowrap;
}

/* ─── Clase Energética - Top Left (below discount if present) */
.enow-label-energy {
    position: absolute;
    top: 10px;
    left: 6px;
    height: 30px;
    pointer-events: auto;
}

/* When discount also present, push energy below */
.enow-label-discount + .enow-label-energy,
.enow-label-discount ~ .enow-label-energy {
    top: 34px;
}

/* ─── Sello Personalizado - Below Envío (right side) ────── */
.enow-label-seal {
    position: absolute;
    top: 65px;
    right: 6px;
    width: 50px;
    height: auto;
    pointer-events: auto;
}

/* When there's no envío, move seal to top-right */
.enow-product-labels:not(.has-envio) .enow-label-seal {
    top: 10px;
}

/* ─── Product Category Page ───────────────────────────────── */

.product-item-photo {
    position: relative;
    display: block;
}

/* ─── Product Detail Page ───────────────────────────────── */

/* Gallery container must be positioned */
.product.media {
    position: relative;
}

.enow-product-labels-detail {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10;
    pointer-events: none;
}

/* Left column: envío + sello + discount */
.enow-detail-left {
    position: absolute;
    top: 10px;
    left: 10px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    pointer-events: auto;
}

/* Right column: energy class */
.enow-detail-right {
    position: absolute;
    top: 10px;
    right: 10px;
    pointer-events: auto;
}

.enow-detail-left .enow-label-envio {
    position: static;
    width: 55px;
    height: 55px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 900;
    border-radius: 10%;
    text-align: center;
    white-space: normal;
    line-height: 1.1;
}

.enow-detail-left .enow-label-seal {
    position: static;
    width: 55px;
    height: auto;
}

.enow-detail-left .enow-label-discount {
    position: static;
    font-size: 14px;
    font-weight: 800;
    padding: 6px 12px;
    border-radius: 4px;
    color: #fff;
    white-space: nowrap;
}

.enow-detail-right .enow-label-energy {
    position: static;
    height: 40px;
    width: auto;
}

/* ─── Responsive ────────────────────────────────────────── */
@media (max-width: 768px) {
    .enow-label-envio {
        width: 40px;
        height: 40px;
        font-size: 9px;
        top: 10px;
    }

    .enow-label-discount {
        font-size: 10px;
        padding: 3px 6px;
    }

    .enow-label-seal {
        width: 35px;
        top: 55px;
    }

    /* Detail page responsive */
    .enow-detail-left .enow-label-envio {
        width: 45px;
        height: 45px;
        font-size: 10px;
    }

    .enow-detail-left .enow-label-seal {
        width: 45px;
    }

    .enow-detail-right .enow-label-energy {
        height: 30px;
    }
}

/* ── Logo de marca ─────────────────────────────────────── */
/* En tarjeta de listing/search: esquina inferior izquierda */
.enow-product-labels .enow-label-brand-logo {
    position: absolute;
    /*top: 265px;*/
    bottom: 4px;
    left: 6px;
    max-height: 24px;
    max-width: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
    background: rgba(255, 255, 255, 0.88);
    border-radius: 3px;
    padding: 2px 5px;
    display: block;
}

/* En ficha de producto: tamaño más generoso */
.enow-label-brand-logo--detail {
    max-height: 40px;
    max-width: 110px;
    padding: 3px 8px;
    border-radius: 4px;
    margin-top: 6px;
}
