/* =================================
   ESTILO CATALOGO TEMU / AMAZON
================================= */

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background: #f6f6f6;
}

/* GRID */
.catalogo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 16px;
    padding: 15px;
}

/* TARJETA */
.product-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid #eee;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

/* IMAGEN */
.product-card img {
    width: 100%;
    height: auto;
    max-height: 220px;
    object-fit: contain;
    background: white;
    padding: 8px;
    transition: transform .35s ease;
}

/* EFECTO ZOOM */
.product-card:hover img {
    transform: scale(1.08);
}

/* CONTENIDO */
.product-info {
    padding: 12px;
    text-align: center;
}

/* TEXTO */
.product-name {
    font-size: 14px;
    font-weight: 600;
    color: #222;
    line-height: 1.3;
    max-height: 42px;
    overflow: hidden;
}

.product-price {
    font-size: 18px;
    font-weight: bold;
    color: #ff5200;
    margin: 10px 0;
}

/* BOTON */
.btn-detalle {
    display: block;
    width: 100%;
    padding: 10px;
    font-size: 14px;
    background: linear-gradient(135deg, #ff6a00, #ff3c00);
    color: white;
    border-radius: 10px;
    text-decoration: none;
    font-weight: bold;
    transition: all .3s ease;
}

.btn-detalle:hover {
    transform: scale(1.03);
    background: #ff3c00;
}

/* =========================
   RESPONSIVE MOVIL
========================= */

@media (max-width: 480px) {

    .catalogo-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .product-card img {
        max-height: 170px;
    }

    .product-name {
        font-size: 13px;
    }

    .product-price {
        font-size: 16px;
    }
}

/* =========================
   EFECTO TOUCH MOVIL
========================= */
@media (max-width: 768px) {
    .product-card:active img {
        transform: scale(1.05);
    }
}
