.gshop-wrap{
    background:#050505;
    color:#fff;
    padding:30px;
    border-radius:28px;
}

.gshop-mini-cart{
    position:fixed;
    top:120px;
    right:20px;
    width:58px;
    height:58px;
    background:#d4af37;
    color:#000;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:800;
    cursor:pointer;
    z-index:99999;
}

.gshop-side-cart{
    position:fixed;
    top:0;
    right:-420px;
    width:380px;
    height:100%;
    background:#0a0a0a;
    z-index:999999;
    transition:.3s ease;
    display:flex;
    flex-direction:column;
}

.gshop-side-cart.active{
    right:0;
}

.gshop-side-header{
    padding:24px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    border-bottom:1px solid rgba(255,255,255,.08);
}

#gshop-close-cart{
    cursor:pointer;
}

.gshop-cart-items{
    flex:1;
    padding:24px;
}

.gshop-side-footer{
    padding:24px;
}

.gshop-hero{
    text-align:center;
    margin-bottom:30px;
}

.gshop-hero h1{
    color:#d4af37;
    font-size:56px;
}

.gshop-filters{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-bottom:35px;
    flex-wrap:wrap;
}

.gshop-filters button{
    background:#111;
    color:#d4af37;
    border:1px solid rgba(212,175,55,.4);
    padding:10px 18px;
    border-radius:999px;
}

.gshop-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(290px,1fr));
    gap:26px;
}

.gshop-card{
    background:#0b0b0b;
    border:1px solid rgba(212,175,55,.35);
    border-radius:24px;
    overflow:hidden;
    transition:.25s ease;
}

.gshop-card:hover{
    transform:translateY(-6px);
}

.gshop-gallery{
    background:#111;
    padding:14px;
}

.gshop-gallery img{
    width:100%;
    height:240px;
    object-fit:contain;
}

.gshop-card-content{
    padding:22px;
    text-align:center;
}

.gshop-card h2{
    color:#d4af37;
    font-size:30px;
    margin-bottom:10px;
}

.gshop-price{
    font-size:34px;
    font-weight:800;
    margin-bottom:10px;
}

.gshop-rating{
    color:#d4af37;
    margin-bottom:18px;
}

.gshop-options{
    display:flex;
    flex-direction:column;
    gap:10px;
    margin-bottom:20px;
}

.gshop-options select{
    background:#121212;
    color:#fff;
    border:1px solid rgba(255,255,255,.08);
    padding:12px;
    border-radius:12px;
}

.gshop-badges{
    display:flex;
    justify-content:center;
    gap:8px;
    flex-wrap:wrap;
    margin-bottom:20px;
}

.gshop-badges span{
    padding:7px 12px;
    border-radius:999px;
    font-size:13px;
    font-weight:700;
}

.ship-badge{
    background:#1d3557;
}

.pickup-badge{
    background:#264653;
}

.preorder-badge{
    background:#d4af37;
    color:#000;
}

.gshop-btn,
.gshop-checkout-btn{
    width:100%;
    background:#d4af37;
    color:#000;
    border:none;
    padding:15px;
    border-radius:14px;
    font-weight:800;
}

@media(max-width:768px){

    .gshop-hero h1{
        font-size:40px;
    }

    .gshop-side-cart{
        width:100%;
    }

}
