/*
 Theme Name:   Woodmart Child
 Description:  Woodmart Child Theme
 Author:       XTemos
 Author URI:   http://xtemos.com
 Template:     woodmart
 Version:      1.0.0
 Text Domain:  woodmart
*/
body {
  font-family: var(--wd-text-font, --wd-alternative-font);
}

.wd-product :is(.product-image-link, .hover-img) img {
  aspect-ratio: 1/1;
}

:root {
  --fluidcheckout--button--border-radius: var(
    --btn-default-brd-radius,
    --btn-accented-brd-radius
  );

  --btn-default-bgcolor: var(--wd-primary-color, rgb(9, 126, 78));
  --btn-bgcolor: var(--wd-primary-color, --btn-default-bgcolor);
  --btn-bgcolor-hover: var(--wd-primary-color, --btn-default-bgcolor);
  --fluidcheckout--button--secondary--background-color: var(
    --wd-primary-color,
    --btn-default-bgcolor
  );
}

@media (width >= 750px) {
  body.has-checkout-layout--multi-step .fc-step__actions {
    padding-left: 0;
    padding-right: 0;
  }
}

body
  div.woocommerce
  .fc-wrapper
  .fc-coupon_code__collapsible
  .fc-coupon-code__apply {
  border-radius: var(
    --wd-form-brd-radius,
    --fluidcheckout--button--border-radius
  ) !important;
}

body div.woocommerce .fc-wrapper {
  .woocommerce-billing-fields {
    .woocommerce-billing-only-fields__field-wrapper {
      margin-top: 0 !important;
    }
  }

  .address-field.fc-country-field {
    visibility: hidden !important;
    position: absolute;
    top: -9999px;
    left: -9999px;
    height: 0;
    width: 0;
    opacity: 0;
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
}

.fc-order-details__actions .fc-order-details-action.button,
.fc-order-details-section .input-container button,
.woocommerce-order-details .button,
.woocommerce-form-login__submit,
.btn:not(.login-fb-link):not(.login-goo-link) {
  padding: 12px 14px;
  min-height: 36px;
  border-radius: var(--btn-accented-brd-radius);
  color: var(--btn-accented-color);
  box-shadow: var(--btn-accented-box-shadow);
  background-color: var(--btn-accented-bgcolor);
  text-transform: var(
    --btn-accented-transform,
    var(--btn-transform, uppercase)
  );
  font-weight: var(--btn-accented-font-weight, var(--btn-font-weight, 600));
  font-family: var(--btn-accented-font-family, var(--btn-font-family, inherit));
  font-style: var(--btn-accented-font-style, var(--btn-font-style, unset));

  &:hover {
    background-color: var(--btn-accented-bgcolor-hover);
    color: var(--btn-accented-color-hover);
    box-shadow: var(--btn-accented-box-shadow-hover);
  }
}

.fc-order-details__actions .fc-order-details-action.button,
.fc-order-details-section .input-container button,
.woocommerce-order-details .button,
.woocommerce-form-login__submit {
  font-size: 12px;
}

.fc-step__substep-fields-inner .woocommerce-billing-fields {
  margin-top: 16px !important;
}

.woocommerce-order-pay #order_review {
  max-width: none !important;
}

:is(
    .woocommerce-checkout > .checkout-order-review,
    .woocommerce-order-pay #order_review
  ) {
  background-color: #fff !important;
}

:is(
    .woocommerce-checkout > .checkout-order-review,
    .woocommerce-order-pay #order_review
  ):before,
:is(
    .woocommerce-checkout > .checkout-order-review,
    .woocommerce-order-pay #order_review
  ):after {
  content: none !important;
}

/* ========================================
   Product Manager - Quantity & Weight Styles
   ======================================== */

.price .weight-unit {
  font-size: 80%;
}

/* Container principal */
.custom-add-to-cart {
  position: relative;
  width: 100%;
}

/* Loading state */
.custom-add-to-cart.loading,
.weight-quantity-input.loading {
  pointer-events: none;
  opacity: 0.6;
}

.custom-add-to-cart.loading * {
  pointer-events: none;
}

/* Botão adicionar ao carrinho */
.custom-add-to-cart .add_to_cart_button {
  position: relative;
  width: 100%;
  border: none;
  border-radius: var(--btn-default-brd-radius, 4px);
  background-color: var(--btn-accented-bgcolor, var(--wd-primary-color));
  color: var(--btn-default-color, #fff);
  transition: all 0.3s ease;
}

.custom-add-to-cart .add_to_cart_button:hover {
  background-color: var(--btn-accented-bgcolor-hover, var(--wd-primary-color));
  transform: translateY(-1px);
}

.custom-add-to-cart .add_to_cart_button:active {
  transform: translateY(0);
}

/* Container do input de quantidade */
.custom-add-to-cart .quantity-input-wrapper {
  display: none;
  align-items: center;
  overflow: hidden;
}

.custom-add-to-cart.in-cart .quantity-input-wrapper {
  display: flex;
  column-gap: 8px;
}

.custom-add-to-cart.in-cart .add_to_cart_button {
  display: none;
}

/* Botões + e - */
.custom-add-to-cart .qty-btn {
  width: 42px;
  height: 42px;
  border: none;
  border-radius: var(--btn-default-brd-radius, 4px);
  background: var(--wd-primary-color, #f8f8f8);
  color: var(--btn-accented-color, #333);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  line-height: 0;
  padding: 10px;
}

.custom-add-to-cart .qty-btn:hover {
  background: var(--wd-primary-color, #333);
  color: #fff;
}

.custom-add-to-cart .qty-btn:active {
  transform: scale(0.95);
}

/* Input de quantidade */
.custom-add-to-cart .qty-input {
  flex: 1;
  height: 42px;
  border: 2px solid var(--wd-primary-color, #e1e1e1);
  background-color: transparent;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  color: var(--wd-text-color, #333);
  outline: none;
  -moz-appearance: textfield;
}

.custom-add-to-cart .qty-input::-webkit-outer-spin-button,
.custom-add-to-cart .qty-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Unidade de peso */
.custom-add-to-cart .weight-unit {
  padding: 0 12px;
  font-size: 12px;
  font-weight: 600;
  color: var(--wd-text-color-light, #777);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* Exibição de preço por peso - produto individual */
.custom-add-to-cart .weight-price-display,
.custom-add-to-cart .weight-price-info {
  margin-top: 12px;
  padding: 12px 0;
}

.custom-add-to-cart .weight-price-display {
  display: none;
}

.single-product-page
  .custom-add-to-cart.in-cart.single-product
  .weight-price-display {
  display: block;
}

.single-product-page
  .custom-add-to-cart.not-in-cart.single-product
  .weight-price-info {
  display: block;
}

.custom-add-to-cart .total-price {
  display: block;
  font-size: 16px;
  color: var(--wd-text-color, #333);
}

.custom-add-to-cart .total-amount {
  font-weight: 700;
  color: var(--wd-primary-color, #333);
}

.custom-add-to-cart .weight-info {
  display: block;
  font-size: 12px;
  color: var(--wd-text-color-light, #777);
  margin-top: 4px;
}

/* Feedback de ações */
.custom-add-to-cart .cart-feedback {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  margin-top: 8px;
  z-index: 10;
}

.cart-custom-message,
.custom-add-to-cart .cart-feedback {
  padding: 8px 12px;
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  text-align: center;
}

.woocommerce .woocommerce-cart-form .cart-item.cart-item-error {
  border: 1px solid var(--notices-warning-bg, #dc3545) !important;
}

.custom-add-to-cart .cart-feedback.success,
.cart-custom-message.cart-message-success {
  background: var(--notices-success-bg, #28a745);
  color: var(--notices-success-color, #fff);
}

.custom-add-to-cart .cart-feedback.error,
.cart-custom-message.cart-message-error {
  background: var(--notices-warning-bg, #dc3545);
  color: var(--notices-warning-color, #fff);
}

/* Sticky */

.wd-sticky-btn-cart .weight-price-display,
.wd-sticky-btn-cart .wwbp-weight-notice {
  display: none !important;
}

@media (width < 768px) {
  .wd-sticky-btn-cart .custom-single-add-to-cart {
    padding: 1px 16px;
    background-color: var(--wd-primary-color, #333);
  }
  .wd-sticky-btn-cart .custom-single-add-to-cart * {
    color: var(--btn-accented-color, #fff);
  }
}
/* ========================================
   Carrinho - Inputs de peso
   ======================================== */

.woocommerce-cart-form .weight-quantity-input {
  margin-top: 12px;
}

.weight-quantity-input {
  display: flex;
  position: relative;
  z-index: 1;
  align-items: center;
  gap: 4px;
  max-width: 200px;
  margin-bottom: 8px;
}

.weight-quantity-input .fc-minus,
.weight-quantity-input .fc-plus {
  display: none;
}

.weight-quantity-input .weight-minus,
.weight-quantity-input .weight-plus {
  width: 32px;
  height: 32px;
  border-radius: var(--btn-default-brd-radius, 4px);
  background: var(--wd-primary-color, #f8f8f8);
  color: var(--btn-accented-color, #333);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 10px;
}

.weight-quantity-input .weight-input {
  width: 80px;
  height: 32px;
  border: 1px solid var(--wd-border-color, #d4d4d4) !important;
  border-radius: var(--btn-default-brd-radius, 4px);
  text-align: center;
  font-size: 14px;
  color: var(--wd-form-color, #333);
  background: #fff;
  -moz-appearance: textfield;
  min-height: 32px;
}

.weight-quantity-input .weight-input::-webkit-outer-spin-button,
.weight-quantity-input .weight-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.weight-quantity-input .weight-input:focus {
  border-color: var(--wd-primary-color, #333);
  outline: none;
  box-shadow: 0 0 0 2px rgba(var(--wd-primary-color-rgb, 51, 51, 51), 0.1);
}

.weight-quantity-input .weight-unit-label {
  font-size: 12px;
  font-weight: 600;
  color: var(--wd-text-color-light, #777);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ========================================
   Informações de peso no carrinho
   ======================================== */

.weight-info,
.weight-info * {
  font-style: italic;
  color: var(--wd-text-color-light, #777) !important;
}

/* ========================================
   Responsividade
   ======================================== */

/* Mobile first */
@media (max-width: 767px) {
  .custom-add-to-cart .qty-btn {
    width: 38px;
    height: 38px;
    font-size: 14px;
  }

  .custom-add-to-cart .qty-input {
    height: 40px;
    font-size: 13px;
  }

  .custom-add-to-cart .add_to_cart_button {
    min-height: 40px;
    padding: 10px 16px;
    font-size: 13px;
  }

  .weight-quantity-input {
    max-width: 180px;
  }

  .weight-quantity-input .weight-input {
    width: 70px;
    height: 28px;
    font-size: 12px;
  }

  .weight-quantity-input .weight-minus,
  .weight-quantity-input .weight-plus {
    width: 28px;
    height: 28px;
    font-size: 12px;
  }
}

/* Tablets */
@media (min-width: 768px) and (max-width: 1024px) {
  .custom-add-to-cart .weight-price-display,
  .custom-add-to-cart .weight-price-info {
    margin-top: 10px;
    padding: 10px;
  }
}

/* Desktop large */
@media (min-width: 1200px) {
  .custom-add-to-cart .qty-btn {
    width: 44px;
    height: 44px;
  }

  .custom-add-to-cart .qty-input {
    height: 44px;
    font-size: 15px;
  }
}

/* ========================================
   Estados especiais
   ======================================== */

/* Produto fora de estoque */
.custom-add-to-cart.out-of-stock {
  opacity: 0.6;
}

.custom-add-to-cart.out-of-stock .add_to_cart_button {
  background-color: var(--wd-gray-400, #999);
  cursor: not-allowed;
}

/* Produto com erro */
.custom-add-to-cart.error .quantity-input-wrapper {
  border-color: var(--wd-error-color, #dc3545);
  animation: shake 0.3s ease-in-out;
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
}

/* ========================================
   Integração com WoodMart
   ======================================== */

/* Compatibilidade com grid de produtos */
.products-grid .custom-add-to-cart {
  margin-top: 15px;
}

/* Compatibilidade com lista de produtos */
.shop-products.products-list .custom-add-to-cart {
  margin-left: 20px;
  flex-shrink: 0;
  min-width: 200px;
}

/* Sticky add to cart */
.woodmart-sticky-atc .custom-add-to-cart {
  margin: 0;
}

.woodmart-sticky-atc .custom-add-to-cart .quantity-input-wrapper {
  min-width: 140px;
}

/* Single product page */
.single-product-page .custom-single-add-to-cart {
  margin: 20px 0;
}

/* ========================================
   Animações e transições suaves
   ======================================== */

.custom-add-to-cart .quantity-input-wrapper,
.custom-add-to-cart .add_to_cart_button,
.custom-add-to-cart .weight-price-display,
.custom-add-to-cart .weight-price-info {
  transition: all 0.3s ease;
}

.custom-add-to-cart.in-cart .quantity-input-wrapper {
  animation: slideIn 0.3s ease forwards;
}

.custom-add-to-cart.not-in-cart .add_to_cart_button {
  animation: slideIn 0.3s ease forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========================================
   Estilo para substituir os originais do woodmart
   ======================================== */

.mini_cart_item.wd-loading div.quantity {
  pointer-events: none;
  opacity: 0.6;
}

.cart-info div.quantity {
  gap: 4px;

  input[type="button"] {
    border-radius: var(--wd-form-brd-radius) !important;
    background-color: var(
      --btn-accented-bgcolor,
      var(--wd-primary-color)
    ) !important;
    color: var(--btn-default-color, #fff) !important;
    font-size: 14px;
    font-weight: 700;
    width: 32px;
    height: 32px;
    border-width: 0 !important;
  }

  input[type="button"]:hover {
    background-color: var(--wd-primary-color) !important;
    color: var(--btn-default-color, #fff) !important;
  }

  input[type="number"] {
    width: 80px;
    border-radius: var(--wd-form-brd-radius);
    border: 1px solid var(--wd-border-color, #d4d4d4) !important;
  }
}

/* ========================================
   Estilo para substituir o fluid checkout
   ======================================== */

body.woocommerce-cart .fc-wrapper .product-details div.quantity {
  display: flex !important;
  gap: 4px !important;
  border: none !important;
  max-width: none !important;
  width: auto !important;
  margin-top: 12px !important;
  margin-bottom: 8px !important;
  height: auto !important;
}

body.woocommerce-cart .fc-wrapper button.fc-number-spin-button {
  border-radius: var(--wd-form-brd-radius) !important;
  background-color: var(
    --btn-accented-bgcolor,
    var(--wd-primary-color)
  ) !important;
  color: var(--btn-default-color, #fff) !important;
  font-size: 14px;
  font-weight: 700;
  width: 32px !important;
  height: 32px !important;
  min-height: 0 !important;
  border-width: 0 !important;
}

body.woocommerce-cart .fc-wrapper button.fc-number-spin-button.fc-minus,
body.woocommerce-cart .fc-wrapper button.fc-number-spin-button.fc-plus {
  position: initial !important;
  position: relative !important;
}

body.woocommerce-cart .fc-wrapper button.fc-number-spin-button.fc-minus::after,
body.woocommerce-cart .fc-wrapper button.fc-number-spin-button.fc-plus::after {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  transform: translate(0%, -15%) !important;
  font-family: var(--wd-text-font, --wd-alternative-font) !important;
  font-size: 14px !important;
  font-weight: 700 !important;
  color: var(--btn-default-color, #fff) !important;
  opacity: 1 !important;
  margin: auto;
  line-height: 1.2 !important;
}

body.woocommerce-cart .fc-wrapper button.fc-number-spin-button.fc-minus {
  order: 1 !important;
}

body.woocommerce-cart .fc-wrapper button.fc-number-spin-button.fc-minus::after {
  content: "-" !important;
}

body.woocommerce-cart .fc-wrapper button.fc-number-spin-button.fc-plus {
  order: 3 !important;
}

body.woocommerce-cart .fc-wrapper button.fc-number-spin-button.fc-plus::after {
  content: "+" !important;
}

body.woocommerce-cart.has-fc-cart-ajax .fc-wrapper .product-details input.qty {
  order: 2 !important;
  width: 80px !important;
  border-radius: var(--wd-form-brd-radius) !important;
  border: 1px solid var(--wd-border-color, #d4d4d4) !important;
  min-height: 32px !important;
  font-size: 14px !important;
  max-width: none !important;
  margin: 0 !important;
  height: auto !important;
}

/* ========================================
   Ajax filters plugin
   ======================================== */

.boxfruti-shop-filter {
  .bapf-sfa-grey-rounded .berocket_aapf_widget_selected_area li a::before {
    right: 11px;
    top: 16px;
    line-height: 0;
  }

  .bapf-sfa-grey-rounded .berocket_aapf_widget_selected_area li a,
  .bapf-clean-rounded li label {
    border-width: 1px;
    font-weight: 400;
    font-size: 14px;
  }

  .bapf-sfa-grey-rounded
    .berocket_aapf_widget_selected_area
    a.braapf_unselect_all {
    border: 0;
  }

  .irs--flat .irs-bar,
  .irs--flat .irs-from,
  .irs--flat .irs-single,
  .irs--flat .irs-to {
    background-color: var(--wd-alternative-color, #ed5565);
  }

  .irs--flat .irs-from:before,
  .irs--flat .irs-single:before,
  .irs--flat .irs-to:before {
    border-top-color: var(--wd-alternative-color, #ed5565);
  }

  .bapf-clean-rounded li.checked label {
    border-color: var(--wd-alternative-color, #0d59b9);
    color: var(--wd-alternative-color, #0d59b9);
  }

  .bapf-clean-rounded li.checked label:before {
    left: 10px;
    top: 12px;
    border-color: var(--wd-alternative-color, #0d59b9);
  }
}

.bapf_lcontainer {
  width: 48px;
  height: 48px;
}

.bapf_limg {
  animation: breathing 2s ease-out infinite normal;
}

@keyframes breathing {
  0% {
    transform: scale(0.9);
  }

  25% {
    transform: scale(1);
  }

  60% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(0.9);
  }
}

/* ========================================
   Toast Notifications
   ======================================== */

.product-manager-toasts {
  position: fixed;
  bottom: 60px;
  right: 0;
  left: 0;
  margin: 0 auto;
  z-index: 9999;
  pointer-events: none;
  display: flex;
  justify-content: center;
}

.product-manager-toast {
  margin-bottom: 10px;
  padding: 12px 16px;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(100%);
  opacity: 0;
  transition: all 0.3s ease;
  max-width: 300px;
  word-wrap: break-word;
}

.product-manager-toast.toast-show {
  transform: translateY(0);
  opacity: 1;
}

.product-manager-toast.toast-hide {
  transform: translateY(100%);
  opacity: 0;
}

.product-manager-toast.toast-success {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
  color: white;
}

.product-manager-toast.toast-error {
  background: linear-gradient(135deg, #dc3545 0%, #fd7e14 100%);
  color: white;
}

.toast-content {
  display: flex;
  align-items: center;
  gap: 8px;
}

.toast-icon {
  font-size: 16px;
  font-weight: bold;
  flex-shrink: 0;
}

.toast-message {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.3;
}

/* Mobile */
@media (max-width: 767px) {
  .product-manager-toasts {
    right: 10px;
    left: 10px;
  }

  .product-manager-toast {
    max-width: none;
    margin-bottom: 8px;
  }
}
/* ========================================
   Avisos de Peso
   ======================================== */

.wwbp-weight-notice {
  padding: 15px;
  margin: 20px 0;
  border-radius: 6px;
  border-left: 4px solid;
  font-size: 14px;
  line-height: 1.6;
}

.wwbp-notice-info {
  background: linear-gradient(135deg, #e7f3ff 0%, #f0f8ff 100%);
  border-left-color: var(--wd-primary-color, #0073aa);
  color: #0066cc;
}

.wwbp-notice-warning {
  background: linear-gradient(135deg, #fff3cd 0%, #fef9e7 100%);
  border-left-color: #856404;
  color: #856404;
}

.wwbp-notice-success {
  background: linear-gradient(135deg, #d4edda 0%, #e8f5e8 100%);
  border-left-color: var(--wd-primary-color, #28a745);
  color: var(--notices-success-bg, #155724);
}

.wwbp-notice-neutral {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  border-left-color: #6c757d;
  color: #495057;
}

.wwbp-notice-title {
  margin: 0 0 10px 0;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}

.wwbp-notice-title::before {
  content: "⚖️";
  font-size: 18px;
}

.wwbp-notice-content {
  margin: 0;
}

.wwbp-notice-content p {
  margin: 0 0 8px 0;
}

.wwbp-notice-content p:last-child {
  margin-bottom: 0;
}

.wwbp-notice-content strong {
  font-weight: 600;
}

.wwbp-notice-content em {
  font-style: italic;
}

/* Responsividade para avisos */
@media (max-width: 767px) {
  .wwbp-weight-notice {
    padding: 12px;
    margin: 15px 0;
    font-size: 14px;
  }

  .wwbp-notice-title {
    font-size: 15px;
  }
}

/* ========================================
   Algolia
   ======================================== */

.algolia-autocomplete * {
  font-family: var(--wd-text-font, --wd-alternative-font) !important;
}

.algolia-autocomplete .aa-dropdown-menu a.suggestion-link {
  display: flex;
}

.algolia-autocomplete .aa-dropdown-menu a {
  font-size: 14px;
}

.algolia-autocomplete .aa-dropdown-menu .aa-suggestion .suggestion-post-content,
.algolia-autocomplete .aa-dropdown-menu .aa-suggestion .suggestion-post-title {
  white-space: normal;
}

.algolia-autocomplete .aa-dropdown-menu .aa-suggestion .suggestion-post-title {
  color: var(--wd-link-color, #1a1a1a);
}

.algolia-autocomplete
  .aa-dropdown-menu
  .aa-suggestion
  .suggestion-post-content
  em {
  box-shadow: inset 0 -2px 0px 0px rgb(9 126 78 / 70%);
}

.algolia-autocomplete .aa-dropdown-menu .aa-suggestion em {
  color: var(--wd-primary-color);
}

.algolia-autocomplete .aa-dropdown-menu {
  border-bottom-left-radius: var(--wd-form-brd-radius);
  border-bottom-right-radius: var(--wd-form-brd-radius);
  border-top-left-radius: var(--wd-form-brd-radius);
  border-top-right-radius: var(--wd-form-brd-radius);
  padding: 10px 0 0 0;
}

.algolia-autocomplete .suggestion-product-price {
  text-align: right;
  color: var(--wd-primary-color);
}

.algolia-powered-by-link svg {
  max-width: 100px;
}
/* --- ESTILOS DO SISTEMA DE SEPARAÇÃO DE PEDIDOS (PICKING) --- */

/* Controles na tela de edição de pedido */
.woocommerce_order_items_wrapper .woocommerce_order_items .wc-order-item-row td.item_status {
    text-align: left;
    vertical-align: middle;
}

.mxr-item-status-controls {
    display: flex;
    flex-direction: column;
    gap: 8px;
    justify-content: center;
}

.mxr-item-status-controls label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 13px;
    gap: 4px;
}
/* Cor de fundo para item separado */
tr.mxr-order-item-row.item-separado > td {
    background-color: #e8f5e9 !important; /* Verde claro */
    border-top: 1px solid #c8e6c9 !important;
    border-bottom: 1px solid #c8e6c9 !important;
}

/* Cor de fundo para item em falta */
tr.mxr-order-item-row.item-falta > td {
    background-color: #fbe9e7 !important; /* Laranja/Vermelho claro */
    border-top: 1px solid #ffccbc !important;
    border-bottom: 1px solid #ffccbc !important;
}

/* Opacidade para indicar carregamento */
tr.mxr-order-item-row.mxr-loading {
    opacity: 0.5;
    pointer-events: none;
}