main{
    min-height: 80vh;
}

.section-wrap>span {
    position: absolute;
    width: 800px;
    height: 800px;
    border-radius: 50%;
    filter: blur(50px);
    animation: move 7s linear infinite;
}

@keyframes move {
    0% {
        transform: rotate(0) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(0.99);
    }

    100% {
        transform: rotate(360deg) scale(1);
    }
}

.section-wrap>.bg-wrap-1 {
    top: 20%;
    left: 40%;
    background: linear-gradient(234deg, rgba(58, 120, 155, 0.50) 15%, rgba(116, 69, 168, 0.50) 83%);
}

.section-wrap{
    position: relative;
    overflow: hidden;
}

.section-inner {
    max-width: 1500px;
}

.product-wrap {
    position: relative;
    padding: 80px 0;
}

.product-wrap>h2 {
    font-size: 42px;
    text-align: center;
}

.tag-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 0;
}

.tag-list {
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid #2E2E2E;
    border-radius: 8px;
    padding: 8px;
}

.tag-item {
    position: relative;
    z-index: 1;
    width: 100px;
    padding: 8px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid #2E2E2E;
    overflow: hidden;
}

.tag-item::after {
    content: '';
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 50%;
    width: 50px;
    height: 50px;
    background-color: #5098da;
    border-radius: 50%;
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(0);
    transition: .3s ease;
    transition-property: opacity, transform;
}

.tag-item.active::after {
    opacity: 1;
    transform: translate(-50%, -50%) scale(3);
}

.product-list {
    /* display: grid; */
    /* grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); */
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    gap: 30px;
}

.product-item {
    width: 100%;
    max-width: 350px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    border: 1px solid #2E2E2E;
    border-radius: 8px;
    padding: 30px;
    background: linear-gradient(180deg, rgba(19, 21, 26, 0.30) 0%, rgba(19, 21, 26, 0.00) 100%);
}

.product-infos-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 190px;
}

.product-infos-wrap>h2 {
    font-size: 36px;
}

.product-infos-wrap>p {
    font-size: 16px;
    opacity: 0.8;
    letter-spacing: 1px;
    font-weight: 300;
    min-height: 55px;
}

.price-wrap {
    display: flex;
    align-items: baseline;
    gap: 10px;
    font-weight: 500;
}

.price-wrap>p {
    font-size: 48px;
}

.button-wrap {
    width: 100%;
    text-align: center;
    padding: 15px 0;
    border-radius: 8px;
    border: 1px solid #2E2E2E;
    font-size: 17px;
}

.button-wrap.gray {
    background-color: #1f2020;
    letter-spacing: 1px;
}

.button-wrap.blue {
    background-color: #2f9ae0;
    border: 1px solid #2f9ae0;
}

.button-wrap.golden {
    background-color: #FFE5A4;
    border: 1px solid #FFE5A4;
    color: #644E15;

}

.power-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding-top: 20px;
}

.power-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 15px;
}

.power-item>img {
    width: 20px;
    height: 20px;
}


@media screen and (max-width: 768px) {
    .product-wrap>h2{
        font-size: 22px;
    }
    .tag-wrap{
        width: 100%;
        padding: 30px 0;
    }
    .tag-list{
        width: 100%;
        max-width: 300px;
    }
    .tag-item{
        width: 100%;
    }
    .product-item{
        padding: 30px 20px;
        max-width: 100%;
    }
    .product-infos-wrap{
        min-height: auto;
    }
    .product-infos-wrap>h2{
        font-size: 24px;
    }
    .product-infos-wrap>p{
        font-size: 16px;
    }
    .power-item{
        font-size: 15px;
    }
    .price-wrap>p{
        font-size: 40px;
    }
}