.cart-box{
    position:relative;
    width:40px;
    height:40px;
    background:#444;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
}

.cart-icon{
    font-size:18px;
}

#cart-count{
    position:absolute;
    top:-6px;
    right:-6px;
    background:red;
    color:white;
    font-size:12px;
    padding:2px 6px;
    border-radius:50%;
}

.cart-box-big{
    background:#444;
    padding:20px;
    border-radius:12px;
}

.cart-item{
    display:flex;
    align-items:center;
    margin-bottom:20px;
}

.cart-image{
    width:120px;
    margin-right:20px;
}

.cart-title{
    flex:1;
}

.cart-qty{
    display:flex;
    gap:10px;
    align-items:center;
}

.qty-btn{
    background:#666;
    border:none;
    width:30px;
    height:30px;
}

.cart-price{
    width:120px;
}

.cart-remove{
    cursor:pointer;
}

.cart-total{
    background:#444;
    padding:20px;
    border-radius:12px;
}
.cart-image{
    width:120px;
    height:80px;
    object-fit:cover;
    border-radius:6px;
}

.card{
    transition:0.2s;
}

.card:hover{
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(0,0,0,0.5);
}
#cart-count {
    transition: transform 0.2s ease;
}

.cart-bump {
    transform: scale(1.25);
}

.card-img-top{
    height:180px;
    object-fit:cover;
}

.game-card{
    cursor:pointer;
    transition:0.2s;
}

.game-card:hover{
    transform:scale(1.04);
}

#game-description{
    max-height:80px;
    overflow:hidden;
}

.carousel-img{
    height:500px;
    object-fit:cover;
    border-radius:10px;
}

.carousel-caption{
    background:rgba(0,0,0,0.6);
    padding:20px;
    border-radius:10px;
    bottom:20px;
}
