
/* TryLoveMe v1.9.50 — final transactional UX override */

/* ------------------------------------------------------------
   TRANSACTIONAL PAGES — shared
------------------------------------------------------------ */
body.woocommerce-cart,
body.woocommerce-checkout {
  overflow-x: hidden;
}

body.woocommerce-cart #main-content,
body.woocommerce-checkout #main-content {
  width: 100%;
}

/* Do not show social-proof popups during transactional flows. */
body.woocommerce-cart .tlm-social-proof,
body.woocommerce-checkout .tlm-social-proof,
body.woocommerce-order-received .tlm-social-proof {
  display: none !important;
}

/* ------------------------------------------------------------
   CART — compact summary, clear shipping list
------------------------------------------------------------ */
@media (min-width: 961px) {
  body.woocommerce-cart .woocommerce {
    grid-template-columns: minmax(0, 1fr) 360px !important;
    gap: 24px !important;
  }
}

body.woocommerce-cart .cart_totals {
  min-width: 0 !important;
  padding: 22px !important;
  border-radius: 20px !important;
}

body.woocommerce-cart .cart_totals h2 {
  margin: 0 0 16px !important;
  font-size: 29px !important;
  line-height: .98 !important;
  letter-spacing: -.04em !important;
}

body.woocommerce-cart .cart_totals #shipping_method {
  display: grid !important;
  gap: 0 !important;
  margin: 8px 0 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(58,31,34,.12) !important;
  border-radius: 14px !important;
  background: #fff !important;
}

body.woocommerce-cart .cart_totals #shipping_method li {
  position: relative !important;
  display: block !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(58,31,34,.09) !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
}

body.woocommerce-cart .cart_totals #shipping_method li:last-child {
  border-bottom: 0 !important;
}

body.woocommerce-cart .cart_totals #shipping_method li:has(input:checked) {
  background: #fff5f9 !important;
  box-shadow: inset 3px 0 0 #df7daf !important;
}

body.woocommerce-cart .cart_totals #shipping_method input[type="radio"] {
  position: absolute !important;
  top: 50% !important;
  left: 12px !important;
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
  transform: translateY(-50%) !important;
}

body.woocommerce-cart .cart_totals #shipping_method label {
  display: flex !important;
  min-height: 44px !important;
  width: 100% !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 8px 10px 8px 38px !important;
  color: #101414 !important;
  font-size: 10px !important;
  font-weight: 650 !important;
  line-height: 1.25 !important;
}

body.woocommerce-cart .cart_totals #shipping_method img,
body.woocommerce-checkout #shipping_method img {
  display: none !important;
}

body.woocommerce-cart .cart_totals #shipping_method .amount {
  flex: 0 0 auto !important;
  margin-left: auto !important;
  font-size: 10px !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
}

body.woocommerce-cart .cart_totals .woocommerce-shipping-destination {
  margin: 10px 0 0 !important;
  padding: 9px 10px !important;
  border-radius: 10px !important;
  background: #faf7f8 !important;
  font-size: 9px !important;
  line-height: 1.4 !important;
}

body.woocommerce-cart .cart_totals .tlm-pickup-button {
  display: flex !important;
  width: 100% !important;
  min-height: 38px !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 10px 0 0 !important;
  padding: 0 16px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #101414 !important;
  color: #fff !important;
  box-shadow: none !important;
  font-size: 9px !important;
  font-weight: 800 !important;
  letter-spacing: .06em !important;
  line-height: 1 !important;
  text-align: center !important;
  text-transform: uppercase !important;
}

/* ------------------------------------------------------------
   CHECKOUT — calm two-column layout and clear hierarchy
------------------------------------------------------------ */
@media (min-width: 1001px) {
  body.woocommerce-checkout:not(.woocommerce-order-received) .tlm-checkout-layout {
    grid-template-columns: minmax(0, 1fr) 390px !important;
    gap: 26px !important;
    align-items: start !important;
  }
}

body.woocommerce-checkout:not(.woocommerce-order-received) .tlm-checkout-summary {
  min-width: 0 !important;
  border-radius: 20px !important;
  overflow: hidden !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .tlm-checkout-summary__head {
  padding: 20px 20px 14px !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .tlm-checkout-summary__title {
  font-size: 27px !important;
  line-height: 1 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .tlm-checkout-summary__body {
  padding: 0 20px 20px !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .tlm-checkout-summary table.shop_table :is(td, th) {
  padding: 10px 0 !important;
  font-size: 10px !important;
}

/* One shipping selector, not 5 pseudo-cards. */
body.woocommerce-checkout:not(.woocommerce-order-received) .tlm-checkout-summary #shipping_method {
  display: grid !important;
  gap: 0 !important;
  margin: 8px 0 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  border: 1px solid rgba(58,31,34,.12) !important;
  border-radius: 13px !important;
  background: #fff !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .tlm-checkout-summary #shipping_method li {
  position: relative !important;
  display: block !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-bottom: 1px solid rgba(58,31,34,.09) !important;
  border-radius: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .tlm-checkout-summary #shipping_method li:last-child {
  border-bottom: 0 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .tlm-checkout-summary #shipping_method li:has(input:checked) {
  background: #fff5f9 !important;
  box-shadow: inset 3px 0 0 #df7daf !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .tlm-checkout-summary #shipping_method input[type="radio"] {
  position: absolute !important;
  top: 50% !important;
  left: 11px !important;
  width: 14px !important;
  height: 14px !important;
  margin: 0 !important;
  transform: translateY(-50%) !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .tlm-checkout-summary #shipping_method label {
  display: flex !important;
  min-height: 42px !important;
  width: 100% !important;
  align-items: center !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 8px 10px 8px 36px !important;
  color: #101414 !important;
  font-size: 9.3px !important;
  font-weight: 650 !important;
  line-height: 1.2 !important;
  text-align: left !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .tlm-checkout-summary #shipping_method .amount {
  flex: 0 0 auto !important;
  margin-left: auto !important;
  font-size: 9.3px !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
}

/* The InPost selector button is no longer the dominant yellow block. */
body.woocommerce-checkout:not(.woocommerce-order-received) .tlm-checkout-summary .tlm-pickup-button {
  display: flex !important;
  width: 100% !important;
  min-height: 38px !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 10px 0 2px !important;
  padding: 0 14px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: #101414 !important;
  color: #fff !important;
  box-shadow: none !important;
  font-size: 8.7px !important;
  font-weight: 800 !important;
  letter-spacing: .06em !important;
  line-height: 1 !important;
  text-align: center !important;
  text-transform: uppercase !important;
}

/* Payment visually becomes step 2 in the summary. */
body.woocommerce-checkout:not(.woocommerce-order-received) .tlm-checkout-summary #payment {
  margin-top: 16px !important;
  padding-top: 15px !important;
  border-top: 1px solid rgba(58,31,34,.10) !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .tlm-checkout-summary #payment ul.payment_methods {
  gap: 7px !important;
  margin: 0 0 12px !important;
  padding: 0 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .tlm-checkout-summary #payment li.wc_payment_method {
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 12px !important;
  border-radius: 11px !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .tlm-checkout-summary #payment li.wc_payment_method > label {
  min-height: 42px !important;
  font-size: 9.5px !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .tlm-checkout-summary #payment .payment_box {
  margin: 0 0 10px !important;
  padding: 10px 11px !important;
  border-radius: 10px !important;
  font-size: 8.8px !important;
  line-height: 1.45 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received) .tlm-checkout-summary #place_order {
  min-height: 46px !important;
  margin-top: 10px !important;
}

/* ------------------------------------------------------------
   ORDER RECEIVED / THANK YOU
------------------------------------------------------------ */
body.woocommerce-order-received .tlm-order-received-page {
  min-height: 60vh !important;
  background: #fff !important;
}

body.woocommerce-order-received .tlm-order-received-page > .woocommerce {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

body.woocommerce-order-received .tlm-thankyou__inner {
  width: min(calc(100% - 40px), 1180px) !important;
  margin: 0 auto !important;
  padding: 36px 0 70px !important;
}

body.woocommerce-order-received .tlm-thankyou__hero {
  padding-top: 10px !important;
}

body.woocommerce-order-received .tlm-thankyou__layout {
  grid-template-columns: minmax(0, 1.45fr) 340px !important;
  gap: 22px !important;
}

@media (max-width: 1000px) {
  body.woocommerce-checkout:not(.woocommerce-order-received) .tlm-checkout-layout,
  body.woocommerce-order-received .tlm-thankyou__layout {
    grid-template-columns: 1fr !important;
  }
}

@media (max-width: 640px) {
  body.woocommerce-cart .cart_totals,
  body.woocommerce-checkout:not(.woocommerce-order-received) .tlm-checkout-summary {
    border-radius: 17px !important;
  }

  body.woocommerce-order-received .tlm-thankyou__inner {
    width: calc(100% - 24px) !important;
    padding: 22px 0 52px !important;
  }
}


/* ==========================================================================
   v1.9.57 — checkout shipping FINAL width cleanup
   ========================================================================== */

/*
 * Analysis from current checkout:
 * - outer summary card is already wide enough;
 * - the shipping UI remains narrow because WooCommerce/InPost leaves width
 *   constraints on nested wrappers INSIDE the shipping <td>;
 * - the previous border came from our own #shipping_method container rule.
 *
 * This version:
 * 1) removes the extra inner frame,
 * 2) stretches EVERY direct/nested wrapper in the shipping cell,
 * 3) keeps all methods in the DOM,
 * 4) stretches the InPost point button through its real wrapper chain.
 */

/* Shipping row takes the whole summary-table width. */
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary tr:has(#shipping_method) {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  box-sizing: border-box !important;
}

/* Kill the WooCommerce th/td split for this row only. */
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary tr:has(#shipping_method) > th,
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary tr:has(#shipping_method) > td {
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  float: none !important;
  clear: both !important;
  margin: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  height: auto !important;
  max-height: none !important;
  overflow: visible !important;
  box-sizing: border-box !important;
  text-align: left !important;
}

/* Heading only. */
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary tr:has(#shipping_method) > th {
  padding-top: 14px !important;
  padding-bottom: 8px !important;
  color: #a05e77 !important;
  font-size: 9px !important;
  font-weight: 800 !important;
  letter-spacing: .15em !important;
  line-height: 1.2 !important;
  text-transform: uppercase !important;
}

/*
 * THIS is the important part:
 * stretch all nested plugin wrappers below the shipping cell.
 * Do not change display globally — just width/min-width/max-width.
 */
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary tr:has(#shipping_method) > td,
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary tr:has(#shipping_method) > td > *,
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary tr:has(#shipping_method) > td > * > *,
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary .woocommerce-shipping-methods,
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary #shipping_method {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

/* No extra box/frame around the list. */
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary #shipping_method {
  display: block !important;
  margin: 6px 0 0 !important;
  padding: 0 !important;
  list-style: none !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
  height: auto !important;
  max-height: none !important;
}

/* Individual methods are full-width rows, not a nested rounded card. */
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary #shipping_method > li {
  position: relative !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  height: auto !important;
  max-height: none !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: visible !important;
  border: 0 !important;
  border-bottom: 1px solid #eadfe3 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  box-sizing: border-box !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary #shipping_method > li:first-child {
  border-top: 1px solid #eadfe3 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary #shipping_method > li:has(input:checked) {
  background: #fff6fa !important;
  box-shadow: inset 3px 0 0 #df7daf !important;
}

/* Radio */
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary #shipping_method > li > input[type="radio"] {
  position: absolute !important;
  top: 50% !important;
  left: 12px !important;
  width: 16px !important;
  height: 16px !important;
  margin: 0 !important;
  transform: translateY(-50%) !important;
  accent-color: #df7daf !important;
  z-index: 3 !important;
}

/* Label fills entire row, price pushed to right edge. */
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary #shipping_method > li > label {
  display: flex !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  min-height: 50px !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 !important;
  padding: 10px 12px 10px 43px !important;
  box-sizing: border-box !important;
  color: #101414 !important;
  cursor: pointer !important;
  font-size: 9.5px !important;
  font-weight: 650 !important;
  line-height: 1.25 !important;
  text-align: left !important;
  white-space: normal !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary #shipping_method > li > label .amount {
  flex: 0 0 auto !important;
  margin-left: auto !important;
  padding-left: 12px !important;
  white-space: nowrap !important;
  font-size: 9.5px !important;
  font-weight: 800 !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary #shipping_method img {
  display: none !important;
}

/*
 * InPost point picker:
 * stretch button AND common wrappers that can be inserted by the plugin.
 * No moving elements, no JS.
 */
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary .easypack_show_geowidget,
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary [class*="easypack"] > .easypack_show_geowidget {
  display: flex !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  min-height: 44px !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 12px 0 0 !important;
  padding: 0 16px !important;
  border: 1px solid #101414 !important;
  border-radius: 999px !important;
  background: #101414 !important;
  background-color: #101414 !important;
  color: #fff !important;
  box-shadow: none !important;
  font-family: inherit !important;
  font-size: 9px !important;
  font-weight: 800 !important;
  letter-spacing: .06em !important;
  line-height: 1 !important;
  text-align: center !important;
  text-transform: uppercase !important;
  box-sizing: border-box !important;
  appearance: none !important;
  -webkit-appearance: none !important;
}

/* force its parents to 100% without moving anything */
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary :has(> .easypack_show_geowidget),
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary :has(> * > .easypack_show_geowidget) {
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box !important;
  align-self: stretch !important;
}

/* Don't ever collapse methods after the checkout refresh. */
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary tr:has(#shipping_method),
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary tr:has(#shipping_method) > td,
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary #shipping_method,
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary #shipping_method > li {
  max-height: none !important;
  overflow: visible !important;
}

/* privacy stays a normal text link */
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary .woocommerce-privacy-policy-link {
  display: inline !important;
  width: auto !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: inherit !important;
  box-shadow: none !important;
  letter-spacing: normal !important;
  text-transform: none !important;
}

/* Give the desktop order summary enough physical width. */
@media (min-width: 1100px) {
  body.woocommerce-checkout:not(.woocommerce-order-received) .tlm-checkout-layout {
    grid-template-columns: minmax(0, 1fr) 480px !important;
    gap: 26px !important;
  }
}

@media (max-width: 640px) {
  body.woocommerce-checkout:not(.woocommerce-order-received)
  .tlm-checkout-summary #shipping_method > li > label {
    min-height: 48px !important;
    padding-left: 42px !important;
    font-size: 10px !important;
  }

  body.woocommerce-checkout:not(.woocommerce-order-received)
  .tlm-checkout-summary .easypack_show_geowidget {
    min-height: 46px !important;
    font-size: 9px !important;
  }
}

/* ========================================================================== 
   v1.9.60 — checkout shipping true full-width stack
   ========================================================================== */

/*
 * WooCommerce renders shipping as a two-cell table row. InPost can then append
 * its picker/selected-point UI beside #shipping_method, often with floats or
 * fixed widths. On the TryLoveMe summary this made the methods occupy only the
 * left part of the column while the parcel-machine controls sat in a narrow
 * strip on the right.
 *
 * Keep Woo/InPost markup and AJAX untouched; solve the layout only in CSS.
 */
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary tr.woocommerce-shipping-totals.shipping,
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary tr:has(> td #shipping_method) {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  table-layout: fixed !important;
  box-sizing: border-box !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary tr.woocommerce-shipping-totals.shipping > th,
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary tr.woocommerce-shipping-totals.shipping > td,
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary tr:has(> td #shipping_method) > th,
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary tr:has(> td #shipping_method) > td {
  grid-column: 1 / -1 !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  float: none !important;
  clear: both !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  text-align: left !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary tr.woocommerce-shipping-totals.shipping > th,
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary tr:has(> td #shipping_method) > th {
  padding: 14px 0 8px !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary tr.woocommerce-shipping-totals.shipping > td,
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary tr:has(> td #shipping_method) > td {
  position: relative !important;
  padding: 0 0 14px !important;
  overflow: visible !important;
}

/* The list itself always occupies the entire summary width. */
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary tr.woocommerce-shipping-totals.shipping #shipping_method,
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary tr:has(> td #shipping_method) #shipping_method {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  float: none !important;
  clear: both !important;
  margin: 6px 0 0 !important;
  box-sizing: border-box !important;
}

body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary #shipping_method > li,
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary #shipping_method > li > label {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

/*
 * InPost controls can be injected AFTER the shipping list and can carry floats
 * or fixed widths. Force those siblings into a vertical full-width flow.
 */
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary tr.woocommerce-shipping-totals.shipping #shipping_method ~ *,
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary tr:has(> td #shipping_method) #shipping_method ~ * {
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  float: none !important;
  clear: both !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box !important;
}

/* Common InPost/EasyPack wrappers in classic checkout. */
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary tr.woocommerce-shipping-totals.shipping > td :is(
  [class*="easypack"],
  [id*="easypack"],
  [class*="inpost"],
  [id*="inpost"],
  [class*="parcel-machine"],
  [class*="parcel_machine"],
  [class*="pickup-point"],
  [class*="pickup_point"]
) {
  max-width: 100% !important;
  min-width: 0 !important;
  float: none !important;
  clear: both !important;
  box-sizing: border-box !important;
}

/* Picker/change button should be a real full-width checkout action. */
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary tr.woocommerce-shipping-totals.shipping > td button,
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary tr.woocommerce-shipping-totals.shipping > td .easypack_show_geowidget,
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary tr:has(> td #shipping_method) > td button,
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary tr:has(> td #shipping_method) > td .easypack_show_geowidget {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  float: none !important;
  clear: both !important;
  box-sizing: border-box !important;
}

/* Any visual card inserted after the methods (selected parcel point) stacks too. */
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary tr.woocommerce-shipping-totals.shipping #shipping_method ~ * > :is(div, section, article, button, a),
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary tr:has(> td #shipping_method) #shipping_method ~ * > :is(div, section, article, button, a) {
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  float: none !important;
  clear: both !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  box-sizing: border-box !important;
}

/* Avoid a legacy float influencing elements that follow the shipping row. */
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary tr.woocommerce-shipping-totals.shipping::after,
body.woocommerce-checkout:not(.woocommerce-order-received)
.tlm-checkout-summary tr:has(> td #shipping_method)::after {
  display: block !important;
  clear: both !important;
  content: "" !important;
}

@media (max-width: 640px) {
  body.woocommerce-checkout:not(.woocommerce-order-received)
  .tlm-checkout-summary tr.woocommerce-shipping-totals.shipping > td,
  body.woocommerce-checkout:not(.woocommerce-order-received)
  .tlm-checkout-summary tr:has(> td #shipping_method) > td {
    padding-bottom: 12px !important;
  }
}
