*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.top-seller{
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: flex-start;

}
.top-seller .right-box{
    z-index: 9996;
    position: absolute;
    width: 60px;
    right: 20rem;
    height: 303px;
    background-color: white;
}
.right-box1{
    display: flex;
    flex-wrap: wrap;
}
.right-box .right-box1 i{
    display: flex;
    text-align: center;
    justify-content: center;
    font-size: 20px;
    width: 60px;
    align-items: center;
}

.top-seller img{
        object-fit: cover;
        position: absolute;
        height: 300px;
        width: 100%;
}
.profile-box {
    position: relative;
    width: 65%;
    margin: -8rem auto 0 auto;
    display: flex;
}
.profile-box img{
    position: relative;
    width: 220px;
    height: 240px;
    /* border-radius: 30px; */
    z-index: 9997;
}

.profile-text{
    margin: 1rem 0 0 2rem
}

.profile-text h1{
    font-size: 4rem;
    font-weight: 800;
    color: whitesmoke;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);

}
.profile-text p{
    margin: 0;
    color: black;
}
.profile-text p:nth-child(2){
    color: whitesmoke;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.5);
}
.profile-text p:nth-child(3){
    margin: 2rem 0 0 0;
} 
.profile-text p:nth-child(3) span:nth-child(1){
    color: #0099D2;
}
.profile-text p:nth-child(3) span:nth-child(2){
    color: #AD00FF;
}
.profile-text p:nth-child(3) span:nth-child(3){
    color: #76D200;
}
.profile-text p:nth-child(3) span:nth-child(4){
    color: #D27100;
}
.profile-text p:nth-child(3) span:nth-child(5){
    color: #D20000;
}


.box{
    height: 30px;
    display: flex;
    cursor: pointer;
    margin: 1rem 0;
    /* padding: 10px 20px;
    background: #fff;
    border-radius: 30px; */
    align-items: center;
    /* box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3); */
}
.box h6{
    display: none;
    transform: scale(1.2);
    transition: all 0.3s ease;
    margin: 0;
}

.right-box .box:hover{
    width: 200px;
    background-color: rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}
.right-box .box:hover h6 {
    font-size: 13px;
    display: block;
    width: 100px;
    text-align: center;
    padding: 8px 10px;
    background: #fff;
    border-top-right-radius: 10px;
    border-bottom-right-radius: 10px;
    margin: 0;
}

.box  h6{
    width: 0;
    font-weight: 500;
    transform: 0.3s;
    background: transparent;
    margin: 0.1rem 0 0 0;
}
.box a{
    text-decoration: none;
}



.right-box .right-box1 .box:nth-child(1) h6,
.right-box .right-box1 .box:nth-child(1) i{
    color: #0099D2;
    text-shadow: -6px 0 14px rgba(0, 153, 210, 0.9);
}


.right-box .right-box1 .box:nth-child(2) h6,
.right-box .right-box1 .box:nth-child(2) i{
    color: #AD00FF;
    text-shadow: -6px 0 14px rgba(173, 0, 255, 0.9);
}

.right-box .right-box1 .box:nth-child(3) h6,
.right-box .right-box1 .box:nth-child(3) i{
    color: #76D200;
    text-shadow: -6px 0 14px rgba(118, 210, 0, 0.9);
}

.right-box .right-box1 .box:nth-child(4) h6,
.right-box .right-box1 .box:nth-child(4) i{
    color: #D27100;
    text-shadow: -6px 0 14px rgba(210, 113, 0, 0.9);
}

.right-box .right-box1 .box:nth-child(5) h6,
.right-box .right-box1 .box:nth-child(5) i{
    color: #D20000;
    text-shadow: -6px 0 14px rgba(210, 0, 0, 0.9);
}





main{
    margin-top: 30px;
    position: relative;
    background: radial-gradient(circle, rgba(194, 194, 194, 0.85) 100%, white 100%),
                linear-gradient(to top, rgba(160, 160, 160, 0.85) 96%, white 100%),
                linear-gradient(to bottom, rgba(160, 160, 160, 0.85) 96%, white 100%),
                linear-gradient(to right, rgba(160, 160, 160, 0.85) 100%, white 100%),
                linear-gradient(to left, rgba(160, 160, 160, 0.85) 100%, white 100%);
    background-blend-mode: overlay;
    display: flex;
    justify-content: center;
    padding: 20px 0;
    max-width: 100%;
    height: auto;
}
main .products{
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    width: 100%;
    height: auto;
    margin: 0 14rem;
}
.product{
    height: auto;
    background-color: white;
    border-radius: 10px;
    margin: 0 2rem 2rem 0;
    min-height: 300px;
    width: 240px;
}
main img{
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}
main .products .product .box-detay{
    padding: 1rem;
}
main .products .product .box-detay p{
    font-size: 16px;
    /* width: 300px; */
    height: 50px;
    /* white-space: nowrap; */
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
}
main a{
    text-decoration: none;
}
main .box-detay p{
    color: black;
}
main .box-detay h6{
    color: black;
    font-weight: 700;
    margin: 0;
}

@media (max-width: 1535px){
    main .products{
        margin: 0 8rem;
    }
}


@media (max-width: 1400px){
    main img{
        width: 100%;
        height: 240px;
    }
    main .products .product .box-detay p{
        width: 200px;
    }
    main .products{
        margin: 0 8rem;
    }
}
@media (max-width: 1100px){
    main img{
        width: 100%;
        height: 200px;
    }
    main .products{
        margin: 0 4rem;
    }
}

@media (max-width: 991px){
    .profile-box{
        width: 90%;
        margin: 1rem auto;
        display: flex;
        align-items: center;
    }
    .profile-text{
        margin: 0 0 0 1rem;
    }
    main{
        margin: 0;
    }
    .product{
        width: 200px;
    }
    main .products{
        margin: 0 4rem;
    }
    main img{
        width: 100%;
        height: 200px;
    }
    main .seller-product .product-box .box-detay p{
        font-size: 12px;
    }
}
@media (max-width: 769px){
    main .product{
        width: 180px;
    }
    .box-detay{
        overflow: hidden;
    }
    main .products{
        margin: 0 2rem;
    }
}
@media (max-width: 587px){
    .profile-box{
        display: block;
        text-align: center;
    }
    .profile-text{
        margin: 1rem 0 0 0;
    }
    .profile-text h1{
        font-size: 1rem;
    }
    .profile-text p{
        font-size: 0.8rem;
    }
    main .seller-product img{
        width: 160px; 
        height: 160px;
    }
    main .seller-product .product-box .box-detay p{
        font-size: 12px;
        width: 160px;
    }
    main .seller-product .product-box{
        margin: 0;
    }
    main .products{
        margin: 0 auto;
    }
}