/* Compact cart handoff: details and chat actions live on the order-service page. */
body.home-page .cart-float {
  bottom: 16px;
  width: auto;
  min-width: 260px;
  max-width: calc(100vw - 32px);
  min-height: 54px;
  gap: 14px;
  padding: 7px 7px 7px 14px;
  border-color: rgba(255, 255, 255, 0.8);
  border-radius: 16px;
  color: #17211d;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 42px rgba(17, 24, 20, 0.16);
  backdrop-filter: blur(18px) saturate(1.18);
  -webkit-backdrop-filter: blur(18px) saturate(1.18);
}

body.home-page .cart-float span {
  display: none;
}

body.home-page .cart-float strong {
  color: #17211d;
  font-size: 14px;
  line-height: 1.15;
  white-space: nowrap;
}

body.home-page .cart-float-actions {
  display: flex;
  max-width: none;
}

body.home-page .cart-float-actions a {
  min-height: 38px;
  padding: 8px 14px;
  border: 0;
  border-radius: 11px;
  color: #fff;
  background: #cf4b31;
  font-size: 12px;
  white-space: nowrap;
}

@media (max-width: 620px) {
  body.home-page .cart-float {
    display: none !important;
  }

  body.home-page .mobile-shop-nav a[href*="#checkout"] {
    position: relative;
  }

  body.home-page .mobile-shop-nav [data-mobile-cart-count] {
    position: absolute;
    top: 3px;
    left: 50%;
    min-width: 16px;
    height: 16px;
    margin-left: 5px;
    padding: 0 4px;
    border: 2px solid #fff;
    border-radius: 999px;
    color: #fff;
    background: #d9472f;
    font-size: 9px;
    font-weight: 800;
    line-height: 12px;
    text-align: center;
  }
}
