
:root{
 --shop:#00C5D1;
 --shop-bg:#020712;
 --shop-panel:#081525;
 --shop-border:rgba(0,197,209,.22);
 --shop-muted:#9BAFC1;
}

#gkm-cart-button{
 position:fixed;
 top:92px;
 right:24px;
 z-index:9998;

 display:flex;
 align-items:center;
 gap:10px;

 padding:12px 17px;

 border:1px solid var(--shop-border);
 border-radius:14px;

 background:rgba(5,16,30,.96);
 color:#fff;

 text-decoration:none;
 font-weight:800;

 box-shadow:0 15px 40px rgba(0,0,0,.28);
 backdrop-filter:blur(15px);

 transition:.2s;
}

#gkm-cart-button:hover{
 transform:translateY(-2px);
 border-color:var(--shop);
}

#gkm-cart-count{
 min-width:24px;
 height:24px;

 display:flex;
 align-items:center;
 justify-content:center;

 padding:0 6px;

 border-radius:20px;

 background:var(--shop);
 color:#001418;

 font-size:12px;
 font-weight:900;
}

.gkm-add-cart{
 width:100%;
 margin-top:12px;
 padding:13px 15px;

 border:0;
 border-radius:10px;

 background:var(--shop);
 color:#001418;

 font-weight:900;
 cursor:pointer;

 transition:.2s;
}

.gkm-add-cart:hover{
 transform:translateY(-2px);
 filter:brightness(1.06);
}

.gkm-add-cart.added{
 transform:scale(.98);
}

@media(max-width:700px){
 #gkm-cart-button{
  top:auto;
  bottom:18px;
  right:18px;
 }
}
