/* Desktop */
.arrivals-title {
    margin-top: 200px;
    text-align: center;
    font-weight: 700;
}
.price {
        font-size: 20px;
        font-weight: 900;
        color: #000;
    }
.container {
    padding-bottom: 50px;
}

/* ───────── TABLET ───────── */
@media (max-width: 1024px) {

    .arrivals-title {
        margin-top: 150px;
    }

    .card-title {
        font-size: 16px;
    }

    .price {
        font-size: 16px;
    }
    /* Contenedor uniforme */
    .product-img-wrapper {
        width: 100%;
        height: 260px;              /* 🔥 todas iguales */
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f8f8f8;        /* opcional (queda pro) */
        overflow: hidden;
    }

    /* Imagen */
    .product-img {
        width: 100%;
        height: 100%;
        object-fit: cover;          /* 🔥 llena sin deformar */
    }
}


/* ───────── MÓVIL ───────── */
@media (max-width: 767px) {

    .arrivals-title {
        margin-top: 60px; /* 🔥 sube todo */
    }

    /* 1 producto por fila */
    .product-item {
        flex: 0 0 50%;
        max-width: 50%;
    }

    .card-title {
        font-size: 18px;
    }

    .price {
        font-size: 18px;
        font-weight: 900;
        color: #000;
    }

    /* Botones más pequeños */
    .btn-custom {
        font-size: 13px;
        padding: 8px;
    }

    /* Desactiva hover en móvil (mejor UX) */
    .img-hover {
        display: none;
    }
    /* Contenedor uniforme */
    .product-img-wrapper {
        width: 100%;
        height: 260px;              /* 🔥 todas iguales */
        display: flex;
        align-items: center;
        justify-content: center;
        background: #f8f8f8;        /* opcional (queda pro) */
        overflow: hidden;
    }

    /* Imagen */
    .product-img {
        width: 100%;
        height: 100%;
        object-fit: cover;          /* 🔥 llena sin deformar */
    }
    .container {
    padding-bottom: 20px;
}
}


/* ───────── MÓVIL PEQUEÑO ───────── */
@media (max-width: 480px) {

    .arrivals-title {
        padding-top: 70px;
    }

    .btn-custom {
        font-size: 12px;
        padding: 7px;
    }
}