@media (min-width: 1025px) {
    .custom-product-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(240px, 280px));
        gap: 24px;
        justify-content: center;
    }
}


.custom-product-card {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);
    overflow: hidden;
    font-family: system-ui, sans-serif;
}


/* ===============================
     CONTENEDOR DE IMAGEN (FIX REAL)
  ================================ */

.product-image {
    position: relative;
    display: block;
    /* 🔑 CRÍTICO */
    width: 100%;
    padding-top: 100%;
    overflow: hidden;
    /* fallback */
}



.product-image img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    transition:
        opacity .45s ease,
        transform .6s cubic-bezier(.22, .61, .36, 1);

    transform: scale(1);
}

.product-image .img-hover {
    opacity: 0;
    transform: scale(1.08);
}

@media (hover: hover) and (pointer: fine) {

    .custom-product-card:hover .img-main {
        opacity: 0;
        transform: scale(1.05);
    }

    .custom-product-card:hover .img-hover {
        opacity: 1;
        transform: scale(1);
    }

}


.product-info {
    padding: 14px 16px 18px;
}

.product-category {
    font-size: 11px;
    text-transform: uppercase;
    color: #8a8a8a;
    letter-spacing: .1em;
}

.product-title {
    font-family: 'Varela Round', sans-serif;

    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    margin: 6px 0;
    color: #56CFE1 !important;
}

.product-title:hover a {

    color: #56CFE1 !important;
}


.product-title a {

    color: black !important;
}


.product-price {
    display: block;
    font-family: 'Varela Round', sans-serif;
    margin-top: 10px;
    font-size: 16px;
    font-weight: 300;
    text-decoration: none !important;


}

/* ===============================
   CARRUSEL SOLO EN MÓVIL
================================ */
@media (max-width: 768px) {

    .custom-product-grid {
        display: flex !important;
        gap: 16px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;

        padding: 0 16px 12px;

        scroll-snap-type: none;
    }

    .custom-product-card {
        flex: 0 0 82%;
        max-width: 320px;
    }

    /* ===== Scroll visible tipo Skytech ===== */
    .custom-product-grid::-webkit-scrollbar {
        height: 6px;

    }

    .custom-product-grid::-webkit-scrollbar-track {
        background: rgba(0, 0, 0, .08);
        border-radius: 10px;
        margin: 0 16px;
    }

    .custom-product-grid::-webkit-scrollbar-thumb {
        background: linear-gradient(90deg,
                #0f0f0f,
                #262525);
        border-radius: 10px;

    }

    .custom-product-grid::-webkit-scrollbar-thumb:hover {
        background: #191919;
    }
}


/* ===============================
   ADVANCED WOO LABELS – POSICIÓN
================================ */

.product-image .awl-product-label,
.product-image .awl-label {
    top: 1px;
    /* 👈 dentro de la imagen */
    left: 12px;
    z-index: 20;
    pointer-events: none;
    /* efecto premium */
    transform: translateY(-80%) !important;
    /* 👈 sobresale */
}