/* =========================================================
   PMX Cart & Checkout — premium styling
   ---------------------------------------------------------
   Loaded on cart + checkout (and the order-received page) after Divi's
   stylesheet, at a late priority so these rules win. The matching markup
   and behaviour live in pmx-cart-upsell.php and assets/pmx-cart-upsell.js.

   IMPORTANT — read before editing:
   This stylesheet grew through many incremental fixes. Several selectors are
   deliberately re-declared in later sections to override earlier ones via the
   cascade (note the heavy use of !important to win against Divi/WooCommerce).
   Because the effective styling depends on source order, edit in place and keep
   new rules in their existing section rather than reordering blocks. The per-rule
   order is unchanged from 1.8.12.3, so the rendered result is identical.

   Contents (top to bottom):
     1.  No-flash guards (suppress native FS notice / Update Basket flash)
     2.  Free-delivery notice: card, truck icon, progress bar, unlocked state
     3.  Cart + checkout layout polish (tables, totals, sticky summary)
     4.  Free-delivery nudge line (reads the live figure)
     5.  Popular Add-Ons upsell: grid, cards, pricing, ship-meter
     6.  Delivery-method selector (cart + checkout rows)
     7.  Synthetic top notice (shown when Flexible Shipping hides its own)
     8.  Top free-delivery meter: conversion panel + green money styling
     9.  Cart quantity stepper (scoped to the cart form)
     10. Main conversion CTAs (checkout / update / place order / express)
     11. PayPal / express-button suppression (checkout) + sizing (cart)
     12. Progress-meter fill animation (transform-based, reduced-motion aware)
     13. Order Received / Thank-You page
     14. Desktop top free-delivery centring + Popular Add-Ons footprint
     15. Responsive passes (min-width 981px desktop; max-width 980/767/600 mobile)

   Sections overlap by design (later desktop/mobile passes refine earlier rules).
   Use the short inline comments through the file as local landmarks.
   ========================================================= */

body.woocommerce-cart,
body.woocommerce-checkout {
  --pmx-blue:       #0094B8;
  --pmx-blue-dark:  #007A99;
  --pmx-blue-neon:  #00C2E8;
  --pmx-ink:        #0f2730;
  --pmx-muted:      #5b7480;
  --pmx-line:       #e3edf1;
  --pmx-bg-tint:    #f4fbfd;
  --pmx-radius:     14px;
  --pmx-shadow:     0 6px 24px rgba(0,148,184,.10);
  --pmx-shadow-hov: 0 12px 34px rgba(0,148,184,.18);
}

body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper:not(.pmx-free-ship-enhanced):not(.pmx-free-ship-synthetic),
body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper:not(.pmx-free-ship-enhanced):not(.pmx-free-ship-synthetic){
  opacity: 0 !important;
  visibility: hidden !important;
}

/* ---------------------------------------------------------
   FREE SHIPPING BAR (Flexible Shipping notice)
   --------------------------------------------------------- */

/* Strip the default Woo "info" chrome only when it wraps the FS bar */
body.woocommerce-cart .woocommerce-info:has(.fs-free-shipping-notice-and-button-wrapper),
body.woocommerce-checkout .woocommerce-info:has(.fs-free-shipping-notice-and-button-wrapper){
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
  padding: 0 !important;
  margin: 0 0 22px !important;
}
body.woocommerce-cart .woocommerce-info:has(.fs-free-shipping-notice-and-button-wrapper)::before,
body.woocommerce-checkout .woocommerce-info:has(.fs-free-shipping-notice-and-button-wrapper)::before{
  display: none !important;
}

/* Card */
.fs-free-shipping-notice-and-button-wrapper{
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px 18px;
  background: linear-gradient(180deg, #ffffff, var(--pmx-bg-tint));
  border: 1px solid var(--pmx-line);
  border-radius: var(--pmx-radius);
  box-shadow: var(--pmx-shadow);
}
.fs-free-shipping-notice-and-button-wrapper::before{
  content: "";
  position: absolute; left: 0; right: 0; top: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--pmx-blue), var(--pmx-blue-neon));
}

/* Message text + truck icon */
.fs-free-shipping-notice-text{
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--pmx-ink);
}
.fs-free-shipping-notice-text::before{
  content: "";
  flex: 0 0 auto;
  width: 22px; height: 22px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230094B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 3h15v13H1z'/%3E%3Cpath d='M16 8h4l3 3v5h-7z'/%3E%3Ccircle cx='5.5' cy='18.5' r='2.5'/%3E%3Ccircle cx='18.5' cy='18.5' r='2.5'/%3E%3C/svg%3E") center/contain no-repeat;
}
.fs-free-shipping-notice-text .woocommerce-Price-amount{
  color: var(--pmx-blue);
  font-weight: 800;
  white-space: nowrap;
}

/* Progress bar — NEVER set width on the fill (plugin sets it inline = live %) */
.fs-free-shipping-notice-progress-bar-wrapper{ display: block; width: 100%; }
.fs-free-shipping-notice-opening-value,
.fs-free-shipping-notice-closing-value,
.pmx-free-shipping-endpoint,
.pmx-free-shipping-endpoint-row{ display: none !important; }

.fs-free-shipping-notice-progress-bar{
  width: 100%;
  height: 10px;
  background: #e6f4f8;
  border-radius: 999px;
  overflow: hidden;
}
.fs-free-shipping-notice-progress-bar > span{
  display: block;
  height: 100%;
  border-radius: 999px;
  position: relative;
  background: linear-gradient(90deg, var(--pmx-blue), var(--pmx-blue-neon));
  transition: width .55s cubic-bezier(.22,.61,.36,1);
}
.fs-free-shipping-notice-progress-bar > span::after{
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.35) 50%, rgba(255,255,255,0) 100%);
  transform: translateX(-100%);
  animation: pmxSheen 2.4s ease-in-out infinite;
}
@keyframes pmxSheen{ 0%{transform:translateX(-100%)} 60%,100%{transform:translateX(220%)} }

/* Unlocked state (fill at 100%) → success treatment */
.fs-free-shipping-notice-progress-bar > span[style*="100%"]{
  background: linear-gradient(90deg, #1ea672, #27c98a);
}
.fs-free-shipping-notice-and-button-wrapper:has(span[style*="100%"]){
  background: linear-gradient(180deg, #ffffff, #f1fbf6);
  border-color: #cdeede;
}
.fs-free-shipping-notice-and-button-wrapper:has(span[style*="100%"])::before{
  background: linear-gradient(90deg, #1ea672, #27c98a);
}

/* "Continue shopping" — understated so it never competes with checkout CTA */
.flexible-shipping-free-shipping-button,
.flexible-shipping-free-shipping-button.button{
  align-self: flex-start;
  background: transparent !important;
  color: var(--pmx-blue) !important;
  border: 1.5px solid #cfe7ee !important;
  border-radius: 10px !important;
  padding: 8px 16px !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-transform: none !important;
  box-shadow: none !important;
}
.flexible-shipping-free-shipping-button:hover{
  background: var(--pmx-bg-tint) !important;
  border-color: var(--pmx-blue) !important;
}

/* ---------------------------------------------------------
   TOTALS CARD (cart + checkout)
   --------------------------------------------------------- */
body.woocommerce-cart .cart_totals,
body.woocommerce-checkout #order_review{
  background: #fff;
  border: 1px solid var(--pmx-line);
  border-radius: var(--pmx-radius);
  box-shadow: var(--pmx-shadow);
  padding: 22px 22px 24px;
}
body.woocommerce-cart .cart_totals > h2,
body.woocommerce-checkout #order_review > h3{
  margin: 0 0 14px;
  font-size: 19px;
  font-weight: 800;
  color: var(--pmx-ink);
  letter-spacing: -.01em;
}
body.woocommerce-cart .cart_totals table.shop_table th,
body.woocommerce-cart .cart_totals table.shop_table td,
body.woocommerce-checkout .woocommerce-checkout-review-order-table th,
body.woocommerce-checkout .woocommerce-checkout-review-order-table td{
  border: 0;
  padding: 11px 0;
  border-bottom: 1px solid var(--pmx-line);
  color: var(--pmx-ink);
  font-size: 14.5px;
}
body.woocommerce-cart .cart_totals tr.order-total th,
body.woocommerce-cart .cart_totals tr.order-total td,
body.woocommerce-checkout tr.order-total th,
body.woocommerce-checkout tr.order-total td{
  border-bottom: 0;
  padding-top: 14px;
  font-size: 16px;
}
body.woocommerce-cart .cart_totals tr.order-total td .woocommerce-Price-amount,
body.woocommerce-checkout tr.order-total td .woocommerce-Price-amount{
  color: var(--pmx-blue);
  font-weight: 800;
  font-size: 19px;
}
.includes_tax{ color: var(--pmx-muted); font-weight: 400; }

/* Sticky order summary on checkout (desktop only) */
@media (min-width: 981px){
  body.woocommerce-checkout #order_review{
    position: sticky;
    top: 24px;
  }
}

/* ---------------------------------------------------------
   SHIPPING METHODS
   --------------------------------------------------------- */
ul#shipping_method{ list-style: none; margin: 6px 0 0; padding: 0; }
ul#shipping_method li{
  position: relative;
  padding: 12px 14px;
  margin-bottom: 8px;
  border: 1.5px solid var(--pmx-line);
  border-radius: 10px;
  transition: border-color .2s ease, background .2s ease;
}
ul#shipping_method li:has(input.shipping_method:checked){
  border-color: var(--pmx-blue);
  background: var(--pmx-bg-tint);
  box-shadow: 0 0 0 3px rgba(0,148,184,.08);
}
ul#shipping_method li label{ font-weight: 600; color: var(--pmx-ink); cursor: pointer; }
ul#shipping_method li .woocommerce-Price-amount{ color: var(--pmx-blue); font-weight: 700; }
.shipping-method-description,
ul#shipping_method li small{ display: block; color: var(--pmx-muted); font-weight: 400; margin-top: 2px; }
.woocommerce-shipping-destination{ color: var(--pmx-muted); font-size: 13px; }
a.shipping-calculator-button{ color: var(--pmx-blue); font-weight: 600; }

/* ---------------------------------------------------------
   PRIMARY CTAs — Proceed / Place order
   --------------------------------------------------------- */
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
body.woocommerce-checkout #place_order{
  display: block;
  width: 100%;
  margin-top: 6px;
  padding: 16px 22px !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: linear-gradient(135deg, var(--pmx-blue), var(--pmx-blue-neon)) !important;
  color: #fff !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  letter-spacing: .01em;
  text-align: center;
  text-transform: none !important;
  box-shadow: 0 8px 22px rgba(0,148,184,.30) !important;
  transition: transform .15s ease, box-shadow .15s ease, filter .15s ease !important;
}
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
body.woocommerce-checkout #place_order:hover{
  transform: translateY(-2px);
  filter: brightness(1.03);
  box-shadow: 0 14px 30px rgba(0,148,184,.40) !important;
}
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:active,
body.woocommerce-checkout #place_order:active{ transform: translateY(0); }

/* ---------------------------------------------------------
   COUPON + GIFT CARD INPUTS
   --------------------------------------------------------- */
.coupon input.input-text,
#pwgc-redeem-gift-card-number,
body.woocommerce-checkout .form-row input.input-text,
body.woocommerce-checkout .form-row textarea,
body.woocommerce-checkout .form-row select,
body.woocommerce-checkout .select2-container .select2-selection{
  border: 1.5px solid var(--pmx-line) !important;
  border-radius: 10px !important;
  padding: 11px 13px !important;
  font-size: 14.5px !important;
  color: var(--pmx-ink) !important;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.coupon input.input-text:focus,
#pwgc-redeem-gift-card-number:focus,
body.woocommerce-checkout .form-row input.input-text:focus,
body.woocommerce-checkout .form-row textarea:focus,
body.woocommerce-checkout .form-row select:focus{
  border-color: var(--pmx-blue) !important;
  box-shadow: 0 0 0 3px rgba(0,148,184,.12) !important;
  outline: 0 !important;
}
.coupon .button,
#pwgc-redeem-button{
  border-radius: 10px !important;
  background: var(--pmx-ink) !important;
  color: #fff !important;
  font-weight: 700 !important;
  border: 0 !important;
  padding: 11px 18px !important;
}
.coupon .button:hover,
#pwgc-redeem-button:hover{ background: var(--pmx-blue-dark) !important; }
#pwgc-redeem-gift-card-container label,
.woocommerce-form-coupon-toggle .woocommerce-info{ color: var(--pmx-ink); }

/* ---------------------------------------------------------
   PAYMENT METHODS (checkout)
   --------------------------------------------------------- */
body.woocommerce-checkout .wc_payment_methods{ list-style: none; margin: 0; padding: 0; }
body.woocommerce-checkout .wc_payment_method{
  border: 1.5px solid var(--pmx-line);
  border-radius: 10px;
  margin-bottom: 8px;
  padding: 4px 12px;
  transition: border-color .2s ease, background .2s ease;
}
body.woocommerce-checkout .wc_payment_method:has(input:checked){
  border-color: var(--pmx-blue);
  background: var(--pmx-bg-tint);
}
body.woocommerce-checkout .wc_payment_method > label{ font-weight: 600; color: var(--pmx-ink); padding: 10px 0; }
body.woocommerce-checkout .payment_box{ background: #fff !important; border-radius: 8px; }

/* Light cart-table polish (kept conservative to avoid clashing with PMX cart UX) */
body.woocommerce-cart .pmx-cart-table-thumb-image,
body.woocommerce-cart .pmx-mobile-cart-thumb-image{ border-radius: 10px; }
body.woocommerce-cart td.product-name a,
body.woocommerce-cart .pmx-mobile-cart-name-text a{ color: var(--pmx-ink); font-weight: 600; }
body.woocommerce-cart td.product-name a:hover{ color: var(--pmx-blue); }
body.woocommerce-cart td.product-subtotal .woocommerce-Price-amount,
body.woocommerce-cart td.product-price .woocommerce-Price-amount{ font-weight: 700; }

/* ---------------------------------------------------------
   DAILY UPSELL GRID
   --------------------------------------------------------- */
.pmx-upsell{
  margin: 30px 0 8px;
  padding: 22px;
  background: linear-gradient(180deg, #ffffff, var(--pmx-bg-tint));
  border: 1px solid var(--pmx-line);
  border-radius: var(--pmx-radius);
  box-shadow: var(--pmx-shadow);
}
.pmx-upsell__head{ margin-bottom: 16px; }
.pmx-upsell__title{
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: var(--pmx-ink);
  letter-spacing: -.01em;
  position: relative;
  padding-left: 14px;
}
.pmx-upsell__title::before{
  content: "";
  position: absolute; left: 0; top: 3px; bottom: 3px;
  width: 4px; border-radius: 4px;
  background: linear-gradient(180deg, var(--pmx-blue), var(--pmx-blue-neon));
}
.pmx-upsell__sub{ margin: 6px 0 0; color: var(--pmx-muted); font-size: 13.5px; }

/* Free-shipping nudge line (reads the live figure from the FS bar) */
.pmx-upsell__sub--ship{
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 8px 0 0;
  color: var(--pmx-ink);
  font-weight: 600;
  font-size: 13.5px;
}
.pmx-upsell__sub--ship::before{
  content: "";
  flex: 0 0 auto;
  width: 18px; height: 18px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230094B8' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 3h15v13H1z'/%3E%3Cpath d='M16 8h4l3 3v5h-7z'/%3E%3Ccircle cx='5.5' cy='18.5' r='2.5'/%3E%3Ccircle cx='18.5' cy='18.5' r='2.5'/%3E%3C/svg%3E") center/contain no-repeat;
}
.pmx-upsell__sub--ship strong{ color: var(--pmx-blue); font-weight: 800; white-space: nowrap; }

.pmx-upsell__grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 14px;
}
.pmx-upsell__card{
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--pmx-line);
  border-radius: 12px;
  overflow: hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.pmx-upsell__card:hover{
  transform: translateY(-3px);
  box-shadow: var(--pmx-shadow-hov);
  border-color: #cfe7ee;
}
.pmx-upsell__imgwrap{
  display: block;
  aspect-ratio: 1 / 1;
  background: var(--pmx-bg-tint);
  overflow: hidden;
}
.pmx-upsell__img{
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.pmx-upsell__card:hover .pmx-upsell__img{ transform: scale(1.04); }
.pmx-upsell__body{
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 12px 12px 14px;
  flex: 1;
}
.pmx-upsell__name{
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.35;
  color: var(--pmx-ink) !important;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.7em;
}
.pmx-upsell__name:hover{ color: var(--pmx-blue) !important; }
.pmx-upsell__price{ font-size: 15px; font-weight: 800; color: var(--pmx-blue); margin-top: auto; }
.pmx-upsell__btn{
  display: inline-block;
  text-align: center;
  padding: 9px 12px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .15s ease, filter .15s ease, background .15s ease;
}
.pmx-upsell__btn--add{
  background: linear-gradient(135deg, var(--pmx-blue), var(--pmx-blue-neon));
  color: #fff !important;
  box-shadow: 0 5px 14px rgba(0,148,184,.25);
}
.pmx-upsell__btn--add:hover{ transform: translateY(-1px); filter: brightness(1.04); }
.pmx-upsell__btn--view{
  background: transparent;
  color: var(--pmx-blue) !important;
  border: 1.5px solid #cfe7ee;
}
.pmx-upsell__btn--view:hover{ background: var(--pmx-bg-tint); border-color: var(--pmx-blue); }

/* ---------------------------------------------------------
   MOBILE
   --------------------------------------------------------- */
@media (max-width: 980px){
  body.woocommerce-cart .cart_totals,
  body.woocommerce-checkout #order_review{ padding: 18px; }
  .pmx-upsell{ padding: 18px; }
  .fs-free-shipping-notice-text{ font-size: 14px; }
}
@media (max-width: 600px){
  .pmx-upsell__grid{ grid-template-columns: repeat(2, 1fr); gap: 10px; }
  .pmx-upsell__body{ padding: 10px; }
  .pmx-upsell__name{ font-size: 12.5px; }
  body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
  body.woocommerce-checkout #place_order{ padding: 15px 18px !important; font-size: 15px !important; }
  .fs-free-shipping-notice-and-button-wrapper{ padding: 14px; }
}

/* ---------------------------------------------------------
   CHECKOUT SHIPPING METHOD REFINEMENTS — v1.2.0
   Compact delivery cards, safer wrapping, cleaner selected state.
   Cart shipping layout is intentionally left unchanged.
   --------------------------------------------------------- */
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping th{
  vertical-align: middle !important;
  padding-top: 12px !important;
  padding-bottom: 12px !important;
  font-size: 12.75px !important;
  line-height: 1.14 !important;
  letter-spacing: .01em !important;
}
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping td{
  vertical-align: top !important;
  padding-top: 10px !important;
  padding-bottom: 10px !important;
}
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method{
  display: grid !important;
  grid-template-columns: 1fr;
  gap: 7px !important;
  margin: 2px 0 0 !important;
  padding: 0 !important;
}
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li{
  display: grid !important;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: start !important;
  column-gap: 8px !important;
  row-gap: 1px !important;
  min-height: 0 !important;
  padding: 9px 10px !important;
  margin: 0 !important;
  border-width: 1.25px !important;
  border-radius: 10px !important;
  background: #fff;
  box-shadow: none !important;
}
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li:has(input.shipping_method:checked){
  background: linear-gradient(180deg, #ffffff, var(--pmx-bg-tint)) !important;
  border-color: var(--pmx-blue) !important;
  box-shadow: 0 0 0 2px rgba(0,148,184,.08) !important;
}
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li input.shipping_method{
  grid-column: 1;
  grid-row: 1;
  width: 16px !important;
  height: 16px !important;
  margin: 1px 0 0 !important;
  accent-color: var(--pmx-blue);
}
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li label{
  grid-column: 2;
  grid-row: 1;
  display: block !important;
  margin: 0 !important;
  padding: 0 !important;
  font-size: 13.25px !important;
  line-height: 1.24 !important;
  font-weight: 750 !important;
  color: var(--pmx-ink) !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li label .woocommerce-Price-amount,
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li label bdi{
  color: var(--pmx-blue) !important;
  font-size: 13.25px !important;
  line-height: 1.24 !important;
  font-weight: 800 !important;
  white-space: nowrap !important;
}
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li .shipping-method-description,
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li small,
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li p{
  grid-column: 2;
  display: block !important;
  margin: 2px 0 0 !important;
  padding: 0 !important;
  color: var(--pmx-muted) !important;
  font-size: 12px !important;
  line-height: 1.3 !important;
  font-weight: 450 !important;
}
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li br{
  display: none !important;
}

/* Free-shipping unlocked sub-line inside the upsell card. */
.pmx-upsell__sub--unlocked::before{
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231ea672' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
}
.pmx-upsell__sub--unlocked{
  color: #17382c;
}

@media (max-width: 980px){
  body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping th{
    font-size: 12.5px !important;
    line-height: 1.12 !important;
  }
  body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li{
    padding: 8px 9px !important;
    column-gap: 7px !important;
  }
  body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li label{
    font-size: 12.9px !important;
  }
  body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li label .woocommerce-Price-amount,
  body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li label bdi{
    font-size: 12.9px !important;
  }
  body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li .shipping-method-description,
  body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li small,
  body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li p{
    font-size: 11.7px !important;
  }
}

@media (max-width: 700px){
  body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping th,
  body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping td{
    display: block !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping th{
    padding-top: 11px !important;
    padding-bottom: 6px !important;
  }
  body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping td{
    padding-top: 0 !important;
  }
  body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method{
    gap: 6px !important;
  }
}

/* ---------------------------------------------------------
   PMX VISUAL LIFT — v1.3.0
   Premium cart add-on presentation + tighter checkout shipping.
   --------------------------------------------------------- */
body.woocommerce-cart,
body.woocommerce-checkout{
  --pmx-soft-cyan: #ecfbff;
  --pmx-deep-ink: #071e27;
  --pmx-glow: 0 18px 46px rgba(0,148,184,.16);
  --pmx-card-line: rgba(0,148,184,.14);
}

.pmx-upsell{
  position: relative;
  isolation: isolate;
  overflow: hidden;
  margin: 32px 0 10px;
  padding: clamp(18px, 2.5vw, 26px);
  border-radius: 20px;
  border: 1px solid var(--pmx-card-line);
  background:
    radial-gradient(circle at 9% 0%, rgba(0,194,232,.16) 0%, rgba(0,194,232,0) 36%),
    radial-gradient(circle at 96% 12%, rgba(0,148,184,.12) 0%, rgba(0,148,184,0) 42%),
    linear-gradient(145deg, #ffffff 0%, #f7fdff 52%, #eefaff 100%);
  box-shadow: 0 8px 22px rgba(7,30,39,.045), var(--pmx-glow);
}
.pmx-upsell::before{
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(0,148,184,.82), rgba(0,194,232,.72), rgba(255,255,255,0)) top left / 100% 3px no-repeat,
    linear-gradient(180deg, rgba(255,255,255,.54), rgba(255,255,255,0) 38%);
}
.pmx-upsell__head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 17px;
}
.pmx-upsell__copy{ min-width: 0; }
.pmx-upsell__eyebrow,
.pmx-upsell__badge,
.pmx-upsell__tag{
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: .02em;
  text-transform: uppercase;
}
.pmx-upsell__eyebrow{
  margin: 0 0 7px;
  padding: 5px 9px;
  background: rgba(0,148,184,.09);
  color: var(--pmx-blue-dark);
  font-size: 10px;
}
.pmx-upsell__badge{
  flex: 0 0 auto;
  margin-top: 2px;
  padding: 6px 10px;
  background: #fff;
  border: 1px solid rgba(0,148,184,.18);
  color: var(--pmx-muted);
  font-size: 10px;
  box-shadow: 0 5px 15px rgba(7,30,39,.045);
}
.pmx-upsell__title{
  padding-left: 16px;
  font-size: clamp(19px, 2.2vw, 24px);
  line-height: 1.08;
  color: var(--pmx-deep-ink);
  letter-spacing: -.035em;
}
.pmx-upsell__title::before{
  top: 1px;
  bottom: 1px;
  width: 5px;
  border-radius: 999px;
  box-shadow: 0 0 16px rgba(0,194,232,.42);
}
.pmx-upsell__sub{
  margin-top: 8px;
  font-size: 13px;
  line-height: 1.35;
}
.pmx-upsell__sub--ship{
  align-items: flex-start;
  max-width: 620px;
  font-size: 13px;
}
.pmx-upsell__sub--ship::before{
  margin-top: -1px;
}
.pmx-upsell__grid{
  grid-template-columns: repeat(auto-fit, minmax(154px, 1fr));
  gap: 14px;
}
.pmx-upsell__card{
  position: relative;
  overflow: hidden;
  border-radius: 17px;
  border: 1px solid rgba(7,30,39,.08);
  background: linear-gradient(180deg, #ffffff 0%, #fbfeff 100%);
  box-shadow: 0 8px 18px rgba(7,30,39,.055);
  transform: translateZ(0);
}
.pmx-upsell__card::after{
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82);
}
.pmx-upsell__card:hover{
  transform: translateY(-4px);
  border-color: rgba(0,148,184,.26);
  box-shadow: 0 16px 34px rgba(0,148,184,.17), 0 8px 18px rgba(7,30,39,.06);
}
.pmx-upsell__imgwrap{
  margin: 10px 10px 0;
  border-radius: 14px;
  aspect-ratio: 1 / .82;
  background:
    radial-gradient(circle at 50% 42%, rgba(0,194,232,.12) 0%, rgba(0,194,232,0) 55%),
    linear-gradient(180deg, #f8fdff, #eef9fc);
  border: 1px solid rgba(0,148,184,.08);
}
.pmx-upsell__img{
  object-fit: contain;
  padding: 9px;
  filter: drop-shadow(0 7px 10px rgba(7,30,39,.10));
}
.pmx-upsell__card:hover .pmx-upsell__img{
  transform: scale(1.035);
}
.pmx-upsell__body{
  gap: 7px;
  padding: 10px 12px 13px;
}
.pmx-upsell__tag{
  padding: 4px 7px;
  background: rgba(0,148,184,.075);
  color: var(--pmx-blue-dark);
  font-size: 9px;
  line-height: 1;
}
.pmx-upsell__name{
  font-size: 13px;
  line-height: 1.28;
  font-weight: 800;
  min-height: 2.56em;
  letter-spacing: -.012em;
}
.pmx-upsell__price{
  margin-top: auto;
  font-size: 17px;
  line-height: 1.08;
  letter-spacing: -.02em;
  text-shadow: 0 7px 18px rgba(0,148,184,.12);
}
.pmx-upsell__btn{
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 39px;
  padding: 10px 12px;
  border-radius: 12px;
  font-size: 12.8px;
  line-height: 1.05;
  box-shadow: none;
}
.pmx-upsell__btn--add{
  background: linear-gradient(135deg, var(--pmx-blue-dark), var(--pmx-blue-neon)) !important;
  box-shadow: 0 9px 18px rgba(0,148,184,.25);
}
.pmx-upsell__btn--add:hover{
  transform: translateY(-1px);
  box-shadow: 0 12px 23px rgba(0,148,184,.33);
}
.pmx-upsell__btn--view{
  background: #fff;
  border-color: rgba(0,148,184,.22);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.5);
}
.pmx-upsell__btn--view:hover{
  background: var(--pmx-soft-cyan);
  box-shadow: 0 8px 18px rgba(0,148,184,.12);
}

/* Checkout delivery selector: full-width, compact, premium rows. */
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping{
  display: block !important;
  width: 100% !important;
  padding: 10px 0 12px !important;
  border-bottom: 1px solid var(--pmx-line) !important;
}
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping th,
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping td{
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  border-bottom: 0 !important;
}
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping th{
  padding: 0 0 7px !important;
  color: var(--pmx-deep-ink) !important;
  font-size: 12px !important;
  line-height: 1.12 !important;
  font-weight: 900 !important;
  letter-spacing: .035em !important;
  text-transform: uppercase !important;
}
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping td{
  padding: 0 !important;
}
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method{
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 6px !important;
  margin: 0 !important;
  padding: 0 !important;
}
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li{
  grid-template-columns: 16px minmax(0, 1fr);
  column-gap: 8px !important;
  padding: 8px 10px !important;
  border-radius: 13px !important;
  border: 1px solid rgba(7,30,39,.10) !important;
  background: linear-gradient(180deg, #fff, #fbfeff) !important;
  box-shadow: 0 4px 12px rgba(7,30,39,.035) !important;
}
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li:has(input.shipping_method:checked){
  background: linear-gradient(180deg, #f9feff, #ecfbff) !important;
  border-color: rgba(0,148,184,.72) !important;
  box-shadow: 0 0 0 2px rgba(0,148,184,.075), 0 7px 18px rgba(0,148,184,.10) !important;
}
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li input.shipping_method{
  width: 14px !important;
  height: 14px !important;
  margin-top: 2px !important;
}
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li label{
  font-size: 12.35px !important;
  line-height: 1.22 !important;
  font-weight: 850 !important;
  letter-spacing: -.005em;
}
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li label .woocommerce-Price-amount,
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li label bdi{
  font-size: 12.35px !important;
  line-height: 1.22 !important;
}
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li .shipping-method-description,
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li small,
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li p{
  font-size: 11.35px !important;
  line-height: 1.28 !important;
  margin-top: 1px !important;
}

@media (min-width: 760px){
  body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method:has(li:nth-child(3)){
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
  body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method:has(li:nth-child(3)) li{
    align-content: start !important;
  }
}

@media (max-width: 600px){
  .pmx-upsell{
    margin-top: 28px;
    padding: 18px 14px;
    border-radius: 18px;
  }
  .pmx-upsell__head{
    display: block;
    margin-bottom: 14px;
  }
  .pmx-upsell__badge{
    display: none;
  }
  .pmx-upsell__title{
    font-size: 22px;
  }
  .pmx-upsell__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }
  .pmx-upsell__imgwrap{
    margin: 8px 8px 0;
    border-radius: 12px;
    aspect-ratio: 1 / .9;
  }
  .pmx-upsell__img{
    padding: 7px;
  }
  .pmx-upsell__body{
    padding: 9px 10px 11px;
  }
  .pmx-upsell__tag{
    font-size: 8.5px;
  }
  .pmx-upsell__name{
    font-size: 12.4px;
  }
  .pmx-upsell__price{
    font-size: 16px;
  }
  .pmx-upsell__btn{
    min-height: 37px;
    font-size: 12.3px;
    border-radius: 11px;
  }
  body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping th{
    font-size: 11.6px !important;
  }
  body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li{
    padding: 7px 9px !important;
    border-radius: 12px !important;
  }
  body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li label,
  body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li label .woocommerce-Price-amount,
  body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li label bdi{
    font-size: 12px !important;
  }
  body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li .shipping-method-description,
  body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li small,
  body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li p{
    font-size: 11px !important;
  }
}

@media (prefers-reduced-motion: no-preference){
  .pmx-upsell__card{
    animation: pmxUpsellRise .36s ease both;
  }
  .pmx-upsell__card:nth-child(2){ animation-delay: .035s; }
  .pmx-upsell__card:nth-child(3){ animation-delay: .07s; }
  .pmx-upsell__card:nth-child(4){ animation-delay: .105s; }
}
@keyframes pmxUpsellRise{
  from{ opacity: 0; transform: translateY(8px); }
  to{ opacity: 1; transform: translateY(0); }
}

/* ---------------------------------------------------------
   PMX REPUTATION FINISH — v1.4.0
   In-card free-shipping progress meter + basket-match cues.
   --------------------------------------------------------- */
.pmx-upsell{
  --pmx-meter-track: rgba(0,148,184,.12);
  --pmx-meter-fill: linear-gradient(90deg, #007A99 0%, #00C2E8 58%, #69E4FF 100%);
  border-color: rgba(0,148,184,.18);
  background:
    radial-gradient(circle at 10% -8%, rgba(0,194,232,.20) 0%, rgba(0,194,232,0) 34%),
    radial-gradient(circle at 100% 0%, rgba(0,122,153,.16) 0%, rgba(0,122,153,0) 38%),
    linear-gradient(145deg, #ffffff 0%, #f8fdff 48%, #ecfaff 100%);
}
.pmx-upsell::after{
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  pointer-events: none;
  border-radius: inherit;
  background:
    linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,255,255,0) 42%),
    repeating-linear-gradient(135deg, rgba(0,148,184,.035) 0 1px, transparent 1px 13px);
  mask-image: linear-gradient(180deg, #000 0%, rgba(0,0,0,.74) 42%, rgba(0,0,0,.08) 100%);
}
.pmx-upsell__eyebrow{
  background: linear-gradient(135deg, rgba(0,148,184,.12), rgba(0,194,232,.09));
  border: 1px solid rgba(0,148,184,.12);
}
.pmx-upsell__badge{
  color: var(--pmx-blue-dark);
  background: rgba(255,255,255,.82);
  backdrop-filter: blur(10px);
}
.pmx-upsell--matched .pmx-upsell__badge{
  border-color: rgba(30,166,114,.22);
  color: #157451;
  background: linear-gradient(180deg, rgba(255,255,255,.92), rgba(242,252,247,.86));
}

.pmx-upsell__shipmeter{
  width: min(100%, 680px);
  margin: 12px 0 0;
  padding: 12px 13px 11px;
  border: 1px solid rgba(0,148,184,.16);
  border-radius: 16px;
  background:
    radial-gradient(circle at 0% 0%, rgba(0,194,232,.13) 0%, rgba(0,194,232,0) 40%),
    linear-gradient(180deg, rgba(255,255,255,.94), rgba(244,251,253,.88));
  box-shadow: inset 0 1px 0 rgba(255,255,255,.9), 0 8px 18px rgba(7,30,39,.045);
}
.pmx-upsell__shiptop{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 8px;
}
.pmx-upsell__shiptop span{
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-width: 0;
  color: var(--pmx-ink);
  font-size: 12.25px;
  line-height: 1.2;
  font-weight: 900;
  letter-spacing: .01em;
}
.pmx-upsell__shiptop span::before{
  content: "";
  flex: 0 0 auto;
  width: 17px;
  height: 17px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230094B8' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 3h15v13H1z'/%3E%3Cpath d='M16 8h4l3 3v5h-7z'/%3E%3Ccircle cx='5.5' cy='18.5' r='2.5'/%3E%3Ccircle cx='18.5' cy='18.5' r='2.5'/%3E%3C/svg%3E") center/contain no-repeat;
}
.pmx-upsell__shiptop strong{
  flex: 0 0 auto;
  color: var(--pmx-blue-dark);
  font-size: 12.75px;
  line-height: 1.15;
  font-weight: 950;
  letter-spacing: -.01em;
  white-space: nowrap;
}
.pmx-upsell__shipbar{
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 13px;
  padding: 2px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.75), rgba(255,255,255,0)),
    var(--pmx-meter-track);
  box-shadow: inset 0 1px 3px rgba(7,30,39,.10);
}
.pmx-upsell__shipbar > span{
  position: relative;
  display: block;
  min-width: 10px;
  max-width: 100%;
  height: 100%;
  border-radius: inherit;
  background: var(--pmx-meter-fill);
  box-shadow: 0 0 16px rgba(0,194,232,.36);
  transition: width .58s cubic-bezier(.22,.61,.36,1);
}
.pmx-upsell__shipbar > span::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.42) 50%, rgba(255,255,255,0) 100%);
  transform: translateX(-120%);
  animation: pmxMeterSheen 2.6s ease-in-out infinite;
}
.pmx-upsell__shipmeter p{
  margin: 7px 0 0;
  color: var(--pmx-muted);
  font-size: 12.35px;
  line-height: 1.3;
  font-weight: 650;
}
.pmx-upsell__shipmeter--done{
  border-color: rgba(30,166,114,.22);
  background:
    radial-gradient(circle at 0% 0%, rgba(39,201,138,.15) 0%, rgba(39,201,138,0) 40%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(242,252,247,.9));
}
.pmx-upsell__shipmeter--done .pmx-upsell__shiptop span::before{
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231ea672' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
}
.pmx-upsell__shipmeter--done .pmx-upsell__shiptop strong{
  color: #157451;
}
.pmx-upsell__shipmeter--done .pmx-upsell__shipbar{
  background: rgba(30,166,114,.12);
}
.pmx-upsell__shipmeter--done .pmx-upsell__shipbar > span{
  background: linear-gradient(90deg, #1ea672, #27c98a);
  box-shadow: 0 0 16px rgba(39,201,138,.32);
}
@keyframes pmxMeterSheen{
  0%{ transform: translateX(-120%); }
  58%,100%{ transform: translateX(240%); }
}

.pmx-upsell__card--related{
  border-color: rgba(30,166,114,.24);
  box-shadow: 0 8px 20px rgba(7,30,39,.052), 0 0 0 1px rgba(30,166,114,.05);
}
.pmx-upsell__card--related::before{
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 0;
  height: 3px;
  border-radius: 0 0 999px 999px;
  background: linear-gradient(90deg, rgba(30,166,114,.85), rgba(0,194,232,.72));
  z-index: 2;
}
.pmx-upsell__card--related .pmx-upsell__tag{
  color: #157451;
  background: linear-gradient(180deg, rgba(39,201,138,.12), rgba(39,201,138,.07));
  border: 1px solid rgba(39,201,138,.13);
}
.pmx-upsell__card--related .pmx-upsell__imgwrap{
  background:
    radial-gradient(circle at 50% 42%, rgba(39,201,138,.10) 0%, rgba(39,201,138,0) 54%),
    linear-gradient(180deg, #f9fffc, #eefbf7);
}
.pmx-upsell__card:hover .pmx-upsell__tag{
  transform: translateY(-1px);
}
.pmx-upsell__tag{
  transition: transform .18s ease, background .18s ease, color .18s ease;
}

@media (max-width: 600px){
  .pmx-upsell__shipmeter{
    padding: 11px 11px 10px;
    border-radius: 14px;
  }
  .pmx-upsell__shiptop{
    align-items: flex-start;
    gap: 6px;
    margin-bottom: 7px;
  }
  .pmx-upsell__shiptop span{
    font-size: 11.7px;
  }
  .pmx-upsell__shiptop strong{
    font-size: 12px;
  }
  .pmx-upsell__shipbar{
    height: 12px;
  }
  .pmx-upsell__shipmeter p{
    font-size: 11.65px;
  }
}

@media (prefers-reduced-motion: reduce){
  .pmx-upsell__shipbar > span,
  .pmx-upsell__shipbar > span::after{
    animation: none !important;
    transition: none !important;
  }
}

/* ---------------------------------------------------------
   PMX v1.5.0 — TOP FREE-SHIPPING PROGRESS + DELIVERY FIX
   Adds a real visual meter to the existing Flexible Shipping notice,
   removes visible basket-match wording, and prevents narrow/tall
   shipping cards in cart + checkout.
   --------------------------------------------------------- */

/* Top free-shipping notice: progress-card treatment */
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced{
  gap: 11px !important;
  padding: clamp(14px, 2vw, 18px) clamp(15px, 2.4vw, 22px) !important;
  border-radius: 18px !important;
  border: 1px solid rgba(0,148,184,.16) !important;
  background:
    radial-gradient(circle at 0% 0%, rgba(0,194,232,.14) 0%, rgba(0,194,232,0) 42%),
    linear-gradient(180deg, #ffffff 0%, #f4fbfd 100%) !important;
  box-shadow: 0 12px 34px rgba(7,30,39,.06), 0 12px 30px rgba(0,148,184,.10) !important;
}
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced::before{
  height: 4px !important;
  background: linear-gradient(90deg, #007A99, #00C2E8, #69E4FF) !important;
}
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .fs-free-shipping-notice-text{
  align-items: center !important;
  gap: 10px !important;
  max-width: 100% !important;
  color: var(--pmx-ink) !important;
  font-size: clamp(13.5px, 1.3vw, 15.5px) !important;
  line-height: 1.35 !important;
  font-weight: 750 !important;
  letter-spacing: -.005em !important;
}
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .fs-free-shipping-notice-text::before{
  width: 23px !important;
  height: 23px !important;
  filter: drop-shadow(0 5px 10px rgba(0,148,184,.18));
}
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .fs-free-shipping-notice-text .woocommerce-Price-amount{
  color: var(--pmx-blue-dark) !important;
  font-weight: 950 !important;
}

/* Hide a native Flexible Shipping meter only when our enhanced meter is present, so no duplicate bars appear. */
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .fs-free-shipping-notice-progress-bar-wrapper{
  display: none !important;
}
.pmx-top-fs-meter{
  width: 100%;
  margin: 1px 0 0;
}
.pmx-top-fs-meter__meta{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin: 0 0 7px;
}
.pmx-top-fs-meter__meta span,
.pmx-top-fs-meter__meta strong{
  font-size: 12px;
  line-height: 1.15;
  font-weight: 900;
  letter-spacing: .01em;
}
.pmx-top-fs-meter__meta span{
  color: var(--pmx-muted);
  text-transform: uppercase;
}
.pmx-top-fs-meter__meta strong{
  color: var(--pmx-blue-dark);
  white-space: nowrap;
}
.pmx-top-fs-meter__bar{
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 13px;
  padding: 2px;
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.76), rgba(255,255,255,0)),
    rgba(0,148,184,.13);
  box-shadow: inset 0 1px 3px rgba(7,30,39,.10);
}
.pmx-top-fs-meter__bar > span{
  position: relative;
  display: block;
  min-width: 10px;
  max-width: 100%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #007A99 0%, #00C2E8 58%, #69E4FF 100%);
  box-shadow: 0 0 16px rgba(0,194,232,.34);
  transition: width .58s cubic-bezier(.22,.61,.36,1);
}
.pmx-top-fs-meter__bar > span::after{
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,.44) 50%, rgba(255,255,255,0) 100%);
  transform: translateX(-120%);
  animation: pmxMeterSheen 2.6s ease-in-out infinite;
}
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced--done{
  border-color: rgba(30,166,114,.22) !important;
  background:
    radial-gradient(circle at 0% 0%, rgba(39,201,138,.16) 0%, rgba(39,201,138,0) 42%),
    linear-gradient(180deg, #ffffff 0%, #f2fcf7 100%) !important;
}
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced--done::before{
  background: linear-gradient(90deg, #1ea672, #27c98a) !important;
}
.pmx-free-ship-enhanced--done .pmx-top-fs-meter__meta strong{ color: #157451 !important; }
.pmx-free-ship-enhanced--done .pmx-top-fs-meter__bar{ background: rgba(30,166,114,.13) !important; }
.pmx-free-ship-enhanced--done .pmx-top-fs-meter__bar > span{
  background: linear-gradient(90deg, #1ea672, #27c98a) !important;
  box-shadow: 0 0 16px rgba(39,201,138,.32) !important;
}

/* Better Continue Shopping button inside the free-shipping notice. */
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .flexible-shipping-free-shipping-button,
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .flexible-shipping-free-shipping-button.button,
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced a.button{
  align-self: flex-start !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 36px !important;
  padding: 9px 18px !important;
  border: 0 !important;
  border-radius: 999px !important;
  background: linear-gradient(135deg, var(--pmx-ink), var(--pmx-blue-dark)) !important;
  color: #fff !important;
  font-size: 12.75px !important;
  line-height: 1 !important;
  font-weight: 850 !important;
  text-transform: none !important;
  letter-spacing: .005em !important;
  box-shadow: 0 8px 18px rgba(7,30,39,.16), 0 8px 18px rgba(0,148,184,.16) !important;
  transition: transform .16s ease, box-shadow .16s ease, filter .16s ease !important;
}
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .flexible-shipping-free-shipping-button:hover,
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .flexible-shipping-free-shipping-button.button:hover,
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced a.button:hover{
  transform: translateY(-1px) !important;
  filter: brightness(1.04) !important;
  box-shadow: 0 11px 24px rgba(7,30,39,.20), 0 11px 24px rgba(0,148,184,.20) !important;
}

/* Neutralise previous basket-match visible treatments while preserving related-product logic internally. */
.pmx-upsell--matched .pmx-upsell__badge,
.pmx-upsell__card--related .pmx-upsell__tag{
  color: var(--pmx-blue-dark) !important;
  background: rgba(0,148,184,.075) !important;
  border-color: rgba(0,148,184,.12) !important;
}
.pmx-upsell__card--related,
.pmx-upsell__card--related .pmx-upsell__imgwrap{
  border-color: rgba(7,30,39,.08) !important;
  background:
    radial-gradient(circle at 50% 42%, rgba(0,194,232,.12) 0%, rgba(0,194,232,0) 55%),
    linear-gradient(180deg, #f8fdff, #eef9fc) !important;
}
.pmx-upsell__card--related::before{ display: none !important; }

/* Cart + checkout delivery methods: stop narrow/tall columns and make the selector feel deliberate. */
body.woocommerce-cart .cart_totals tr.woocommerce-shipping-totals.shipping,
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping{
  display: block !important;
  width: 100% !important;
  padding: 12px 0 14px !important;
  border-bottom: 1px solid var(--pmx-line) !important;
}
body.woocommerce-cart .cart_totals tr.woocommerce-shipping-totals.shipping th,
body.woocommerce-cart .cart_totals tr.woocommerce-shipping-totals.shipping td,
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping th,
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping td{
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  border-bottom: 0 !important;
  text-align: left !important;
}
body.woocommerce-cart .cart_totals tr.woocommerce-shipping-totals.shipping th,
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping th{
  padding: 0 0 8px !important;
  color: var(--pmx-deep-ink, var(--pmx-ink)) !important;
  font-size: 12px !important;
  line-height: 1.15 !important;
  font-weight: 950 !important;
  letter-spacing: .035em !important;
  text-transform: uppercase !important;
}
body.woocommerce-cart .cart_totals tr.woocommerce-shipping-totals.shipping td,
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping td{
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
body.woocommerce-cart .cart_totals tr.woocommerce-shipping-totals.shipping ul#shipping_method,
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method{
  display: grid !important;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 210px), 1fr)) !important;
  gap: 9px !important;
  width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
}
body.woocommerce-cart .cart_totals tr.woocommerce-shipping-totals.shipping ul#shipping_method li,
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li{
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr) !important;
  align-items: start !important;
  align-content: start !important;
  column-gap: 9px !important;
  row-gap: 2px !important;
  min-width: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 12px 13px !important;
  border: 1px solid rgba(7,30,39,.10) !important;
  border-radius: 14px !important;
  background: linear-gradient(180deg, #ffffff 0%, #fbfeff 100%) !important;
  box-shadow: 0 5px 14px rgba(7,30,39,.04) !important;
}
body.woocommerce-cart .cart_totals tr.woocommerce-shipping-totals.shipping ul#shipping_method li:has(input.shipping_method:checked),
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li:has(input.shipping_method:checked){
  border-color: rgba(0,148,184,.78) !important;
  background: linear-gradient(180deg, #f9feff 0%, #ecfbff 100%) !important;
  box-shadow: 0 0 0 2px rgba(0,148,184,.075), 0 8px 18px rgba(0,148,184,.105) !important;
}
body.woocommerce-cart .cart_totals tr.woocommerce-shipping-totals.shipping ul#shipping_method li input.shipping_method,
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li input.shipping_method{
  grid-column: 1 !important;
  grid-row: 1 !important;
  width: 16px !important;
  height: 16px !important;
  margin: 2px 0 0 !important;
  accent-color: var(--pmx-blue) !important;
}
body.woocommerce-cart .cart_totals tr.woocommerce-shipping-totals.shipping ul#shipping_method li label,
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li label{
  grid-column: 2 !important;
  grid-row: 1 !important;
  display: block !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  color: var(--pmx-ink) !important;
  font-size: 13.35px !important;
  line-height: 1.22 !important;
  font-weight: 850 !important;
  letter-spacing: -.006em !important;
  text-align: left !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
  hyphens: manual !important;
}
body.woocommerce-cart .cart_totals tr.woocommerce-shipping-totals.shipping ul#shipping_method li label .woocommerce-Price-amount,
body.woocommerce-cart .cart_totals tr.woocommerce-shipping-totals.shipping ul#shipping_method li label bdi,
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li label .woocommerce-Price-amount,
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li label bdi{
  color: var(--pmx-blue) !important;
  font-size: 13.35px !important;
  line-height: 1.22 !important;
  font-weight: 950 !important;
  white-space: nowrap !important;
}
body.woocommerce-cart .cart_totals tr.woocommerce-shipping-totals.shipping ul#shipping_method li .shipping-method-description,
body.woocommerce-cart .cart_totals tr.woocommerce-shipping-totals.shipping ul#shipping_method li small,
body.woocommerce-cart .cart_totals tr.woocommerce-shipping-totals.shipping ul#shipping_method li p,
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li .shipping-method-description,
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li small,
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li p{
  grid-column: 2 !important;
  display: block !important;
  margin: 3px 0 0 !important;
  padding: 0 !important;
  color: var(--pmx-muted) !important;
  font-size: 12.2px !important;
  line-height: 1.28 !important;
  font-weight: 500 !important;
  text-align: left !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}
body.woocommerce-cart .cart_totals tr.woocommerce-shipping-totals.shipping ul#shipping_method li br,
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li br{
  display: none !important;
}
body.woocommerce-cart .cart_totals .woocommerce-shipping-destination,
body.woocommerce-checkout .woocommerce-shipping-destination{
  margin: 10px 0 0 !important;
  padding: 10px 12px !important;
  border-radius: 12px !important;
  background: rgba(0,148,184,.045) !important;
  color: var(--pmx-muted) !important;
  font-size: 12.8px !important;
  line-height: 1.35 !important;
  text-align: left !important;
}
body.woocommerce-cart .cart_totals a.shipping-calculator-button,
body.woocommerce-checkout a.shipping-calculator-button{
  color: var(--pmx-blue-dark) !important;
  font-weight: 850 !important;
  text-decoration: none !important;
}

@media (max-width: 620px){
  .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced{
    padding: 14px !important;
    border-radius: 16px !important;
  }
  .pmx-top-fs-meter__meta{
    gap: 8px;
    margin-bottom: 6px;
  }
  .pmx-top-fs-meter__meta span,
  .pmx-top-fs-meter__meta strong{
    font-size: 11.25px;
  }
  .pmx-top-fs-meter__bar{
    height: 12px;
  }
  body.woocommerce-cart .cart_totals tr.woocommerce-shipping-totals.shipping ul#shipping_method,
  body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method{
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  body.woocommerce-cart .cart_totals tr.woocommerce-shipping-totals.shipping ul#shipping_method li,
  body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li{
    padding: 11px 12px !important;
    border-radius: 13px !important;
  }
}

@media (prefers-reduced-motion: reduce){
  .pmx-top-fs-meter__bar > span,
  .pmx-top-fs-meter__bar > span::after{
    animation: none !important;
    transition: none !important;
  }
}

/* ---------------------------------------------------------
   PMX v1.5.1 — DESKTOP CHECKOUT SHIPPING STACK FIX
   Checkout order review is narrower than the cart totals panel on many
   desktop layouts, so shipping cards must remain stacked instead of
   auto-fitting into narrow columns. Cart styling remains unchanged.
   --------------------------------------------------------- */
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method,
body.woocommerce-checkout #order_review tr.woocommerce-shipping-totals.shipping ul#shipping_method,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.shipping ul#shipping_method{
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 8px !important;
  width: 100% !important;
}

body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li,
body.woocommerce-checkout #order_review tr.woocommerce-shipping-totals.shipping ul#shipping_method li,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.shipping ul#shipping_method li{
  width: 100% !important;
  max-width: none !important;
  min-height: 0 !important;
  grid-template-columns: 20px minmax(0, 1fr) !important;
  align-items: start !important;
  padding: 12px 14px !important;
}

body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method li label,
body.woocommerce-checkout #order_review tr.woocommerce-shipping-totals.shipping ul#shipping_method li label,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.shipping ul#shipping_method li label{
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
}

/* ---------------------------------------------------------
   PMX v1.6.0 — FINAL CHECKOUT STACK + UNLOCKED FS STATE
   Forces the desktop checkout delivery selector into clean stacked rows
   and keeps the top free-shipping meter visible at 100% when unlocked.
   --------------------------------------------------------- */

/* Synthetic top notice shown when Flexible Shipping hides its own notice after qualification. */
#pmx-top-free-shipping-synthetic{
  margin: 0 0 22px !important;
}
body.woocommerce-cart #pmx-top-free-shipping-synthetic,
body.woocommerce-checkout #pmx-top-free-shipping-synthetic{
  width: 100% !important;
}

/* Success state: full green progress, clear unlocked message. */
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced--done{
  border-color: rgba(30,166,114,.28) !important;
  background:
    radial-gradient(circle at 0% 0%, rgba(39,201,138,.16) 0%, rgba(39,201,138,0) 42%),
    linear-gradient(180deg, #ffffff 0%, #f1fbf6 100%) !important;
  box-shadow: 0 12px 32px rgba(30,166,114,.10), 0 10px 24px rgba(7,30,39,.045) !important;
}
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced--done::before{
  background: linear-gradient(90deg, #1ea672, #27c98a, #7ee2b9) !important;
}
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced--done .fs-free-shipping-notice-text{
  color: #17382c !important;
  font-weight: 900 !important;
}
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced--done .fs-free-shipping-notice-text::before{
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231ea672' stroke-width='2.6' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat !important;
  filter: drop-shadow(0 5px 10px rgba(30,166,114,.18)) !important;
}
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced--done .pmx-top-fs-meter__meta span,
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced--done .pmx-top-fs-meter__meta strong{
  color: #157451 !important;
}
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced--done .pmx-top-fs-meter__bar{
  background: rgba(30,166,114,.13) !important;
}
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced--done .pmx-top-fs-meter__bar > span{
  width: 100% !important;
  background: linear-gradient(90deg, #1ea672, #27c98a, #7ee2b9) !important;
  box-shadow: 0 0 18px rgba(39,201,138,.34) !important;
}

/* Checkout only: stacked delivery rows on every desktop width.
   This intentionally overrides the earlier auto-fit/card-column rules. */
body.woocommerce-checkout #order_review tr.woocommerce-shipping-totals.shipping,
body.woocommerce-checkout #order_review tr.shipping,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.shipping,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.shipping{
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
}
body.woocommerce-checkout #order_review tr.woocommerce-shipping-totals.shipping th,
body.woocommerce-checkout #order_review tr.woocommerce-shipping-totals.shipping td,
body.woocommerce-checkout #order_review tr.shipping th,
body.woocommerce-checkout #order_review tr.shipping td,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.shipping th,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.shipping td,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.shipping th,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.shipping td{
  display: block !important;
  width: 100% !important;
  max-width: none !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}
body.woocommerce-checkout #order_review ul#shipping_method,
body.woocommerce-checkout #order_review #shipping_method,
body.woocommerce-checkout .woocommerce-checkout-review-order-table ul#shipping_method,
body.woocommerce-checkout .woocommerce-checkout-review-order-table #shipping_method,
body.woocommerce-checkout form.checkout ul#shipping_method,
body.woocommerce-checkout form.checkout #shipping_method{
  display: flex !important;
  flex-direction: column !important;
  grid-template-columns: none !important;
  flex-wrap: nowrap !important;
  gap: 9px !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}
body.woocommerce-checkout #order_review ul#shipping_method li,
body.woocommerce-checkout #order_review #shipping_method li,
body.woocommerce-checkout .woocommerce-checkout-review-order-table ul#shipping_method li,
body.woocommerce-checkout .woocommerce-checkout-review-order-table #shipping_method li,
body.woocommerce-checkout form.checkout ul#shipping_method li,
body.woocommerce-checkout form.checkout #shipping_method li{
  float: none !important;
  clear: both !important;
  flex: 0 0 auto !important;
  display: grid !important;
  grid-template-columns: 20px minmax(0, 1fr) !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  min-height: 0 !important;
  box-sizing: border-box !important;
  align-items: start !important;
  align-content: start !important;
  column-gap: 10px !important;
  row-gap: 3px !important;
  padding: 12px 14px !important;
  margin: 0 !important;
  border-radius: 14px !important;
}
body.woocommerce-checkout #order_review ul#shipping_method li input.shipping_method,
body.woocommerce-checkout #order_review #shipping_method li input.shipping_method,
body.woocommerce-checkout .woocommerce-checkout-review-order-table ul#shipping_method li input.shipping_method,
body.woocommerce-checkout .woocommerce-checkout-review-order-table #shipping_method li input.shipping_method,
body.woocommerce-checkout form.checkout ul#shipping_method li input.shipping_method,
body.woocommerce-checkout form.checkout #shipping_method li input.shipping_method{
  grid-column: 1 !important;
  grid-row: 1 !important;
  width: 16px !important;
  height: 16px !important;
  margin: 2px 0 0 !important;
}
body.woocommerce-checkout #order_review ul#shipping_method li label,
body.woocommerce-checkout #order_review #shipping_method li label,
body.woocommerce-checkout .woocommerce-checkout-review-order-table ul#shipping_method li label,
body.woocommerce-checkout .woocommerce-checkout-review-order-table #shipping_method li label,
body.woocommerce-checkout form.checkout ul#shipping_method li label,
body.woocommerce-checkout form.checkout #shipping_method li label{
  grid-column: 2 !important;
  grid-row: 1 !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: manual !important;
  text-align: left !important;
}
body.woocommerce-checkout #order_review ul#shipping_method li .shipping-method-description,
body.woocommerce-checkout #order_review #shipping_method li .shipping-method-description,
body.woocommerce-checkout #order_review ul#shipping_method li small,
body.woocommerce-checkout #order_review #shipping_method li small,
body.woocommerce-checkout #order_review ul#shipping_method li p,
body.woocommerce-checkout #order_review #shipping_method li p,
body.woocommerce-checkout .woocommerce-checkout-review-order-table ul#shipping_method li .shipping-method-description,
body.woocommerce-checkout .woocommerce-checkout-review-order-table #shipping_method li .shipping-method-description,
body.woocommerce-checkout .woocommerce-checkout-review-order-table ul#shipping_method li small,
body.woocommerce-checkout .woocommerce-checkout-review-order-table #shipping_method li small,
body.woocommerce-checkout .woocommerce-checkout-review-order-table ul#shipping_method li p,
body.woocommerce-checkout .woocommerce-checkout-review-order-table #shipping_method li p{
  grid-column: 2 !important;
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  margin: 3px 0 0 !important;
  white-space: normal !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  text-align: left !important;
}

@media (min-width: 621px){
  body.woocommerce-checkout #order_review ul#shipping_method,
  body.woocommerce-checkout .woocommerce-checkout-review-order-table ul#shipping_method,
  body.woocommerce-checkout form.checkout ul#shipping_method{
    display: flex !important;
    flex-direction: column !important;
    grid-template-columns: none !important;
  }
}

/* ---------------------------------------------------------
   PMX v1.6.2 — FINAL ADD-ON PRICE + FREE-SHIPPING AMOUNT POLISH
   Keeps the Popular Add-Ons meter unchanged structurally, but colours the
   money values green and makes the top free-shipping amount feel intentional.
   --------------------------------------------------------- */
@keyframes pmxMoneyPulse{
  0%, 100%{ transform: scale(1); box-shadow: 0 7px 18px rgba(30,166,114,.14), inset 0 1px 0 rgba(255,255,255,.76); }
  50%{ transform: scale(1.045); box-shadow: 0 9px 24px rgba(30,166,114,.24), inset 0 1px 0 rgba(255,255,255,.86); }
}

/* Top free-shipping notice: make the inline € amount read like a designed badge, not injected text. */
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced:not(.pmx-free-ship-enhanced--done) .fs-free-shipping-notice-text .woocommerce-Price-amount,
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced:not(.pmx-free-ship-enhanced--done) .fs-free-shipping-notice-text .woocommerce-Price-amount bdi{
  color: #157451 !important;
  font-weight: 950 !important;
}
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced:not(.pmx-free-ship-enhanced--done) .fs-free-shipping-notice-text .woocommerce-Price-amount{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  vertical-align: baseline !important;
  white-space: nowrap !important;
  margin: 0 .12em !important;
  padding: .12em .48em .14em !important;
  border: 1px solid rgba(30,166,114,.18) !important;
  border-radius: 999px !important;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(235,250,243,.96)) !important;
  text-shadow: 0 1px 0 rgba(255,255,255,.70) !important;
  transform-origin: center !important;
  animation: pmxMoneyPulse 2.25s ease-in-out infinite !important;
}

/* Top percentage stays compact, but moves into the same green money language. */
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .pmx-top-fs-meter__meta strong{
  color: #157451 !important;
}

/* Popular Add-Ons free-shipping meter: keep layout as-is, make the amount green. */
.pmx-upsell__shiptop strong{
  color: #157451 !important;
}
.pmx-upsell__shipmeter--done .pmx-upsell__shiptop strong{
  color: #157451 !important;
}

/* Popular Add-Ons product pricing: “Only” remains clean; the € amount gets the conversion colour. */
.pmx-upsell__price{
  display: flex !important;
  align-items: baseline !important;
  flex-wrap: wrap !important;
  gap: .25em !important;
  color: var(--pmx-blue-dark) !important;
  font-size: clamp(16px, 1.6vw, 20px) !important;
  line-height: 1.08 !important;
  font-weight: 900 !important;
  letter-spacing: -.015em !important;
}
.pmx-upsell__price-prefix{
  color: var(--pmx-blue-dark) !important;
  font-weight: 850 !important;
}
.pmx-upsell__price-amount{
  color: #157451 !important;
  font-weight: 950 !important;
  text-shadow: 0 1px 0 rgba(255,255,255,.70) !important;
}

@media (max-width: 620px){
  .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced:not(.pmx-free-ship-enhanced--done) .fs-free-shipping-notice-text .woocommerce-Price-amount{
    padding: .08em .38em .10em !important;
    margin: 0 .06em !important;
  }
  .pmx-upsell__price{
    font-size: 16px !important;
  }
}

@media (prefers-reduced-motion: reduce){
  .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .fs-free-shipping-notice-text .woocommerce-Price-amount{
    animation: none !important;
    transform: none !important;
  }
}

/* ---------------------------------------------------------
   PMX v1.6.3 — FINAL CART POLISH
   Restyles the top free-shipping sentence, makes “Only” green,
   and adapts the PMX quantity stepper for cart rows only.
   --------------------------------------------------------- */

/* Top free-shipping notice: stop the sentence splitting into left/right chunks. */
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .fs-free-shipping-notice-text{
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 13px !important;
  width: 100% !important;
  margin: 0 !important;
  color: var(--pmx-ink) !important;
}
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .fs-free-shipping-notice-text::before{
  display: none !important;
  content: none !important;
}
.pmx-top-fs-icon{
  position: relative;
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 15px;
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.95), rgba(255,255,255,0) 44%),
    linear-gradient(135deg, rgba(0,148,184,.13), rgba(0,194,232,.08));
  border: 1px solid rgba(0,148,184,.18);
  box-shadow: 0 10px 20px rgba(0,148,184,.10), inset 0 1px 0 rgba(255,255,255,.88);
}
.pmx-top-fs-icon::before{
  content: "";
  position: absolute;
  inset: 9px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%230094B8' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1 3h15v13H1z'/%3E%3Cpath d='M16 8h4l3 3v5h-7z'/%3E%3Ccircle cx='5.5' cy='18.5' r='2.5'/%3E%3Ccircle cx='18.5' cy='18.5' r='2.5'/%3E%3C/svg%3E") center/contain no-repeat;
  filter: drop-shadow(0 5px 9px rgba(0,148,184,.18));
}
.pmx-top-fs-icon--done{
  background:
    radial-gradient(circle at 30% 20%, rgba(255,255,255,.96), rgba(255,255,255,0) 44%),
    linear-gradient(135deg, rgba(30,166,114,.14), rgba(39,201,138,.09));
  border-color: rgba(30,166,114,.22);
}
.pmx-top-fs-icon--done::before{
  inset: 10px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%231ea672' stroke-width='2.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 6 9 17l-5-5'/%3E%3C/svg%3E") center/contain no-repeat;
}
.pmx-top-fs-copy{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  min-width: 0;
  gap: 3px;
}
.pmx-top-fs-kicker{
  display: inline-flex;
  color: var(--pmx-muted);
  font-size: clamp(11px, 1.1vw, 12.5px);
  line-height: 1.05;
  font-weight: 950;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.pmx-top-fs-line{
  display: block;
  color: var(--pmx-ink);
  font-size: clamp(15.5px, 1.8vw, 21px);
  line-height: 1.16;
  font-weight: 950;
  letter-spacing: -.028em;
}
.pmx-top-fs-amount,
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .pmx-top-fs-amount.woocommerce-Price-amount,
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .pmx-top-fs-amount.woocommerce-Price-amount bdi{
  color: #157451 !important;
}
.pmx-top-fs-amount{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  white-space: nowrap !important;
  margin: 0 .14em !important;
  padding: .10em .48em .12em !important;
  border-radius: 999px !important;
  border: 1px solid rgba(30,166,114,.20) !important;
  background: linear-gradient(180deg, rgba(255,255,255,.97), rgba(235,250,243,.96)) !important;
  box-shadow: 0 7px 18px rgba(30,166,114,.14), inset 0 1px 0 rgba(255,255,255,.78) !important;
  font-weight: 950 !important;
  letter-spacing: -.02em !important;
  text-shadow: 0 1px 0 rgba(255,255,255,.72) !important;
  transform-origin: center !important;
  animation: pmxMoneyPulse 2.25s ease-in-out infinite !important;
}

/* Keep the progress percentage compact but intentional. */
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .pmx-top-fs-meter{
  margin-top: 0 !important;
}
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .pmx-top-fs-meter__meta span{
  letter-spacing: .055em !important;
}
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .pmx-top-fs-meter__meta strong{
  color: #157451 !important;
  font-size: 12.8px !important;
  font-weight: 950 !important;
}

/* Popular Add-Ons: make the word “Only” green too. */
.pmx-upsell__price,
.pmx-upsell__price-prefix,
.pmx-upsell__price-amount{
  color: #157451 !important;
}

/* Cart quantity stepper — adapted from PMX single-product control, scoped to cart only. */
body.woocommerce-cart .woocommerce-cart-form .quantity.pmx-cart-qty-enhanced{
  position: relative !important;
  display: flex !important;
  align-items: stretch !important;
  justify-content: flex-start !important;
  width: 108px !important;
  min-width: 108px !important;
  max-width: 108px !important;
  height: 54px !important;
  min-height: 54px !important;
  max-height: 54px !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
  box-sizing: border-box !important;
  border: 2px solid var(--pmx-blue) !important;
  border-radius: 15px !important;
  background: #fff !important;
  box-shadow: 0 8px 20px rgba(0,148,184,.10), 0 2px 8px rgba(7,30,39,.05) !important;
}
body.woocommerce-cart .woocommerce-cart-form .quantity.pmx-cart-qty-enhanced input.qty,
body.woocommerce-cart .woocommerce-cart-form .quantity.pmx-cart-qty-enhanced input.input-text.qty.text{
  position: absolute !important;
  inset: 0 auto auto 0 !important;
  width: 1px !important;
  height: 1px !important;
  min-width: 1px !important;
  min-height: 1px !important;
  opacity: 0 !important;
  pointer-events: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: none !important;
}
body.woocommerce-cart .woocommerce-cart-form .quantity.pmx-cart-qty-enhanced .pmx-cart-qty-display{
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 1 1 auto !important;
  width: calc(100% - 32px) !important;
  height: 100% !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  border: 0 !important;
  outline: 0 !important;
  color: var(--pmx-ink) !important;
  font-family: Manrope, Arial, sans-serif !important;
  font-size: 23px !important;
  font-weight: 900 !important;
  line-height: 1 !important;
  text-align: center !important;
  background: #fff !important;
  box-shadow: none !important;
}
body.woocommerce-cart .woocommerce-cart-form .quantity.pmx-cart-qty-enhanced .pmx-cart-qty-display:focus{
  box-shadow: inset 0 0 0 2px rgba(0,148,184,.09) !important;
}
body.woocommerce-cart .woocommerce-cart-form .quantity.pmx-cart-qty-enhanced .pmx-cart-qty-buttons{
  display: flex !important;
  flex-direction: column !important;
  align-items: stretch !important;
  justify-content: stretch !important;
  width: 32px !important;
  min-width: 32px !important;
  max-width: 32px !important;
  height: 100% !important;
  flex: 0 0 32px !important;
  margin: 0 !important;
  padding: 0 !important;
  box-sizing: border-box !important;
  border-left: 1px solid rgba(0,148,184,.22) !important;
  background: #f3fbfd !important;
}
body.woocommerce-cart .woocommerce-cart-form .quantity.pmx-cart-qty-enhanced .pmx-cart-qty-btn{
  appearance: none !important;
  -webkit-appearance: none !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex: 1 1 50% !important;
  width: 100% !important;
  height: 50% !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  outline: none !important;
  background: transparent !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
}
body.woocommerce-cart .woocommerce-cart-form .quantity.pmx-cart-qty-enhanced .pmx-cart-qty-plus{
  border-bottom: 1px solid rgba(0,148,184,.18) !important;
}
body.woocommerce-cart .woocommerce-cart-form .quantity.pmx-cart-qty-enhanced .pmx-cart-qty-btn:hover,
body.woocommerce-cart .woocommerce-cart-form .quantity.pmx-cart-qty-enhanced .pmx-cart-qty-btn:focus{
  background: rgba(0,148,184,.10) !important;
}
body.woocommerce-cart .woocommerce-cart-form .quantity.pmx-cart-qty-enhanced .pmx-cart-qty-btn::before{
  content: "" !important;
  display: block !important;
  width: 8px !important;
  height: 8px !important;
  border-right: 3px solid var(--pmx-blue-dark) !important;
  border-bottom: 3px solid var(--pmx-blue-dark) !important;
  box-sizing: border-box !important;
}
body.woocommerce-cart .woocommerce-cart-form .quantity.pmx-cart-qty-enhanced .pmx-cart-qty-plus::before{
  transform: rotate(-135deg) !important;
  margin-top: 4px !important;
}
body.woocommerce-cart .woocommerce-cart-form .quantity.pmx-cart-qty-enhanced .pmx-cart-qty-minus::before{
  transform: rotate(45deg) !important;
  margin-top: -4px !important;
}
body.woocommerce-cart .woocommerce-cart-form .quantity.pmx-cart-qty-enhanced .pmx-cart-qty-btn[disabled]{
  opacity: .35 !important;
  cursor: not-allowed !important;
}

/* Cart price / quantity / subtotal rows. Conservative desktop polish, stronger mobile polish. */
body.woocommerce-cart .woocommerce-cart-form td.product-price .woocommerce-Price-amount,
body.woocommerce-cart .woocommerce-cart-form td.product-subtotal .woocommerce-Price-amount{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 6px 10px !important;
  border-radius: 999px !important;
  border: 1px solid rgba(0,148,184,.12) !important;
  background: linear-gradient(180deg, #fff, #f4fbfd) !important;
  color: var(--pmx-ink) !important;
  font-weight: 900 !important;
  letter-spacing: -.012em !important;
}
body.woocommerce-cart .woocommerce-cart-form td.product-subtotal .woocommerce-Price-amount{
  color: #157451 !important;
  border-color: rgba(30,166,114,.14) !important;
  background: linear-gradient(180deg, #fff, #f2fcf7) !important;
}

@media (max-width: 767px){
  .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced{
    gap: 12px !important;
    padding: 17px 16px 18px !important;
  }
  .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .fs-free-shipping-notice-text{
    gap: 12px !important;
    align-items: center !important;
  }
  .pmx-top-fs-icon{
    flex-basis: 40px;
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }
  .pmx-top-fs-line{
    font-size: clamp(18px, 5vw, 23px);
    line-height: 1.14;
  }
  .pmx-top-fs-amount{
    padding: .08em .42em .10em !important;
    margin: 0 .06em !important;
  }
  .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .flexible-shipping-free-shipping-button,
  .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .flexible-shipping-free-shipping-button.button,
  .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced a.button{
    align-self: center !important;
    min-height: 42px !important;
    padding: 12px 24px !important;
    font-size: 14px !important;
  }

  body.woocommerce-cart table.shop_table_responsive tr.cart_item td.product-price,
  body.woocommerce-cart table.shop_table_responsive tr.cart_item td.product-quantity,
  body.woocommerce-cart table.shop_table_responsive tr.cart_item td.product-subtotal,
  body.woocommerce-cart .woocommerce-cart-form tr.cart_item td.product-price,
  body.woocommerce-cart .woocommerce-cart-form tr.cart_item td.product-quantity,
  body.woocommerce-cart .woocommerce-cart-form tr.cart_item td.product-subtotal{
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
    width: 100% !important;
    margin: 0 0 9px !important;
    padding: 13px 11px !important;
    border: 1px solid rgba(7,30,39,.07) !important;
    border-radius: 14px !important;
    background: linear-gradient(180deg, rgba(255,255,255,.94), rgba(248,253,255,.88)) !important;
    box-shadow: 0 5px 14px rgba(7,30,39,.035) !important;
    box-sizing: border-box !important;
  }
  body.woocommerce-cart table.shop_table_responsive tr.cart_item td.product-price::before,
  body.woocommerce-cart table.shop_table_responsive tr.cart_item td.product-quantity::before,
  body.woocommerce-cart table.shop_table_responsive tr.cart_item td.product-subtotal::before,
  body.woocommerce-cart .woocommerce-cart-form tr.cart_item td.product-price::before,
  body.woocommerce-cart .woocommerce-cart-form tr.cart_item td.product-quantity::before,
  body.woocommerce-cart .woocommerce-cart-form tr.cart_item td.product-subtotal::before{
    float: none !important;
    flex: 0 0 auto !important;
    margin: 0 !important;
    color: rgba(31,42,51,.58) !important;
    font-size: 14px !important;
    line-height: 1.1 !important;
    font-weight: 900 !important;
    letter-spacing: -.01em !important;
  }
  body.woocommerce-cart .woocommerce-cart-form tr.cart_item td.product-quantity .quantity.pmx-cart-qty-enhanced{
    margin-left: auto !important;
    width: 104px !important;
    min-width: 104px !important;
    max-width: 104px !important;
    height: 52px !important;
    min-height: 52px !important;
    max-height: 52px !important;
  }
  body.woocommerce-cart .woocommerce-cart-form tr.cart_item td.product-price .woocommerce-Price-amount,
  body.woocommerce-cart .woocommerce-cart-form tr.cart_item td.product-subtotal .woocommerce-Price-amount{
    margin-left: auto !important;
    font-size: 14.5px !important;
    padding: 7px 11px !important;
  }
}

@media (prefers-reduced-motion: reduce){
  .pmx-top-fs-amount{
    animation: none !important;
    transform: none !important;
  }
}

/* ---------------------------------------------------------
   PMX v1.7.0 — SIGNATURE VISUAL FINISH
   Final design pass: richer free-shipping hero, cleaner cart row
   hierarchy, stronger add-on cards, and more polished controls.
   --------------------------------------------------------- */
body.woocommerce-cart,
body.woocommerce-checkout{
  --pmx-premium-green: #157451;
  --pmx-premium-green-bright: #27c98a;
  --pmx-panel-glass: rgba(255,255,255,.86);
  --pmx-deep-shadow: 0 18px 48px rgba(7,30,39,.085), 0 14px 34px rgba(0,148,184,.075);
}

/* Top free-shipping hero: make it look like a designed conversion panel. */
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced{
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
  border-radius: 22px !important;
  padding: clamp(16px, 2.1vw, 22px) clamp(16px, 2.6vw, 26px) !important;
  border: 1px solid rgba(0,148,184,.18) !important;
  background:
    radial-gradient(circle at 10% 0%, rgba(0,194,232,.20) 0%, rgba(0,194,232,0) 34%),
    radial-gradient(circle at 92% 8%, rgba(0,148,184,.12) 0%, rgba(0,148,184,0) 36%),
    linear-gradient(180deg, #ffffff 0%, #f3fbfd 100%) !important;
  box-shadow: var(--pmx-deep-shadow) !important;
}
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced::after{
  content: "";
  position: absolute;
  z-index: -1;
  inset: 1px;
  border-radius: 21px;
  border: 1px solid rgba(255,255,255,.72);
  pointer-events: none;
}
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .fs-free-shipping-notice-text{
  gap: 15px !important;
}
.pmx-top-fs-icon{
  box-shadow:
    0 12px 24px rgba(0,148,184,.13),
    0 0 0 5px rgba(0,148,184,.045),
    inset 0 1px 0 rgba(255,255,255,.92) !important;
}
.pmx-top-fs-line{
  max-width: 760px;
  text-wrap: balance;
}
.pmx-top-fs-amount{
  background:
    radial-gradient(circle at 28% 0%, rgba(255,255,255,.92) 0%, rgba(255,255,255,0) 46%),
    linear-gradient(180deg, #ffffff 0%, #eafaf2 100%) !important;
  border-color: rgba(21,116,81,.22) !important;
  box-shadow:
    0 9px 22px rgba(30,166,114,.18),
    0 0 0 3px rgba(39,201,138,.055),
    inset 0 1px 0 rgba(255,255,255,.86) !important;
}
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .pmx-top-fs-meter{
  padding: 11px 12px 12px !important;
  border-radius: 16px !important;
  background: rgba(255,255,255,.64) !important;
  border: 1px solid rgba(0,148,184,.09) !important;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.82) !important;
}
.pmx-top-fs-meter__meta{
  margin-bottom: 8px !important;
}
.pmx-top-fs-meter__meta span{
  color: rgba(15,39,48,.60) !important;
}
.pmx-top-fs-meter__meta strong{
  display: inline-flex !important;
  align-items: center !important;
  min-height: 23px !important;
  padding: 3px 8px !important;
  border-radius: 999px !important;
  background: rgba(21,116,81,.075) !important;
  border: 1px solid rgba(21,116,81,.12) !important;
}
.pmx-top-fs-meter__bar{
  height: 15px !important;
  background:
    linear-gradient(180deg, rgba(255,255,255,.82), rgba(255,255,255,0)),
    rgba(0,148,184,.12) !important;
  box-shadow:
    inset 0 1px 3px rgba(7,30,39,.11),
    0 1px 0 rgba(255,255,255,.72) !important;
}
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced--done{
  border-color: rgba(30,166,114,.30) !important;
  background:
    radial-gradient(circle at 10% 0%, rgba(39,201,138,.20) 0%, rgba(39,201,138,0) 35%),
    radial-gradient(circle at 92% 8%, rgba(30,166,114,.12) 0%, rgba(30,166,114,0) 36%),
    linear-gradient(180deg, #ffffff 0%, #f1fbf6 100%) !important;
}
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced--done .pmx-top-fs-meter{
  border-color: rgba(30,166,114,.12) !important;
  background: rgba(255,255,255,.66) !important;
}

/* Continue shopping: premium secondary CTA without competing against checkout. */
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .flexible-shipping-free-shipping-button,
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .flexible-shipping-free-shipping-button.button,
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced a.button{
  position: relative !important;
  overflow: hidden !important;
  min-height: 40px !important;
  padding: 11px 20px !important;
  border: 1px solid rgba(0,148,184,.18) !important;
  background:
    linear-gradient(135deg, #0f2730 0%, #007A99 100%) !important;
  box-shadow:
    0 10px 22px rgba(7,30,39,.18),
    0 10px 22px rgba(0,148,184,.16),
    inset 0 1px 0 rgba(255,255,255,.18) !important;
}
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .flexible-shipping-free-shipping-button::after,
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .flexible-shipping-free-shipping-button.button::after,
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced a.button::after{
  content: "→";
  display: inline-block;
  margin-left: 8px;
  transform: translateX(0);
  transition: transform .16s ease;
}
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .flexible-shipping-free-shipping-button:hover::after,
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .flexible-shipping-free-shipping-button.button:hover::after,
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced a.button:hover::after{
  transform: translateX(3px);
}

/* Popular Add-Ons: more premium, more retail-card, less plugin-block. */
.pmx-upsell{
  border-radius: 24px !important;
  padding: clamp(18px, 2.7vw, 30px) !important;
  background:
    radial-gradient(circle at 8% 0%, rgba(0,194,232,.20) 0%, rgba(0,194,232,0) 34%),
    radial-gradient(circle at 94% 10%, rgba(0,148,184,.13) 0%, rgba(0,148,184,0) 40%),
    linear-gradient(180deg, #ffffff 0%, #f5fbfd 100%) !important;
  box-shadow: var(--pmx-deep-shadow) !important;
}
.pmx-upsell::after{
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 23px;
  border: 1px solid rgba(255,255,255,.78);
  pointer-events: none;
  z-index: -1;
}
.pmx-upsell__head{
  align-items: flex-start !important;
  gap: 14px !important;
}
.pmx-upsell__eyebrow{
  background: rgba(0,148,184,.075) !important;
  border: 1px solid rgba(0,148,184,.12) !important;
  border-radius: 999px !important;
  padding: 5px 9px !important;
  width: fit-content !important;
}
.pmx-upsell__title{
  letter-spacing: -.045em !important;
  text-shadow: 0 1px 0 rgba(255,255,255,.85) !important;
}
.pmx-upsell__badge{
  border-radius: 999px !important;
  padding: 8px 11px !important;
  background: linear-gradient(180deg, #ffffff, #eef9fc) !important;
  border: 1px solid rgba(0,148,184,.13) !important;
  box-shadow: 0 8px 18px rgba(0,148,184,.08), inset 0 1px 0 rgba(255,255,255,.82) !important;
}
.pmx-upsell__grid{
  gap: clamp(12px, 1.6vw, 18px) !important;
}
.pmx-upsell__card{
  position: relative !important;
  border-radius: 18px !important;
  border: 1px solid rgba(7,30,39,.075) !important;
  background: rgba(255,255,255,.92) !important;
  box-shadow: 0 8px 22px rgba(7,30,39,.045), inset 0 1px 0 rgba(255,255,255,.86) !important;
  transform: translateZ(0);
}
.pmx-upsell__card:hover{
  transform: translateY(-4px) !important;
  border-color: rgba(0,148,184,.20) !important;
  box-shadow: 0 18px 42px rgba(7,30,39,.08), 0 14px 28px rgba(0,148,184,.12) !important;
}
.pmx-upsell__imgwrap{
  margin: 10px 10px 0 !important;
  border-radius: 15px !important;
  background:
    radial-gradient(circle at 50% 30%, rgba(0,194,232,.13) 0%, rgba(0,194,232,0) 50%),
    linear-gradient(180deg, #fafeff, #eef9fc) !important;
  border: 1px solid rgba(0,148,184,.075) !important;
}
.pmx-upsell__img{
  object-fit: contain !important;
  padding: 10px !important;
  box-sizing: border-box !important;
}
.pmx-upsell__body{
  padding: 13px 13px 15px !important;
  gap: 9px !important;
}
.pmx-upsell__tag{
  width: fit-content !important;
  border-radius: 999px !important;
  padding: 4px 8px !important;
  color: var(--pmx-blue-dark) !important;
  background: rgba(0,148,184,.072) !important;
  border: 1px solid rgba(0,148,184,.11) !important;
  font-size: 10.4px !important;
  line-height: 1 !important;
  font-weight: 950 !important;
  letter-spacing: .055em !important;
  text-transform: uppercase !important;
}
.pmx-upsell__name{
  font-weight: 820 !important;
  letter-spacing: -.014em !important;
}
.pmx-upsell__price{
  padding-top: 2px !important;
}
.pmx-upsell__price-prefix,
.pmx-upsell__price-amount{
  color: var(--pmx-premium-green) !important;
}
.pmx-upsell__price-amount{
  display: inline-flex !important;
  align-items: center !important;
  padding: 2px 7px !important;
  border-radius: 999px !important;
  background: rgba(21,116,81,.075) !important;
  border: 1px solid rgba(21,116,81,.11) !important;
}
.pmx-upsell__btn{
  min-height: 40px !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  border-radius: 13px !important;
  font-weight: 900 !important;
  letter-spacing: -.006em !important;
}
.pmx-upsell__btn--add{
  background: linear-gradient(135deg, #007A99 0%, #00B3D8 100%) !important;
  box-shadow: 0 10px 20px rgba(0,148,184,.25), inset 0 1px 0 rgba(255,255,255,.18) !important;
}
.pmx-upsell__btn--view{
  background: rgba(255,255,255,.80) !important;
  border-color: rgba(0,148,184,.18) !important;
}

/* Cart table: clearer premium hierarchy without changing WooCommerce structure. */
body.woocommerce-cart .woocommerce-cart-form table.shop_table{
  border-collapse: separate !important;
  border-spacing: 0 10px !important;
  background: transparent !important;
}
body.woocommerce-cart .woocommerce-cart-form table.shop_table thead th{
  padding: 8px 12px !important;
  color: rgba(15,39,48,.58) !important;
  font-size: 11.5px !important;
  line-height: 1.1 !important;
  font-weight: 950 !important;
  letter-spacing: .06em !important;
  text-transform: uppercase !important;
  border: 0 !important;
}
body.woocommerce-cart .woocommerce-cart-form tr.cart_item td{
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(249,253,255,.94)) !important;
  border-top: 1px solid rgba(7,30,39,.065) !important;
  border-bottom: 1px solid rgba(7,30,39,.065) !important;
  box-shadow: 0 8px 22px rgba(7,30,39,.035) !important;
}
body.woocommerce-cart .woocommerce-cart-form tr.cart_item td:first-child{
  border-left: 1px solid rgba(7,30,39,.065) !important;
  border-radius: 18px 0 0 18px !important;
}
body.woocommerce-cart .woocommerce-cart-form tr.cart_item td:last-child{
  border-right: 1px solid rgba(7,30,39,.065) !important;
  border-radius: 0 18px 18px 0 !important;
}
body.woocommerce-cart .woocommerce-cart-form td.product-thumbnail img{
  border-radius: 15px !important;
  background: #fff !important;
  box-shadow: 0 8px 18px rgba(7,30,39,.055) !important;
}
body.woocommerce-cart .woocommerce-cart-form td.product-name a{
  color: var(--pmx-ink) !important;
  font-weight: 850 !important;
  letter-spacing: -.012em !important;
}
body.woocommerce-cart .woocommerce-cart-form td.product-name a:hover{
  color: var(--pmx-blue-dark) !important;
}
body.woocommerce-cart .woocommerce-cart-form a.remove{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 30px !important;
  height: 30px !important;
  border-radius: 999px !important;
  background: #fff !important;
  color: rgba(15,39,48,.46) !important;
  border: 1px solid rgba(7,30,39,.08) !important;
  box-shadow: 0 7px 15px rgba(7,30,39,.05) !important;
  transition: transform .15s ease, color .15s ease, background .15s ease, border-color .15s ease !important;
}
body.woocommerce-cart .woocommerce-cart-form a.remove:hover{
  transform: scale(1.06) !important;
  color: #fff !important;
  background: #d63b3b !important;
  border-color: #d63b3b !important;
}
body.woocommerce-cart .woocommerce-cart-form td.product-price .woocommerce-Price-amount,
body.woocommerce-cart .woocommerce-cart-form td.product-subtotal .woocommerce-Price-amount{
  min-width: 78px !important;
  min-height: 36px !important;
  box-shadow: 0 8px 18px rgba(7,30,39,.045), inset 0 1px 0 rgba(255,255,255,.82) !important;
}
body.woocommerce-cart .woocommerce-cart-form .quantity.pmx-cart-qty-enhanced{
  border-radius: 17px !important;
  box-shadow:
    0 10px 22px rgba(0,148,184,.11),
    0 3px 8px rgba(7,30,39,.045),
    inset 0 1px 0 rgba(255,255,255,.88) !important;
}
body.woocommerce-cart .woocommerce-cart-form .quantity.pmx-cart-qty-enhanced .pmx-cart-qty-buttons{
  background: linear-gradient(180deg, #f4fbfd, #eaf8fc) !important;
}

/* Cart totals / checkout review: more polished panels and selected delivery rows. */
body.woocommerce-cart .cart_totals,
body.woocommerce-checkout #order_review{
  border-radius: 24px !important;
  border-color: rgba(0,148,184,.14) !important;
  background:
    radial-gradient(circle at 8% 0%, rgba(0,194,232,.12) 0%, rgba(0,194,232,0) 36%),
    linear-gradient(180deg, #ffffff 0%, #f7fcfe 100%) !important;
  box-shadow: var(--pmx-deep-shadow) !important;
}
body.woocommerce-cart .cart_totals h2,
body.woocommerce-checkout #order_review_heading{
  letter-spacing: -.035em !important;
}
body.woocommerce-cart .cart_totals tr.woocommerce-shipping-totals.shipping ul#shipping_method li,
body.woocommerce-checkout #order_review ul#shipping_method li,
body.woocommerce-checkout form.checkout ul#shipping_method li{
  position: relative !important;
  overflow: hidden !important;
  border-radius: 16px !important;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(250,254,255,.94)) !important;
  box-shadow: 0 7px 17px rgba(7,30,39,.04), inset 0 1px 0 rgba(255,255,255,.82) !important;
}
body.woocommerce-cart .cart_totals tr.woocommerce-shipping-totals.shipping ul#shipping_method li::before,
body.woocommerce-checkout #order_review ul#shipping_method li::before,
body.woocommerce-checkout form.checkout ul#shipping_method li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: transparent;
}
body.woocommerce-cart .cart_totals tr.woocommerce-shipping-totals.shipping ul#shipping_method li:has(input.shipping_method:checked)::before,
body.woocommerce-checkout #order_review ul#shipping_method li:has(input.shipping_method:checked)::before,
body.woocommerce-checkout form.checkout ul#shipping_method li:has(input.shipping_method:checked)::before{
  background: linear-gradient(180deg, var(--pmx-blue), var(--pmx-blue-neon));
}
body.woocommerce-cart .cart_totals tr.woocommerce-shipping-totals.shipping ul#shipping_method li:has(input.shipping_method:checked),
body.woocommerce-checkout #order_review ul#shipping_method li:has(input.shipping_method:checked),
body.woocommerce-checkout form.checkout ul#shipping_method li:has(input.shipping_method:checked){
  transform: translateY(-1px);
  box-shadow: 0 11px 24px rgba(0,148,184,.10), 0 0 0 2px rgba(0,148,184,.075), inset 0 1px 0 rgba(255,255,255,.86) !important;
}
body.woocommerce-cart .cart_totals tr.order-total .woocommerce-Price-amount,
body.woocommerce-checkout #order_review tr.order-total .woocommerce-Price-amount{
  color: var(--pmx-premium-green) !important;
  font-weight: 950 !important;
}

/* Main checkout/update CTAs: more finished but same layout. */
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
body.woocommerce-checkout #place_order{
  border-radius: 16px !important;
  background: linear-gradient(135deg, #007A99 0%, #00B3D8 55%, #00C2E8 100%) !important;
  box-shadow:
    0 16px 34px rgba(0,148,184,.30),
    inset 0 1px 0 rgba(255,255,255,.20) !important;
}
body.woocommerce-cart .woocommerce-cart-form button[name="update_cart"],
body.woocommerce-cart .woocommerce-cart-form .actions .button,
body.woocommerce-cart .coupon .button{
  border-radius: 13px !important;
  font-weight: 850 !important;
  letter-spacing: -.004em !important;
}

@media (max-width: 767px){
  .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced{
    border-radius: 20px !important;
    padding: 16px !important;
  }
  .pmx-top-fs-icon{
    flex-basis: 38px !important;
    width: 38px !important;
    height: 38px !important;
  }
  .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .pmx-top-fs-meter{
    padding: 10px !important;
    border-radius: 15px !important;
  }
  .pmx-upsell{
    border-radius: 22px !important;
  }
  .pmx-upsell__head{
    gap: 10px !important;
  }
  .pmx-upsell__badge{
    padding: 7px 9px !important;
  }
  .pmx-upsell__imgwrap{
    margin: 8px 8px 0 !important;
    border-radius: 13px !important;
  }
  .pmx-upsell__img{
    padding: 7px !important;
  }
  .pmx-upsell__body{
    padding: 10px 10px 12px !important;
  }
  .pmx-upsell__btn{
    min-height: 38px !important;
    font-size: 12.5px !important;
  }
  body.woocommerce-cart .woocommerce-cart-form table.shop_table{
    border-spacing: 0 !important;
  }
  body.woocommerce-cart .woocommerce-cart-form tr.cart_item td{
    box-shadow: none !important;
  }
  body.woocommerce-cart .woocommerce-cart-form tr.cart_item td:first-child,
  body.woocommerce-cart .woocommerce-cart-form tr.cart_item td:last-child{
    border-radius: 14px !important;
  }
}

@media (prefers-reduced-motion: reduce){
  .pmx-upsell__card,
  .pmx-upsell__btn,
  .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced a.button,
  body.woocommerce-cart .woocommerce-cart-form a.remove{
    transition: none !important;
  }
}

/* ---------------------------------------------------------
   PMX v1.7.2 — Progress bars load from 0% when first visible,
   then perform a compact premium nudge.
   --------------------------------------------------------- */
.pmx-top-fs-meter__bar.pmx-meter-anim-ready > span,
.pmx-upsell__shipbar.pmx-meter-anim-ready > span{
  width: 0% !important;
  min-width: 0 !important;
  transition: none !important;
}

.pmx-top-fs-meter__bar.pmx-meter-anim-run > span,
.pmx-upsell__shipbar.pmx-meter-anim-run > span{
  transition: width 1.08s cubic-bezier(.18,.84,.25,1) !important;
}

.pmx-top-fs-meter__bar.pmx-meter-anim-complete > span,
.pmx-upsell__shipbar.pmx-meter-anim-complete > span{
  min-width: 10px;
}

.pmx-top-fs-meter.pmx-meter-nudge,
.pmx-upsell__shipmeter.pmx-meter-nudge{
  animation: pmx-progress-meter-nudge .72s cubic-bezier(.34,1.56,.64,1) both !important;
  transform-origin: center;
}

@keyframes pmx-progress-meter-nudge{
  0%,100%{ transform: translate3d(0,0,0) scale(1); }
  18%{ transform: translate3d(-1px,0,0) scale(1.006); }
  36%{ transform: translate3d(2px,0,0) scale(1.010); }
  54%{ transform: translate3d(-1.5px,0,0) scale(1.006); }
  72%{ transform: translate3d(1px,0,0) scale(1.002); }
}

@media (prefers-reduced-motion: reduce){
  .pmx-top-fs-meter__bar.pmx-meter-anim-ready > span,
  .pmx-upsell__shipbar.pmx-meter-anim-ready > span{
    width: var(--pmx-noop-width, auto) !important;
    min-width: 10px !important;
  }

  .pmx-top-fs-meter__bar.pmx-meter-anim-run > span,
  .pmx-upsell__shipbar.pmx-meter-anim-run > span,
  .pmx-top-fs-meter.pmx-meter-nudge,
  .pmx-upsell__shipmeter.pmx-meter-nudge{
    animation: none !important;
    transition: none !important;
  }
}

/* ---------------------------------------------------------
   PMX v1.7.1 — Checkout CTA shimmer glow + subtle nudge
   Applies only to the main conversion buttons.
   --------------------------------------------------------- */
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
body.woocommerce-checkout #place_order{
  position: relative !important;
  isolation: isolate !important;
  overflow: hidden !important;
  will-change: translate, box-shadow, filter !important;
  animation:
    pmx-main-cta-glow 3.8s ease-in-out infinite,
    pmx-main-cta-nudge 6.4s ease-in-out infinite !important;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button::after,
body.woocommerce-checkout #place_order::after{
  content: "" !important;
  position: absolute !important;
  z-index: 1 !important;
  top: -42% !important;
  bottom: -42% !important;
  left: -56% !important;
  width: 42% !important;
  pointer-events: none !important;
  border-radius: inherit !important;
  background: linear-gradient(
    90deg,
    rgba(255,255,255,0) 0%,
    rgba(255,255,255,.16) 24%,
    rgba(255,255,255,.62) 50%,
    rgba(255,255,255,.18) 76%,
    rgba(255,255,255,0) 100%
  ) !important;
  transform: skewX(-18deg) translateX(-160%) !important;
  filter: blur(.2px) !important;
  opacity: .88 !important;
  mix-blend-mode: screen !important;
  animation: pmx-main-cta-shimmer 3.15s cubic-bezier(.42,0,.2,1) infinite !important;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
body.woocommerce-checkout #place_order:hover{
  animation-play-state: running !important;
  box-shadow:
    0 19px 42px rgba(0,148,184,.42),
    0 0 0 4px rgba(0,194,232,.12),
    inset 0 1px 0 rgba(255,255,255,.25) !important;
}

body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:focus-visible,
body.woocommerce-checkout #place_order:focus-visible{
  outline: 3px solid rgba(0,194,232,.34) !important;
  outline-offset: 3px !important;
}

@keyframes pmx-main-cta-shimmer{
  0%{ transform: skewX(-18deg) translateX(-165%); opacity: 0; }
  13%{ opacity: .92; }
  46%{ transform: skewX(-18deg) translateX(405%); opacity: .90; }
  58%,100%{ transform: skewX(-18deg) translateX(405%); opacity: 0; }
}

@keyframes pmx-main-cta-glow{
  0%,100%{
    box-shadow:
      0 16px 34px rgba(0,148,184,.30),
      0 0 0 0 rgba(0,194,232,0),
      inset 0 1px 0 rgba(255,255,255,.20);
    filter: saturate(1) brightness(1);
  }
  50%{
    box-shadow:
      0 20px 44px rgba(0,148,184,.39),
      0 0 0 5px rgba(0,194,232,.105),
      inset 0 1px 0 rgba(255,255,255,.25);
    filter: saturate(1.08) brightness(1.035);
  }
}

@keyframes pmx-main-cta-nudge{
  0%,78%,100%{ translate: 0 0; }
  80%{ translate: -1px 0; }
  82%{ translate: 2px 0; }
  84%{ translate: -2px 0; }
  86%{ translate: 1px 0; }
  88%{ translate: 0 0; }
}

@media (prefers-reduced-motion: reduce){
  body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
  body.woocommerce-checkout #place_order,
  body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button::after,
  body.woocommerce-checkout #place_order::after{
    animation: none !important;
  }
}

/* ---------------------------------------------------------
   PMX v1.7.3 — FINAL REFINEMENT PASS
   Popular labels, smoother progress fills, compact quantity, cleaner totals,
   stronger main CTAs, improved payment selection, gift-card sizing and
   desktop add-on image containment.
   --------------------------------------------------------- */

/* Popular Add-Ons: label + button language polish. */
.pmx-upsell__tag{
  color: var(--pmx-blue-dark) !important;
}
.pmx-upsell__btn--view{
  color: var(--pmx-blue-dark) !important;
  border: 1.5px solid rgba(0,148,184,.22) !important;
  background: linear-gradient(180deg, #ffffff 0%, #f5fcfe 100%) !important;
  box-shadow: 0 8px 18px rgba(0,148,184,.07), inset 0 1px 0 rgba(255,255,255,.90) !important;
}
.pmx-upsell__btn--view:hover{
  transform: translateY(-1px) !important;
  border-color: rgba(0,148,184,.34) !important;
  background: linear-gradient(135deg, rgba(0,148,184,.08), rgba(0,194,232,.06)) !important;
  box-shadow: 0 12px 24px rgba(0,148,184,.12), inset 0 1px 0 rgba(255,255,255,.90) !important;
}

/* Desktop add-on images: avoid cropped-looking cards, especially clothing/portrait products. */
@media (min-width: 768px){
  .pmx-upsell__imgwrap{
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    height: clamp(168px, 15.5vw, 218px) !important;
    aspect-ratio: auto !important;
  }
  .pmx-upsell__img{
    width: 100% !important;
    height: 100% !important;
    max-width: 100% !important;
    max-height: 100% !important;
    object-fit: contain !important;
    object-position: center center !important;
    padding: 14px !important;
  }
}
@media (max-width: 767px){
  .pmx-upsell__imgwrap{
    min-height: 144px !important;
  }
  .pmx-upsell__img{
    object-fit: contain !important;
    object-position: center center !important;
  }
}

/* Progress meters: transform-based fill avoids width reflow stutter/jump. */
.pmx-top-fs-meter__bar,
.pmx-upsell__shipbar{
  isolation: isolate !important;
}
.pmx-top-fs-meter__bar > span,
.pmx-upsell__shipbar > span{
  width: 100% !important;
  min-width: 0 !important;
  max-width: 100% !important;
  transform-origin: left center !important;
  will-change: transform !important;
}
.pmx-top-fs-meter__bar.pmx-meter-anim-ready > span,
.pmx-upsell__shipbar.pmx-meter-anim-ready > span{
  width: 100% !important;
  min-width: 0 !important;
  transform: scaleX(0) !important;
  transition: none !important;
}
.pmx-top-fs-meter__bar.pmx-meter-anim-run > span,
.pmx-upsell__shipbar.pmx-meter-anim-run > span{
  transition: transform 1.36s cubic-bezier(.16, .92, .18, 1) !important;
}
.pmx-top-fs-meter__bar.pmx-meter-anim-complete > span,
.pmx-upsell__shipbar.pmx-meter-anim-complete > span{
  min-width: 0 !important;
}
.pmx-top-fs-meter__bar > span::after,
.pmx-upsell__shipbar > span::after{
  transform-origin: center !important;
}

/* Mobile checkout/cart CTA hierarchy and spacing around express buttons. */
body.woocommerce-cart .wc-proceed-to-checkout,
body.woocommerce-checkout #payment .place-order{
  display: grid !important;
  gap: 13px !important;
}
body.woocommerce-cart .wc-proceed-to-checkout > *{
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
body.woocommerce-checkout #place_order{
  min-height: 58px !important;
  border-radius: 18px !important;
  font-size: clamp(17px, 2.1vw, 21px) !important;
  font-weight: 950 !important;
  letter-spacing: -.018em !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: 16px 24px !important;
  text-align: center !important;
  text-transform: none !important;
}
body.woocommerce-cart .wc-proceed-to-checkout .paypal-button-container,
body.woocommerce-cart .wc-proceed-to-checkout .ppc-button-wrapper,
body.woocommerce-cart .wc-proceed-to-checkout .ppcp-messages,
body.woocommerce-cart .wc-proceed-to-checkout .wc-stripe-payment-request-wrapper,
body.woocommerce-cart .wc-proceed-to-checkout .gpay-card-info-container,
body.woocommerce-cart .wc-proceed-to-checkout iframe{
  margin-top: 10px !important;
}
@media (max-width: 767px){
  body.woocommerce-cart .wc-proceed-to-checkout{
    gap: 15px !important;
  }
  body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
  body.woocommerce-checkout #place_order{
    min-height: 56px !important;
    border-radius: 17px !important;
    font-size: 18px !important;
    box-shadow:
      0 18px 36px rgba(0,148,184,.32),
      0 0 0 4px rgba(0,194,232,.08),
      inset 0 1px 0 rgba(255,255,255,.24) !important;
  }
}

/* Totals: keep grand total + VAT readable but less oversized, and keep mobile on one line where possible. */
body.woocommerce-cart .cart_totals tr.order-total th,
body.woocommerce-checkout #order_review tr.order-total th{
  font-size: clamp(14px, 1.4vw, 17px) !important;
  font-weight: 950 !important;
}
body.woocommerce-cart .cart_totals tr.order-total td,
body.woocommerce-checkout #order_review tr.order-total td,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total td{
  white-space: nowrap !important;
  vertical-align: middle !important;
}
body.woocommerce-cart .cart_totals tr.order-total .woocommerce-Price-amount,
body.woocommerce-checkout #order_review tr.order-total .woocommerce-Price-amount,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total .woocommerce-Price-amount{
  font-size: clamp(18px, 2vw, 25px) !important;
  line-height: 1.05 !important;
}
body.woocommerce-cart .cart_totals tr.order-total small,
body.woocommerce-checkout #order_review tr.order-total small,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total small{
  display: inline !important;
  margin-left: 6px !important;
  color: rgba(15,39,48,.66) !important;
  font-size: clamp(12px, 1.2vw, 15px) !important;
  line-height: 1.1 !important;
  white-space: nowrap !important;
}
body.woocommerce-cart .cart_totals tr.order-total small .woocommerce-Price-amount,
body.woocommerce-checkout #order_review tr.order-total small .woocommerce-Price-amount,
body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total small .woocommerce-Price-amount{
  font-size: inherit !important;
  line-height: inherit !important;
  padding: 0 !important;
  background: transparent !important;
  border: 0 !important;
  box-shadow: none !important;
}
@media (max-width: 767px){
  body.woocommerce-cart .cart_totals tr.order-total,
  body.woocommerce-checkout #order_review tr.order-total,
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total{
    display: table-row !important;
  }
  body.woocommerce-cart .cart_totals tr.order-total td,
  body.woocommerce-checkout #order_review tr.order-total td,
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total td{
    font-size: 0 !important;
    white-space: nowrap !important;
  }
  body.woocommerce-cart .cart_totals tr.order-total .woocommerce-Price-amount,
  body.woocommerce-checkout #order_review tr.order-total .woocommerce-Price-amount,
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total .woocommerce-Price-amount{
    font-size: 20px !important;
  }
  body.woocommerce-cart .cart_totals tr.order-total small,
  body.woocommerce-checkout #order_review tr.order-total small,
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total small{
    font-size: 13.5px !important;
  }
}

/* Cart quantity: slightly smaller on both desktop and mobile. */
body.woocommerce-cart .woocommerce-cart-form .quantity.pmx-cart-qty-enhanced,
body.woocommerce-cart .woocommerce-cart-form tr.cart_item td.product-quantity .quantity.pmx-cart-qty-enhanced{
  width: 98px !important;
  min-width: 98px !important;
  max-width: 98px !important;
  height: 48px !important;
  min-height: 48px !important;
  max-height: 48px !important;
  border-radius: 14px !important;
}
body.woocommerce-cart .woocommerce-cart-form .quantity.pmx-cart-qty-enhanced .pmx-cart-qty-display{
  width: calc(100% - 29px) !important;
  font-size: 20px !important;
}
body.woocommerce-cart .woocommerce-cart-form .quantity.pmx-cart-qty-enhanced .pmx-cart-qty-buttons{
  width: 29px !important;
  min-width: 29px !important;
  max-width: 29px !important;
  flex-basis: 29px !important;
}
body.woocommerce-cart .woocommerce-cart-form .quantity.pmx-cart-qty-enhanced .pmx-cart-qty-btn::before{
  width: 7px !important;
  height: 7px !important;
  border-right-width: 2.5px !important;
  border-bottom-width: 2.5px !important;
}
@media (max-width: 767px){
  body.woocommerce-cart .woocommerce-cart-form .quantity.pmx-cart-qty-enhanced,
  body.woocommerce-cart .woocommerce-cart-form tr.cart_item td.product-quantity .quantity.pmx-cart-qty-enhanced{
    width: 94px !important;
    min-width: 94px !important;
    max-width: 94px !important;
    height: 46px !important;
    min-height: 46px !important;
    max-height: 46px !important;
  }
  body.woocommerce-cart .woocommerce-cart-form .quantity.pmx-cart-qty-enhanced .pmx-cart-qty-display{
    font-size: 19px !important;
  }
}

/* Payment method selection: remove Woo pointer/half-rectangle and use full-card selected state. */
body.woocommerce-checkout .wc_payment_methods{
  display: grid !important;
  gap: 9px !important;
}
body.woocommerce-checkout .wc_payment_method{
  position: relative !important;
  overflow: hidden !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1.5px solid rgba(7,30,39,.08) !important;
  border-radius: 16px !important;
  background: linear-gradient(180deg, #ffffff 0%, #fbfdfe 100%) !important;
  box-shadow: 0 7px 18px rgba(7,30,39,.035), inset 0 1px 0 rgba(255,255,255,.84) !important;
  transition: border-color .18s ease, box-shadow .18s ease, background .18s ease, transform .18s ease !important;
}
body.woocommerce-checkout .wc_payment_method:has(input:checked){
  border-color: rgba(0,148,184,.48) !important;
  background: linear-gradient(180deg, #f5fdff 0%, #ffffff 100%) !important;
  box-shadow: 0 12px 26px rgba(0,148,184,.10), 0 0 0 2px rgba(0,148,184,.075), inset 0 1px 0 rgba(255,255,255,.90) !important;
  transform: translateY(-1px) !important;
}
body.woocommerce-checkout .wc_payment_method::before{
  content: "" !important;
  position: absolute !important;
  inset: 0 auto 0 0 !important;
  width: 4px !important;
  background: transparent !important;
  border-radius: 16px 0 0 16px !important;
  pointer-events: none !important;
}
body.woocommerce-checkout .wc_payment_method:has(input:checked)::before{
  background: linear-gradient(180deg, var(--pmx-blue), var(--pmx-blue-neon)) !important;
}
body.woocommerce-checkout .wc_payment_method > label{
  display: flex !important;
  align-items: center !important;
  min-height: 58px !important;
  gap: 10px !important;
  padding: 13px 16px !important;
  margin: 0 !important;
  font-size: 16px !important;
  line-height: 1.15 !important;
  font-weight: 850 !important;
  color: var(--pmx-ink) !important;
  cursor: pointer !important;
}
body.woocommerce-checkout .wc_payment_method input[type="radio"]{
  margin: 0 8px 0 0 !important;
  flex: 0 0 auto !important;
}
body.woocommerce-checkout .payment_box,
body.woocommerce-checkout .wc_payment_method .payment_box{
  margin: 0 !important;
  padding: 15px 18px 17px !important;
  border-radius: 0 0 15px 15px !important;
  border-top: 1px solid rgba(0,148,184,.10) !important;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(247,252,254,.92)) !important;
  color: rgba(15,39,48,.78) !important;
  box-shadow: none !important;
}
body.woocommerce-checkout .payment_box::before,
body.woocommerce-checkout .wc_payment_method .payment_box::before,
body.woocommerce-checkout #payment div.payment_box::before{
  display: none !important;
  content: none !important;
  border: 0 !important;
}

/* Gift card: secondary action should be compact, not competing with checkout/place-order. */
#pwgc-redeem-gift-card-container{
  display: block !important;
}
#pwgc-redeem-button,
#pwgc-redeem-gift-card-container button,
body.woocommerce-cart #pwgc-redeem-button,
body.woocommerce-checkout #pwgc-redeem-button{
  width: auto !important;
  min-width: 112px !important;
  max-width: 172px !important;
  min-height: 42px !important;
  padding: 10px 18px !important;
  border-radius: 14px !important;
  font-size: 15px !important;
  line-height: 1 !important;
  font-weight: 850 !important;
  box-shadow: 0 8px 18px rgba(7,30,39,.12) !important;
}
@media (max-width: 767px){
  #pwgc-redeem-button,
  #pwgc-redeem-gift-card-container button,
  body.woocommerce-cart #pwgc-redeem-button,
  body.woocommerce-checkout #pwgc-redeem-button{
    min-width: 112px !important;
    max-width: 150px !important;
    min-height: 42px !important;
    padding: 10px 16px !important;
    font-size: 14.5px !important;
  }
}

@media (prefers-reduced-motion: reduce){
  .pmx-top-fs-meter__bar.pmx-meter-anim-run > span,
  .pmx-upsell__shipbar.pmx-meter-anim-run > span{
    transition: none !important;
  }
}

/* ---------------------------------------------------------
   PMX v1.7.4 — FINAL CHECKOUT + FORM POLISH
   Tightens the last mobile/desktop issues without altering the slow-seller logic.
   --------------------------------------------------------- */

/* Product add-on CTAs: match the stronger category-page blue treatment. */
.pmx-upsell__btn--add,
.pmx-upsell__btn--view{
  border: 0 !important;
  background: linear-gradient(180deg, #00AFCF 0%, #0094B8 54%, #007F9E 100%) !important;
  color: #ffffff !important;
  box-shadow:
    0 11px 22px rgba(0,148,184,.28),
    inset 0 1px 0 rgba(255,255,255,.22) !important;
}
.pmx-upsell__btn--add:hover,
.pmx-upsell__btn--view:hover{
  color: #ffffff !important;
  filter: brightness(1.04) !important;
  transform: translateY(-2px) !important;
  box-shadow:
    0 15px 28px rgba(0,148,184,.34),
    inset 0 1px 0 rgba(255,255,255,.26) !important;
}

/* Slower, properly gradual progress fill. */
.pmx-top-fs-meter__bar > span,
.pmx-upsell__shipbar > span{
  transform-origin: left center !important;
  will-change: transform !important;
}
.pmx-top-fs-meter__bar.pmx-meter-anim-run > span,
.pmx-upsell__shipbar.pmx-meter-anim-run > span{
  transition: transform 2.45s cubic-bezier(.24,.72,.18,1) !important;
}

/* Cart quantity control: a final tiny reduction. */
body.woocommerce-cart .woocommerce-cart-form .quantity.pmx-cart-qty-enhanced,
body.woocommerce-cart .woocommerce-cart-form tr.cart_item td.product-quantity .quantity.pmx-cart-qty-enhanced{
  width: 92px !important;
  min-width: 92px !important;
  max-width: 92px !important;
  height: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  border-radius: 13px !important;
}
body.woocommerce-cart .woocommerce-cart-form .quantity.pmx-cart-qty-enhanced .pmx-cart-qty-display{
  width: calc(100% - 27px) !important;
  font-size: 18.5px !important;
}
body.woocommerce-cart .woocommerce-cart-form .quantity.pmx-cart-qty-enhanced .pmx-cart-qty-buttons{
  width: 27px !important;
  min-width: 27px !important;
  max-width: 27px !important;
  flex-basis: 27px !important;
}
body.woocommerce-cart .woocommerce-cart-form .quantity.pmx-cart-qty-enhanced .pmx-cart-qty-btn::before{
  width: 6.5px !important;
  height: 6.5px !important;
  border-right-width: 2.35px !important;
  border-bottom-width: 2.35px !important;
}
@media (max-width: 767px){
  body.woocommerce-cart .woocommerce-cart-form .quantity.pmx-cart-qty-enhanced,
  body.woocommerce-cart .woocommerce-cart-form tr.cart_item td.product-quantity .quantity.pmx-cart-qty-enhanced{
    width: 90px !important;
    min-width: 90px !important;
    max-width: 90px !important;
    height: 43px !important;
    min-height: 43px !important;
    max-height: 43px !important;
  }
  body.woocommerce-cart .woocommerce-cart-form .quantity.pmx-cart-qty-enhanced .pmx-cart-qty-display{
    font-size: 18px !important;
  }
}

/* Main conversion buttons: centered, dominant, and contained within cards. */
body.woocommerce-cart .wc-proceed-to-checkout,
body.woocommerce-checkout #payment .place-order{
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  text-align: center !important;
}
body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
body.woocommerce-checkout #place_order,
body.woocommerce-checkout button#place_order,
body.woocommerce-checkout input#place_order{
  float: none !important;
  clear: both !important;
  position: relative !important;
  left: auto !important;
  right: auto !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 100% !important;
  max-width: 100% !important;
  min-height: 60px !important;
  margin: 18px auto 12px !important;
  padding: 17px 22px !important;
  box-sizing: border-box !important;
  border-radius: 18px !important;
  text-align: center !important;
}
@media (max-width: 767px){
  body.woocommerce-cart .wc-proceed-to-checkout,
  body.woocommerce-checkout #payment .place-order{
    display: grid !important;
    gap: 16px !important;
    justify-items: stretch !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  body.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
  body.woocommerce-checkout #place_order,
  body.woocommerce-checkout button#place_order,
  body.woocommerce-checkout input#place_order{
    min-height: 62px !important;
    margin: 18px auto 14px !important;
    font-size: 19px !important;
    border-radius: 19px !important;
  }
}

/* Mobile checkout: hide extra PayPal express button. The selected PayPal payment method + Proceed to PayPal stays visible. */
@media (max-width: 767px){
  body.woocommerce-checkout .paypal-button-container,
  body.woocommerce-checkout .paypal-buttons,
  body.woocommerce-checkout .ppc-button-wrapper,
  body.woocommerce-checkout .ppcp-button-wrapper,
  body.woocommerce-checkout .wc_ppcp_checkout_payment_method,
  body.woocommerce-checkout .wc-ppcp-checkout-container,
  body.woocommerce-checkout .wc-ppcp-express-checkout,
  body.woocommerce-checkout .express-checkout,
  body.woocommerce-checkout iframe[title*="PayPal"]{
    display: none !important;
    visibility: hidden !important;
    height: 0 !important;
    min-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
  }
}

/* Cart PayPal/express buttons: keep them separated from Proceed to Checkout and centered. */
@media (max-width: 767px){
  body.woocommerce-cart .wc-proceed-to-checkout .paypal-button-container,
  body.woocommerce-cart .wc-proceed-to-checkout .ppc-button-wrapper,
  body.woocommerce-cart .wc-proceed-to-checkout .ppcp-button-wrapper,
  body.woocommerce-cart .wc-proceed-to-checkout .wc-stripe-payment-request-wrapper,
  body.woocommerce-cart .wc-proceed-to-checkout .gpay-card-info-container,
  body.woocommerce-cart .wc-proceed-to-checkout iframe{
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 7px auto 0 !important;
    border-radius: 14px !important;
  }
}

/* Checkout payment method cards: radio fully inside card, no strange pointer/half rectangle. */
body.woocommerce-checkout #payment ul.payment_methods,
body.woocommerce-checkout .wc_payment_methods{
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 0 18px !important;
  list-style: none !important;
  box-sizing: border-box !important;
}
body.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method,
body.woocommerce-checkout .wc_payment_method{
  position: relative !important;
  overflow: hidden !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 1.5px solid rgba(7,30,39,.09) !important;
  border-radius: 18px !important;
  background: linear-gradient(180deg, #ffffff 0%, #fbfeff 100%) !important;
  box-shadow: 0 8px 20px rgba(7,30,39,.04), inset 0 1px 0 rgba(255,255,255,.88) !important;
}
body.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method::before,
body.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method::after,
body.woocommerce-checkout .wc_payment_method::before,
body.woocommerce-checkout .wc_payment_method::after{
  display: none !important;
  content: none !important;
}
body.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method:has(input:checked),
body.woocommerce-checkout .wc_payment_method:has(input:checked){
  border-color: rgba(0,148,184,.62) !important;
  background:
    radial-gradient(circle at 0 0, rgba(0,194,232,.10), rgba(0,194,232,0) 42%),
    linear-gradient(180deg, #f7fdff 0%, #ffffff 100%) !important;
  box-shadow:
    0 12px 28px rgba(0,148,184,.12),
    0 0 0 3px rgba(0,148,184,.07),
    inset 0 1px 0 rgba(255,255,255,.92) !important;
}
body.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method > input[type="radio"],
body.woocommerce-checkout .wc_payment_method > input[type="radio"],
body.woocommerce-checkout .wc_payment_method input.input-radio{
  appearance: none !important;
  -webkit-appearance: none !important;
  position: absolute !important;
  z-index: 3 !important;
  left: 16px !important;
  top: 18px !important;
  width: 22px !important;
  height: 22px !important;
  margin: 0 !important;
  border: 2px solid rgba(15,39,48,.24) !important;
  border-radius: 999px !important;
  background: #fff !important;
  box-shadow: inset 0 1px 2px rgba(7,30,39,.10) !important;
  cursor: pointer !important;
}
body.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method > input[type="radio"]:checked,
body.woocommerce-checkout .wc_payment_method > input[type="radio"]:checked,
body.woocommerce-checkout .wc_payment_method input.input-radio:checked{
  border-color: var(--pmx-blue) !important;
  background:
    radial-gradient(circle, #1687ff 0 38%, transparent 42%),
    #ffffff !important;
  box-shadow: 0 0 0 4px rgba(0,148,184,.10), inset 0 1px 2px rgba(7,30,39,.08) !important;
}
body.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method > label,
body.woocommerce-checkout .wc_payment_method > label{
  min-height: 62px !important;
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 10px 12px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  padding: 17px 18px 17px 54px !important;
  color: var(--pmx-ink) !important;
  font-size: clamp(15px, 1.5vw, 17px) !important;
  line-height: 1.18 !important;
  font-weight: 900 !important;
  cursor: pointer !important;
}
body.woocommerce-checkout #payment div.payment_box,
body.woocommerce-checkout .wc_payment_method .payment_box{
  margin: 0 !important;
  padding: 17px 18px 18px 54px !important;
  border: 0 !important;
  border-top: 1px solid rgba(0,148,184,.10) !important;
  border-radius: 0 !important;
  background: linear-gradient(180deg, rgba(255,255,255,.98), rgba(247,252,254,.94)) !important;
  box-shadow: none !important;
}
body.woocommerce-checkout #payment div.payment_box::before,
body.woocommerce-checkout #payment div.payment_box::after,
body.woocommerce-checkout .wc_payment_method .payment_box::before,
body.woocommerce-checkout .wc_payment_method .payment_box::after{
  display: none !important;
  content: none !important;
  border: 0 !important;
}
body.woocommerce-checkout #payment .payment_box input,
body.woocommerce-checkout #payment .payment_box select,
body.woocommerce-checkout #payment .payment_box .wc-stripe-elements-field{
  max-width: 100% !important;
  box-sizing: border-box !important;
}
@media (max-width: 767px){
  body.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method > input[type="radio"],
  body.woocommerce-checkout .wc_payment_method > input[type="radio"],
  body.woocommerce-checkout .wc_payment_method input.input-radio{
    left: 15px !important;
    top: 17px !important;
    width: 20px !important;
    height: 20px !important;
  }
  body.woocommerce-checkout #payment ul.payment_methods li.wc_payment_method > label,
  body.woocommerce-checkout .wc_payment_method > label{
    padding-left: 50px !important;
    min-height: 58px !important;
    font-size: 16px !important;
  }
  body.woocommerce-checkout #payment div.payment_box,
  body.woocommerce-checkout .wc_payment_method .payment_box{
    padding: 16px 16px 17px 50px !important;
  }
}

/* Checkout total row: keep total + VAT inside viewport on mobile. */
@media (max-width: 767px){
  body.woocommerce-checkout #order_review table.shop_table,
  body.woocommerce-checkout .woocommerce-checkout-review-order-table{
    width: 100% !important;
    max-width: 100% !important;
    table-layout: fixed !important;
    overflow: hidden !important;
  }
  body.woocommerce-checkout #order_review tr.order-total,
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total{
    display: grid !important;
    grid-template-columns: 72px minmax(0, 1fr) !important;
    align-items: center !important;
    gap: 8px !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  body.woocommerce-checkout #order_review tr.order-total th,
  body.woocommerce-checkout #order_review tr.order-total td,
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total th,
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total td{
    display: block !important;
    width: auto !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    white-space: normal !important;
    overflow: hidden !important;
  }
  body.woocommerce-checkout #order_review tr.order-total td,
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total td{
    display: flex !important;
    align-items: baseline !important;
    justify-content: flex-end !important;
    gap: 5px !important;
    flex-wrap: nowrap !important;
    text-align: right !important;
    font-size: 0 !important;
  }
  body.woocommerce-checkout #order_review tr.order-total .woocommerce-Price-amount,
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total .woocommerce-Price-amount{
    font-size: clamp(18px, 5vw, 21px) !important;
    line-height: 1.05 !important;
    white-space: nowrap !important;
  }
  body.woocommerce-checkout #order_review tr.order-total small,
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total small{
    display: inline-flex !important;
    align-items: baseline !important;
    gap: 3px !important;
    min-width: 0 !important;
    max-width: 44vw !important;
    margin: 0 !important;
    font-size: clamp(10.5px, 3.1vw, 13px) !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: clip !important;
  }
  body.woocommerce-checkout #order_review tr.order-total small .woocommerce-Price-amount,
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total small .woocommerce-Price-amount{
    font-size: inherit !important;
  }
}

/* Form shell polish: billing, shipping, order notes, login/coupon panels. */
body.woocommerce-checkout .woocommerce-billing-fields,
body.woocommerce-checkout .woocommerce-shipping-fields,
body.woocommerce-checkout .woocommerce-additional-fields,
body.woocommerce-checkout form.woocommerce-form-login,
body.woocommerce-checkout form.checkout_coupon,
body.woocommerce-cart .woocommerce-cart-form,
body.woocommerce-cart .cart-collaterals .cart_totals,
body.woocommerce-checkout #order_review{
  box-sizing: border-box !important;
}
body.woocommerce-checkout .woocommerce-billing-fields > h3,
body.woocommerce-checkout #ship-to-different-address,
body.woocommerce-checkout .woocommerce-additional-fields > h3,
body.woocommerce-checkout #order_review_heading,
body.woocommerce-cart .cart_totals h2{
  color: var(--pmx-ink) !important;
  font-weight: 950 !important;
  letter-spacing: -.035em !important;
  line-height: 1.12 !important;
}
body.woocommerce-checkout #ship-to-different-address{
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 20px 0 14px !important;
}
body.woocommerce-checkout #ship-to-different-address label{
  display: inline-flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 !important;
  color: var(--pmx-ink) !important;
  font-weight: 900 !important;
  letter-spacing: -.025em !important;
}
body.woocommerce-checkout #ship-to-different-address-checkbox,
body.woocommerce-checkout input[type="checkbox"]{
  accent-color: var(--pmx-blue) !important;
}
body.woocommerce-checkout .form-row,
body.woocommerce-cart .coupon{
  margin-bottom: 15px !important;
}
body.woocommerce-checkout .form-row label,
body.woocommerce-cart .coupon label,
body.woocommerce-cart .cart_totals label,
body.woocommerce-checkout #pwgc-redeem-gift-card-container label,
body.woocommerce-cart #pwgc-redeem-gift-card-container label{
  display: block !important;
  margin: 0 0 7px !important;
  color: rgba(15,39,48,.58) !important;
  font-size: 12px !important;
  line-height: 1.15 !important;
  font-weight: 850 !important;
  letter-spacing: .045em !important;
  text-transform: uppercase !important;
}
body.woocommerce-checkout .form-row input.input-text,
body.woocommerce-checkout .form-row textarea,
body.woocommerce-checkout .form-row select,
body.woocommerce-checkout .select2-container .select2-selection,
body.woocommerce-cart .coupon input.input-text,
#pwgc-redeem-gift-card-number,
body.woocommerce-cart #pwgc-redeem-gift-card-number,
body.woocommerce-checkout #pwgc-redeem-gift-card-number{
  width: 100% !important;
  min-height: 50px !important;
  box-sizing: border-box !important;
  padding: 14px 17px !important;
  border: 1.5px solid rgba(7,30,39,.14) !important;
  border-radius: 15px !important;
  background: rgba(255,255,255,.94) !important;
  color: var(--pmx-ink) !important;
  font-size: 16px !important;
  line-height: 1.2 !important;
  font-weight: 650 !important;
  box-shadow: 0 7px 18px rgba(7,30,39,.035), inset 0 1px 0 rgba(255,255,255,.88) !important;
  outline: none !important;
}
body.woocommerce-checkout .form-row textarea{
  min-height: 116px !important;
  resize: vertical !important;
}
body.woocommerce-checkout .form-row input.input-text:focus,
body.woocommerce-checkout .form-row textarea:focus,
body.woocommerce-checkout .form-row select:focus,
body.woocommerce-checkout .select2-container--open .select2-selection,
body.woocommerce-cart .coupon input.input-text:focus,
#pwgc-redeem-gift-card-number:focus{
  border-color: rgba(0,148,184,.72) !important;
  box-shadow: 0 0 0 4px rgba(0,148,184,.08), 0 10px 22px rgba(0,148,184,.07) !important;
}
body.woocommerce-checkout .select2-container .select2-selection--single{
  display: flex !important;
  align-items: center !important;
  height: 50px !important;
}
body.woocommerce-checkout .select2-container .select2-selection__rendered{
  padding-left: 0 !important;
  color: var(--pmx-ink) !important;
}
body.woocommerce-checkout .select2-container .select2-selection__arrow{
  height: 50px !important;
  right: 12px !important;
}

/* Returning customer / coupon notices: turn default Woo boxes into premium action cards. */
body.woocommerce-checkout .woocommerce-form-login-toggle .woocommerce-info,
body.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info,
body.woocommerce-checkout .woocommerce-info:not(:has(.fs-free-shipping-notice-and-button-wrapper)){
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  gap: 12px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  margin: 0 0 16px !important;
  padding: 15px 17px !important;
  border: 1px solid rgba(0,148,184,.13) !important;
  border-radius: 16px !important;
  background:
    radial-gradient(circle at 0 0, rgba(0,194,232,.10), rgba(0,194,232,0) 42%),
    linear-gradient(180deg, #ffffff, #f7fcfe) !important;
  color: rgba(15,39,48,.70) !important;
  font-size: 15px !important;
  line-height: 1.35 !important;
  box-shadow: 0 8px 20px rgba(7,30,39,.04) !important;
}
body.woocommerce-checkout .woocommerce-form-login-toggle .woocommerce-info::before,
body.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info::before,
body.woocommerce-checkout .woocommerce-info:not(:has(.fs-free-shipping-notice-and-button-wrapper))::before{
  display: none !important;
  content: none !important;
}
body.woocommerce-checkout .woocommerce-form-login-toggle .woocommerce-info a,
body.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info a,
body.woocommerce-checkout .woocommerce-info:not(:has(.fs-free-shipping-notice-and-button-wrapper)) a{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 36px !important;
  padding: 9px 14px !important;
  border-radius: 999px !important;
  background: rgba(0,148,184,.09) !important;
  color: var(--pmx-blue-dark) !important;
  font-weight: 900 !important;
  text-decoration: none !important;
  white-space: nowrap !important;
}
body.woocommerce-checkout form.woocommerce-form-login,
body.woocommerce-checkout form.checkout_coupon{
  width: 100% !important;
  margin: -5px 0 20px !important;
  padding: 17px !important;
  border: 1px solid rgba(7,30,39,.08) !important;
  border-radius: 18px !important;
  background: linear-gradient(180deg, rgba(255,255,255,.96), rgba(248,253,255,.92)) !important;
  box-shadow: 0 10px 24px rgba(7,30,39,.045) !important;
}

/* Coupon / update cart button hierarchy. */
body.woocommerce-cart .coupon,
body.woocommerce-checkout form.checkout_coupon .form-row{
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  gap: 10px !important;
  align-items: stretch !important;
  width: 100% !important;
  box-sizing: border-box !important;
}
body.woocommerce-cart .coupon input.input-text,
body.woocommerce-checkout form.checkout_coupon input.input-text{
  min-width: 0 !important;
}
body.woocommerce-cart .coupon button.button,
body.woocommerce-checkout form.checkout_coupon button.button,
body.woocommerce-cart button[name="update_cart"],
body.woocommerce-cart .actions button.button,
#pwgc-redeem-button,
#pwgc-redeem-gift-card-container button{
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-height: 48px !important;
  padding: 13px 20px !important;
  border: 0 !important;
  border-radius: 14px !important;
  background: linear-gradient(135deg, #0f2730 0%, #007A99 100%) !important;
  color: #fff !important;
  font-size: 15px !important;
  line-height: 1 !important;
  font-weight: 900 !important;
  text-transform: none !important;
  box-shadow: 0 10px 22px rgba(7,30,39,.16) !important;
}
body.woocommerce-cart button[name="update_cart"]:disabled,
body.woocommerce-cart .actions button.button:disabled{
  opacity: .45 !important;
  background: linear-gradient(180deg, #f9f9f9, #efefef) !important;
  color: rgba(15,39,48,.35) !important;
  box-shadow: none !important;
}
#pwgc-redeem-button,
#pwgc-redeem-gift-card-container button,
body.woocommerce-cart #pwgc-redeem-button,
body.woocommerce-checkout #pwgc-redeem-button{
  width: auto !important;
  min-width: 102px !important;
  max-width: 160px !important;
  min-height: 42px !important;
  padding: 10px 17px !important;
  border-radius: 14px !important;
  font-size: 14.5px !important;
}
@media (max-width: 767px){
  body.woocommerce-cart .coupon,
  body.woocommerce-checkout form.checkout_coupon .form-row{
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }
  body.woocommerce-cart .coupon button.button,
  body.woocommerce-checkout form.checkout_coupon button.button,
  body.woocommerce-cart button[name="update_cart"],
  body.woocommerce-cart .actions button.button{
    width: 100% !important;
  }
  body.woocommerce-checkout .woocommerce-form-login-toggle .woocommerce-info,
  body.woocommerce-checkout .woocommerce-form-coupon-toggle .woocommerce-info,
  body.woocommerce-checkout .woocommerce-info:not(:has(.fs-free-shipping-notice-and-button-wrapper)){
    align-items: flex-start !important;
    flex-direction: column !important;
  }
}

/* Checkout form section spacing on mobile. */
@media (max-width: 767px){
  body.woocommerce-checkout .woocommerce-billing-fields,
  body.woocommerce-checkout .woocommerce-shipping-fields,
  body.woocommerce-checkout .woocommerce-additional-fields{
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  body.woocommerce-checkout .form-row input.input-text,
  body.woocommerce-checkout .form-row textarea,
  body.woocommerce-checkout .form-row select,
  body.woocommerce-checkout .select2-container .select2-selection,
  body.woocommerce-cart .coupon input.input-text,
  #pwgc-redeem-gift-card-number{
    min-height: 48px !important;
    border-radius: 14px !important;
    font-size: 15.5px !important;
  }
  body.woocommerce-checkout #ship-to-different-address label{
    font-size: clamp(22px, 6vw, 29px) !important;
    line-height: 1.18 !important;
  }
}

/* ---------------------------------------------------------
   PMX v1.7.5 — flash-free top meter + final checkout order fit.
   --------------------------------------------------------- */

/* Prevent the native Flexible Shipping wording from flashing before JS upgrades it. */
body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper:not(.pmx-free-ship-enhanced):not(.pmx-free-ship-synthetic),
body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper:not(.pmx-free-ship-enhanced):not(.pmx-free-ship-synthetic){
  opacity: 0 !important;
}
body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced,
body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced,
body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic,
body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic{
  opacity: 1 !important;
  transition: opacity .18s ease !important;
}

/* Progress fill: use a transform animation, not width, so it does not stutter/jump. */
.pmx-top-fs-meter__bar > span,
.pmx-upsell__shipbar > span{
  width: 100% !important;
  transform-origin: left center !important;
  will-change: transform !important;
}
.pmx-top-fs-meter__bar.pmx-meter-anim-ready > span,
.pmx-upsell__shipbar.pmx-meter-anim-ready > span{
  width: 100% !important;
  min-width: 0 !important;
  transform: scaleX(0) !important;
  transition: none !important;
}
.pmx-top-fs-meter__bar.pmx-meter-anim-run > span,
.pmx-upsell__shipbar.pmx-meter-anim-run > span{
  width: 100% !important;
  transition: transform 2.85s cubic-bezier(.17,.84,.21,1) !important;
}
.pmx-top-fs-meter__bar.pmx-meter-anim-complete > span,
.pmx-upsell__shipbar.pmx-meter-anim-complete > span{
  min-width: 0 !important;
}

/* Mobile checkout order review: uncramp product/subtotal/total and stop right-edge clipping. */
@media (max-width: 767px){
  body.woocommerce-checkout #order_review,
  body.woocommerce-checkout .woocommerce-checkout-review-order{
    width: 100% !important;
    max-width: 100% !important;
    overflow: visible !important;
    padding-left: clamp(16px, 4.2vw, 22px) !important;
    padding-right: clamp(16px, 4.2vw, 22px) !important;
    box-sizing: border-box !important;
  }

  body.woocommerce-checkout #order_review table.shop_table,
  body.woocommerce-checkout .woocommerce-checkout-review-order-table{
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    table-layout: auto !important;
    overflow: visible !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
  }

  body.woocommerce-checkout .woocommerce-checkout-review-order-table thead,
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tbody,
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot{
    display: block !important;
    width: 100% !important;
  }

  body.woocommerce-checkout .woocommerce-checkout-review-order-table thead tr{
    display: grid !important;
    grid-template-columns: minmax(0,1fr) auto !important;
    gap: 16px !important;
    align-items: center !important;
    width: 100% !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid rgba(7,30,39,.08) !important;
  }

  body.woocommerce-checkout .woocommerce-checkout-review-order-table thead th{
    display: block !important;
    width: auto !important;
    min-width: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    color: var(--pmx-ink) !important;
    font-size: 16px !important;
    line-height: 1.1 !important;
    font-weight: 950 !important;
  }

  body.woocommerce-checkout .woocommerce-checkout-review-order-table tbody tr.cart_item{
    display: grid !important;
    grid-template-columns: minmax(0,1fr) auto !important;
    gap: 12px !important;
    align-items: center !important;
    width: 100% !important;
    padding: 14px 0 !important;
    border-bottom: 1px solid rgba(7,30,39,.09) !important;
  }

  body.woocommerce-checkout .woocommerce-checkout-review-order-table tbody tr.cart_item td{
    display: block !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    padding: 0 !important;
    border: 0 !important;
    overflow: visible !important;
    white-space: normal !important;
  }

  body.woocommerce-checkout .woocommerce-checkout-review-order-table tbody tr.cart_item td.product-name{
    min-width: 0 !important;
    color: var(--pmx-ink) !important;
    font-size: 14.2px !important;
    line-height: 1.22 !important;
    font-weight: 850 !important;
    word-break: normal !important;
    overflow-wrap: anywhere !important;
    hyphens: none !important;
  }

  body.woocommerce-checkout .woocommerce-checkout-review-order-table tbody tr.cart_item td.product-name img{
    width: 54px !important;
    height: 54px !important;
    object-fit: contain !important;
    border-radius: 12px !important;
    margin: 0 10px 0 0 !important;
    vertical-align: middle !important;
    background: #fff !important;
    box-shadow: 0 8px 18px rgba(7,30,39,.08) !important;
  }

  body.woocommerce-checkout .woocommerce-checkout-review-order-table tbody tr.cart_item td.product-total{
    min-width: 68px !important;
    text-align: right !important;
    white-space: nowrap !important;
    color: var(--pmx-ink) !important;
    font-size: 15.5px !important;
    font-weight: 950 !important;
  }

  body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr:not(.woocommerce-shipping-totals):not(.shipping){
    display: grid !important;
    grid-template-columns: minmax(0,1fr) auto !important;
    gap: 14px !important;
    align-items: center !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid rgba(7,30,39,.08) !important;
  }

  body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr:not(.woocommerce-shipping-totals):not(.shipping) th,
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr:not(.woocommerce-shipping-totals):not(.shipping) td{
    display: block !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    padding: 0 !important;
    border: 0 !important;
    overflow: visible !important;
    white-space: normal !important;
  }

  body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr:not(.woocommerce-shipping-totals):not(.shipping) td{
    text-align: right !important;
    white-space: nowrap !important;
  }

  body.woocommerce-checkout #order_review tr.order-total,
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total{
    grid-template-columns: minmax(70px,.55fr) minmax(0,1fr) !important;
    gap: 10px !important;
    padding: 15px 0 !important;
    overflow: visible !important;
  }

  body.woocommerce-checkout #order_review tr.order-total th,
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total th{
    font-size: 14px !important;
    line-height: 1.1 !important;
  }

  body.woocommerce-checkout #order_review tr.order-total td,
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total td{
    display: flex !important;
    align-items: baseline !important;
    justify-content: flex-end !important;
    flex-wrap: wrap !important;
    gap: 3px 5px !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: visible !important;
    text-align: right !important;
    white-space: normal !important;
  }

  body.woocommerce-checkout #order_review tr.order-total .woocommerce-Price-amount,
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total .woocommerce-Price-amount{
    font-size: clamp(18px, 5.2vw, 21px) !important;
    line-height: 1.05 !important;
    white-space: nowrap !important;
  }

  body.woocommerce-checkout #order_review tr.order-total small,
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total small{
    display: inline-flex !important;
    align-items: baseline !important;
    gap: 3px !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 !important;
    overflow: visible !important;
    white-space: nowrap !important;
    font-size: clamp(10px, 3vw, 12.5px) !important;
    line-height: 1.1 !important;
  }

  body.woocommerce-checkout #order_review tr.order-total small .woocommerce-Price-amount,
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total small .woocommerce-Price-amount{
    font-size: inherit !important;
    line-height: inherit !important;
  }
}

/* If a very narrow checkout column still squeezes the product title, let the price drop under the title instead of letter-stacking. */
@media (max-width: 420px){
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tbody tr.cart_item{
    grid-template-columns: 1fr !important;
    gap: 8px !important;
  }
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tbody tr.cart_item td.product-total{
    text-align: left !important;
    padding-left: 64px !important;
  }
}

body.woocommerce-cart .cart_totals tr.order-total{
  position: relative !important;
}
body.woocommerce-cart .cart_totals tr.order-total th{
  display: table-cell !important;
  visibility: visible !important;
  opacity: 1 !important;
  color: var(--pmx-ink) !important;
  text-align: left !important;
  white-space: nowrap !important;
  width: 34% !important;
  min-width: 88px !important;
  padding-right: 10px !important;
}
body.woocommerce-cart .cart_totals tr.order-total th::before,
body.woocommerce-cart .cart_totals tr.order-total th::after{
  display: none !important;
  content: none !important;
}
body.woocommerce-cart .cart_totals tr.order-total th{
  font-size: clamp(14px, 1.4vw, 17px) !important;
  font-weight: 950 !important;
  letter-spacing: .02em !important;
  text-transform: uppercase !important;
}
@media (max-width: 767px){
  body.woocommerce-cart .cart_totals tr.order-total{
    display: grid !important;
    grid-template-columns: minmax(76px,.42fr) minmax(0,1fr) !important;
    align-items: center !important;
    gap: 10px !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 14px 14px !important;
  }
  body.woocommerce-cart .cart_totals tr.order-total th,
  body.woocommerce-cart .cart_totals tr.order-total td{
    display: block !important;
    width: auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    padding: 0 !important;
    border: 0 !important;
    box-sizing: border-box !important;
    overflow: visible !important;
  }
  body.woocommerce-cart .cart_totals tr.order-total th{
    grid-column: 1 !important;
    color: var(--pmx-ink) !important;
    font-size: 13px !important;
    line-height: 1.1 !important;
    font-weight: 950 !important;
    letter-spacing: .035em !important;
    text-transform: uppercase !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  body.woocommerce-cart .cart_totals tr.order-total th:empty::after{
    content: "Total" !important;
    display: inline !important;
  }
  body.woocommerce-cart .cart_totals tr.order-total td{
    grid-column: 2 !important;
    display: flex !important;
    align-items: baseline !important;
    justify-content: flex-end !important;
    gap: 5px !important;
    flex-wrap: nowrap !important;
    text-align: right !important;
    white-space: nowrap !important;
    font-size: 0 !important;
  }
  body.woocommerce-cart .cart_totals tr.order-total td .woocommerce-Price-amount{
    font-size: clamp(18px, 5.2vw, 21px) !important;
    line-height: 1.05 !important;
    white-space: nowrap !important;
  }
  body.woocommerce-cart .cart_totals tr.order-total td small{
    display: inline-flex !important;
    align-items: baseline !important;
    gap: 3px !important;
    margin: 0 !important;
    font-size: clamp(10px, 3vw, 12.5px) !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
  }
}

@media (max-width: 767px){
  body.woocommerce-cart .cart_totals tr.order-total{
    display: block !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 0 !important;
    border-bottom: 0 !important;
  }

  body.woocommerce-cart .cart_totals tr.order-total th{
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    min-width: 0 !important;
    max-width: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    overflow: hidden !important;
  }

  body.woocommerce-cart .cart_totals tr.order-total td{
    display: flex !important;
    align-items: baseline !important;
    justify-content: flex-end !important;
    gap: 5px !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    box-sizing: border-box !important;
    padding: 14px 14px !important;
    border: 0 !important;
    text-align: right !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    font-size: 0 !important;
  }

  body.woocommerce-cart .cart_totals tr.order-total td::before{
    content: "Total" !important;
    display: inline-flex !important;
    flex: 0 0 auto !important;
    margin-right: auto !important;
    padding-right: 10px !important;
    color: var(--pmx-ink) !important;
    font-size: 13px !important;
    line-height: 1.1 !important;
    font-weight: 950 !important;
    letter-spacing: .035em !important;
    text-transform: uppercase !important;
    white-space: nowrap !important;
  }

  body.woocommerce-cart .cart_totals tr.order-total td > .woocommerce-Price-amount,
  body.woocommerce-cart .cart_totals tr.order-total td > strong .woocommerce-Price-amount{
    flex: 0 0 auto !important;
    min-width: 0 !important;
    font-size: clamp(18px, 5.1vw, 20px) !important;
    line-height: 1.05 !important;
    white-space: nowrap !important;
  }

  body.woocommerce-cart .cart_totals tr.order-total td small,
  body.woocommerce-cart .cart_totals tr.order-total td .includes_tax{
    display: inline-flex !important;
    align-items: baseline !important;
    gap: 3px !important;
    flex: 0 1 auto !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin: 0 !important;
    font-size: clamp(10px, 2.75vw, 12px) !important;
    line-height: 1.1 !important;
    white-space: nowrap !important;
  }

  body.woocommerce-cart .cart_totals tr.order-total td small .woocommerce-Price-amount,
  body.woocommerce-cart .cart_totals tr.order-total td .includes_tax .woocommerce-Price-amount{
    font-size: inherit !important;
    line-height: inherit !important;
  }
}

@media (max-width: 390px){
  body.woocommerce-cart .cart_totals tr.order-total td{
    gap: 4px !important;
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  body.woocommerce-cart .cart_totals tr.order-total td::before{
    font-size: 12px !important;
    padding-right: 7px !important;
  }
  body.woocommerce-cart .cart_totals tr.order-total td > .woocommerce-Price-amount,
  body.woocommerce-cart .cart_totals tr.order-total td > strong .woocommerce-Price-amount{
    font-size: 18px !important;
  }
  body.woocommerce-cart .cart_totals tr.order-total td small,
  body.woocommerce-cart .cart_totals tr.order-total td .includes_tax{
    font-size: 10px !important;
  }
}

/* Remove internal/admin-style merchandising pills from the add-ons block. */
.pmx-upsell__eyebrow,
.pmx-upsell__badge,
.pmx-upsell__badge[aria-label],
.pmx-upsell__head > .pmx-upsell__badge{
  display: none !important;
  visibility: hidden !important;
}
.pmx-upsell__head{
  display: block !important;
  margin-bottom: clamp(15px, 2vw, 22px) !important;
}
.pmx-upsell__copy{
  width: 100% !important;
  max-width: 100% !important;
}

/* Desktop: center and widen the meter contents within the existing cards. */
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced,
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic{
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .fs-free-shipping-notice-text,
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic .fs-free-shipping-notice-text,
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .pmx-top-fs-meter,
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic .pmx-top-fs-meter{
  width: min(820px, 100%) !important;
  max-width: 820px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .pmx-top-fs-meter,
.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic .pmx-top-fs-meter{
  margin-top: 12px !important;
}
.pmx-upsell__shipmeter{
  width: min(820px, 100%) !important;
  max-width: 820px !important;
  margin: 14px auto 0 !important;
}
@media (min-width: 981px){
  .pmx-top-fs-meter__bar,
  .pmx-upsell__shipbar{
    height: 14px !important;
  }
}

/* Make the progress fill visibly gradual from 0 to target. */
.pmx-top-fs-meter__bar.pmx-meter-anim-run > span,
.pmx-upsell__shipbar.pmx-meter-anim-run > span{
  transition: transform 6.15s cubic-bezier(.18,.72,.16,1) !important;
}
.pmx-top-fs-meter.pmx-meter-nudge,
.pmx-upsell__shipmeter.pmx-meter-nudge{
  animation-duration: .82s !important;
}

/* Desktop cart: Basket totals should sit as a full-width horizontal section like Popular Add-Ons. */
@media (min-width: 981px){
  body.woocommerce-cart .woocommerce,
  body.woocommerce-cart .woocommerce-page .woocommerce,
  body.woocommerce-cart .entry-content .woocommerce{
    overflow: visible !important;
  }
  body.woocommerce-cart .cart-collaterals,
  body.woocommerce-cart .woocommerce .cart-collaterals,
  body.woocommerce-cart.woocommerce-page .cart-collaterals{
    float: none !important;
    clear: both !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: clamp(28px, 4vw, 46px) auto 0 !important;
    padding: 0 !important;
  }
  body.woocommerce-cart .cart-collaterals::before,
  body.woocommerce-cart .cart-collaterals::after{
    content: "" !important;
    display: table !important;
    clear: both !important;
  }
  body.woocommerce-cart .cart-collaterals .cart_totals,
  body.woocommerce-cart .woocommerce .cart-collaterals .cart_totals,
  body.woocommerce-cart.woocommerce-page .cart-collaterals .cart_totals,
  body.woocommerce-cart .cart_totals{
    float: none !important;
    clear: both !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
  }
  body.woocommerce-cart .cart_totals table.shop_table,
  body.woocommerce-cart .cart_totals tbody,
  body.woocommerce-cart .cart_totals tr,
  body.woocommerce-cart .cart_totals th,
  body.woocommerce-cart .cart_totals td{
    box-sizing: border-box !important;
  }
  body.woocommerce-cart .cart_totals table.shop_table{
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }
  body.woocommerce-cart .cart_totals tr.woocommerce-shipping-totals.shipping ul#shipping_method{
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 12px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 16px !important;
  }
  body.woocommerce-cart .cart_totals tr.woocommerce-shipping-totals.shipping ul#shipping_method li{
    min-height: 96px !important;
    padding: 16px 18px !important;
  }
}

/* Checkout: stable premium flow — Billing centered first, Your Order centered below. */
body.woocommerce-checkout form.checkout{
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  width: 100% !important;
  max-width: 100% !important;
  margin-left: auto !important;
  margin-right: auto !important;
  gap: clamp(22px, 3vw, 38px) !important;
}
body.woocommerce-checkout .woocommerce-NoticeGroup,
body.woocommerce-checkout .woocommerce-form-login-toggle,
body.woocommerce-checkout .woocommerce-form-coupon-toggle,
body.woocommerce-checkout form.woocommerce-form-login,
body.woocommerce-checkout form.checkout_coupon{
  width: min(100%, 980px) !important;
  max-width: 980px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  align-self: center !important;
}
body.woocommerce-checkout #customer_details,
body.woocommerce-checkout .col2-set{
  float: none !important;
  clear: both !important;
  order: 1 !important;
  width: min(100%, 920px) !important;
  max-width: 920px !important;
  margin: 0 auto !important;
  align-self: center !important;
  box-sizing: border-box !important;
}
body.woocommerce-checkout #order_review_heading{
  order: 2 !important;
  width: min(100%, 980px) !important;
  max-width: 980px !important;
  margin: clamp(6px, 1.4vw, 16px) auto 0 !important;
  align-self: center !important;
  text-align: left !important;
}
body.woocommerce-checkout #order_review,
body.woocommerce-checkout .woocommerce-checkout-review-order{
  float: none !important;
  clear: both !important;
  order: 3 !important;
  width: min(100%, 980px) !important;
  max-width: 980px !important;
  min-width: 0 !important;
  margin: 0 auto !important;
  align-self: center !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}
@media (min-width: 981px){
  body.woocommerce-checkout form.checkout{
    grid-template-columns: none !important;
  }
  body.woocommerce-checkout #customer_details,
  body.woocommerce-checkout .col2-set,
  body.woocommerce-checkout #order_review_heading,
  body.woocommerce-checkout #order_review,
  body.woocommerce-checkout .woocommerce-checkout-review-order{
    grid-column: auto !important;
  }
}

/* Checkout order card: preserve space, contain rules and keep product/price readable. */
body.woocommerce-checkout #order_review table.shop_table,
body.woocommerce-checkout .woocommerce-checkout-review-order-table{
  width: 100% !important;
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}
@media (min-width: 768px){
  body.woocommerce-checkout .woocommerce-checkout-review-order-table thead,
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tbody,
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot{
    display: block !important;
    width: 100% !important;
  }
  body.woocommerce-checkout .woocommerce-checkout-review-order-table thead tr,
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tbody tr.cart_item,
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot tr:not(.woocommerce-shipping-totals):not(.shipping){
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(120px, auto) !important;
    column-gap: 22px !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tbody tr.cart_item{
    padding: 16px 0 !important;
  }
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tbody td.product-name{
    display: flex !important;
    align-items: center !important;
    gap: 14px !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow-wrap: break-word !important;
    word-break: normal !important;
    hyphens: none !important;
    line-height: 1.25 !important;
  }
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tbody td.product-name img{
    flex: 0 0 58px !important;
    width: 58px !important;
    height: 58px !important;
    object-fit: contain !important;
  }
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tbody td.product-total,
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tfoot td{
    justify-self: end !important;
    text-align: right !important;
    white-space: nowrap !important;
  }
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.woocommerce-shipping-totals.shipping,
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.shipping{
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 16px 0 !important;
    box-sizing: border-box !important;
  }
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total{
    grid-template-columns: minmax(0, .45fr) minmax(0, 1.55fr) !important;
    gap: 18px !important;
    padding: 17px 0 !important;
    border-top: 1px solid rgba(7,30,39,.10) !important;
    border-bottom: 0 !important;
  }
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total td{
    display: flex !important;
    align-items: baseline !important;
    justify-content: flex-end !important;
    gap: 8px !important;
    flex-wrap: nowrap !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    text-align: right !important;
  }
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total .woocommerce-Price-amount{
    font-size: clamp(22px, 2.1vw, 30px) !important;
    line-height: 1.05 !important;
  }
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total small,
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total .includes_tax{
    display: inline-flex !important;
    align-items: baseline !important;
    gap: 4px !important;
    min-width: 0 !important;
    max-width: 100% !important;
    overflow: hidden !important;
    white-space: nowrap !important;
    font-size: clamp(12px, 1vw, 14px) !important;
  }
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total small .woocommerce-Price-amount,
  body.woocommerce-checkout .woocommerce-checkout-review-order-table tr.order-total .includes_tax .woocommerce-Price-amount{
    font-size: inherit !important;
    line-height: inherit !important;
  }
}

/* Delivery method separator: ensure the rule has breathing room before the first option. */
body.woocommerce-cart .cart_totals tr.woocommerce-shipping-totals.shipping th,
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping th,
body.woocommerce-checkout tr.shipping th{
  padding-bottom: 12px !important;
}
body.woocommerce-cart .cart_totals tr.woocommerce-shipping-totals.shipping ul#shipping_method,
body.woocommerce-checkout tr.woocommerce-shipping-totals.shipping ul#shipping_method,
body.woocommerce-checkout tr.shipping ul#shipping_method,
body.woocommerce-checkout #order_review ul#shipping_method{
  margin-top: 16px !important;
}

/* Native/select2 dropdown arrows: prevent clipped chevrons in billing/shipping details. */
body.woocommerce-checkout .form-row select,
body.woocommerce-checkout select,
body.woocommerce-checkout .select2-container .select2-selection,
body.woocommerce-checkout .select2-container .select2-selection--single{
  min-height: 52px !important;
  height: 52px !important;
  line-height: 52px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  overflow: visible !important;
  background-position: right 16px center !important;
}
body.woocommerce-checkout .select2-container .select2-selection__rendered{
  min-height: 52px !important;
  line-height: 52px !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
body.woocommerce-checkout .select2-container .select2-selection__arrow{
  top: 0 !important;
  bottom: 0 !important;
  height: 52px !important;
  min-height: 52px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
body.woocommerce-checkout .select2-container .select2-selection__arrow b{
  position: static !important;
  margin: 0 !important;
  transform: translateY(0) !important;
}

@media (max-width: 767px){
  body.woocommerce-checkout #customer_details,
  body.woocommerce-checkout .col2-set,
  body.woocommerce-checkout #order_review_heading,
  body.woocommerce-checkout #order_review,
  body.woocommerce-checkout .woocommerce-checkout-review-order{
    width: 100% !important;
    max-width: 100% !important;
  }
  .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .fs-free-shipping-notice-text,
  .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic .fs-free-shipping-notice-text,
  .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .pmx-top-fs-meter,
  .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic .pmx-top-fs-meter,
  .pmx-upsell__shipmeter{
    width: 100% !important;
    max-width: 100% !important;
  }
}

@media (min-width: 981px){
  body.woocommerce-cart .pmx-cart-totals-row-wide,
  body.woocommerce-cart .et_pb_row:has(.et_pb_wc_cart_totals),
  body.woocommerce-cart .et_pb_row:has(.cart_totals){
    float: none !important;
    clear: both !important;
    display: block !important;
    width: min(1120px, calc(100vw - 56px)) !important;
    max-width: 1120px !important;
    min-width: 0 !important;
    margin: clamp(30px, 4vw, 50px) auto 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
  }

  body.woocommerce-cart .pmx-cart-totals-row-wide > .et_pb_column_empty,
  body.woocommerce-cart .et_pb_row:has(.et_pb_wc_cart_totals) > .et_pb_column_empty,
  body.woocommerce-cart .et_pb_row:has(.cart_totals) > .et_pb_column_empty{
    display: none !important;
    width: 0 !important;
    max-width: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  body.woocommerce-cart .pmx-cart-totals-row-wide > .et_pb_column,
  body.woocommerce-cart .pmx-cart-totals-col-wide,
  body.woocommerce-cart .et_pb_row:has(.et_pb_wc_cart_totals) > .et_pb_column,
  body.woocommerce-cart .et_pb_row:has(.cart_totals) > .et_pb_column{
    float: none !important;
    clear: both !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  body.woocommerce-cart .pmx-cart-totals-module-wide,
  body.woocommerce-cart .et_pb_wc_cart_totals,
  body.woocommerce-cart .et_pb_module.et_pb_wc_cart_totals,
  body.woocommerce-cart .et_pb_wc_cart_totals .et_pb_module_inner{
    float: none !important;
    clear: both !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }

  body.woocommerce-cart .pmx-cart-totals-row-wide .cart_totals,
  body.woocommerce-cart .pmx-cart-totals-col-wide .cart_totals,
  body.woocommerce-cart .pmx-cart-totals-module-wide .cart_totals,
  body.woocommerce-cart .et_pb_wc_cart_totals .cart_totals{
    float: none !important;
    clear: both !important;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    padding: clamp(24px, 2.35vw, 34px) !important;
    box-sizing: border-box !important;
  }

  body.woocommerce-cart .pmx-cart-totals-row-wide .cart_totals table.shop_table,
  body.woocommerce-cart .et_pb_wc_cart_totals .cart_totals table.shop_table{
    width: 100% !important;
    max-width: 100% !important;
    table-layout: auto !important;
    margin: 0 !important;
  }

  body.woocommerce-cart .pmx-cart-totals-row-wide .cart_totals tr.cart-subtotal,
  body.woocommerce-cart .pmx-cart-totals-row-wide .cart_totals tr.order-total,
  body.woocommerce-cart .et_pb_wc_cart_totals .cart_totals tr.cart-subtotal,
  body.woocommerce-cart .et_pb_wc_cart_totals .cart_totals tr.order-total{
    display: grid !important;
    grid-template-columns: minmax(0, 1fr) minmax(0, auto) !important;
    align-items: center !important;
    gap: 24px !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  body.woocommerce-cart .pmx-cart-totals-row-wide .cart_totals tr.cart-subtotal td,
  body.woocommerce-cart .pmx-cart-totals-row-wide .cart_totals tr.order-total td,
  body.woocommerce-cart .et_pb_wc_cart_totals .cart_totals tr.cart-subtotal td,
  body.woocommerce-cart .et_pb_wc_cart_totals .cart_totals tr.order-total td{
    justify-self: end !important;
    text-align: right !important;
    white-space: nowrap !important;
  }

  body.woocommerce-cart .pmx-cart-totals-row-wide .cart_totals tr.woocommerce-shipping-totals.shipping,
  body.woocommerce-cart .et_pb_wc_cart_totals .cart_totals tr.woocommerce-shipping-totals.shipping{
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-top: 18px !important;
    padding-bottom: 22px !important;
    box-sizing: border-box !important;
  }

  body.woocommerce-cart .pmx-cart-totals-row-wide .cart_totals tr.woocommerce-shipping-totals.shipping ul#shipping_method,
  body.woocommerce-cart .et_pb_wc_cart_totals .cart_totals tr.woocommerce-shipping-totals.shipping ul#shipping_method{
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    gap: 16px !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 18px 0 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
  }

  body.woocommerce-cart .pmx-cart-totals-row-wide .cart_totals tr.woocommerce-shipping-totals.shipping ul#shipping_method li,
  body.woocommerce-cart .et_pb_wc_cart_totals .cart_totals tr.woocommerce-shipping-totals.shipping ul#shipping_method li{
    min-height: 104px !important;
    padding: 18px 18px !important;
    border-radius: 18px !important;
  }

  body.woocommerce-cart .pmx-cart-totals-row-wide .wc-proceed-to-checkout,
  body.woocommerce-cart .et_pb_wc_cart_totals .wc-proceed-to-checkout{
    width: 100% !important;
    max-width: 100% !important;
    margin-top: 24px !important;
    box-sizing: border-box !important;
  }
}

body.woocommerce-cart .wc-proceed-to-checkout .ppc-button-wrapper,
body.woocommerce-cart .wc-proceed-to-checkout .ppcp-button-wrapper,
body.woocommerce-cart .wc-proceed-to-checkout .paypal-button-container,
body.woocommerce-cart .wc-proceed-to-checkout .paypal-buttons,
body.woocommerce-cart .wc-proceed-to-checkout [id^="paypal-button"],
body.woocommerce-cart .wc-proceed-to-checkout [id*="paypal-button"]{
  float: none !important;
  clear: both !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: min(760px, 100%) !important;
  max-width: min(760px, 100%) !important;
  margin-left: auto !important;
  margin-right: auto !important;
  box-sizing: border-box !important;
}
body.woocommerce-cart .wc-proceed-to-checkout .paypal-button-container iframe,
body.woocommerce-cart .wc-proceed-to-checkout .paypal-buttons iframe,
body.woocommerce-cart .wc-proceed-to-checkout [id^="paypal-button"] iframe,
body.woocommerce-cart .wc-proceed-to-checkout [id*="paypal-button"] iframe{
  display: block !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
body.woocommerce-cart .wc-proceed-to-checkout .ppcp-messages,
body.woocommerce-cart .wc-proceed-to-checkout .paypal-message,
body.woocommerce-cart .wc-proceed-to-checkout [id*="paypal-message"]{
  width: min(760px, 100%) !important;
  max-width: min(760px, 100%) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

body.woocommerce-checkout #payment .payment_method_ppcp-gateway .payment_box .ppc-button-wrapper,
body.woocommerce-checkout #payment .payment_method_ppcp-gateway .payment_box .ppcp-button-wrapper,
body.woocommerce-checkout #payment .payment_method_ppcp-gateway .payment_box .paypal-button-container,
body.woocommerce-checkout #payment .payment_method_ppcp-gateway .payment_box .paypal-buttons,
body.woocommerce-checkout #payment .payment_method_ppcp-gateway .payment_box [id^="paypal-button"],
body.woocommerce-checkout #payment .payment_method_ppcp-gateway .payment_box [id*="paypal-button"],
body.woocommerce-checkout #payment .payment_method_paypal .payment_box .ppc-button-wrapper,
body.woocommerce-checkout #payment .payment_method_paypal .payment_box .ppcp-button-wrapper,
body.woocommerce-checkout #payment .payment_method_paypal .payment_box .paypal-button-container,
body.woocommerce-checkout #payment .payment_method_paypal .payment_box .paypal-buttons,
body.woocommerce-checkout #payment .payment_method_paypal .payment_box [id^="paypal-button"],
body.woocommerce-checkout #payment .payment_method_paypal .payment_box [id*="paypal-button"]{
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  min-height: 0 !important;
  max-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  overflow: hidden !important;
}
body.woocommerce-checkout #payment .place-order,
body.woocommerce-checkout #payment .form-row.place-order{
  display: block !important;
  width: 100% !important;
  clear: both !important;
}
body.woocommerce-checkout #payment #place_order{
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: min(760px, 100%) !important;
  max-width: min(760px, 100%) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* 1) Desktop cart: centre the top free-shipping content inside the full card. */
@media (min-width: 981px){
  body.woocommerce-cart .woocommerce-info:has(.fs-free-shipping-notice-and-button-wrapper){
    width: 100% !important;
    max-width: 100% !important;
  }

  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic{
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: flex-start !important;
    text-align: left !important;
  }

  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper .fs-free-shipping-notice-text,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .fs-free-shipping-notice-text,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic .fs-free-shipping-notice-text,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper .pmx-top-fs-meter,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .pmx-top-fs-meter,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic .pmx-top-fs-meter{
    width: min(860px, calc(100% - 52px)) !important;
    max-width: 860px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    align-self: center !important;
    box-sizing: border-box !important;
  }

  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper .pmx-top-fs-meter,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .pmx-top-fs-meter,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic .pmx-top-fs-meter{
    margin-top: 12px !important;
  }

  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper .flexible-shipping-free-shipping-button,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper .flexible-shipping-free-shipping-button.button,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper a.button{
    align-self: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* 2) Desktop cart: restore a proper PayPal smart-button size while keeping it centred. */
@media (min-width: 981px){
  body.woocommerce-cart .wc-proceed-to-checkout .ppc-button-wrapper,
  body.woocommerce-cart .wc-proceed-to-checkout .ppcp-button-wrapper,
  body.woocommerce-cart .wc-proceed-to-checkout .paypal-button-container,
  body.woocommerce-cart .wc-proceed-to-checkout .paypal-buttons,
  body.woocommerce-cart .wc-proceed-to-checkout [id^="paypal-button"],
  body.woocommerce-cart .wc-proceed-to-checkout [id*="paypal-button"]{
    width: min(760px, 82vw) !important;
    min-width: min(560px, 100%) !important;
    max-width: min(760px, 100%) !important;
    margin-left: auto !important;
    margin-right: auto !important;
    display: block !important;
    box-sizing: border-box !important;
  }

  body.woocommerce-cart .wc-proceed-to-checkout .paypal-button-container iframe,
  body.woocommerce-cart .wc-proceed-to-checkout .paypal-buttons iframe,
  body.woocommerce-cart .wc-proceed-to-checkout [id^="paypal-button"] iframe,
  body.woocommerce-cart .wc-proceed-to-checkout [id*="paypal-button"] iframe{
    display: block !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

/* 3) Checkout only: suppress PayPal smart buttons everywhere inside the payment area.
   The standard WooCommerce order button remains visible and changes text to Proceed to PayPal. */
body.woocommerce-checkout #payment .ppc-button-wrapper,
body.woocommerce-checkout #payment .ppcp-button-wrapper,
body.woocommerce-checkout #payment .ppcp-buttons,
body.woocommerce-checkout #payment .paypal-button-container,
body.woocommerce-checkout #payment .paypal-buttons,
body.woocommerce-checkout #payment .wc_ppcp_checkout_payment_method,
body.woocommerce-checkout #payment .wc-ppcp-checkout-container,
body.woocommerce-checkout #payment .wc-ppcp-express-checkout,
body.woocommerce-checkout #payment .express-checkout,
body.woocommerce-checkout #payment [id^="paypal-button"],
body.woocommerce-checkout #payment [id*="paypal-button"],
body.woocommerce-checkout #payment iframe[title*="PayPal"],
body.woocommerce-checkout #payment iframe[title*="paypal"],
body.woocommerce-checkout #payment .payment_box .ppc-button-wrapper,
body.woocommerce-checkout #payment .payment_box .ppcp-button-wrapper,
body.woocommerce-checkout #payment .payment_box .paypal-button-container,
body.woocommerce-checkout #payment .payment_box .paypal-buttons,
body.woocommerce-checkout #payment .payment_box [id^="paypal-button"],
body.woocommerce-checkout #payment .payment_box [id*="paypal-button"],
body.woocommerce-checkout #payment .payment_box iframe[title*="PayPal"],
body.woocommerce-checkout #payment .payment_box iframe[title*="paypal"]{
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  min-width: 0 !important;
  max-width: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  max-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

body.woocommerce-checkout #payment .place-order,
body.woocommerce-checkout #payment .form-row.place-order{
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  clear: both !important;
}

body.woocommerce-checkout #payment #place_order{
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: min(760px, 100%) !important;
  max-width: min(760px, 100%) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

/* Desktop cart: centre the free-shipping content inside the full notification card. */
@media (min-width: 981px){
  body.woocommerce-cart .pmx-free-shipping-shell,
  body.woocommerce-cart .woocommerce-info.pmx-free-shipping-shell{
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-left: clamp(24px, 4vw, 56px) !important;
    padding-right: clamp(24px, 4vw, 56px) !important;
    box-sizing: border-box !important;
  }

  body.woocommerce-cart .pmx-free-shipping-shell > .fs-free-shipping-notice-and-button-wrapper,
  body.woocommerce-cart .pmx-free-shipping-shell .fs-free-shipping-notice-and-button-wrapper,
  body.woocommerce-cart .woocommerce-info.pmx-free-shipping-shell > .fs-free-shipping-notice-and-button-wrapper,
  body.woocommerce-cart .woocommerce-info.pmx-free-shipping-shell .fs-free-shipping-notice-and-button-wrapper{
    width: min(920px, 100%) !important;
    max-width: 920px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    align-self: center !important;
    justify-self: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: left !important;
    box-sizing: border-box !important;
  }

  body.woocommerce-cart .pmx-free-shipping-shell .fs-free-shipping-notice-text,
  body.woocommerce-cart .pmx-free-shipping-shell .pmx-top-fs-meter{
    width: min(860px, 100%) !important;
    max-width: 860px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    align-self: center !important;
    box-sizing: border-box !important;
  }

  body.woocommerce-cart .pmx-free-shipping-shell .flexible-shipping-free-shipping-button,
  body.woocommerce-cart .pmx-free-shipping-shell .flexible-shipping-free-shipping-button.button,
  body.woocommerce-cart .pmx-free-shipping-shell a.button{
    margin-left: auto !important;
    margin-right: auto !important;
    align-self: center !important;
  }
}

/* Desktop cart: keep PayPal/express buttons centred but restore a proper click target size. */
@media (min-width: 981px){
  body.woocommerce-cart .cart_totals .wc-proceed-to-checkout .ppc-button-wrapper,
  body.woocommerce-cart .cart_totals .wc-proceed-to-checkout .ppcp-button-wrapper,
  body.woocommerce-cart .cart_totals .wc-proceed-to-checkout .paypal-button-container,
  body.woocommerce-cart .cart_totals .wc-proceed-to-checkout .paypal-buttons,
  body.woocommerce-cart .cart_totals .wc-proceed-to-checkout [id^="paypal-button"],
  body.woocommerce-cart .cart_totals .wc-proceed-to-checkout [id*="paypal-button"],
  body.woocommerce-cart .wc-proceed-to-checkout .ppc-button-wrapper,
  body.woocommerce-cart .wc-proceed-to-checkout .ppcp-button-wrapper,
  body.woocommerce-cart .wc-proceed-to-checkout .paypal-button-container,
  body.woocommerce-cart .wc-proceed-to-checkout .paypal-buttons,
  body.woocommerce-cart .wc-proceed-to-checkout [id^="paypal-button"],
  body.woocommerce-cart .wc-proceed-to-checkout [id*="paypal-button"]{
    display: block !important;
    float: none !important;
    clear: both !important;
    width: min(720px, 86vw) !important;
    min-width: min(620px, 100%) !important;
    max-width: min(720px, 100%) !important;
    margin: 18px auto 0 !important;
    box-sizing: border-box !important;
  }

  body.woocommerce-cart .wc-proceed-to-checkout .ppc-button-wrapper > *,
  body.woocommerce-cart .wc-proceed-to-checkout .ppcp-button-wrapper > *,
  body.woocommerce-cart .wc-proceed-to-checkout .paypal-button-container > *,
  body.woocommerce-cart .wc-proceed-to-checkout .paypal-buttons > *,
  body.woocommerce-cart .wc-proceed-to-checkout [id^="paypal-button"] > *,
  body.woocommerce-cart .wc-proceed-to-checkout [id*="paypal-button"] > *,
  body.woocommerce-cart .wc-proceed-to-checkout .paypal-button-container iframe,
  body.woocommerce-cart .wc-proceed-to-checkout .paypal-buttons iframe,
  body.woocommerce-cart .wc-proceed-to-checkout [id^="paypal-button"] iframe,
  body.woocommerce-cart .wc-proceed-to-checkout [id*="paypal-button"] iframe{
    display: block !important;
    width: 100% !important;
    min-width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }
}

/* Checkout desktop + mobile: hide PayPal smart buttons wherever the gateway injects them.
   This deliberately does not hide the PayPal payment-method row or #place_order. */
body.woocommerce-checkout .ppc-button-wrapper,
body.woocommerce-checkout .ppcp-button-wrapper,
body.woocommerce-checkout .ppcp-buttons,
body.woocommerce-checkout .paypal-button-container,
body.woocommerce-checkout .paypal-buttons,
body.woocommerce-checkout .wc_ppcp_checkout_payment_method,
body.woocommerce-checkout .wc-ppcp-checkout-container,
body.woocommerce-checkout .wc-ppcp-express-checkout,
body.woocommerce-checkout .express-checkout,
body.woocommerce-checkout [id^="paypal-button"],
body.woocommerce-checkout [id*="paypal-button"],
body.woocommerce-checkout iframe[title*="PayPal"],
body.woocommerce-checkout iframe[title*="paypal"]{
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  min-width: 0 !important;
  max-width: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  max-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
  pointer-events: none !important;
}

body.woocommerce-checkout #place_order,
body.woocommerce-checkout .form-row.place-order #place_order{
  display: flex !important;
  visibility: visible !important;
  opacity: 1 !important;
  width: min(760px, 100%) !important;
  max-width: min(760px, 100%) !important;
  min-height: 58px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

@media (min-width: 981px){
  /* Cart page title: make the simple "Cart" heading feel intentional. */
  body.woocommerce-cart h1.entry-title,
  body.woocommerce-cart .main_title,
  body.woocommerce-cart .et_pb_post_title h1,
  body.woocommerce-cart .woocommerce > h1:first-child{
    position: relative !important;
    width: min(1080px, calc(100% - 48px)) !important;
    max-width: min(1080px, calc(100% - 48px)) !important;
    margin: 0 auto 22px !important;
    padding: 0 0 0 18px !important;
    color: var(--pmx-ink) !important;
    font-family: Manrope, Arial, sans-serif !important;
    font-size: clamp(31px, 2.35vw, 42px) !important;
    line-height: 1.05 !important;
    font-weight: 850 !important;
    letter-spacing: -.035em !important;
  }

  body.woocommerce-cart h1.entry-title::before,
  body.woocommerce-cart .main_title::before,
  body.woocommerce-cart .et_pb_post_title h1::before,
  body.woocommerce-cart .woocommerce > h1:first-child::before{
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    top: .16em !important;
    width: 5px !important;
    height: .86em !important;
    border-radius: 999px !important;
    background: linear-gradient(180deg, var(--pmx-blue-neon), var(--pmx-blue-dark)) !important;
    box-shadow: 0 0 18px rgba(0,194,232,.26) !important;
  }

  /* Desktop cart + checkout: make the free-shipping card compact and centred,
     rather than letting a small meter sit at the left of a wide notice area. */
  body.woocommerce-cart .pmx-free-shipping-shell,
  body.woocommerce-cart .woocommerce-info.pmx-free-shipping-shell,
  body.woocommerce-checkout .pmx-free-shipping-shell,
  body.woocommerce-checkout .woocommerce-info.pmx-free-shipping-shell,
  body.woocommerce-cart .woocommerce-info:has(.fs-free-shipping-notice-and-button-wrapper),
  body.woocommerce-checkout .woocommerce-info:has(.fs-free-shipping-notice-and-button-wrapper){
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 auto 22px !important;
    box-sizing: border-box !important;
  }

  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced,
  body.woocommerce-cart #pmx-top-free-shipping-synthetic.pmx-free-ship-enhanced,
  body.woocommerce-checkout #pmx-top-free-shipping-synthetic.pmx-free-ship-enhanced{
    width: min(690px, calc(100vw - 96px)) !important;
    min-width: 0 !important;
    max-width: 690px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 14px 22px 16px !important;
    gap: 10px !important;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    justify-self: center !important;
    text-align: left !important;
    border-radius: 18px !important;
    box-sizing: border-box !important;
  }

  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .fs-free-shipping-notice-text,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .fs-free-shipping-notice-text{
    width: min(560px, 100%) !important;
    max-width: 560px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    align-self: center !important;
    justify-content: flex-start !important;
    box-sizing: border-box !important;
  }

  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .pmx-top-fs-meter,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .pmx-top-fs-meter{
    width: min(560px, 100%) !important;
    max-width: 560px !important;
    margin: 1px auto 0 !important;
    align-self: center !important;
    box-sizing: border-box !important;
  }

  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .flexible-shipping-free-shipping-button,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .flexible-shipping-free-shipping-button.button,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced a.button,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .flexible-shipping-free-shipping-button,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .flexible-shipping-free-shipping-button.button,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced a.button{
    align-self: center !important;
    margin: 2px auto 0 !important;
  }
}

@media (min-width: 981px){
  body.woocommerce-cart .pmx-free-shipping-shell,
  body.woocommerce-cart .woocommerce-info.pmx-free-shipping-shell,
  body.woocommerce-cart .woocommerce-info:has(.fs-free-shipping-notice-and-button-wrapper),
  body.woocommerce-checkout .pmx-free-shipping-shell,
  body.woocommerce-checkout .woocommerce-info.pmx-free-shipping-shell,
  body.woocommerce-checkout .woocommerce-info:has(.fs-free-shipping-notice-and-button-wrapper){
    display: block !important;
    width: min(720px, calc(100% - 72px)) !important;
    max-width: 720px !important;
    margin: 0 auto 22px !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    float: none !important;
    clear: both !important;
  }

  body.woocommerce-cart .pmx-free-shipping-shell > .fs-free-shipping-notice-and-button-wrapper,
  body.woocommerce-cart .pmx-free-shipping-shell .fs-free-shipping-notice-and-button-wrapper,
  body.woocommerce-cart .woocommerce-info.pmx-free-shipping-shell > .fs-free-shipping-notice-and-button-wrapper,
  body.woocommerce-cart .woocommerce-info.pmx-free-shipping-shell .fs-free-shipping-notice-and-button-wrapper,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic,
  body.woocommerce-cart #pmx-top-free-shipping-synthetic.pmx-free-ship-enhanced,
  body.woocommerce-checkout .pmx-free-shipping-shell > .fs-free-shipping-notice-and-button-wrapper,
  body.woocommerce-checkout .pmx-free-shipping-shell .fs-free-shipping-notice-and-button-wrapper,
  body.woocommerce-checkout .woocommerce-info.pmx-free-shipping-shell > .fs-free-shipping-notice-and-button-wrapper,
  body.woocommerce-checkout .woocommerce-info.pmx-free-shipping-shell .fs-free-shipping-notice-and-button-wrapper,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic,
  body.woocommerce-checkout #pmx-top-free-shipping-synthetic.pmx-free-ship-enhanced{
    width: 100% !important;
    min-width: 0 !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    padding: 14px 30px 16px !important;
    box-sizing: border-box !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: left !important;
  }

  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .fs-free-shipping-notice-text,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic .fs-free-shipping-notice-text,
  body.woocommerce-cart #pmx-top-free-shipping-synthetic .fs-free-shipping-notice-text,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .pmx-top-fs-meter,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic .pmx-top-fs-meter,
  body.woocommerce-cart #pmx-top-free-shipping-synthetic .pmx-top-fs-meter,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .fs-free-shipping-notice-text,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic .fs-free-shipping-notice-text,
  body.woocommerce-checkout #pmx-top-free-shipping-synthetic .fs-free-shipping-notice-text,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .pmx-top-fs-meter,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic .pmx-top-fs-meter,
  body.woocommerce-checkout #pmx-top-free-shipping-synthetic .pmx-top-fs-meter{
    width: min(560px, 100%) !important;
    max-width: 560px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    align-self: center !important;
    box-sizing: border-box !important;
  }

  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .pmx-top-fs-meter,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic .pmx-top-fs-meter,
  body.woocommerce-cart #pmx-top-free-shipping-synthetic .pmx-top-fs-meter,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .pmx-top-fs-meter,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic .pmx-top-fs-meter,
  body.woocommerce-checkout #pmx-top-free-shipping-synthetic .pmx-top-fs-meter{
    margin-top: 2px !important;
  }

  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .flexible-shipping-free-shipping-button,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .flexible-shipping-free-shipping-button.button,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced a.button,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic .flexible-shipping-free-shipping-button,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic .flexible-shipping-free-shipping-button.button,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic a.button,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .flexible-shipping-free-shipping-button,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .flexible-shipping-free-shipping-button.button,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced a.button,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic .flexible-shipping-free-shipping-button,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic .flexible-shipping-free-shipping-button.button,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic a.button{
    align-self: center !important;
    margin: 4px auto 0 !important;
  }
}

@media (min-width: 981px){
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic,
  body.woocommerce-cart #pmx-top-free-shipping-synthetic.pmx-free-ship-enhanced,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic,
  body.woocommerce-checkout #pmx-top-free-shipping-synthetic.pmx-free-ship-enhanced{
    width: min(720px, calc(100% - 96px)) !important;
    max-width: 720px !important;
    min-width: 0 !important;
    margin: 0 auto 22px !important;
    padding: 14px 40px 16px !important;
    box-sizing: border-box !important;
    float: none !important;
    clear: both !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }

  body.woocommerce-cart .woocommerce-info.pmx-free-shipping-shell,
  body.woocommerce-cart .woocommerce-info:has(.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced),
  body.woocommerce-cart .woocommerce-info:has(.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic),
  body.woocommerce-checkout .woocommerce-info.pmx-free-shipping-shell,
  body.woocommerce-checkout .woocommerce-info:has(.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced),
  body.woocommerce-checkout .woocommerce-info:has(.fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic){
    width: 100% !important;
    max-width: none !important;
    margin: 0 auto 22px !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
  }

  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .fs-free-shipping-notice-text,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic .fs-free-shipping-notice-text,
  body.woocommerce-cart #pmx-top-free-shipping-synthetic .fs-free-shipping-notice-text,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .fs-free-shipping-notice-text,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic .fs-free-shipping-notice-text,
  body.woocommerce-checkout #pmx-top-free-shipping-synthetic .fs-free-shipping-notice-text{
    width: 100% !important;
    max-width: 560px !important;
    margin-left: auto !important;
    margin-right: auto !important;
    align-self: center !important;
  }

  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .pmx-top-fs-meter,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic .pmx-top-fs-meter,
  body.woocommerce-cart #pmx-top-free-shipping-synthetic .pmx-top-fs-meter,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .pmx-top-fs-meter,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic .pmx-top-fs-meter,
  body.woocommerce-checkout #pmx-top-free-shipping-synthetic .pmx-top-fs-meter{
    width: 100% !important;
    max-width: 560px !important;
    margin: 4px auto 0 !important;
    align-self: center !important;
  }

  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .flexible-shipping-free-shipping-button,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .flexible-shipping-free-shipping-button.button,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced a.button,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic .flexible-shipping-free-shipping-button,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic .flexible-shipping-free-shipping-button.button,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic a.button,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .flexible-shipping-free-shipping-button,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .flexible-shipping-free-shipping-button.button,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced a.button,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic .flexible-shipping-free-shipping-button,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic .flexible-shipping-free-shipping-button.button,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic a.button{
    align-self: center !important;
    margin: 8px auto 0 !important;
  }
}

@media (min-width: 981px){
  body.woocommerce-cart .woocommerce-info.pmx-free-shipping-shell,
  body.woocommerce-cart .woocommerce-message.pmx-free-shipping-shell,
  body.woocommerce-cart .woocommerce-notices-wrapper.pmx-free-shipping-shell,
  body.woocommerce-cart .woocommerce-info:has(.fs-free-shipping-notice-and-button-wrapper),
  body.woocommerce-cart .woocommerce-message:has(.fs-free-shipping-notice-and-button-wrapper),
  body.woocommerce-checkout .woocommerce-info.pmx-free-shipping-shell,
  body.woocommerce-checkout .woocommerce-message.pmx-free-shipping-shell,
  body.woocommerce-checkout .woocommerce-notices-wrapper.pmx-free-shipping-shell,
  body.woocommerce-checkout .woocommerce-info:has(.fs-free-shipping-notice-and-button-wrapper),
  body.woocommerce-checkout .woocommerce-message:has(.fs-free-shipping-notice-and-button-wrapper){
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: min(760px, calc(100% - 72px)) !important;
    max-width: 760px !important;
    min-width: 0 !important;
    margin: 0 auto 22px !important;
    padding: 0 !important;
    float: none !important;
    clear: both !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    box-sizing: border-box !important;
  }

  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic,
  body.woocommerce-cart #pmx-top-free-shipping-synthetic.pmx-free-ship-enhanced,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic,
  body.woocommerce-checkout #pmx-top-free-shipping-synthetic.pmx-free-ship-enhanced{
    width: 100% !important;
    max-width: 760px !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    padding: 16px 32px 17px !important;
    float: none !important;
    clear: both !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
  }

  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .fs-free-shipping-notice-text,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic .fs-free-shipping-notice-text,
  body.woocommerce-cart #pmx-top-free-shipping-synthetic .fs-free-shipping-notice-text,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .fs-free-shipping-notice-text,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic .fs-free-shipping-notice-text,
  body.woocommerce-checkout #pmx-top-free-shipping-synthetic .fs-free-shipping-notice-text,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .pmx-top-fs-meter,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic .pmx-top-fs-meter,
  body.woocommerce-cart #pmx-top-free-shipping-synthetic .pmx-top-fs-meter,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .pmx-top-fs-meter,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic .pmx-top-fs-meter,
  body.woocommerce-checkout #pmx-top-free-shipping-synthetic .pmx-top-fs-meter{
    width: 100% !important;
    max-width: 560px !important;
    min-width: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    align-self: center !important;
    box-sizing: border-box !important;
  }

  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .fs-free-shipping-notice-text,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic .fs-free-shipping-notice-text,
  body.woocommerce-cart #pmx-top-free-shipping-synthetic .fs-free-shipping-notice-text,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .fs-free-shipping-notice-text,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic .fs-free-shipping-notice-text,
  body.woocommerce-checkout #pmx-top-free-shipping-synthetic .fs-free-shipping-notice-text{
    justify-content: flex-start !important;
  }

  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .pmx-top-fs-meter,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic .pmx-top-fs-meter,
  body.woocommerce-cart #pmx-top-free-shipping-synthetic .pmx-top-fs-meter,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .pmx-top-fs-meter,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic .pmx-top-fs-meter,
  body.woocommerce-checkout #pmx-top-free-shipping-synthetic .pmx-top-fs-meter{
    margin-top: 4px !important;
  }

  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .flexible-shipping-free-shipping-button,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .flexible-shipping-free-shipping-button.button,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced a.button,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic .flexible-shipping-free-shipping-button,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic .flexible-shipping-free-shipping-button.button,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic a.button,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .flexible-shipping-free-shipping-button,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced .flexible-shipping-free-shipping-button.button,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced a.button,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic .flexible-shipping-free-shipping-button,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic .flexible-shipping-free-shipping-button.button,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic a.button{
    align-self: center !important;
    margin: 8px auto 0 !important;
  }
}

@media (max-width: 767px){
  body.woocommerce-cart .wc-proceed-to-checkout .paypal-button-container,
  body.woocommerce-cart .wc-proceed-to-checkout .paypal-buttons,
  body.woocommerce-cart .wc-proceed-to-checkout .ppc-button-wrapper,
  body.woocommerce-cart .wc-proceed-to-checkout .ppcp-button-wrapper,
  body.woocommerce-cart .wc-proceed-to-checkout [id^="paypal-button"],
  body.woocommerce-cart .wc-proceed-to-checkout [id*="paypal-button"]{
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 16px auto 0 !important;
    box-sizing: border-box !important;
  }

  body.woocommerce-cart .wc-proceed-to-checkout .paypal-button-container > *,
  body.woocommerce-cart .wc-proceed-to-checkout .paypal-buttons > *,
  body.woocommerce-cart .wc-proceed-to-checkout .ppc-button-wrapper > *,
  body.woocommerce-cart .wc-proceed-to-checkout .ppcp-button-wrapper > *,
  body.woocommerce-cart .wc-proceed-to-checkout [id^="paypal-button"] > *,
  body.woocommerce-cart .wc-proceed-to-checkout [id*="paypal-button"] > *,
  body.woocommerce-cart .wc-proceed-to-checkout .paypal-button-container iframe,
  body.woocommerce-cart .wc-proceed-to-checkout .paypal-buttons iframe,
  body.woocommerce-cart .wc-proceed-to-checkout [id^="paypal-button"] iframe,
  body.woocommerce-cart .wc-proceed-to-checkout [id*="paypal-button"] iframe{
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
    box-sizing: border-box !important;
  }
}

@media (min-width: 981px){
  body.woocommerce-cart .woocommerce-info:has(.fs-free-shipping-notice-and-button-wrapper),
  body.woocommerce-cart .woocommerce-message:has(.fs-free-shipping-notice-and-button-wrapper),
  body.woocommerce-cart .woocommerce-notices-wrapper:has(.fs-free-shipping-notice-and-button-wrapper),
  body.woocommerce-cart .pmx-free-shipping-shell,
  body.woocommerce-checkout .woocommerce-info:has(.fs-free-shipping-notice-and-button-wrapper),
  body.woocommerce-checkout .woocommerce-message:has(.fs-free-shipping-notice-and-button-wrapper),
  body.woocommerce-checkout .woocommerce-notices-wrapper:has(.fs-free-shipping-notice-and-button-wrapper),
  body.woocommerce-checkout .pmx-free-shipping-shell{
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 auto 24px !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    float: none !important;
    clear: both !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }

  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper,
  body.woocommerce-cart #pmx-top-free-shipping-synthetic,
  body.woocommerce-checkout #pmx-top-free-shipping-synthetic{
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: min(760px, calc(100vw - 96px)) !important;
    max-width: 760px !important;
    min-width: 0 !important;
    margin: 0 auto 24px !important;
    padding: 16px 34px 18px !important;
    float: none !important;
    clear: both !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }

  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper .fs-free-shipping-notice-text,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper .fs-free-shipping-notice-text,
  body.woocommerce-cart #pmx-top-free-shipping-synthetic .fs-free-shipping-notice-text,
  body.woocommerce-checkout #pmx-top-free-shipping-synthetic .fs-free-shipping-notice-text{
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    max-width: 100% !important;
    margin: 0 auto 10px !important;
    padding: 0 !important;
    align-self: center !important;
    text-align: left !important;
    box-sizing: border-box !important;
  }

  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper .pmx-top-fs-copy,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper .pmx-top-fs-copy,
  body.woocommerce-cart #pmx-top-free-shipping-synthetic .pmx-top-fs-copy,
  body.woocommerce-checkout #pmx-top-free-shipping-synthetic .pmx-top-fs-copy{
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center !important;
    min-width: 0 !important;
    max-width: 100% !important;
  }

  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper .pmx-top-fs-line,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper .pmx-top-fs-line,
  body.woocommerce-cart #pmx-top-free-shipping-synthetic .pmx-top-fs-line,
  body.woocommerce-checkout #pmx-top-free-shipping-synthetic .pmx-top-fs-line{
    white-space: nowrap !important;
  }

  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper .pmx-top-fs-meter,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper .pmx-top-fs-meter,
  body.woocommerce-cart #pmx-top-free-shipping-synthetic .pmx-top-fs-meter,
  body.woocommerce-checkout #pmx-top-free-shipping-synthetic .pmx-top-fs-meter{
    display: block !important;
    width: min(610px, 100%) !important;
    max-width: 610px !important;
    min-width: 0 !important;
    margin: 0 auto 12px !important;
    align-self: center !important;
    box-sizing: border-box !important;
    text-align: left !important;
  }

  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper .flexible-shipping-free-shipping-button,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper .flexible-shipping-free-shipping-button.button,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper a.button,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper .flexible-shipping-free-shipping-button,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper .flexible-shipping-free-shipping-button.button,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper a.button,
  body.woocommerce-cart #pmx-top-free-shipping-synthetic .flexible-shipping-free-shipping-button,
  body.woocommerce-cart #pmx-top-free-shipping-synthetic a.button,
  body.woocommerce-checkout #pmx-top-free-shipping-synthetic .flexible-shipping-free-shipping-button,
  body.woocommerce-checkout #pmx-top-free-shipping-synthetic a.button{
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    width: auto !important;
    min-width: 180px !important;
    max-width: none !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }
}

@media (min-width: 981px){
  body.woocommerce-cart .woocommerce-info.pmx-free-shipping-shell,
  body.woocommerce-checkout .woocommerce-info.pmx-free-shipping-shell,
  body.woocommerce-cart .woocommerce-message.pmx-free-shipping-shell,
  body.woocommerce-checkout .woocommerce-message.pmx-free-shipping-shell,
  body.woocommerce-cart .woocommerce-notices-wrapper.pmx-free-shipping-shell,
  body.woocommerce-checkout .woocommerce-notices-wrapper.pmx-free-shipping-shell{
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 auto 24px !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
    float: none !important;
    clear: both !important;
  }

  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic,
  body.woocommerce-cart #pmx-top-free-shipping-synthetic,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic,
  body.woocommerce-checkout #pmx-top-free-shipping-synthetic{
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    margin: 0 auto 24px !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    overflow: visible !important;
    float: none !important;
    clear: both !important;
    box-sizing: border-box !important;
  }

  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced::before,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic::before,
  body.woocommerce-cart #pmx-top-free-shipping-synthetic::before,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-enhanced::before,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper.pmx-free-ship-synthetic::before,
  body.woocommerce-checkout #pmx-top-free-shipping-synthetic::before{
    display: none !important;
    content: none !important;
  }

  body.woocommerce-cart .pmx-top-fs-card,
  body.woocommerce-checkout .pmx-top-fs-card{
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: min(720px, calc(100vw - 96px)) !important;
    max-width: 720px !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    padding: 16px 34px 18px !important;
    box-sizing: border-box !important;
    overflow: hidden !important;
    border: 1px solid rgba(0,148,184,.22) !important;
    border-radius: 18px !important;
    background:
      radial-gradient(circle at 50% 0%, rgba(0,194,232,.13), rgba(255,255,255,0) 52%),
      linear-gradient(180deg, #ffffff 0%, #f2fbfd 100%) !important;
    box-shadow: 0 18px 42px rgba(0,148,184,.12) !important;
    text-align: center !important;
  }

  body.woocommerce-cart .pmx-top-fs-card::before,
  body.woocommerce-checkout .pmx-top-fs-card::before{
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: 0 !important;
    height: 4px !important;
    background: linear-gradient(90deg, var(--pmx-blue), var(--pmx-blue-neon)) !important;
  }

  body.woocommerce-cart .pmx-top-fs-card .fs-free-shipping-notice-text,
  body.woocommerce-checkout .pmx-top-fs-card .fs-free-shipping-notice-text{
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: min(610px, 100%) !important;
    max-width: 610px !important;
    margin: 0 auto 10px !important;
    padding: 0 !important;
    align-self: center !important;
    text-align: left !important;
    box-sizing: border-box !important;
  }

  body.woocommerce-cart .pmx-top-fs-card .pmx-top-fs-meter,
  body.woocommerce-checkout .pmx-top-fs-card .pmx-top-fs-meter{
    display: block !important;
    width: min(610px, 100%) !important;
    max-width: 610px !important;
    min-width: 0 !important;
    margin: 0 auto 14px !important;
    align-self: center !important;
    box-sizing: border-box !important;
    text-align: left !important;
  }

  body.woocommerce-cart .pmx-top-fs-card .fs-free-shipping-notice-progress-bar-wrapper,
  body.woocommerce-checkout .pmx-top-fs-card .fs-free-shipping-notice-progress-bar-wrapper,
  body.woocommerce-cart .fs-free-shipping-notice-and-button-wrapper > .fs-free-shipping-notice-progress-bar-wrapper,
  body.woocommerce-checkout .fs-free-shipping-notice-and-button-wrapper > .fs-free-shipping-notice-progress-bar-wrapper{
    display: none !important;
  }

  body.woocommerce-cart .pmx-top-fs-card .flexible-shipping-free-shipping-button,
  body.woocommerce-cart .pmx-top-fs-card .flexible-shipping-free-shipping-button.button,
  body.woocommerce-cart .pmx-top-fs-card a.button,
  body.woocommerce-checkout .pmx-top-fs-card .flexible-shipping-free-shipping-button,
  body.woocommerce-checkout .pmx-top-fs-card .flexible-shipping-free-shipping-button.button,
  body.woocommerce-checkout .pmx-top-fs-card a.button{
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    align-self: center !important;
    min-width: 184px !important;
    width: auto !important;
    max-width: none !important;
    margin: 0 auto !important;
    padding: 10px 22px !important;
    box-sizing: border-box !important;
    text-align: center !important;
  }
}

@media (min-width: 981px){
  body.woocommerce-cart .pmx-free-shipping-empty-shell,
  body.woocommerce-checkout .pmx-free-shipping-empty-shell{
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body.woocommerce-cart .pmx-top-free-shipping-stage,
  body.woocommerce-checkout .pmx-top-free-shipping-stage{
    position: relative !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: 100vw !important;
    max-width: 100vw !important;
    min-width: 100vw !important;
    margin-top: 0 !important;
    margin-bottom: 28px !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
    padding: 0 48px !important;
    box-sizing: border-box !important;
    float: none !important;
    clear: both !important;
    text-align: center !important;
    overflow: visible !important;
  }

  body.woocommerce-cart .pmx-top-free-shipping-stage > .fs-free-shipping-notice-and-button-wrapper,
  body.woocommerce-checkout .pmx-top-free-shipping-stage > .fs-free-shipping-notice-and-button-wrapper,
  body.woocommerce-cart .pmx-top-free-shipping-stage > #pmx-top-free-shipping-synthetic,
  body.woocommerce-checkout .pmx-top-free-shipping-stage > #pmx-top-free-shipping-synthetic{
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    width: auto !important;
    max-width: none !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    padding: 0 !important;
    background: transparent !important;
    border: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    float: none !important;
    clear: both !important;
    overflow: visible !important;
    box-sizing: border-box !important;
  }

  body.woocommerce-cart .pmx-top-free-shipping-stage .pmx-top-fs-card,
  body.woocommerce-checkout .pmx-top-free-shipping-stage .pmx-top-fs-card{
    width: min(760px, calc(100vw - 96px)) !important;
    max-width: 760px !important;
    min-width: 0 !important;
    margin: 0 auto !important;
    padding: 16px 34px 18px !important;
    transform: none !important;
    left: auto !important;
    right: auto !important;
  }

  body.woocommerce-cart .pmx-top-free-shipping-stage .pmx-top-fs-card .fs-free-shipping-notice-text,
  body.woocommerce-checkout .pmx-top-free-shipping-stage .pmx-top-fs-card .fs-free-shipping-notice-text,
  body.woocommerce-cart .pmx-top-free-shipping-stage .pmx-top-fs-card .pmx-top-fs-meter,
  body.woocommerce-checkout .pmx-top-free-shipping-stage .pmx-top-fs-card .pmx-top-fs-meter{
    width: min(610px, 100%) !important;
    max-width: 610px !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media (min-width: 981px){
  body.woocommerce-cart .pmx-top-free-shipping-stage,
  body.woocommerce-checkout .pmx-top-free-shipping-stage{
    margin-top: -34px !important;
    margin-bottom: 24px !important;
  }

  body.woocommerce-cart .woocommerce-notices-wrapper.pmx-free-shipping-empty-shell,
  body.woocommerce-checkout .woocommerce-notices-wrapper.pmx-free-shipping-empty-shell,
  body.woocommerce-cart .woocommerce-info.pmx-free-shipping-empty-shell,
  body.woocommerce-checkout .woocommerce-info.pmx-free-shipping-empty-shell,
  body.woocommerce-cart .woocommerce-message.pmx-free-shipping-empty-shell,
  body.woocommerce-checkout .woocommerce-message.pmx-free-shipping-empty-shell{
    margin: 0 !important;
    padding: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
  }

  body.woocommerce-cart .entry-content > .pmx-top-free-shipping-stage:first-child,
  body.woocommerce-checkout .entry-content > .pmx-top-free-shipping-stage:first-child,
  body.woocommerce-cart .woocommerce > .pmx-top-free-shipping-stage:first-child,
  body.woocommerce-checkout .woocommerce > .pmx-top-free-shipping-stage:first-child{
    margin-top: -38px !important;
  }
}

body.woocommerce-cart .pmx-native-free-ship-hidden,
body.woocommerce-checkout .pmx-native-free-ship-hidden,
body.woocommerce-cart .pmx-free-shipping-empty-shell,
body.woocommerce-checkout .pmx-free-shipping-empty-shell{
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  height: 0 !important;
  min-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
}

body.woocommerce-cart .pmx-top-free-shipping-stage--server,
body.woocommerce-checkout .pmx-top-free-shipping-stage--server{
  opacity: 1 !important;
  visibility: visible !important;
}

body.woocommerce-cart #pmx-top-free-shipping-synthetic,
body.woocommerce-checkout #pmx-top-free-shipping-synthetic{
  opacity: 1 !important;
  visibility: visible !important;
}

/* ---------------------------------------------------------
   PMX v1.7.24 — account / alternate delivery / order notes polish
   + delivery wording support for progress meters.
   Scope: checkout form controls only; cart/add-ons/payments untouched.
   --------------------------------------------------------- */
body.woocommerce-checkout .woocommerce-account-fields{
  margin: 10px 0 18px !important;
}
body.woocommerce-checkout .woocommerce-account-fields p.create-account,
body.woocommerce-checkout #ship-to-different-address{
  display: block !important;
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  margin: 14px 0 16px !important;
  padding: 0 !important;
}
body.woocommerce-checkout .woocommerce-account-fields p.create-account label,
body.woocommerce-checkout #ship-to-different-address label{
  display: grid !important;
  grid-template-columns: 24px minmax(0, 1fr) !important;
  align-items: center !important;
  column-gap: 12px !important;
  width: 100% !important;
  box-sizing: border-box !important;
  margin: 0 !important;
  padding: 14px 16px !important;
  border: 1px solid rgba(0,148,184,.14) !important;
  border-radius: 18px !important;
  background:
    radial-gradient(circle at 0 0, rgba(0,194,232,.095), rgba(0,194,232,0) 45%),
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,253,255,.94)) !important;
  color: var(--pmx-ink) !important;
  box-shadow: 0 10px 24px rgba(7,30,39,.045) !important;
  cursor: pointer !important;
}
body.woocommerce-checkout .woocommerce-account-fields p.create-account label:hover,
body.woocommerce-checkout #ship-to-different-address label:hover{
  border-color: rgba(0,148,184,.28) !important;
  box-shadow: 0 13px 28px rgba(0,148,184,.075) !important;
}
body.woocommerce-checkout .woocommerce-account-fields p.create-account input[type="checkbox"],
body.woocommerce-checkout #ship-to-different-address-checkbox{
  grid-column: 1 !important;
  width: 21px !important;
  height: 21px !important;
  margin: 0 !important;
  accent-color: var(--pmx-blue) !important;
  cursor: pointer !important;
}
body.woocommerce-checkout .woocommerce-account-fields p.create-account span,
body.woocommerce-checkout #ship-to-different-address label span{
  grid-column: 2 !important;
  display: block !important;
  min-width: 0 !important;
  color: var(--pmx-ink) !important;
  font-size: clamp(17px, 2vw, 22px) !important;
  line-height: 1.16 !important;
  font-weight: 950 !important;
  letter-spacing: -.032em !important;
  text-transform: none !important;
}
body.woocommerce-checkout .woocommerce-account-fields p.create-account span{
  font-size: clamp(14px, 1.25vw, 16px) !important;
  letter-spacing: .02em !important;
  text-transform: uppercase !important;
  color: rgba(15,39,48,.62) !important;
}
body.woocommerce-checkout #ship-to-different-address label input:checked + span,
body.woocommerce-checkout .woocommerce-account-fields p.create-account input:checked + span{
  color: var(--pmx-blue-dark) !important;
}

body.woocommerce-checkout .woocommerce-additional-fields{
  margin-top: 18px !important;
}
body.woocommerce-checkout .woocommerce-additional-fields > h3{
  display: flex !important;
  align-items: center !important;
  gap: 10px !important;
  margin: 0 0 12px !important;
  color: var(--pmx-ink) !important;
  font-size: clamp(22px, 2.5vw, 30px) !important;
}
body.woocommerce-checkout .woocommerce-additional-fields > h3::before{
  content: "" !important;
  display: block !important;
  width: 5px !important;
  height: 28px !important;
  border-radius: 999px !important;
  background: linear-gradient(180deg, var(--pmx-blue), var(--pmx-blue-neon)) !important;
  box-shadow: 0 0 14px rgba(0,194,232,.22) !important;
}
body.woocommerce-checkout #order_comments_field{
  margin: 0 0 18px !important;
}
body.woocommerce-checkout #order_comments_field label{
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  margin-bottom: 9px !important;
  color: rgba(15,39,48,.62) !important;
  font-weight: 900 !important;
  letter-spacing: .045em !important;
}
body.woocommerce-checkout #order_comments{
  min-height: 112px !important;
  padding: 17px 19px !important;
  border-radius: 18px !important;
  background:
    radial-gradient(circle at 100% 0, rgba(0,194,232,.07), rgba(0,194,232,0) 38%),
    linear-gradient(180deg, #ffffff, #fbfeff) !important;
  box-shadow: 0 10px 24px rgba(7,30,39,.045), inset 0 1px 0 rgba(255,255,255,.9) !important;
}

@media (max-width: 767px){
  body.woocommerce-checkout .woocommerce-account-fields p.create-account label,
  body.woocommerce-checkout #ship-to-different-address label{
    grid-template-columns: 24px minmax(0, 1fr) !important;
    column-gap: 12px !important;
    padding: 13px 14px !important;
    border-radius: 17px !important;
  }
  body.woocommerce-checkout #ship-to-different-address label span{
    font-size: clamp(22px, 6.1vw, 28px) !important;
    line-height: 1.13 !important;
  }
  body.woocommerce-checkout .woocommerce-account-fields p.create-account span{
    font-size: 14px !important;
    line-height: 1.2 !important;
  }
  body.woocommerce-checkout .woocommerce-additional-fields{
    margin-top: 14px !important;
  }
  body.woocommerce-checkout #order_comments{
    min-height: 104px !important;
  }
}

/* ---------------------------------------------------------
   PMX v1.7.25 — final cart title removal + tiny top lift
   Scope: desktop cart/checkout top meter only; no mobile, totals,
   PayPal, add-ons, checkout flow, or shipping-method changes.
   --------------------------------------------------------- */
@media (min-width: 981px){
  body.woocommerce-cart h1.entry-title,
  body.woocommerce-cart .main_title,
  body.woocommerce-cart .et_pb_post_title h1,
  body.woocommerce-cart .woocommerce > h1:first-child{
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    height: 0 !important;
    min-height: 0 !important;
    max-height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    overflow: hidden !important;
  }

  body.woocommerce-cart h1.entry-title::before,
  body.woocommerce-cart .main_title::before,
  body.woocommerce-cart .et_pb_post_title h1::before,
  body.woocommerce-cart .woocommerce > h1:first-child::before{
    content: none !important;
    display: none !important;
  }

  body.woocommerce-cart .pmx-top-free-shipping-stage,
  body.woocommerce-checkout .pmx-top-free-shipping-stage{
    margin-top: -48px !important;
    margin-bottom: 20px !important;
  }

  body.woocommerce-cart .entry-content > .pmx-top-free-shipping-stage:first-child,
  body.woocommerce-checkout .entry-content > .pmx-top-free-shipping-stage:first-child,
  body.woocommerce-cart .woocommerce > .pmx-top-free-shipping-stage:first-child,
  body.woocommerce-checkout .woocommerce > .pmx-top-free-shipping-stage:first-child{
    margin-top: -52px !important;
  }
}

/* PMX v1.8.1 — stop initial Update Basket active-state flash, but allow it once quantity changes. */
body.woocommerce-cart:not(.pmx-cart-has-pending-update) .woocommerce-cart-form button[name="update_cart"]{
  pointer-events: none !important;
  cursor: not-allowed !important;
  opacity: .45 !important;
  background: linear-gradient(180deg, #f9f9f9, #efefef) !important;
  color: rgba(15,39,48,.35) !important;
  box-shadow: none !important;
  filter: none !important;
  transform: none !important;
  animation: none !important;
}
body.woocommerce-cart.pmx-cart-has-pending-update .woocommerce-cart-form button[name="update_cart"]:not(:disabled){
  pointer-events: auto !important;
  cursor: pointer !important;
  opacity: 1 !important;
}

/* ---------------------------------------------------------
   PMX v1.8.4 — custom centred cart/checkout heading above
   the top free-delivery progress meter.
   Scope: page-level cart/checkout headings only.
   --------------------------------------------------------- */
body.woocommerce-cart h1.entry-title,
body.woocommerce-cart .main_title,
body.woocommerce-cart .et_pb_post_title h1,
body.woocommerce-cart .woocommerce > h1:first-child,
body.woocommerce-checkout h1.entry-title,
body.woocommerce-checkout .main_title,
body.woocommerce-checkout .et_pb_post_title h1,
body.woocommerce-checkout .woocommerce > h1:first-child{
  display: none !important;
  visibility: hidden !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  min-width: 0 !important;
  min-height: 0 !important;
  max-height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  overflow: hidden !important;
}

body.woocommerce-cart h1.entry-title::before,
body.woocommerce-cart .main_title::before,
body.woocommerce-cart .et_pb_post_title h1::before,
body.woocommerce-cart .woocommerce > h1:first-child::before,
body.woocommerce-checkout h1.entry-title::before,
body.woocommerce-checkout .main_title::before,
body.woocommerce-checkout .et_pb_post_title h1::before,
body.woocommerce-checkout .woocommerce > h1:first-child::before{
  content: none !important;
  display: none !important;
}

body.woocommerce-cart .pmx-page-top-title,
body.woocommerce-checkout .pmx-page-top-title{
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: min(760px, calc(100vw - 32px)) !important;
  max-width: 100% !important;
  margin: 0 auto 10px !important;
  padding: 0 12px !important;
  box-sizing: border-box !important;
  text-align: center !important;
  clear: both !important;
}

body.woocommerce-cart .pmx-page-top-title span,
body.woocommerce-checkout .pmx-page-top-title span{
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  min-width: 0 !important;
  padding: 8px 26px 9px !important;
  border: 1px solid rgba(0,148,184,.18) !important;
  border-radius: 999px !important;
  background:
    radial-gradient(circle at 50% 0, rgba(0,194,232,.14), rgba(0,194,232,0) 48%),
    linear-gradient(180deg, rgba(255,255,255,.96), rgba(246,253,255,.92)) !important;
  color: var(--pmx-ink) !important;
  font-family: Manrope, Arial, sans-serif !important;
  font-size: clamp(24px, 3vw, 38px) !important;
  line-height: 1.05 !important;
  font-weight: 950 !important;
  letter-spacing: -.045em !important;
  text-transform: none !important;
  box-shadow:
    0 14px 34px rgba(7,30,39,.07),
    0 0 0 4px rgba(0,148,184,.035),
    inset 0 1px 0 rgba(255,255,255,.96) !important;
}

body.woocommerce-cart .pmx-page-top-title span::before,
body.woocommerce-checkout .pmx-page-top-title span::before,
body.woocommerce-cart .pmx-page-top-title span::after,
body.woocommerce-checkout .pmx-page-top-title span::after{
  content: "" !important;
  display: block !important;
  width: 34px !important;
  height: 3px !important;
  margin: 0 13px !important;
  border-radius: 999px !important;
  background: linear-gradient(90deg, rgba(0,148,184,0), rgba(0,148,184,.72), rgba(0,194,232,.9)) !important;
  box-shadow: 0 0 14px rgba(0,194,232,.22) !important;
}

body.woocommerce-cart .pmx-page-top-title span::after,
body.woocommerce-checkout .pmx-page-top-title span::after{
  transform: scaleX(-1) !important;
}

body.woocommerce-cart .pmx-top-free-shipping-stage,
body.woocommerce-checkout .pmx-top-free-shipping-stage{
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
}

body.woocommerce-cart .pmx-top-free-shipping-stage > .pmx-page-top-title + .fs-free-shipping-notice-and-button-wrapper,
body.woocommerce-checkout .pmx-top-free-shipping-stage > .pmx-page-top-title + .fs-free-shipping-notice-and-button-wrapper,
body.woocommerce-cart .pmx-top-free-shipping-stage > .pmx-page-top-title + #pmx-top-free-shipping-synthetic,
body.woocommerce-checkout .pmx-top-free-shipping-stage > .pmx-page-top-title + #pmx-top-free-shipping-synthetic{
  margin-top: 0 !important;
}

@media (min-width: 981px){
  body.woocommerce-cart .pmx-top-free-shipping-stage,
  body.woocommerce-checkout .pmx-top-free-shipping-stage{
    margin-top: -50px !important;
  }

  body.woocommerce-cart .pmx-page-top-title,
  body.woocommerce-checkout .pmx-page-top-title{
    margin-bottom: 11px !important;
  }
}

@media (max-width: 767px){
  body.woocommerce-cart .pmx-page-top-title,
  body.woocommerce-checkout .pmx-page-top-title{
    width: min(100%, calc(100vw - 24px)) !important;
    margin-bottom: 9px !important;
    padding: 0 8px !important;
  }

  body.woocommerce-cart .pmx-page-top-title span,
  body.woocommerce-checkout .pmx-page-top-title span{
    padding: 7px 18px 8px !important;
    font-size: clamp(25px, 8vw, 34px) !important;
    border-radius: 999px !important;
  }

  body.woocommerce-cart .pmx-page-top-title span::before,
  body.woocommerce-checkout .pmx-page-top-title span::before,
  body.woocommerce-cart .pmx-page-top-title span::after,
  body.woocommerce-checkout .pmx-page-top-title span::after{
    width: 22px !important;
    height: 3px !important;
    margin: 0 9px !important;
  }
}

body.woocommerce-order-received .pmx-top-free-shipping-stage,
body.woocommerce-order-received #pmx-top-free-shipping-synthetic,
body.woocommerce-order-received .pmx-page-top-title,
body.woocommerce-order-received .fs-free-shipping-notice-and-button-wrapper,
body.woocommerce-order-received .woocommerce-info:has(.fs-free-shipping-notice-and-button-wrapper),
body.woocommerce-order-received .woocommerce-message:has(.fs-free-shipping-notice-and-button-wrapper),
body.woocommerce-order-received .woocommerce-notices-wrapper:has(.fs-free-shipping-notice-and-button-wrapper){
  display:none!important;
  visibility:hidden!important;
  opacity:0!important;
  height:0!important;
  min-height:0!important;
  margin:0!important;
  padding:0!important;
  overflow:hidden!important;
}

body.woocommerce-order-received .entry-content > .woocommerce,
body.woocommerce-order-received .et_pb_text_inner > .woocommerce{
  width:min(1120px, calc(100vw - 34px));
  max-width:1120px;
  margin:clamp(26px, 4.5vw, 62px) auto clamp(42px, 6vw, 86px)!important;
  padding:0!important;
}

body.woocommerce-order-received .woocommerce-order{
  font-family:Poppins, Manrope, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color:var(--pmx-ink, #102832);
  line-height:1.35;
}

body.woocommerce-order-received .pmx-thankyou-page{
  width:100%;
  max-width:1120px;
  margin:0 auto;
}

body.woocommerce-order-received .woocommerce-notice.woocommerce-thankyou-order-received{
  display:flex!important;
  align-items:center;
  gap:18px;
  width:100%;
  margin:0 auto 18px!important;
  padding:22px 24px!important;
  border:1px solid rgba(0,148,184,.22)!important;
  border-top:5px solid var(--pmx-blue, #0094b8)!important;
  border-radius:26px!important;
  background:
    radial-gradient(circle at 14% 18%, rgba(0,188,225,.15), transparent 34%),
    linear-gradient(135deg, rgba(240,253,255,.98), rgba(255,255,255,.98) 62%, rgba(235,250,253,.92));
  box-shadow:0 22px 52px rgba(0,148,184,.13), inset 0 1px 0 rgba(255,255,255,.86)!important;
  color:var(--pmx-ink, #102832)!important;
  font-size:17px!important;
  font-weight:700!important;
}

body.woocommerce-order-received .woocommerce-notice.woocommerce-thankyou-order-received::before,
body.woocommerce-order-received .woocommerce-notice.woocommerce-thankyou-order-received::after{
  display:none!important;
  content:none!important;
}

body.woocommerce-order-received .pmx-ty-success-icon{
  display:inline-grid;
  place-items:center;
  flex:0 0 54px;
  width:54px;
  height:54px;
  border-radius:18px;
  color:#fff;
  background:linear-gradient(135deg, #11c66a, #007e52);
  box-shadow:0 14px 32px rgba(17,198,106,.24), inset 0 1px 0 rgba(255,255,255,.55);
  font-size:31px;
  font-weight:900;
  line-height:1;
}

body.woocommerce-order-received .pmx-ty-success-copy{
  display:flex;
  flex-direction:column;
  gap:5px;
  min-width:0;
}

body.woocommerce-order-received .pmx-ty-success-copy strong{
  display:block;
  color:var(--pmx-ink, #102832);
  font-size:clamp(24px, 3.4vw, 42px);
  line-height:1.02;
  letter-spacing:-.045em;
  font-weight:900;
}

body.woocommerce-order-received .pmx-ty-success-copy span{
  display:block;
  color:rgba(16,40,50,.68);
  font-size:clamp(13px, 1.15vw, 16px);
  line-height:1.45;
  font-weight:700;
  letter-spacing:-.01em;
}

body.woocommerce-order-received ul.woocommerce-order-overview.order_details{
  display:grid!important;
  grid-template-columns:repeat(4, minmax(0, 1fr));
  gap:12px;
  list-style:none!important;
  margin:0 0 20px!important;
  padding:0!important;
  line-height:1.25!important;
}

body.woocommerce-order-received ul.woocommerce-order-overview.order_details::before,
body.woocommerce-order-received ul.woocommerce-order-overview.order_details::after{
  display:none!important;
  content:none!important;
}

body.woocommerce-order-received ul.woocommerce-order-overview.order_details li{
  float:none!important;
  width:auto!important;
  min-height:92px;
  margin:0!important;
  padding:16px 16px!important;
  border:1px solid rgba(0,148,184,.15)!important;
  border-radius:20px;
  background:linear-gradient(180deg, rgba(255,255,255,.96), rgba(241,252,254,.9));
  box-shadow:0 13px 30px rgba(15,39,48,.055);
  color:rgba(16,40,50,.58);
  text-transform:uppercase;
  letter-spacing:.055em;
  font-size:10px!important;
  font-weight:900;
}

body.woocommerce-order-received ul.woocommerce-order-overview.order_details li strong{
  display:block;
  margin-top:7px;
  color:var(--pmx-ink, #102832);
  text-transform:none;
  letter-spacing:-.025em;
  font-size:clamp(14px, 1.25vw, 19px)!important;
  line-height:1.16;
  font-weight:900;
}

body.woocommerce-order-received .pmx-thankyou-next,
body.woocommerce-order-received .woocommerce-order-details,
body.woocommerce-order-received .woocommerce-customer-details{
  margin:20px 0 0!important;
  padding:clamp(20px, 2.7vw, 32px)!important;
  border:1px solid rgba(0,148,184,.18)!important;
  border-radius:28px!important;
  background:
    linear-gradient(135deg, rgba(240,253,255,.98), rgba(255,255,255,.98) 58%, rgba(242,252,254,.94)),
    repeating-linear-gradient(135deg, rgba(0,148,184,.035) 0 1px, transparent 1px 16px);
  box-shadow:0 24px 56px rgba(0,148,184,.105), inset 0 1px 0 rgba(255,255,255,.9)!important;
}

body.woocommerce-order-received .pmx-thankyou-next__head{
  display:flex;
  flex-direction:column;
  gap:4px;
  margin:0 0 16px;
}

body.woocommerce-order-received .pmx-thankyou-next__head span,
body.woocommerce-order-received .woocommerce-order-details__title,
body.woocommerce-order-received .woocommerce-column__title{
  color:var(--pmx-ink, #102832)!important;
  font-size:clamp(22px, 2.3vw, 32px)!important;
  font-weight:900!important;
  letter-spacing:-.045em!important;
  line-height:1.06!important;
  padding:0!important;
  margin:0 0 16px!important;
}

body.woocommerce-order-received .pmx-thankyou-next__head strong{
  color:rgba(16,40,50,.64);
  font-size:14px;
  font-weight:800;
}

body.woocommerce-order-received .pmx-thankyou-next__grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:12px;
}

body.woocommerce-order-received .pmx-thankyou-step{
  min-height:168px;
  padding:18px 16px;
  border:1px solid rgba(0,148,184,.13);
  border-radius:22px;
  background:rgba(255,255,255,.78);
  box-shadow:0 12px 28px rgba(15,39,48,.045);
}

body.woocommerce-order-received .pmx-thankyou-step__icon{
  display:grid;
  place-items:center;
  width:36px;
  height:36px;
  margin:0 0 12px;
  border-radius:13px;
  background:linear-gradient(135deg, var(--pmx-blue, #0094b8), #05c9e6);
  color:#fff;
  font-size:15px;
  font-weight:900;
  box-shadow:0 10px 24px rgba(0,148,184,.18);
}

body.woocommerce-order-received .pmx-thankyou-step strong{
  display:block;
  margin:0 0 7px;
  color:var(--pmx-ink, #102832);
  font-size:17px;
  line-height:1.12;
  letter-spacing:-.025em;
  font-weight:900;
}

body.woocommerce-order-received .pmx-thankyou-step p,
body.woocommerce-order-received .pmx-thankyou-help{
  margin:0!important;
  padding:0!important;
  color:rgba(16,40,50,.66);
  font-size:13px;
  line-height:1.48;
  font-weight:700;
}

body.woocommerce-order-received .pmx-thankyou-actions{
  display:flex;
  flex-wrap:wrap;
  align-items:center;
  justify-content:center;
  gap:12px;
  margin:20px 0 14px;
}

body.woocommerce-order-received .pmx-thankyou-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:50px;
  padding:13px 24px;
  border-radius:999px;
  font-size:15px;
  font-weight:900;
  line-height:1;
  text-decoration:none!important;
  transition:transform .18s ease, box-shadow .18s ease, background .18s ease;
}

body.woocommerce-order-received .pmx-thankyou-btn--primary{
  color:#fff!important;
  background:linear-gradient(135deg, var(--pmx-blue, #0094b8), #05c9e6);
  box-shadow:0 18px 34px rgba(0,148,184,.24), inset 0 1px 0 rgba(255,255,255,.42);
}

body.woocommerce-order-received .pmx-thankyou-btn--secondary{
  color:var(--pmx-blue, #0094b8)!important;
  background:rgba(235,250,253,.96);
  border:1px solid rgba(0,148,184,.16);
  box-shadow:0 12px 24px rgba(15,39,48,.055);
}

body.woocommerce-order-received .pmx-thankyou-btn:hover{
  transform:translateY(-1px);
}

body.woocommerce-order-received .pmx-thankyou-help{
  text-align:center;
}

body.woocommerce-order-received .pmx-thankyou-help a{
  color:var(--pmx-blue, #0094b8)!important;
  font-weight:900;
}

body.woocommerce-order-received .pmx-ty-product-line{
  display:flex;
  align-items:center;
  gap:14px;
  min-width:0;
}

body.woocommerce-order-received .pmx-ty-product-media{
  flex:0 0 68px;
  width:68px;
  height:68px;
  display:grid;
  place-items:center;
  border-radius:18px;
  background:linear-gradient(180deg, rgba(255,255,255,.98), rgba(240,252,254,.95));
  border:1px solid rgba(0,148,184,.14);
  box-shadow:0 12px 24px rgba(15,39,48,.07), inset 0 1px 0 rgba(255,255,255,.9);
  overflow:hidden;
}

body.woocommerce-order-received .pmx-ty-product-thumb{
  display:block;
  width:100%!important;
  height:100%!important;
  object-fit:contain;
  padding:6px;
  border-radius:16px;
  background:#fff;
}

body.woocommerce-order-received .pmx-ty-product-thumb--placeholder{
  display:grid;
  place-items:center;
  padding:0;
  color:var(--pmx-blue, #0094b8);
  font-size:11px;
  font-weight:900;
  letter-spacing:.04em;
}

body.woocommerce-order-received .pmx-ty-product-copy{
  display:block;
  min-width:0;
  color:var(--pmx-ink, #102832);
  font-weight:800;
  line-height:1.28;
}

body.woocommerce-order-received .pmx-ty-product-copy a{
  display:inline;
}

body.woocommerce-order-received .woocommerce-order-details table.shop_table,
body.woocommerce-order-received .woocommerce-table--order-details{
  overflow:hidden;
  margin:0!important;
  border:1px solid rgba(0,148,184,.12)!important;
  border-radius:22px!important;
  background:#fff!important;
  box-shadow:none!important;
}

body.woocommerce-order-received .woocommerce-order-details table.shop_table th,
body.woocommerce-order-received .woocommerce-order-details table.shop_table td,
body.woocommerce-order-received .woocommerce-table--order-details th,
body.woocommerce-order-received .woocommerce-table--order-details td{
  padding:17px 18px!important;
  border-top:1px solid rgba(15,39,48,.08)!important;
  color:var(--pmx-ink, #102832)!important;
  font-size:14px!important;
  line-height:1.35!important;
  vertical-align:middle!important;
}

body.woocommerce-order-received .woocommerce-order-details table.shop_table thead th,
body.woocommerce-order-received .woocommerce-table--order-details thead th{
  border-top:0!important;
  color:rgba(16,40,50,.72)!important;
  text-transform:uppercase;
  letter-spacing:.05em;
  font-size:12px!important;
  font-weight:900!important;
}

body.woocommerce-order-received .woocommerce-order-details table.shop_table a,
body.woocommerce-order-received .woocommerce-table--order-details a{
  color:#ef3f49!important;
  font-weight:800;
}

body.woocommerce-order-received .woocommerce-order-details table.shop_table tfoot th,
body.woocommerce-order-received .woocommerce-order-details table.shop_table tfoot td{
  font-weight:900!important;
}

body.woocommerce-order-received .woocommerce-order-details table.shop_table tfoot tr:last-child th,
body.woocommerce-order-received .woocommerce-order-details table.shop_table tfoot tr:last-child td{
  color:#0b7f5e!important;
  font-size:16px!important;
}

body.woocommerce-order-received .woocommerce-customer-details address{
  margin:0!important;
  padding:18px!important;
  border:1px solid rgba(0,148,184,.13)!important;
  border-radius:20px!important;
  background:#fff!important;
  color:rgba(16,40,50,.72)!important;
  font-style:normal!important;
  font-weight:700;
  line-height:1.55;
}

@media (min-width:981px){
  body.woocommerce-order-received .woocommerce-order{
    padding-top:6px;
  }
  body.woocommerce-order-received .woocommerce-order-details,
  body.woocommerce-order-received .woocommerce-customer-details{
    clear:both;
  }
}

@media (max-width:980px){
  body.woocommerce-order-received .entry-content > .woocommerce,
  body.woocommerce-order-received .et_pb_text_inner > .woocommerce{
    width:min(100% - 22px, 680px);
    margin:20px auto 46px!important;
  }
  body.woocommerce-order-received .woocommerce-notice.woocommerce-thankyou-order-received{
    align-items:flex-start;
    gap:13px;
    padding:18px 16px!important;
    border-radius:24px!important;
  }
  body.woocommerce-order-received .pmx-ty-success-icon{
    flex-basis:44px;
    width:44px;
    height:44px;
    border-radius:15px;
    font-size:25px;
  }
  body.woocommerce-order-received ul.woocommerce-order-overview.order_details{
    grid-template-columns:repeat(2, minmax(0, 1fr));
    gap:10px;
  }
  body.woocommerce-order-received ul.woocommerce-order-overview.order_details li{
    min-height:82px;
    padding:14px!important;
  }
  body.woocommerce-order-received .pmx-thankyou-next__grid{
    grid-template-columns:1fr;
  }
  body.woocommerce-order-received .pmx-thankyou-step{
    min-height:auto;
  }
}

@media (max-width:600px){
  body.woocommerce-order-received .woocommerce-notice.woocommerce-thankyou-order-received{
    display:block!important;
    text-align:center;
  }
  body.woocommerce-order-received .pmx-ty-success-icon{
    margin:0 auto 12px;
  }
  body.woocommerce-order-received ul.woocommerce-order-overview.order_details{
    grid-template-columns:1fr;
  }
  body.woocommerce-order-received .pmx-thankyou-next,
  body.woocommerce-order-received .woocommerce-order-details,
  body.woocommerce-order-received .woocommerce-customer-details{
    padding:18px 14px!important;
    border-radius:24px!important;
  }
  body.woocommerce-order-received .pmx-thankyou-actions{
    flex-direction:column;
  }
  body.woocommerce-order-received .pmx-thankyou-btn{
    width:100%;
    min-height:52px;
  }
  body.woocommerce-order-received .woocommerce-order-details table.shop_table,
  body.woocommerce-order-received .woocommerce-table--order-details{
    display:block;
    overflow-x:auto;
    -webkit-overflow-scrolling:touch;
  }
  body.woocommerce-order-received .woocommerce-order-details table.shop_table th,
  body.woocommerce-order-received .woocommerce-order-details table.shop_table td,
  body.woocommerce-order-received .woocommerce-table--order-details th,
  body.woocommerce-order-received .woocommerce-table--order-details td{
    padding:14px 13px!important;
    font-size:13px!important;
  }
  body.woocommerce-order-received .pmx-ty-product-line{
    gap:10px;
  }
  body.woocommerce-order-received .pmx-ty-product-media{
    flex-basis:54px;
    width:54px;
    height:54px;
    border-radius:15px;
  }
  body.woocommerce-order-received .pmx-ty-product-thumb{
    padding:5px;
    border-radius:13px;
  }
}

body.woocommerce-cart .pmx-upsell,
body.woocommerce-checkout .pmx-upsell{
  margin-top: clamp(16px, 1.8vw, 24px) !important;
  margin-bottom: 8px !important;
  padding: clamp(12px, 1.45vw, 17px) !important;
  border-radius: 18px !important;
}

body.woocommerce-cart .pmx-upsell__head,
body.woocommerce-checkout .pmx-upsell__head{
  margin-bottom: 10px !important;
}

body.woocommerce-cart .pmx-upsell__title,
body.woocommerce-checkout .pmx-upsell__title{
  font-size: clamp(18px, 1.65vw, 21px) !important;
  line-height: 1.02 !important;
  padding-left: 13px !important;
}

body.woocommerce-cart .pmx-upsell__shipmeter,
body.woocommerce-checkout .pmx-upsell__shipmeter{
  width: min(100%, 640px) !important;
  margin: 7px auto 11px !important;
  padding: 8px 10px 8px !important;
  border-radius: 13px !important;
}

body.woocommerce-cart .pmx-upsell__shiptop,
body.woocommerce-checkout .pmx-upsell__shiptop{
  margin-bottom: 5px !important;
}

body.woocommerce-cart .pmx-upsell__shiptop span,
body.woocommerce-checkout .pmx-upsell__shiptop span{
  font-size: 11px !important;
}

body.woocommerce-cart .pmx-upsell__shiptop strong,
body.woocommerce-checkout .pmx-upsell__shiptop strong{
  font-size: 11.3px !important;
}

body.woocommerce-cart .pmx-upsell__shipbar,
body.woocommerce-checkout .pmx-upsell__shipbar{
  height: 10px !important;
}

body.woocommerce-cart .pmx-upsell__shipmeter p,
body.woocommerce-checkout .pmx-upsell__shipmeter p{
  margin-top: 5px !important;
  font-size: 10.9px !important;
  line-height: 1.2 !important;
}

body.woocommerce-cart .pmx-upsell__grid,
body.woocommerce-checkout .pmx-upsell__grid{
  gap: 10px !important;
}

body.woocommerce-cart .pmx-upsell__card,
body.woocommerce-checkout .pmx-upsell__card{
  border-radius: 14px !important;
}

body.woocommerce-cart .pmx-upsell__imgwrap,
body.woocommerce-checkout .pmx-upsell__imgwrap{
  margin: 7px 7px 0 !important;
  border-radius: 11px !important;
  aspect-ratio: 1 / .66 !important;
}

body.woocommerce-cart .pmx-upsell__img,
body.woocommerce-checkout .pmx-upsell__img{
  object-fit: contain !important;
  padding: 6px !important;
}

body.woocommerce-cart .pmx-upsell__body,
body.woocommerce-checkout .pmx-upsell__body{
  gap: 4px !important;
  padding: 7px 9px 9px !important;
}

body.woocommerce-cart .pmx-upsell__tag,
body.woocommerce-checkout .pmx-upsell__tag{
  padding: 3px 6px !important;
  font-size: 7.9px !important;
  line-height: 1 !important;
}

body.woocommerce-cart .pmx-upsell__name,
body.woocommerce-checkout .pmx-upsell__name{
  font-size: 11.8px !important;
  line-height: 1.16 !important;
  min-height: 2.32em !important;
  -webkit-line-clamp: 2 !important;
}

body.woocommerce-cart .pmx-upsell__price,
body.woocommerce-checkout .pmx-upsell__price{
  font-size: 14.5px !important;
  line-height: 1.02 !important;
}

body.woocommerce-cart .pmx-upsell__btn,
body.woocommerce-checkout .pmx-upsell__btn{
  min-height: 32px !important;
  padding: 7px 9px !important;
  border-radius: 10px !important;
  font-size: 11.5px !important;
  line-height: 1.05 !important;
}

@media (min-width: 981px){
  body.woocommerce-cart .pmx-upsell__grid,
  body.woocommerce-checkout .pmx-upsell__grid{
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 600px){
  body.woocommerce-cart .pmx-upsell,
  body.woocommerce-checkout .pmx-upsell{
    margin-top: 18px !important;
    padding: 11px 9px !important;
    border-radius: 16px !important;
  }

  body.woocommerce-cart .pmx-upsell__head,
  body.woocommerce-checkout .pmx-upsell__head{
    margin-bottom: 8px !important;
  }

  body.woocommerce-cart .pmx-upsell__title,
  body.woocommerce-checkout .pmx-upsell__title{
    font-size: 19px !important;
  }

  body.woocommerce-cart .pmx-upsell__shipmeter,
  body.woocommerce-checkout .pmx-upsell__shipmeter{
    margin: 6px auto 9px !important;
    padding: 7px 8px !important;
    border-radius: 12px !important;
  }

  body.woocommerce-cart .pmx-upsell__shiptop,
  body.woocommerce-checkout .pmx-upsell__shiptop{
    gap: 5px !important;
    margin-bottom: 5px !important;
  }

  body.woocommerce-cart .pmx-upsell__shiptop span,
  body.woocommerce-checkout .pmx-upsell__shiptop span{
    font-size: 10.4px !important;
  }

  body.woocommerce-cart .pmx-upsell__shiptop strong,
  body.woocommerce-checkout .pmx-upsell__shiptop strong{
    font-size: 10.8px !important;
  }

  body.woocommerce-cart .pmx-upsell__shipmeter p,
  body.woocommerce-checkout .pmx-upsell__shipmeter p{
    font-size: 10.4px !important;
  }

  body.woocommerce-cart .pmx-upsell__grid,
  body.woocommerce-checkout .pmx-upsell__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 8px !important;
  }

  body.woocommerce-cart .pmx-upsell__imgwrap,
  body.woocommerce-checkout .pmx-upsell__imgwrap{
    margin: 6px 6px 0 !important;
    aspect-ratio: 1 / .68 !important;
    border-radius: 10px !important;
  }

  body.woocommerce-cart .pmx-upsell__img,
  body.woocommerce-checkout .pmx-upsell__img{
    padding: 5px !important;
  }

  body.woocommerce-cart .pmx-upsell__body,
  body.woocommerce-checkout .pmx-upsell__body{
    gap: 3px !important;
    padding: 6px 7px 8px !important;
  }

  body.woocommerce-cart .pmx-upsell__tag,
  body.woocommerce-checkout .pmx-upsell__tag{
    font-size: 7.4px !important;
    padding: 2.5px 5px !important;
  }

  body.woocommerce-cart .pmx-upsell__name,
  body.woocommerce-checkout .pmx-upsell__name{
    font-size: 11px !important;
    line-height: 1.13 !important;
    min-height: 2.26em !important;
  }

  body.woocommerce-cart .pmx-upsell__price,
  body.woocommerce-checkout .pmx-upsell__price{
    font-size: 13.9px !important;
  }

  body.woocommerce-cart .pmx-upsell__btn,
  body.woocommerce-checkout .pmx-upsell__btn{
    min-height: 30px !important;
    padding: 6px 7px !important;
    border-radius: 9px !important;
    font-size: 10.8px !important;
  }
}

body.woocommerce-cart .pmx-upsell{
  margin-bottom: 0 !important;
}

body.woocommerce-cart .pmx-upsell + .cart-collaterals,
body.woocommerce-cart .pmx-upsell ~ .cart-collaterals,
body.woocommerce-cart .woocommerce .pmx-upsell + .cart-collaterals,
body.woocommerce-cart .woocommerce .pmx-upsell ~ .cart-collaterals{
  margin-top: clamp(14px, 2vw, 22px) !important;
}

@media (min-width: 981px){
  body.woocommerce-cart .cart-collaterals,
  body.woocommerce-cart .woocommerce .cart-collaterals,
  body.woocommerce-cart.woocommerce-page .cart-collaterals,
  body.woocommerce-cart .pmx-cart-totals-row-wide,
  body.woocommerce-cart .et_pb_row:has(.et_pb_wc_cart_totals),
  body.woocommerce-cart .et_pb_row:has(.cart_totals){
    margin-top: clamp(14px, 1.8vw, 24px) !important;
  }
}

@media (max-width: 980px){
  body.woocommerce-cart .cart-collaterals,
  body.woocommerce-cart .woocommerce .cart-collaterals,
  body.woocommerce-cart.woocommerce-page .cart-collaterals,
  body.woocommerce-cart .et_pb_row:has(.et_pb_wc_cart_totals),
  body.woocommerce-cart .et_pb_row:has(.cart_totals){
    margin-top: 14px !important;
  }
}

@media (max-width: 600px){
  body.woocommerce-cart .pmx-upsell{
    margin-bottom: 0 !important;
  }
  body.woocommerce-cart .cart-collaterals,
  body.woocommerce-cart .woocommerce .cart-collaterals,
  body.woocommerce-cart.woocommerce-page .cart-collaterals,
  body.woocommerce-cart .et_pb_row:has(.et_pb_wc_cart_totals),
  body.woocommerce-cart .et_pb_row:has(.cart_totals){
    margin-top: 10px !important;
  }
}

body.woocommerce-cart .pmx-upsell{
  margin-bottom: 0 !important;
}

body.woocommerce-cart .pmx-upsell + .cart-collaterals,
body.woocommerce-cart .pmx-upsell ~ .cart-collaterals,
body.woocommerce-cart .woocommerce .pmx-upsell + .cart-collaterals,
body.woocommerce-cart .woocommerce .pmx-upsell ~ .cart-collaterals{
  margin-top: clamp(8px, 1.2vw, 14px) !important;
}

@media (min-width: 981px){
  body.woocommerce-cart .cart-collaterals,
  body.woocommerce-cart .woocommerce .cart-collaterals,
  body.woocommerce-cart.woocommerce-page .cart-collaterals,
  body.woocommerce-cart .pmx-cart-totals-row-wide,
  body.woocommerce-cart .et_pb_row:has(.et_pb_wc_cart_totals),
  body.woocommerce-cart .et_pb_row:has(.cart_totals){
    margin-top: clamp(8px, 1.1vw, 16px) !important;
  }
}

@media (max-width: 980px){
  body.woocommerce-cart .cart-collaterals,
  body.woocommerce-cart .woocommerce .cart-collaterals,
  body.woocommerce-cart.woocommerce-page .cart-collaterals,
  body.woocommerce-cart .et_pb_row:has(.et_pb_wc_cart_totals),
  body.woocommerce-cart .et_pb_row:has(.cart_totals){
    margin-top: 8px !important;
  }
}

@media (max-width: 600px){
  body.woocommerce-cart .cart-collaterals,
  body.woocommerce-cart .woocommerce .cart-collaterals,
  body.woocommerce-cart.woocommerce-page .cart-collaterals,
  body.woocommerce-cart .et_pb_row:has(.et_pb_wc_cart_totals),
  body.woocommerce-cart .et_pb_row:has(.cart_totals){
    margin-top: 5px !important;
  }
}

body.woocommerce-cart .pmx-upsell,
body.woocommerce-checkout .pmx-upsell{
  margin-top: clamp(10px, 1.1vw, 16px) !important;
  margin-bottom: 0 !important;
  padding: clamp(8px, .85vw, 11px) !important;
  border-radius: 15px !important;
}

body.woocommerce-cart .pmx-upsell__head,
body.woocommerce-checkout .pmx-upsell__head{
  margin-bottom: 6px !important;
}

body.woocommerce-cart .pmx-upsell__title,
body.woocommerce-checkout .pmx-upsell__title{
  font-size: clamp(15px, 1.25vw, 17px) !important;
  line-height: 1 !important;
  padding-left: 10px !important;
}

body.woocommerce-cart .pmx-upsell__title::before,
body.woocommerce-checkout .pmx-upsell__title::before{
  width: 3px !important;
  border-radius: 999px !important;
}

body.woocommerce-cart .pmx-upsell__shipmeter,
body.woocommerce-checkout .pmx-upsell__shipmeter{
  width: min(100%, 560px) !important;
  margin: 5px auto 7px !important;
  padding: 6px 8px !important;
  border-radius: 10px !important;
}

body.woocommerce-cart .pmx-upsell__shiptop,
body.woocommerce-checkout .pmx-upsell__shiptop{
  margin-bottom: 4px !important;
  gap: 5px !important;
}

body.woocommerce-cart .pmx-upsell__shiptop span,
body.woocommerce-checkout .pmx-upsell__shiptop span{
  font-size: 9px !important;
  line-height: 1 !important;
}

body.woocommerce-cart .pmx-upsell__shiptop strong,
body.woocommerce-checkout .pmx-upsell__shiptop strong{
  font-size: 9.4px !important;
  line-height: 1 !important;
}

body.woocommerce-cart .pmx-upsell__shipbar,
body.woocommerce-checkout .pmx-upsell__shipbar{
  height: 7px !important;
  border-radius: 999px !important;
}

body.woocommerce-cart .pmx-upsell__shipmeter p,
body.woocommerce-checkout .pmx-upsell__shipmeter p{
  margin-top: 4px !important;
  font-size: 9px !important;
  line-height: 1.12 !important;
}

body.woocommerce-cart .pmx-upsell__grid,
body.woocommerce-checkout .pmx-upsell__grid{
  gap: 6px !important;
}

body.woocommerce-cart .pmx-upsell__card,
body.woocommerce-checkout .pmx-upsell__card{
  border-radius: 11px !important;
  overflow: hidden !important;
}

body.woocommerce-cart .pmx-upsell__imgwrap,
body.woocommerce-checkout .pmx-upsell__imgwrap{
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 4px 4px 0 !important;
  height: clamp(78px, 7.4vw, 108px) !important;
  min-height: 0 !important;
  aspect-ratio: auto !important;
  border-radius: 8px !important;
  overflow: hidden !important;
}

body.woocommerce-cart .pmx-upsell__img,
body.woocommerce-checkout .pmx-upsell__img{
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  max-width: 100% !important;
  max-height: 100% !important;
  object-fit: contain !important;
  object-position: center center !important;
  padding: 4px !important;
  box-sizing: border-box !important;
}

body.woocommerce-cart .pmx-upsell__body,
body.woocommerce-checkout .pmx-upsell__body{
  gap: 2px !important;
  padding: 5px 6px 6px !important;
}

body.woocommerce-cart .pmx-upsell__tag,
body.woocommerce-checkout .pmx-upsell__tag{
  font-size: 6.5px !important;
  line-height: 1 !important;
  padding: 2px 4px !important;
}

body.woocommerce-cart .pmx-upsell__name,
body.woocommerce-checkout .pmx-upsell__name{
  font-size: 9.4px !important;
  line-height: 1.08 !important;
  min-height: 2.16em !important;
  max-height: 2.16em !important;
  overflow: hidden !important;
  display: -webkit-box !important;
  -webkit-box-orient: vertical !important;
  -webkit-line-clamp: 2 !important;
}

body.woocommerce-cart .pmx-upsell__price,
body.woocommerce-checkout .pmx-upsell__price{
  font-size: 11.8px !important;
  line-height: 1 !important;
  padding-top: 0 !important;
}

body.woocommerce-cart .pmx-upsell__price-amount,
body.woocommerce-checkout .pmx-upsell__price-amount{
  padding: 1px 5px !important;
}

body.woocommerce-cart .pmx-upsell__btn,
body.woocommerce-checkout .pmx-upsell__btn{
  min-height: 25px !important;
  padding: 5px 6px !important;
  border-radius: 8px !important;
  font-size: 9.4px !important;
  line-height: 1.05 !important;
}

@media (min-width: 981px){
  body.woocommerce-cart .pmx-upsell__grid,
  body.woocommerce-checkout .pmx-upsell__grid{
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 600px){
  body.woocommerce-cart .pmx-upsell,
  body.woocommerce-checkout .pmx-upsell{
    margin-top: 10px !important;
    padding: 7px 6px !important;
    border-radius: 14px !important;
  }

  body.woocommerce-cart .pmx-upsell__head,
  body.woocommerce-checkout .pmx-upsell__head{
    margin-bottom: 5px !important;
  }

  body.woocommerce-cart .pmx-upsell__title,
  body.woocommerce-checkout .pmx-upsell__title{
    font-size: 16px !important;
  }

  body.woocommerce-cart .pmx-upsell__shipmeter,
  body.woocommerce-checkout .pmx-upsell__shipmeter{
    margin: 4px auto 6px !important;
    padding: 5px 6px !important;
  }

  body.woocommerce-cart .pmx-upsell__grid,
  body.woocommerce-checkout .pmx-upsell__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 6px !important;
  }

  body.woocommerce-cart .pmx-upsell__imgwrap,
  body.woocommerce-checkout .pmx-upsell__imgwrap{
    height: clamp(82px, 24vw, 96px) !important;
    margin: 4px 4px 0 !important;
    border-radius: 8px !important;
  }

  body.woocommerce-cart .pmx-upsell__img,
  body.woocommerce-checkout .pmx-upsell__img{
    padding: 4px !important;
  }

  body.woocommerce-cart .pmx-upsell__body,
  body.woocommerce-checkout .pmx-upsell__body{
    padding: 5px 5px 6px !important;
    gap: 2px !important;
  }

  body.woocommerce-cart .pmx-upsell__name,
  body.woocommerce-checkout .pmx-upsell__name{
    font-size: 9.2px !important;
    line-height: 1.08 !important;
  }

  body.woocommerce-cart .pmx-upsell__price,
  body.woocommerce-checkout .pmx-upsell__price{
    font-size: 11.6px !important;
  }

  body.woocommerce-cart .pmx-upsell__btn,
  body.woocommerce-checkout .pmx-upsell__btn{
    min-height: 24px !important;
    padding: 5px 5px !important;
    font-size: 9.2px !important;
  }
}
