.products-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); justify-items: center;
    margin-top: 60px; gap: 25px;
}


/* =========================================
   MAIN CARDS
============================================ */
.product-card {
    display: flex; flex-direction: column;
    align-items: center; text-align: center;
    width: 100%; max-width: 300px; height: 100%;
    background-color: transparent;
    padding: 0; border-radius: 12px;
    transition: all 0.4s ease-in-out;
}
.product-card:hover {
    transform: translateY(-5px); 
}
.product-card:hover .product-image img {
    transform: scale(1.08); 
}
.product-card:hover .product-info {
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}
.bg-dark .product-card:hover .product-info {
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.15);
}
.product-card:hover .product-origin {
    color: var(--color-hover-active); 
}

.product-image {
    position: relative; overflow: hidden;
    width: 100%;  height: 180px; z-index: 2;
    margin: 0; border-radius: 12px 12px 0 0;
}
.product-image img {
    object-fit: cover;
    width: 100%; height: 100%;
    transition: transform 0.5s ease-in-out;
}
.product-info {
    position: relative; z-index: 1;
    padding: 20px 10px; border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); 
    transition: all 0.4s ease-in-out;
    flex-grow: 1; display: flex; flex-direction: column;
}
.bg-dark .product-info {
    background-color: var(--color-bg-dark); 
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.05); 
}


/* =========================================
   INFO CARDS
============================================ */
.product-title {
    font-size: 22px;
    margin-bottom: 5px;
}
.bg-dark .product-title {
    color: var(--color-text-light); 
}

.product-origin {
    display: block;
    font-size: 10px; font-weight: 500; letter-spacing: 2px; text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 15px;
    transition: var(--transition-smooth);
}

.product-desc {
    font-size: 14px;
    color: #555; /* Color mas oscuro */
    line-height: 1.6;
    font-weight: 300;
    text-align: justify; 
}
.bg-dark .product-desc {
    color: #A0AAB2; /* Color mas claro */
}



/* =========================================
   MEDIA
============================================ */
@media (max-width: 1024px) {
    .products-grid {
        grid-template-columns: repeat(2, 1fr); gap: 50px; 
    }
    .product-card {
        max-width: 320px;
    }
}

/* --- RESPONSIVE: CELULARES --- */
@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: 1fr; gap: 45px;
    }
    .product-card {
        max-width: 350px;
    }
}