.custom-product-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.custom-product-item {
    margin: 10px;
    text-align: center;
    position: relative;
    padding: 5px;
}

.custom-product-image-wrapper {
    position: relative;
    overflow: hidden;
}

.custom-product-image {
    width: 100%;
    height: auto;
    transition: transform 0.3s ease;
}

.custom-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.42);
    opacity: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.custom-magnifier {
    font-size: 2em;
    color: #F6871F;
}

.custom-product-image-wrapper:hover .custom-overlay {
    opacity: 1;
}

.custom-product-image-wrapper:hover .custom-product-image {
    transform: scale(1.05);
}

.custom-product-title {
    color: #012b49;
    font-size: 24px;
    line-height: 1em;
    margin: 10px 0;
}

.custom-product-price {
    color: #F6871F;
    font-size: 26px;
    line-height: 26px;
    font-weight: 600;
}

@media (max-width: 1000px) {
    .custom-product-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns */
    }
}

@media (max-width: 768px) {
    .custom-product-grid{
        grid-template-columns: repeat(1, 1fr); /* 1 column */
    }
}
