/* LESTER global floating cart v22 — modern micro-cart */
 /* LESTER_V22_MICRO_FLOATING_CART=1 */

#lester-floating-cart-v18{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:2147483000;
  width:min(252px,calc(100vw - 32px));
  color:#fff;
  text-decoration:none;
  font-family:Inter,ui-sans-serif,system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  -webkit-font-smoothing:antialiased;
  transition:transform .18s ease,opacity .18s ease;
}
#lester-floating-cart-v18[hidden]{display:none!important}
#lester-floating-cart-v18:hover{transform:translateY(-2px)}
#lester-floating-cart-v18:focus-visible{
  outline:3px solid rgba(85,105,255,.75);
  outline-offset:3px;
  border-radius:22px;
}
.lester-float-cart__inner{
  display:grid;
  grid-template-columns:46px minmax(0,1fr) 1px 36px;
  align-items:center;
  gap:9px;
  min-height:64px;
  padding:6px 8px 6px 6px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  background:
    radial-gradient(circle at 14% 18%,rgba(72,105,188,.34),transparent 38%),
    linear-gradient(135deg,#071a4b 0%,#02123c 52%,#061b52 100%);
  box-shadow:0 10px 26px rgba(3,16,58,.22),inset 0 1px 0 rgba(255,255,255,.12);
}
.lester-float-cart__icon{
  width:46px;
  height:46px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:linear-gradient(145deg,rgba(45,72,135,.82),rgba(13,34,83,.9));
  box-shadow:inset 0 1px 0 rgba(255,255,255,.10),0 4px 10px rgba(0,0,0,.14);
}
.lester-float-cart__icon svg{
  width:27px;
  height:27px;
  stroke:#fff;
  fill:none;
  stroke-width:2.25;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.lester-float-cart__copy{
  min-width:0;
  display:flex;
  flex-direction:column;
  gap:1px;
}
.lester-float-cart__title{
  font-size:16px;
  line-height:1.1;
  font-weight:850;
  letter-spacing:.005em;
}
.lester-float-cart__sum{
  font-size:12px;
  line-height:1.15;
  font-weight:500;
  color:rgba(255,255,255,.88);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}
.lester-float-cart__divider{
  width:1px;
  height:28px;
  background:rgba(255,255,255,.20);
}
.lester-float-cart__count{
  width:36px;
  height:36px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:#fff;
  background:linear-gradient(145deg,#6478ff,#5140ec);
  box-shadow:0 6px 12px rgba(65,73,233,.28),inset 0 1px 0 rgba(255,255,255,.25);
  font-size:17px;
  line-height:1;
  font-weight:850;
}

/* Tablet */
@media(max-width:980px){
  #lester-floating-cart-v18{
    right:14px;
    bottom:14px;
    width:min(244px,calc(100vw - 28px));
  }
  .lester-float-cart__inner{
    grid-template-columns:44px minmax(0,1fr) 1px 34px;
    min-height:60px;
    gap:8px;
    padding:6px 8px 6px 6px;
  }
  .lester-float-cart__icon{width:44px;height:44px}
  .lester-float-cart__icon svg{width:26px;height:26px}
  .lester-float-cart__count{width:34px;height:34px;font-size:16px}
  .lester-float-cart__title{font-size:15px}
  .lester-float-cart__sum{font-size:12px}
  .lester-float-cart__divider{height:26px}
}

/* Mobile: compact pill at the right-bottom; does not stretch across the whole screen. */
@media(max-width:650px){
  #lester-floating-cart-v18{
    left:auto;
    right:12px;
    bottom:max(12px,env(safe-area-inset-bottom));
    width:min(236px,calc(100vw - 24px));
  }
  .lester-float-cart__inner{
    grid-template-columns:42px minmax(0,1fr) 1px 34px;
    min-height:58px;
    gap:8px;
    padding:6px 8px 6px 6px;
  }
  .lester-float-cart__icon{width:42px;height:42px}
  .lester-float-cart__icon svg{width:25px;height:25px}
  .lester-float-cart__title{font-size:15px}
  .lester-float-cart__sum{font-size:12px}
  .lester-float-cart__divider{height:25px}
  .lester-float-cart__count{width:34px;height:34px;font-size:16px}
}
