/* AKB AED - Sticky Cart Bar */
#akb-aed-sticky-cartbar.akb-aed-cartbar {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: calc(var(--akb-aed-bottom-offset, 88px) + env(safe-area-inset-bottom));
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  z-index: 999999;
}

#akb-aed-sticky-cartbar.akb-aed-cartbar--hidden {
  display: none;
}

#akb-aed-sticky-cartbar .akb-aed-cartbar__summary {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.2;
  color: #0b1b2a;
  overflow: hidden;
}

#akb-aed-sticky-cartbar .akb-aed-cartbar__items,
#akb-aed-sticky-cartbar .akb-aed-cartbar__total {
  white-space: nowrap;
}

#akb-aed-sticky-cartbar .akb-aed-cartbar__total .amount {
  font-weight: 800;
}

#akb-aed-sticky-cartbar .akb-aed-cartbar__dot {
  opacity: .5;
}

#akb-aed-sticky-cartbar .akb-aed-cartbar__btn {
  flex: 0 0 auto;
  padding: 10px 14px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2b6cff, #6a3bff);
  color: #fff !important;
  font-weight: 800;
  text-decoration: none !important;
  font-size: 13px;
  letter-spacing: .3px;
  box-shadow: 0 10px 25px rgba(60, 80, 255, 0.25);
}

#akb-aed-sticky-cartbar .akb-aed-cartbar__btn:active {
  transform: translateY(1px);
}

/* Desktop: hide */
@media (min-width: 992px) {
  #akb-aed-sticky-cartbar { display: none !important; }
}
