.cart-float {
  position: relative;
  transform: none;
  z-index: 1;
  min-width: 64px;
  height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  background: #fff;
  color: #b48c5a;
  border: 2px solid #b48c5a;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-weight: 700;
  font-size: 14px;
  order: 10;
}

.cart-badge {
  position: absolute;
  top: -6px;
  right: -6px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #e74c3c;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: none;
  align-items: center;
  justify-content: center;
  line-height: 1;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.cart-float.top-left {
  position: absolute;
  top: 8px;
  left: 16px;
  transform: none;
  z-index: 10;
}

header,
.page-header {
  position: relative;
}

.cart-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  background: #f8f1e8;
}



@media (max-width: 600px) {
  .cart-float {
    min-width: 58px;
    height: 36px;
    padding: 0 12px;
  }
  .cart-float.top-left {
    top: 6px;
    left: 12px;
  }
  .cart-badge {
    top: -5px;
    right: -5px;
    min-width: 16px;
    height: 16px;
    font-size: 10px;
  }
}
