/* === FORM RESET & UNIFIED DESIGN === */

/* GLOBAL RESET input elements */
input,
textarea,
select,
button {
  font-family: inherit;
  font-size: 16px;
  line-height: 1.4;
  color: #222;
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 10px 14px;
  box-sizing: border-box;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: #666;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.05);
}

/* SELECT dropdown arrows (custom look) */
select {
  background-image: url("data:image/svg+xml;utf8,<svg fill='black' height='14' viewBox='0 0 24 24' width='14' xmlns='http://www.w3.org/2000/svg'><path d='M7 10l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 12px;
  padding-right: 40px;
}

/* CHECKBOX & RADIO modern look */
input[type="checkbox"],
input[type="radio"] {
  width: 18px;
  height: 18px;
  border-radius: 4px;
  border: 1px solid #bbb;
  vertical-align: middle;
  margin-right: 6px;
  position: relative;
  cursor: pointer;
}

input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 1px;
  width: 4px;
  height: 8px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

input[type="radio"] {
  border-radius: 50%;
}

input[type="radio"]:checked::after {
  content: '';
  position: absolute;
  top: 5px;
  left: 5px;
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
}

/* BUTTONS */
button,
input[type="submit"],
.woocommerce button.button {
  background-color: #000;
  color: #fff;
  font-weight: 600;
  text-transform: uppercase;
  padding: 12px 20px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  transition: background 0.3s ease;
}

button:hover,
input[type="submit"]:hover,
.woocommerce button.button:hover {
  background-color: #444;
}

/* WOO QUANTITY + BUTTON INLINE FIX */
form.cart {
  display: flex;
  gap: 0;
  align-items: center;
  flex-wrap: wrap;
}

form.cart .quantity input.qty {
  width: 60px;
  height: 45px;
  border-radius: 6px 0 0 6px;
  text-align: center;
  margin: 0;
}

form.cart .single_add_to_cart_button {
  height: 45px;
  border-radius: 0 6px 6px 0;
  padding: 0 24px;
  background-color: #000;
  color: #fff;
}