/******* Do not edit this file *******
Code Snippets Manager
Saved: Oct 21 2025 | 01:31:16 */
/* container */
.if-woo-product-single__shipping {
  display: grid;
  grid-template-columns: auto 1fr;
  /* icon | text */
  column-gap: 0.6rem;
  align-items: start;
}
/* text */
.if-woo-product-single__shipping-info {
  margin: 0;
  min-width: 0;
  /* <-- fixes the mobile wrapping */
  overflow-wrap: anywhere;
  grid-column: 2;
  /* ensure it sits in col 2 */
}
/* icon (covers plain <svg> + Bricks' .brxe-icon wrapper) */
.if-woo-product-single__shipping > svg, .if-woo-product-single__shipping > .brxe-icon, .if-woo-product-single__shipping .brxe-icon > svg {
  grid-column: 1;
  width: clamp(18px, 1.1em, 22px);
  height: auto;
  display: block;
  flex: none;
  /* guards against inherited flex */
}
/* if your icon is another wrapper class, add it here too */
