/* Single Product Add to Cart Button */
.single-product .single_add_to_cart_button {
    background: linear-gradient(135deg, #111827, #000000);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
    transition: all 0.25s ease-in-out;
    cursor: pointer;
    width: 100%;
    max-width: 280px;
}

/* Hover Effect */
.single-product .single_add_to_cart_button:hover {
    background: linear-gradient(135deg, #000000, #1f2933);
    transform: translateY(-2px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.35);
    color: #ffffff;
}

/* Active / Click */
.single-product .single_add_to_cart_button:active {
    transform: translateY(0);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

/* Disabled State */
.single-product .single_add_to_cart_button:disabled,
.single-product .single_add_to_cart_button.disabled {
    background: #9ca3af;
    cursor: not-allowed;
    box-shadow: none;
}

/* Quantity + Button Alignment */
.single-product form.cart {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

/* Quantity Field Styling */
.single-product .quantity input.qty {
    width: 90px;
    height: 48px;
    border-radius: 10px;
    border: 2px solid #e5e7eb;
    text-align: center;
    font-size: 16px;
    font-weight: 600;
}

/* Wrap form horizontally */
form.cart {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Quantity box */
form.cart .quantity {
  border: 2px solid #f26d3d;   /* orange border */
  border-radius: 4px;
  padding: 10px 14px;
  min-width: 160px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Quantity input */
form.cart .quantity input.qty {
  border: none;
  outline: none;
  text-align: center;
  font-size: 20px;
  font-weight: 500;
  width: 60px;
  background: transparent;
  box-shadow: none;
}

/* Remove default arrows (Chrome, Edge, Safari) */
form.cart .quantity input.qty::-webkit-outer-spin-button,
form.cart .quantity input.qty::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Remove arrows (Firefox) */
form.cart .quantity input.qty {
  -moz-appearance: textfield;
}

/* Add to cart button */
form.cart .single_add_to_cart_button {
  background: #e08b6b;  /* peach/orange like screenshot */
  border: none;
  border-radius: 2px;
  padding: 18px 60px;
  font-size: 18px;
  font-weight: 600;
  color: #fff;
  text-transform: none;
  height: 64px;
  min-width: 320px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hover effect */
form.cart .single_add_to_cart_button:hover {
  background: #d67856;
}
