/* ===== METFI Sticky Add-to-Cart ===== */
#metfi-sticky-atc {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9998;
  background: #fff;
  border-top: 1px solid #e0e0e0;
  box-shadow: 0 -2px 12px rgba(0,0,0,.1);
  transform: translateY(100%);
  transition: transform .3s ease;
}
#metfi-sticky-atc.visible {
  transform: translateY(0);
}
.metfi-sticky-atc-inner {
  max-width: 600px;
  margin: 0 auto;
  padding: 8px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.metfi-sticky-atc-label {
  display: block;
  font-size: 11px;
  color: #666;
  font-family: sans-serif;
}
.metfi-sticky-atc-value {
  display: block;
  font-size: 16px;
  font-weight: 700;
  color: #B80C09;
  font-family: sans-serif;
}
.metfi-sticky-atc-btn {
  background: #B80C09;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 12px 24px;
  font-weight: 700;
  font-size: 13px;
  cursor: pointer;
  white-space: nowrap;
  letter-spacing: .3px;
  transition: background .2s;
}
.metfi-sticky-atc-btn:hover {
  background: #8B0000;
}
body.metfi-sticky-active .leo-fly-cart.type-fixed {
  bottom: 70px !important;
  transition: bottom .3s ease;
}
body.metfi-sticky-active #spr-bubble {
  bottom: 70px !important;
  transition: bottom .3s ease;
}
