/* =========================================================
   GLOBURI3D – Stylish quantity buttons
   ========================================================= */
.woocommerce div.quantity,
.woocommerce-page div.quantity {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid #dcdcdc;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  height: 48px;
}

.woocommerce div.quantity input.qty {
  width: 60px;
  height: 48px;
  text-align: center;
  font-size: 1.1rem;
  border: none;
  box-shadow: none;
  outline: none;
  padding: 0;
  -moz-appearance: textfield;
}
.woocommerce div.quantity input.qty::-webkit-outer-spin-button,
.woocommerce div.quantity input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Plus / Minus buttons */
.qty-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 48px;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 500;
  background: #f8f8f8;
  color: #333;
  cursor: pointer;
  user-select: none;
  transition: all 0.15s ease;
  border: none;
}
.qty-button:hover {
  background: #e6f2ec;
  color: #1f7a56;
}
.qty-button:active {
  background: #d8ede4;
}

/* Keep aligned with “Add to Cart” */
.woocommerce div.quantity {
  margin-right: 10px;
}

/* Mini-cart compatibility */
.widget_shopping_cart .quantity,
.woocommerce-mini-cart .quantity {
  height: 40px;
}
.widget_shopping_cart .qty-button,
.woocommerce-mini-cart .qty-button {
  height: 40px;
  width: 40px;
}
.widget_shopping_cart input.qty,
.woocommerce-mini-cart input.qty {
  height: 40px;
}
/* =========================================================
   END – Stylish quantity buttons
   ========================================================= */
