/*** Colors ***/
/*** Dark Mode Text Colors - Accessible ***/
/*** Typography Scale - Consistent across pages ***/
.sticky-bottom-cart-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1040;
  background: rgba(76, 91, 90, 0.98);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 20px 20px 0 0;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
  padding: 14px 20px;
  padding-bottom: max(14px, env(safe-area-inset-bottom));
  cursor: pointer;
  transform: translateY(100%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.35s;
}
.sticky-bottom-cart-bar.visible {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.sticky-bottom-cart-bar:hover, .sticky-bottom-cart-bar:focus {
  background: rgb(76, 91, 90);
  outline: none;
}
.sticky-bottom-cart-bar:active {
  transform: translateY(0) scale(0.98);
}
.sticky-bottom-cart-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
}
.sticky-bottom-cart-bar__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sticky-bottom-cart-bar__icon i {
  font-size: 22px;
  color: #ffffff;
}
.sticky-bottom-cart-bar__count {
  position: absolute;
  top: -8px;
  right: -10px;
  min-width: 20px;
  height: 20px;
  padding: 0 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #22c9b0 0%, #1ca691 100%);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 2px 6px rgba(34, 201, 176, 0.4);
}

body.darkmode .sticky-bottom-cart-bar {
  background: rgba(30, 33, 40, 0.98);
}
body.darkmode .sticky-bottom-cart-bar:hover, body.darkmode .sticky-bottom-cart-bar:focus {
  background: rgb(30, 33, 40);
}

@media (min-width: 992px) {
  .sticky-bottom-cart-bar {
    display: none !important;
  }
}
@media (prefers-reduced-motion: reduce) {
  .sticky-bottom-cart-bar {
    transition-duration: 0.01ms !important;
  }
}