.product-grid-item {
    border: 1px solid #eee;
    background: #fff;
    height: 100%;
    display: flex;
    flex-direction: column;
    border-radius: 0 !important;
    position: relative;
}

.img-full-width {
    width: 100%;
    position: relative;
    padding-top: 100%;
    overflow: hidden;
    display: block;
}

    .img-full-width img {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: contain;
        padding: 0px; /* Base para móvil */
    }

/* Badge Rojo Recto */
.badge-offert-flat {
    position: absolute;
    top: 0;
    right: 0;
    background: #ff3b30;
    color: white;
    padding: 3px 8px;
    font-weight: bold;
    font-size: 0.75rem;
    z-index: 10;
}

.product-info-box {
    padding: 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.category-label {
    font-size: 0.6rem;
    text-transform: uppercase;
    color: #008ecc;
    background-color: #f0faff;
    padding: 2px 5px;
    display: inline-block;
    margin-bottom: 5px;
}

.name-truncate {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.4rem;
    line-height: 1.2;
    font-size: 0.7rem;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    margin-bottom: 8px;
}

/* PRECIOS: En móvil el tachado aparece ARRIBA del azul */
.price-wrapper {
    display: flex !important;
    flex-direction: column-reverse;
    align-items: flex-start;
    width: 100%;
}

.price-current {
    display: block;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0d6efd;
    line-height: 1.1;
}

.price-before {
    display: block;
    font-size: 0.8rem;
    color: #bbbbbb !important;
    text-decoration: line-through !important;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 2px;
}

/* Carrito Cuadrado Minimalista */
.btn-cart-square {
    border: 1px solid #333;
    color: #333;
    background: transparent;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0 !important;
    transition: all 0.2s;
}

    .btn-cart-square:hover {
        background-color: #333;
        color: #fff;
    }

/* Ajustes para Escritorio (Tablet y PC) */
@media (min-width: 768px) {
    .img-full-width img {
        padding: 20px; /* Padding solicitado para escritorio */
    }

    .price-wrapper {
        flex-direction: row; /* En PC vuelve a ser horizontal */
        align-items: baseline;
    }

    .price-before {
        margin-bottom: 0;
        margin-left: 8px;
    }
}

@media (max-width: 576px) {
    .badge-modal {
        margin-top: 0px !important;
        margin-right: 8px !important;
    }
}

.discount-badge {
    background-color: #e91e63;
    color: white;
    font-size: 12px;
    line-height: 1.1;
    border-bottom-left-radius: 8px;
    border-top-right-radius: 20px;
    z-index: 2;
}

.badge_btn_3 {
    font-size: 11px;
    font-weight: 700;
    background: #E6F8FF;
    display: inline-block;
    border-radius: 2px;
    padding: 5px 17px;
    color: #0893C8;
}
