.pro-product-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.042vw;
    justify-content: start;
    margin: 4.167vw auto;
}

.pro-product-item {
    width: calc((100% - 3.125vw) / 4);
    cursor: pointer;
    transition: color 0.3s ease;
}

.product-image-wrapper {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background-color: #f5f5f5;
    overflow: hidden;
}

.product-logo {
    position: absolute;
    top: 0.781vw;
    left: 0.781vw;
    width: 2.865vw;
    height: 2.865vw;
    object-fit: contain;
    z-index: 2;
}

.pro-product-image {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transform: translate(-50%, -50%);
	filter: brightness(97%);
    z-index: 1;
}

.product-info {
    margin-top: 0.625vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.pro-product-name {
    font-size: 0.833vw;
    font-family: 'semibold', sans-serif;
    color: #3e3e3e;
    transition: color 0.3s ease;
    margin-bottom: 1.042vw;
}

.product-btn {
    padding: 0.625vw 0.729vw;
    font-size: 0.729vw;
    color: #008ee7;
    background-color: transparent;
    border: 1px solid #008ee7;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pro-product-item:hover .pro-product-name {
    color: #008ee7;
}

.pro-product-item:hover .product-btn {
    background-color: #008ee7;
    color: #fff;
    border-color: #008ee7;
}

