/* =============================================
   OKU ELECTRONICS — PREMIUM CART
   CLEAN SINGLE FILE — replaces all previous versions
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700&family=DM+Mono:wght@400;500&display=swap');

:root {
  --teal:        #186E70;
  --teal-dark:   #0f4e50;
  --teal-light:  #e8f4f4;
  --white:       #ffffff;
  --grey-50:     #f8f9fa;
  --grey-100:    #f0f2f3;
  --grey-200:    #e4e6e8;
  --grey-300:    #cdd0d4;
  --grey-500:    #8a9099;
  --grey-700:    #4a5158;
  --grey-900:    #1a1e22;
  --green-bg:    #eaf7ee;
  --green-text:  #1a7a3c;
  --red:         #d93025;
  --r-sm:        8px;
  --r-md:        12px;
  --r-pill:      100px;
  --shadow-sm:   0 1px 4px rgba(0,0,0,0.07);
  --shadow-md:   0 4px 16px rgba(0,0,0,0.09);
  --font:        'DM Sans', system-ui, sans-serif;
  --mono:        'DM Mono', 'Courier New', monospace;
  --ease:        0.2s cubic-bezier(0.4,0,0.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* NAV */
.oku-nav { background: var(--white); border-bottom: 1px solid var(--grey-200); position: sticky; top: 0; z-index: 200; box-shadow: var(--shadow-sm); }
.oku-nav__inner { max-width: 1280px; margin: 0 auto; padding: 0 24px; height: 64px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.oku-nav__logo { font-family: var(--font); font-weight: 700; font-size: 1.2rem; color: var(--teal); letter-spacing: -0.4px; text-decoration: none; display: flex; align-items: center; gap: 8px; white-space: nowrap; }
.oku-nav__logo-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--teal); flex-shrink: 0; }
.oku-nav__steps { display: flex; align-items: center; font-size: 0.78rem; font-weight: 500; font-family: var(--font); }
.oku-nav__step { display: flex; align-items: center; gap: 6px; color: var(--grey-500); white-space: nowrap; }
.oku-nav__step.active { color: var(--teal); font-weight: 600; }
.oku-nav__step-num { width: 22px; height: 22px; border-radius: 50%; background: var(--grey-200); color: var(--grey-500); font-size: 0.72rem; font-weight: 600; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.oku-nav__step.active .oku-nav__step-num { background: var(--teal); color: var(--white); }
.oku-nav__step-sep { width: 28px; height: 1px; background: var(--grey-200); margin: 0 8px; flex-shrink: 0; }
.oku-nav__secure { display: flex; align-items: center; gap: 6px; font-size: 0.78rem; color: var(--grey-500); font-family: var(--font); white-space: nowrap; }
.oku-nav__secure svg { color: var(--teal); flex-shrink: 0; }

/* PAGE */
.oku-page { max-width: 1280px; margin: 0 auto; padding: 32px 24px 100px; font-family: var(--font); }
.oku-page .woocommerce-notices-wrapper { margin-bottom: 16px; }
.oku-page__title { font-size: 1.6rem; font-weight: 700; color: var(--grey-900); letter-spacing: -0.4px; margin-bottom: 6px; line-height: 1.2; font-family: var(--font); }
.oku-page__meta { font-size: 0.88rem; color: var(--grey-500); margin-bottom: 28px; font-family: var(--font); }
.oku-page__meta strong { color: var(--grey-700); font-weight: 600; }
.oku-grid { display: grid; grid-template-columns: 1fr 360px; gap: 28px; align-items: start; }
.oku-section-label { font-family: var(--font); font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--grey-500); margin-bottom: 10px; }

/* ITEMS */
.oku-items { display: flex; flex-direction: column; gap: 12px; list-style: none; }
.oku-item { background: var(--white); border-radius: var(--r-md); border: 1px solid var(--grey-200); padding: 20px; display: grid; grid-template-columns: 88px 1fr; gap: 18px; box-shadow: var(--shadow-sm); transition: box-shadow var(--ease), border-color var(--ease), transform var(--ease); }
.oku-item:hover { box-shadow: var(--shadow-md); border-color: var(--grey-300); transform: translateY(-1px); }
.oku-item__img-wrap { width: 88px; height: 88px; border-radius: var(--r-sm); overflow: hidden; background: var(--grey-100); border: 1px solid var(--grey-200); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.oku-item__img-wrap a { display: block; width: 100%; height: 100%; }
.oku-item__img-wrap img { width: 100% !important; height: 100% !important; object-fit: contain !important; display: block !important; transition: transform 0.3s ease; }
.oku-item:hover .oku-item__img-wrap img { transform: scale(1.05); }
.oku-item__body { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.oku-item__top { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; }
.oku-item__name, a.oku-item__name { font-family: var(--font); font-size: 0.95rem; font-weight: 600; color: var(--grey-900); line-height: 1.35; text-decoration: none; display: block; transition: color var(--ease); }
.oku-item__name:hover, a.oku-item__name:hover { color: var(--teal); }
.oku-item__sku { font-size: 0.75rem; color: var(--grey-500); font-family: var(--mono); margin-top: 3px; }
.woocommerce-cart-item__data, dl.variation { font-size: 0.78rem !important; color: var(--grey-500) !important; margin-top: 4px !important; }

/* Remove btn */
.oku-item__remove, a.oku-item__remove, .oku-items .remove { background: none !important; border: none !important; cursor: pointer; color: var(--grey-300) !important; padding: 4px; border-radius: 6px; display: flex !important; align-items: center; justify-content: center; transition: color var(--ease), background var(--ease); flex-shrink: 0; text-decoration: none !important; font-size: 0 !important; width: 28px; height: 28px; }
.oku-item__remove:hover, a.oku-item__remove:hover, .oku-items .remove:hover { color: var(--red) !important; background: #fff0ef !important; }
.oku-item__remove svg { display: block; }

/* Badges */
.oku-item__badges { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.badge { display: inline-flex; align-items: center; gap: 4px; font-size: 0.72rem; font-weight: 600; padding: 3px 9px; border-radius: var(--r-pill); line-height: 1; font-family: var(--font); }
.badge--green { background: var(--green-bg); color: var(--green-text); }
.badge--teal  { background: var(--teal-light); color: var(--teal); }
.badge--red   { background: #fff0ef; color: var(--red); }
.badge--dot::before { content: ''; width: 5px; height: 5px; border-radius: 50%; background: currentColor; display: inline-block; }

/* pi-edd — desktop only */
.pi-edd, .pi-edd.pi-edd-cart, div[id^="pi-estimate-"] {
  background: #eafaf1 !important; border: 1px solid #a7f3d0 !important; color: #065f46 !important;
  border-radius: 20px !important; padding: 3px 10px !important; font-size: 11px !important;
  font-weight: 500 !important; font-family: var(--font) !important; display: inline-flex !important;
  align-items: center !important; line-height: 1.4 !important; width: auto !important;
  white-space: normal !important; margin-top: 4px !important;
}

/* Bottom row */
.oku-item__bottom { display: flex; align-items: center; justify-content: space-between; gap: 12px; margin-top: 4px; flex-wrap: wrap; }

/* Qty */
.oku-qty { display: inline-flex; align-items: center; background: var(--grey-100); border-radius: var(--r-pill); border: 1px solid var(--grey-200); height: 36px; overflow: hidden; }
.oku-qty__btn { background: none; border: none; cursor: pointer; width: 36px; min-width: 36px; max-width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 400; color: var(--grey-700); transition: background var(--ease), color var(--ease); user-select: none; flex-shrink: 0; padding: 0; line-height: 1; }
.oku-qty__btn:hover { background: var(--grey-200); color: var(--grey-900); }
.oku-qty__btn:disabled { opacity: 0.35; cursor: not-allowed; }
.oku-qty__val, .oku-qty input.qty { width: 36px !important; min-width: 36px !important; text-align: center !important; font-size: 0.9rem !important; font-weight: 600 !important; color: var(--grey-900) !important; border: none !important; background: none !important; font-family: var(--font) !important; -moz-appearance: textfield !important; appearance: textfield !important; padding: 0 !important; height: 36px !important; box-shadow: none !important; outline: none !important; }
.oku-qty__val::-webkit-outer-spin-button, .oku-qty__val::-webkit-inner-spin-button,
.oku-qty input.qty::-webkit-outer-spin-button, .oku-qty input.qty::-webkit-inner-spin-button { -webkit-appearance: none; }

/* Pricing */
.oku-item__pricing { display: flex; align-items: center; gap: 10px; }
.oku-item__unit { font-size: 0.8rem; color: var(--grey-500); font-family: var(--font); text-decoration: none !important; }
.oku-item__unit del, .oku-item__unit ins, .oku-item__unit * { text-decoration: none !important; color: var(--grey-500) !important; font-family: var(--mono) !important; font-size: 0.8rem !important; }
.oku-item__subtotal { font-size: 1.05rem; font-weight: 700; color: var(--grey-900); font-family: var(--mono); white-space: nowrap; }
.oku-item__subtotal bdi, .oku-item__subtotal .woocommerce-Price-amount { font-family: var(--mono) !important; font-weight: 700 !important; color: var(--grey-900) !important; }

/* COUPON */
.oku-coupon { background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--r-md); padding: 16px 20px; box-shadow: var(--shadow-sm); margin-top: 16px; }
.oku-coupon__label { font-size: 0.82rem; font-weight: 600; color: var(--grey-700); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; font-family: var(--font); }
.oku-coupon__row { display: flex; gap: 8px; }
.oku-coupon__input { flex: 1; height: 40px; border: 1px solid var(--grey-300) !important; border-radius: var(--r-sm) !important; padding: 0 14px !important; font-family: var(--font) !important; font-size: 0.88rem !important; color: var(--grey-900) !important; outline: none; background: var(--grey-50) !important; box-shadow: none !important; transition: border-color var(--ease), box-shadow var(--ease); }
.oku-coupon__input:focus { border-color: var(--teal) !important; box-shadow: 0 0 0 3px rgba(24,110,112,0.12) !important; background: var(--white) !important; }
.oku-coupon__input::placeholder { color: var(--grey-300); }
.oku-coupon__btn { height: 40px; padding: 0 18px; background: var(--grey-100); border: 1px solid var(--grey-300) !important; border-radius: var(--r-sm) !important; font-family: var(--font) !important; font-size: 0.85rem; font-weight: 600; color: var(--grey-700); cursor: pointer; white-space: nowrap; transition: background var(--ease), border-color var(--ease), color var(--ease); }
.oku-coupon__btn:hover { background: var(--teal) !important; border-color: var(--teal) !important; color: var(--white) !important; }

/* SUMMARY */
.oku-summary { position: sticky; top: 88px; background: var(--white); border: 1px solid var(--grey-200); border-radius: var(--r-md); box-shadow: var(--shadow-md); overflow: hidden; }
.oku-summary__head { padding: 18px 22px 14px; border-bottom: 1px solid var(--grey-100); font-size: 1rem; font-weight: 700; color: var(--grey-900); font-family: var(--font); }
.oku-summary__body { padding: 20px 22px; }
.oku-summary__delivery { background: var(--green-bg); border-radius: var(--r-sm); padding: 10px 14px; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; font-size: 0.82rem; color: var(--green-text); font-weight: 500; font-family: var(--font); }
.oku-summary__delivery svg { flex-shrink: 0; }
.oku-summary__rows { display: flex; flex-direction: column; gap: 12px; margin-bottom: 16px; }
.oku-summary__row { display: flex; align-items: center; justify-content: space-between; font-size: 0.88rem; color: var(--grey-700); font-family: var(--font); gap: 8px; }
.oku-summary__row-label { display: flex; align-items: center; gap: 6px; }
.oku-summary__row-val { font-weight: 500; color: var(--grey-900); font-family: var(--mono); text-align: right; }
.oku-summary__row-val .woocommerce-Price-amount { font-family: var(--mono); }
.oku-summary__divider { height: 1px; background: var(--grey-100); margin: 14px 0; }
.oku-summary__total { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; gap: 8px; }
.oku-summary__total-label { font-size: 1rem; font-weight: 700; color: var(--grey-900); font-family: var(--font); }
.oku-summary__total-val { font-size: 1.35rem; font-weight: 700; color: var(--grey-900); font-family: var(--mono); }
.oku-summary__total-val .woocommerce-Price-amount { font-family: var(--mono); }
.oku-summary__tax { font-size: 0.72rem; color: var(--grey-500); text-align: right; margin-bottom: 18px; }

/* Shipping methods */
.oku-summary__row:has(#shipping_method), .oku-summary__row:has(.woocommerce-shipping-methods) { flex-direction: column; align-items: flex-start; gap: 6px; }
.oku-summary__row-val:has(#shipping_method), .oku-summary__row-val:has(.woocommerce-shipping-methods) { display: block; width: 100%; text-align: left; font-weight: normal; }
#shipping_method, ul.woocommerce-shipping-methods { list-style: none !important; padding: 0 !important; margin: 4px 0 0 0 !important; display: flex !important; flex-direction: column !important; gap: 5px !important; width: 100% !important; }
#shipping_method li, ul.woocommerce-shipping-methods li { display: flex !important; align-items: center !important; border: 1.5px solid var(--grey-200) !important; border-radius: 8px !important; background: var(--white) !important; transition: border-color 0.15s, background 0.15s !important; cursor: pointer !important; margin: 0 !important; padding: 0 !important; }
#shipping_method li:has(input:checked), ul.woocommerce-shipping-methods li:has(input:checked) { border-color: var(--teal) !important; background: var(--teal-light) !important; }
#shipping_method li:hover, ul.woocommerce-shipping-methods li:hover { border-color: var(--teal) !important; background: var(--teal-light) !important; }
#shipping_method li input[type="radio"], ul.woocommerce-shipping-methods li input[type="radio"] { flex-shrink: 0 !important; accent-color: var(--teal) !important; width: 14px !important; height: 14px !important; margin: 0 0 0 10px !important; cursor: pointer !important; }
#shipping_method li label, ul.woocommerce-shipping-methods li label { flex: 1 !important; display: flex !important; align-items: center !important; justify-content: space-between !important; gap: 6px !important; padding: 8px 10px 8px 7px !important; font-size: 11.5px !important; font-weight: 500 !important; color: var(--grey-900) !important; line-height: 1.3 !important; cursor: pointer !important; margin: 0 !important; font-family: var(--font) !important; }
#shipping_method li label .woocommerce-Price-amount, ul.woocommerce-shipping-methods li label .woocommerce-Price-amount { font-weight: 700 !important; color: var(--teal) !important; font-family: var(--mono) !important; white-space: nowrap !important; flex-shrink: 0 !important; font-size: 11px !important; }
#shipping_method li:first-child label::after, ul.woocommerce-shipping-methods li:first-child label::after { content: "FREE" !important; display: inline-flex !important; align-items: center !important; background: #ecfdf5 !important; color: #065f46 !important; border: 1px solid #a7f3d0 !important; font-size: 9px !important; font-weight: 700 !important; padding: 2px 6px !important; border-radius: 4px !important; white-space: nowrap !important; flex-shrink: 0 !important; font-family: var(--font) !important; letter-spacing: 0.05em !important; }
p.woocommerce-shipping-destination { font-size: 11px !important; color: var(--grey-500) !important; margin: 5px 0 0 0 !important; font-family: var(--font) !important; }

/* BUTTONS */
.oku-btn-checkout, a.oku-btn-checkout { display: flex !important; align-items: center !important; justify-content: center !important; gap: 10px !important; width: 100% !important; height: 52px !important; background: var(--teal) !important; color: var(--white) !important; border: none !important; border-radius: var(--r-pill) !important; font-family: var(--font) !important; font-size: 1rem !important; font-weight: 700 !important; cursor: pointer !important; text-decoration: none !important; transition: background var(--ease), box-shadow var(--ease), transform var(--ease) !important; box-shadow: 0 4px 14px rgba(24,110,112,0.35) !important; margin-top: 16px !important; }
.oku-btn-checkout:hover, a.oku-btn-checkout:hover { background: var(--teal-dark) !important; box-shadow: 0 6px 20px rgba(24,110,112,0.45) !important; transform: translateY(-1px) !important; color: var(--white) !important; }
.oku-btn-continue, a.oku-btn-continue { display: flex !important; align-items: center !important; justify-content: center !important; gap: 6px !important; width: 100% !important; height: 40px !important; background: none !important; border: 1px solid var(--grey-200) !important; border-radius: var(--r-pill) !important; font-family: var(--font) !important; font-size: 0.85rem !important; font-weight: 600 !important; color: var(--grey-700) !important; cursor: pointer !important; text-decoration: none !important; margin-top: 10px !important; transition: border-color var(--ease), color var(--ease), background var(--ease) !important; }
.oku-btn-continue:hover, a.oku-btn-continue:hover { border-color: var(--teal) !important; color: var(--teal) !important; background: var(--teal-light) !important; }

/* Trust */
.oku-trust { display: flex; align-items: center; justify-content: center; gap: 6px; margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--grey-100); font-size: 0.72rem; color: var(--grey-500); font-weight: 500; font-family: var(--font); }
.oku-trust svg { color: var(--teal); }
.oku-pay-icons { display: flex; align-items: center; justify-content: center; gap: 5px; margin-top: 10px; flex-wrap: wrap; }
.oku-pay-icon { height: 22px; padding: 3px 8px; border: 1px solid var(--grey-200); border-radius: 5px; background: var(--white); font-size: 0.62rem; font-weight: 700; color: var(--grey-500); letter-spacing: 0.03em; display: flex; align-items: center; justify-content: center; font-family: var(--font); }

/* MOBILE CTA (footer-injected via functions.php) */
.oku-mobile-cta { display: none; position: fixed; bottom: 0; left: 0; right: 0; background: var(--white); border-top: 2px solid var(--grey-200); padding: 10px 16px 14px; box-shadow: 0 -4px 20px rgba(0,0,0,0.12); z-index: 99999; }
.oku-mobile-cta__inner { display: flex; align-items: center; gap: 12px; max-width: 600px; margin: 0 auto; }
.oku-mobile-cta__total { flex: 1; }
.oku-mobile-cta__total-label { display: block; font-size: 11px; color: var(--grey-500); font-family: var(--font); }
.oku-mobile-cta__total-val { display: block; font-size: 1.1rem; font-weight: 700; color: var(--grey-900); font-family: var(--mono); }
.oku-mobile-cta__total-val .woocommerce-Price-amount { font-family: var(--mono); }
.oku-mobile-cta .oku-btn-checkout { flex: 1.8; height: 46px !important; font-size: 0.9rem !important; margin-top: 0 !important; }

/* HIDE JUNK */
div[data-tooltip=""], #pi-overall-estimate-cart, p.order-estimated-delivery { display: none !important; }
.oku-cart-actions { display: none !important; }
.woocommerce-cart-form table.shop_table { display: none !important; }
.woocommerce-shipping-calculator { display: none !important; }
.cross-sells { display: none !important; }
.cart-collaterals { display: none !important; }

/* ANIMATIONS */
@keyframes okuFadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: translateY(0); } }
.oku-item { animation: okuFadeUp 0.3s ease both; }
.oku-item:nth-child(1) { animation-delay: 0.05s; }
.oku-item:nth-child(2) { animation-delay: 0.10s; }
.oku-item:nth-child(3) { animation-delay: 0.15s; }
.oku-item:nth-child(4) { animation-delay: 0.20s; }
.oku-item:nth-child(5) { animation-delay: 0.25s; }
.oku-summary { animation: okuFadeUp 0.35s 0.1s ease both; }

/* MISC */
.screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; }
.woocommerce-message, .woocommerce-error, .woocommerce-info { border-radius: var(--r-sm) !important; font-family: var(--font) !important; margin-bottom: 16px !important; }

/* ════════════ RESPONSIVE ════════════ */

@media (max-width: 1200px) {
  .oku-grid { grid-template-columns: 1fr 320px; }
}

@media (max-width: 960px) {
  .oku-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
  aside { display: none !important; }
  .oku-summary { display: none !important; }
  .oku-mobile-cta { display: block !important; }
  .oku-page { padding-bottom: 100px !important; }
  .oku-nav__steps { display: none !important; }
  /* Hide pi-edd — teal badge already shows this */
  .pi-edd, .pi-edd.pi-edd-cart, div[id^="pi-estimate-"] { display: none !important; }
}

@media (max-width: 768px) {
  .oku-page { padding: 16px 14px 100px !important; }
  .oku-page__title { font-size: 1.3rem !important; }
  .oku-page__meta { font-size: 0.82rem !important; margin-bottom: 14px !important; }
  .oku-nav__inner { padding: 0 14px !important; height: 54px !important; }
  .oku-nav__logo { font-size: 0.9rem !important; }
  .oku-nav__secure { display: none !important; }

  .oku-item { grid-template-columns: 76px 1fr !important; gap: 12px !important; padding: 14px !important; }
  .oku-item__img-wrap { width: 76px !important; height: 76px !important; }
  .oku-item__img-wrap img, .oku-item__img-wrap picture img { width: 76px !important; height: 76px !important; object-fit: contain !important; }
  .oku-item__name { font-size: 0.84rem !important; }
  .oku-item__sku { font-size: 0.68rem !important; }
  .badge { font-size: 0.64rem !important; padding: 2px 7px !important; }

  .oku-item__bottom { flex-wrap: nowrap !important; justify-content: space-between !important; align-items: center !important; gap: 10px !important; }

  .oku-qty { height: 34px !important; }
  .oku-qty__btn { width: 34px !important; min-width: 34px !important; max-width: 34px !important; height: 34px !important; font-size: 1.1rem !important; }
  .oku-qty__val, .oku-qty input.qty { width: 34px !important; min-width: 34px !important; height: 34px !important; }

  .oku-item__pricing { display: flex !important; flex-direction: column !important; align-items: flex-end !important; gap: 1px !important; flex-shrink: 0 !important; }
  .oku-item__unit { font-size: 0.7rem !important; white-space: nowrap !important; }
  .oku-item__subtotal { font-size: 1rem !important; white-space: nowrap !important; }

  .oku-coupon { padding: 12px 14px !important; margin-top: 12px !important; }
  .oku-coupon__row { flex-direction: row !important; gap: 8px !important; }
  .oku-coupon__input { height: 40px !important; font-size: 0.86rem !important; }
  .oku-coupon__btn { height: 40px !important; padding: 0 16px !important; font-size: 0.84rem !important; white-space: nowrap !important; }

  .oku-mobile-cta__total-val { font-size: 1rem !important; }
  .oku-mobile-cta .oku-btn-checkout { font-size: 0.88rem !important; height: 44px !important; }
}

@media (max-width: 380px) {
  .oku-item { grid-template-columns: 62px 1fr !important; padding: 12px !important; gap: 10px !important; }
  .oku-item__img-wrap { width: 62px !important; height: 62px !important; }
  .oku-item__img-wrap img, .oku-item__img-wrap picture img { width: 62px !important; height: 62px !important; }
  .oku-item__name { font-size: 0.8rem !important; }
  .oku-item__subtotal { font-size: 0.92rem !important; }
}




/*
 * Hide shipping zone list from order summary.
 * Paste at BOTTOM of oku-cart-woocommerce.css
 */

/* Hide the list, destination text, and "Choose Delivery Location:" */
#shipping_method,
ul.woocommerce-shipping-methods,
p.woocommerce-shipping-destination {
  display: none !important;
}

/* Fix the row back to horizontal */
.oku-summary__row:has(#shipping_method),
.oku-summary__row:has(.woocommerce-shipping-methods) {
  flex-direction: row !important;
  align-items: center !important;
  gap: 8px !important;
}

/* Fix the val span back to inline */
.oku-summary__row-val:has(#shipping_method),
.oku-summary__row-val:has(.woocommerce-shipping-methods) {
  display: block !important;
  width: auto !important;
  font-family: var(--font) !important;
  font-size: 0.78rem !important;
  color: var(--grey-500) !important;
  font-style: italic !important;
  font-weight: 400 !important;
  text-align: right !important;
}

/* Show "Calculated at checkout" as the value */
.oku-summary__row-val:has(#shipping_method)::after,
.oku-summary__row-val:has(.woocommerce-shipping-methods)::after {
  content: "Calculated at checkout" !important;
}