/* Compact floating cart — intentionally last in the public style cascade. */
.gpk-floating-cart{
position:fixed;
right:24px;
bottom:24px;
z-index:42;
display:grid;
width:72px;
min-width:72px;
height:72px;
min-height:72px;
padding:0;
place-items:center;
border:0;
border-radius:23px;
background:#ffd600;
color:#21201f;
box-shadow:0 16px 38px rgba(42,35,0,.22);
cursor:pointer;
transition:transform .2s ease,box-shadow .2s ease,background .2s ease;
}
.gpk-floating-cart:hover{
transform:translateY(-3px);
background:#ffdf24;
color:#21201f;
box-shadow:0 20px 44px rgba(42,35,0,.28);
}
.gpk-floating-cart:active{transform:translateY(0) scale(.97)}
.gpk-floating-cart:focus-visible{outline:3px solid #21201f;outline-offset:4px}
.gpk-floating-cart-copy,.gpk-cart-icon,.gpk-cart-bag svg{display:none}
.gpk-floating-cart:before{
content:"";
position:absolute;
z-index:1;
left:50%;
top:25px;
width:34px;
height:32px;
border-radius:5px;
background:#fff6c7;
transform:translateX(-50%);
}
.gpk-floating-cart:after{
content:"";
position:absolute;
z-index:0;
left:50%;
top:17px;
width:20px;
height:12px;
box-sizing:border-box;
border:3px solid #21201f;
border-bottom:0;
border-radius:6px 6px 0 0;
transform:translateX(-50%);
}
.gpk-cart-bag{display:contents}
.gpk-floating-cart .cart-count{
position:absolute;
z-index:2;
inset:36px 0 auto;
display:block;
width:100%;
min-width:0;
height:auto;
padding:0;
border:0;
border-radius:0;
background:transparent!important;
color:#21201f!important;
font-size:14px;
font-weight:500;
line-height:1;
text-align:center;
}
html[data-theme="dark"] .gpk-floating-cart{background:#ffd600;color:#21201f}
html[data-theme="dark"] .gpk-floating-cart:hover{background:#ffdf24;color:#21201f}
html[data-theme="dark"] .gpk-floating-cart .cart-count{border:0!important;background:transparent!important;color:#21201f!important}
.gpk-cart-added-toast{position:fixed;z-index:43;right:24px;bottom:106px;display:flex;min-width:190px;padding:10px 13px;align-items:center;gap:9px;border:1px solid #e8e5dc;border-radius:14px;background:#fff;color:#25231f;box-shadow:0 12px 32px #0002;opacity:0;transform:translateY(8px) scale(.97);pointer-events:none;transition:opacity .2s ease,transform .2s ease}.gpk-cart-added-toast.is-visible{opacity:1;transform:none}.gpk-cart-added-toast i{display:grid;width:28px;height:28px;place-items:center;border-radius:50%;background:#daf3dd;color:#20732f;font-style:normal;font-weight:800}.gpk-cart-added-toast span{display:grid}.gpk-cart-added-toast strong{font-size:12px}.gpk-cart-added-toast small{color:#777;font-size:10px}
@media(max-width:900px){
.gpk-floating-cart{right:14px;bottom:max(14px,env(safe-area-inset-bottom));width:72px;min-width:72px;height:72px;min-height:72px;border-radius:23px}
.gpk-cart-added-toast{right:14px;bottom:calc(94px + env(safe-area-inset-bottom));min-width:178px}
}
