/* Custom overrides — do not overwrite on Webflow re-export */

/* Fix: product page dimensions/shipping text overflows on tablet (768-991px)
   CSS Grid 1fr columns inside a flex container can't shrink below max-content
   without min-width: 0 on the containers + overflow-wrap on text */
.description_content-wrapper {
  min-width: 0;
}

.product_measurement-wrapper,
.product_measurement-details {
  min-width: 0;
}

.main-rich-text {
  overflow-wrap: break-word;
  word-wrap: break-word;
}

.product_delivery-content {
  min-width: 0;
  overflow-wrap: break-word;
  word-wrap: break-word;
}
