.brxe-woocommerce-breadcrumbs {
    overflow: scroll;
    scrollbar-width: none;
}

.brxe-woocommerce-breadcrumbs nav > span {
    flex-wrap: nowrap!important;
}

/*Stock Radio button change to toggle*/

/* 1. Reset and Show the Indicator */
.stock-toggle .brx-input-indicator {
  opacity: 1 !important; /* Forces visibility when untoggled */
  visibility: visible !important;
  display: inline-block;
  position: relative;
  width: 44px;
  height: 22px;
  background-color: #d1d5db; /* Light gray for 'Off' state */
  border-radius: 100px;
  transition: all 0.3s ease;
  flex-shrink: 0;
  border: none; /* Removes default radio border if present */
}

/* 2. The White Toggle Circle */
.stock-toggle .brx-input-indicator::after {
  content: "";
  position: absolute;
  top: 11px;
  left: 11px;
  width: 18px;
  height: 18px;
  background-color: #ffffff !important;
  border-radius: 50%;
  transition: transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
  display: block !important;
  opacity: 1 !important;
}

/* 3. CHECKED / ACTIVE STATE */
/* Background color using your primary variable */
.stock-toggle input:checked ~ .brx-input-indicator,
.stock-toggle .brx-option-active .brx-input-indicator {
  background-color: var(--primary) !important;
  opacity: 1 !important;
}

/* Move the circle to the right */
.stock-toggle input:checked ~ .brx-input-indicator::after,
.stock-toggle .brx-option-active .brx-input-indicator::after {
  transform: translate(13px,-9px) !important;
}

/* 4. Hide the actual radio input completely */
.stock-toggle .brx-a11y-hidden {
  display: none !important;
}

/* 5. Center the label content */
.stock-toggle label.depth-0 {
  display: flex;
  align-items: center;
  cursor: pointer;
  gap: 10px;
}

/*Radio button styles end*/

.checkout-product .quantity,
.checkout-product .remove.remove_from_cart_button {
  display: none!important;
}

.checkout-product .product-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
