/* Product shipping line — presentation only.
   The shipping logic/output remains in the server-side mu-plugin. */
.single-product .sb-product-buy .summary > p.price + :is(p,div,span):not(.woocommerce-product-details__short-description):not(.stock) {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 5px 7px;
  margin: 0 0 20px !important;
  padding: 12px 14px 12px 46px !important;
  min-height: 48px;
  border: 1px solid #f1d9cc;
  border-radius: 14px;
  background: linear-gradient(135deg,#fff8f4 0%,#fff 100%);
  color: #62676e;
  font-size: 14px;
  line-height: 1.45;
  box-shadow: 0 5px 15px rgba(40,45,50,.035);
}

.single-product .sb-product-buy .summary > p.price + :is(p,div,span):not(.woocommerce-product-details__short-description):not(.stock)::before {
  content: "";
  position: absolute;
  left: 13px;
  top: 50%;
  width: 24px;
  height: 24px;
  transform: translateY(-50%);
  border-radius: 8px;
  background-color: #fff0e8;
  background-image: url("../images/cart-delivery-van.webp");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 21px auto;
}

.single-product .sb-product-buy .summary > p.price + :is(p,div,span):not(.woocommerce-product-details__short-description):not(.stock) strong,
.single-product .sb-product-buy .summary > p.price + :is(p,div,span):not(.woocommerce-product-details__short-description):not(.stock) b {
  font-weight: 800;
}

.single-product .sb-product-buy .summary > p.price + :is(p,div,span):not(.woocommerce-product-details__short-description):not(.stock) a {
  color: inherit;
}

@media (max-width: 600px) {
  .single-product .sb-product-buy .summary > p.price + :is(p,div,span):not(.woocommerce-product-details__short-description):not(.stock) {
    gap: 3px 6px;
    margin-bottom: 17px !important;
    padding: 11px 12px 11px 42px !important;
    min-height: 45px;
    border-radius: 12px;
    font-size: 13px;
    line-height: 1.4;
  }

  .single-product .sb-product-buy .summary > p.price + :is(p,div,span):not(.woocommerce-product-details__short-description):not(.stock)::before {
    left: 11px;
    width: 23px;
    height: 23px;
    background-size: 20px auto;
  }
}
