/* Mini-cart: ensure clicks land on the remove wrapper, not inner SVG nodes */
.brt-cart-offcanvas3-item__remove-icon,
.brt-cart-offcanvas3-item__remove-icon *,
.brt-cart-ajax-item-remove svg,
.brt-cart-ajax-item-remove svg * {
  pointer-events: none;
}

.brt-cart-offcanvas.brt-cart-offcanvas-loading.brx-open .brx-offcanvas-inner,
.brt-cart-refresh-section.brt-cart-offcanvas-loading {
  overflow: hidden;
  user-select: none;
}

.brt-cart-offcanvas.brt-cart-offcanvas-loading.brx-open
  .brx-offcanvas-inner::before,
.brt-cart-refresh-section.brt-cart-offcanvas-loading::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  opacity: 0.2;
  user-select: none;
  background-color: var(--neutral-ultra-dark);
}

.brt-cart-offcanvas.brt-cart-offcanvas-loading.brx-open
  .brx-offcanvas-inner::after,
.brt-cart-refresh-section.brt-cart-offcanvas-loading::after {
  content: "";
  position: absolute;
  display: inline-flex;
  box-sizing: border-box;

  top: calc(50% - (30px / 2));
  left: calc(50% - (30px / 2));

  width: 30px;
  height: 30px;

  border: 2px solid var(--primary-trans-80);
  border-bottom-color: transparent;
  border-radius: 50%;

  transform: translate(-50%, -50%);

  z-index: 2;

  animation: brt-spinning 1s linear infinite;
}

@keyframes brt-spinning {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.brtheme-checkout-review-order-item__details {
  display: flex;
  gap: var(--space-xs);
}

.brtheme-checkout-review-order-item__image {
  flex-shrink: 0;
}

.brtheme-checkout-review-order-item__image img {
  width: 80px;
  height: 80px;
  border-radius: 8px;
  overflow: hidden;
}

.brtheme-checkout-review-order-table__row {
  gap: 8px;
}

.brtheme-checkout-review-order-items-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--neutral-trans-10);
  margin-top: 16px;
}
