.product-relative {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 80%;
    background-color: rgba(228, 228, 228, 0.7921568627);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    box-shadow: 4px 4px 10px rgba(224, 224, 224, 0.2823529412);
    box-shadow: inset -1px -2px 8px rgba(41, 41, 41, 0.1647058824);
    padding: 10vh 8vh;
    border-radius: 32px;
    margin: 5vh auto;
}

.product-relative__title {
    margin: 5vh 0 2vh 10vh;
    font-size: 2.5vw;
    font-weight: 700;
    letter-spacing: 3px;
}

.product-list {
    display: flex;
    justify-content: space-around;
    margin: 2vh auto 1vh;
}

.product-list__item {
    margin: 0 1vw;
}

.product__image {
    width: 18vw;
    height: 18vw;
    object-fit: cover;
    background-color: #f2f2f2;
    border-radius: 16px;
}

.product__info {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 2vh 0;
    width: 100%;
}

.product__number {
    font-size: 1.1vw;
    padding: 3%;
    margin: 1%;
    font-weight: 600;
}

.product__description {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 1%;
    align-items: center;
}

.product__description h5 {
    font-size: 1.25vw;
    letter-spacing: 2px;
    margin: 5% 0;
}

.product__description h6 {
    font-weight: 300;
    font-size: 1vw;
}