/* Quantity button group styling */
.quantity {
  /* display: inline-flex; */
  /* align-items: center; */
  border: 2px solid #F39301; /* Outer border */
  border-radius: 50px; /* Rounded pill shape */
  overflow: hidden; /* Keep inside shape */

  max-width: 160px;
  display: flex;
  justify-content: space-around;
  align-content: center;
  flex-direction: row;
text-align: center !important;
  max-height: 30px;
}

/* Minus and plus buttons */
.qty-btn-dec,
.qty-btn-inc {
  background: #F39301;
  color:white ;
  border: none;
  width: 29px;
  height: 29px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, background 0.2s ease;
  border-radius: 0px;
  text-align: center !important;
}

.qty-btn-dec:hover,
.qty-btn-inc:hover,
.qty-btn-dec:focus,
.qty-btn-inc:focus {
    background: #555739; 

}

/* Middle quantity input */
.quantity .qty {
  width: 30px;
  text-align: center;
  font-size: 18px;
  font-weight: bold;
  border: none;
  border-left: 2px solid #000;
  border-right: 2px solid #000;
  outline: none;
  margin: 0;
  padding: 0;
  text-align: center !important;
}

/* Remove default styles for quantity input */
.elementor-widget-woocommerce-cart .woocommerce .input-text.qty {
    padding: 0;
    text-align: center !important;
    margin: 0px;
    
}

/* Remove default number spinner in Chrome/Edge */
.quantity .qty::-webkit-inner-spin-button,
.quantity .qty::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
  text-align: center !important;
}

/* Remove spinner in Firefox */
.quantity .qty {
  -moz-appearance: textfield;
}

.cco-initialized{
    max-width: 200px !important;
    float: left !important;
  }


@media (max-width: 768px) {

  .cco-initialized{
    max-width: 180px !important;
    float: right !important;
  }

  .product-remove{
    display: none;
  }

}


@media (max-width: 425px) {

  .cco-initialized{
    float: right !important;
  }


}
