/* Product card ATC row: qty + Add to Cart */

.makh-card-atc {
  display: flex;
  align-items: stretch;
  gap: 10px;
  width: 100%;
  box-sizing: border-box;
}

.makh-card-qty {
  display: inline-flex;
  align-items: stretch;
  flex: 0 0 auto;
  height: 48px;
  min-height: 48px;
  border: 1px solid #d0d5d2;
  border-radius: 6px;
  background: #f7f7f7;
  overflow: visible;
  box-sizing: border-box;
}

.makh-card-qty__btn {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 44px;
  width: 44px;
  height: 48px;
  min-height: 48px;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: #222222;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 48px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.makh-card-qty__btn span {
  display: block;
  line-height: 1;
  font-size: 22px;
  font-weight: 400;
  transform: none;
}

.makh-card-qty__btn:hover:not(:disabled) {
  background: #ececec;
}

.makh-card-qty__btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.makh-card-qty__minus {
  border-right: 1px solid #d0d5d2;
}

.makh-card-qty__plus {
  border-left: 1px solid #d0d5d2;
}

.makh-card-qty__val {
  min-width: 44px;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: Poppins, sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: #222222;
  box-sizing: border-box;
}

.makh-card-atc .add_to_cart_button,
.makh-card-atc a.button.add_to_cart_button,
.makh-card-atc button.add_to_cart_button,
.makh-card-atc .wp-block-button__link,
.makh-card-atc .wp-element-button,
.makh-card-atc button.wc-block-components-product-button__button {
  flex: 1 1 auto !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: auto !important;
  height: 48px !important;
  min-height: 48px !important;
  max-height: 48px !important;
  margin: 0 !important;
  padding: 0 16px !important;
  border: 0 !important;
  border-radius: 6px !important;
  background: var(--global-palette2, #063d22) !important;
  color: #ffffff !important;
  font-family: Poppins, sans-serif !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  letter-spacing: 0.02em !important;
  text-transform: none !important;
  text-decoration: none !important;
  box-shadow: none !important;
  white-space: nowrap;
  box-sizing: border-box !important;
  line-height: 1 !important;
}

.makh-card-atc .add_to_cart_button:hover,
.makh-card-atc .wp-block-button__link:hover {
  background: var(--global-palette1, #0e9c56) !important;
}

/* Hide old pill qty UI if leftover */
.makh-shop-qty-bar {
  display: none !important;
}

ul.products .product-action-wrap .added_to_cart,
.makh-about-product .added_to_cart,
.makh-blog-product .added_to_cart {
  display: none !important;
}

@media (max-width: 420px) {
  .makh-card-atc {
    flex-direction: column;
  }
  .makh-card-qty {
    width: 100%;
  }
  .makh-card-qty__btn,
  .makh-card-qty__val {
    flex: 1 1 0;
  }
}