body{

    margin:0;

    background:#050505;

    color:white;

    font-family:Arial;
}

.shop-page{

    display:flex;

    min-height:100vh;
}

.shop-sidebar{

    width:260px;

    background:#0d0d0d;

    padding:40px 25px;

    border-right:1px solid rgba(255,255,255,.06);
}

.shop-sidebar h2{

    margin-bottom:30px;

    color:#9eff00;
}

.category-btn{

    width:100%;

    height:54px;

    margin-bottom:12px;

    border:none;

    border-radius:14px;

    background:#151515;

    color:white;

    cursor:pointer;

    transition:.25s;
}

.category-btn:hover{

    background:#222;
}

.active-category{

    background:#9eff00;

    color:black;

    font-weight:700;
}

.shop-content{

    flex:1;

    padding:50px;
}

.shop-top{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:40px;
}

.shop-top h1{

    font-size:54px;
}

.shop-balance{

    font-size:24px;
}

.shop-balance span{

    color:#9eff00;

    font-weight:700;
}

.shop-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:25px;
}

.shop-card{

    background:#111;

    border-radius:24px;

    padding:25px;

    border:1px solid rgba(255,255,255,.05);

    display:flex;

    flex-direction:column;
}

.shop-card img{

    width:100%;

    height:240px;

    object-fit:contain;

    background:#111;

    padding:10px;

    box-sizing:border-box;
}

.shop-card h3{

    font-size:30px;

    margin-bottom:10px;
}

.shop-card p{

    color:#9eff00;

    font-size:20px;

    margin-bottom:25px;
}

.shop-card button{

    margin-top:auto;

    height:54px;

    border:none;

    border-radius:14px;

    background:#9eff00;

    color:black;

    font-weight:700;

    cursor:pointer;
}

@media (max-width:900px){

    .shop-page{

        flex-direction:column;
    }

    .shop-sidebar{

        width:100%;

        border-right:none;

        border-bottom:1px solid rgba(255,255,255,.06);
    }

}

.info-modal{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.7);

    display:none;

    align-items:center;

    justify-content:center;

    z-index:999;
}

.info-box{

    width:850px;

    max-width:95%;
    overflow:hidden;

    background:#111;

    border-radius:28px;

    padding:30px;

    position:relative;
}

.close-info{

    position:absolute;

    top:18px;

    right:18px;

    width:52px;

    height:52px;

    border-radius:50%;

    background:rgba(0,0,0,.7);

    border:2px solid rgba(255,255,255,.12);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:34px;

    color:white;

    cursor:pointer;

    z-index:20;

    transition:.25s;
}

.close-info:hover{

    background:#ff3b3b;

    border-color:#ff3b3b;

    transform:rotate(90deg);
}

.info-image{

    width:100%;

    height:420px;

    object-fit:cover;

    border-radius:20px;

    margin-bottom:20px;
}

.info-gallery{

    display:flex;

    gap:12px;

    margin-bottom:25px;

    overflow-x:auto;

    overflow-y:hidden;

    padding-bottom:8px;

    scroll-behavior:smooth;

    scrollbar-width:none;
}

.info-gallery::-webkit-scrollbar{

    display:none;
}

.info-gallery img{

    min-width:110px;

    width:110px;

    height:75px;

    flex-shrink:0;

    object-fit:cover;

    border-radius:12px;

    cursor:pointer;

    transition:.2s;

    border:2px solid transparent;
}

.info-gallery img:hover{

    border-color:#9eff00;

    transform:translateY(-2px);
}

.info-title{

    font-size:40px;
}

.info-price{

    font-size:34px;

    color:#9eff00;

    margin-top:25px;

    margin-bottom:20px;

    font-weight:700;
}

.info-buy-btn{

    width:100%;

    height:58px;

    border:none;

    border-radius:16px;

    background:#9eff00;

    color:black;

    font-size:17px;

    font-weight:700;

    cursor:pointer;

    transition:.25s;
}

.info-buy-btn:hover{

    transform:translateY(-2px);
}

.notify{

    position:fixed;

    top:30px;

    right:30px;

    min-width:320px;

    padding:18px 24px;

    border-radius:16px;

    background:#111;

    border:1px solid rgba(255,255,255,.08);

    color:white;

    font-size:16px;

    z-index:9999;

    opacity:0;

    transform:translateY(-20px);

    pointer-events:none;

    transition:.35s;
}

.notify.show-notify{

    opacity:1;

    transform:translateY(0);
}

.notify.success{

    border-color:#9eff00;

    box-shadow:0 0 25px rgba(158,255,0,.18);
}

.notify.error{

    border-color:#ff3b3b;

    box-shadow:0 0 25px rgba(255,59,59,.18);
}

.shop-top-right{

    display:flex;

    align-items:center;

    gap:25px;
}

.profile-btn{

    display:flex;

    align-items:center;

    gap:14px;

    padding:10px 18px;

    border-radius:18px;

    background:#111;

    border:1px solid rgba(255,255,255,.06);

    text-decoration:none;

    color:white;

    transition:.25s;
}

.profile-btn:hover{

    transform:translateY(-2px);

    border-color:#9eff00;
}

.profile-avatar{

    width:46px;

    height:46px;

    border-radius:50%;

    object-fit:cover;

    border:2px solid #9eff00;
}

#profile-name{

    font-weight:700;
}

.info-image-wrapper{

    position:relative;
}

.slider-arrow{

    position:absolute;

    top:50%;

    transform:translateY(-50%);

    width:52px;

    height:52px;

    border:none;

    border-radius:50%;

    background:rgba(0,0,0,.55);

    color:white;

    font-size:28px;

    cursor:pointer;

    z-index:10;

    transition:.2s;
}

.slider-arrow:hover{

    background:#9eff00;

    color:black;
}

.left-arrow{

    left:20px;
}

.right-arrow{

    right:20px;
}

.scroll-top-btn{

    position:fixed;

    right:30px;

    bottom:30px;

    width:58px;

    height:58px;

    border:none;

    border-radius:50%;

    background:#9eff00;

    color:black;

    font-size:28px;

    font-weight:700;

    cursor:pointer;

    z-index:999;

    opacity:0;

    visibility:hidden;

    transform:translateY(20px);

    transition:.25s;

    box-shadow:
    0 0 25px rgba(158,255,0,.25);
}

.scroll-top-btn:hover{

    transform:translateY(-4px);

    box-shadow:
    0 0 35px rgba(158,255,0,.4);
}

.scroll-top-btn.show-scroll{

    opacity:1;

    visibility:visible;

    transform:translateY(0);
}