/* === Layout: Product Grid === */
.products-card-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    padding: 20px;
}

@media (max-width: 1200px) {
    .products-card-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .products-card-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .products-card-container {
        grid-template-columns: 1fr;
    }
}

/* === Component: Product Card === */
.product-card {
    background-color: transparent;
    border: 1px solid transparent;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    height: 550px;
    transition: border 0.3s ease;
}

.product-card:hover {
    border: #940053 solid 1px;
}

/* === Product Card: Image === */
.product-card-image {
    margin-bottom: 15px;
}

.product-card-image img {
    width: 100%;
    height: auto;
    object-fit: cover;
    padding: 16px;
    border-radius: 16px;
}

/* === Product Card: Info === */
.product-card-info {
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: flex-start;
    padding: 0 16px;
    text-align: center;
}

.product-card-info h2 {
    font-size: 19px !important;
    margin: 0;
    line-height: 25px !important;
    font-weight: 400;
    color: var(--e-global-color-f3fc10a);
}

.product-short-description {
    font-size: 14px;
    color: #666;
    margin: 5px 0;
    line-height: 1.4;
}

.product-card-info .price {
    color: var(--e-global-color-text);
    font-size: 19px;
    font-weight: 700;
    display: block;
    margin-top: auto;
}

/* === Utility === */
.color-group-description {
    text-align: center;
}
