/* Side cart CTA + mobile menu footer cleanup */

#blockcart-content .cart-buttons,
#_mobile_blockcart-content .cart-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

#blockcart-content .cart-buttons .btn-primary,
#_mobile_blockcart-content .cart-buttons .btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  color: #fff;
  background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
  border: none;
  box-shadow: 0 6px 18px rgba(234, 88, 12, 0.35);
  transition: all 0.2s ease;
}

#blockcart-content .cart-buttons .btn-primary:hover,
#_mobile_blockcart-content .cart-buttons .btn-primary:hover {
  background: linear-gradient(135deg, #ea580c 0%, #c2410c 100%);
  box-shadow: 0 8px 22px rgba(234, 88, 12, 0.45);
}

#blockcart-content .cart-buttons .btn-secondary,
#_mobile_blockcart-content .cart-buttons .btn-secondary {
  display: none !important;
}

#blockcart-content .deco-cart-item--removing,
#_mobile_blockcart-content .deco-cart-item--removing {
  position: relative;
  filter: blur(2px);
  opacity: 0.65;
  pointer-events: none;
}

#blockcart-content .deco-cart-item--removing::before,
#_mobile_blockcart-content .deco-cart-item--removing::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.65);
  z-index: 2;
}

#blockcart-content .deco-cart-item--removing::after,
#_mobile_blockcart-content .deco-cart-item--removing::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 26px;
  height: 26px;
  margin: -13px 0 0 -13px;
  border: 2px solid rgba(234, 88, 12, 0.35);
  border-top-color: #ea580c;
  border-radius: 50%;
  animation: decoCartSpin 0.7s linear infinite;
  z-index: 3;
}

.deco-cart-toggle-disabled {
  opacity: 0.45;
  filter: grayscale(0.2);
  cursor: default;
}

#_mobile_iqitmegamenu-mobile .js-top-menu-bottom,
#_mobile_iqitmegamenu-mobile .mobile-menu__footer {
  display: none !important;
}

@keyframes decoCartSpin {
  to {
    transform: rotate(360deg);
  }
}
