/* Mobile horizontal overflow fix */
html,
body {
  overflow-x: clip;
  max-width: 100%;
}

#page.site {
  overflow-x: clip;
  max-width: 100%;
}

img,
video,
iframe {
  max-width: 100%;
  height: auto;
}

/* Cart drawer — hide off-screen without causing page scroll (RTL-safe) */
#cart-drawer {
  inset-inline-end: 0;
  inset-inline-start: auto;
  transform: translateX(100%);
}

[dir='rtl'] #cart-drawer {
  transform: translateX(-100%);
}

#cart-drawer.is-open {
  transform: translateX(0);
}

.woocommerce table.shop_table {
  max-width: 100%;
}

.woocommerce-cart-form,
.sweets-checkout-form,
.sweets-checkout-sidebar {
  max-width: 100%;
  overflow-x: auto;
}
