/* .cart-controls {
  display: flex;
  justify-content: center;

  align-items: center;
  background: linear-gradient(135deg, #00b894, #00a085);
  border-radius: 50px;
  padding: 12px 100px;
  gap: 20px;
  font-size: 16px;
  font-weight: 600;
  color: white;
  box-shadow: 0 6px 20px rgba(0, 184, 148, 0.3);
  transition: all 0.3s ease;
  max-width: 200px;
  position: relative;
  overflow: hidden;
  margin-top: 20px;
  margin-bottom: 20px;
}

.cart-controls::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s ease;
}

.cart-controls:hover::before {
  left: 100%;
}

.cart-controls:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 184, 148, 0.4);
}

.cart-controls button {
  background: rgba(255, 255, 255, 0);
  border: none;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  font-size: 20px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(10px);
}

.cart-controls button:hover {
  background: rgba(255, 255, 255, 0);
  transform: scale(1.1);
}

.cart-controls button:active {
  transform: scale(0.95);
}

.cart-controls span {
  font-size: 18px;
  min-width: 30px;
  text-align: center;
  color: white;
  font-weight: 700;
} */
.cart-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #00b894, #00a085);
  border-radius: 12px;
  padding: 5px 12px;
  gap: 10px;
  font-size: 14px;
  font-weight: 600; 
  color: white;
  box-shadow: 0 4px 10px rgba(0, 184, 148, 0.25);
  transition: all 0.3s ease;
  margin: 0 12px 10px 12px;
  width: calc(100% - 24px); /* fits inside card neatly */
}

.cart-controls button {
  background: transparent;
  border: none;
  width: 100%;
  height: 32px;
  border-radius: 12px;
  font-size: 18px;
  font-weight: bold;
  color: white;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cart-controls button:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: scale(1.1);
}

.cart-controls button:active {
  transform: scale(0.95);
}

.cart-controls span {
  font-size: 16px;
  min-width: 24px;
  text-align: center;
  font-weight: 700;
  color: #fff;
}
