/* PARTH standalone purchase flow, based on the white checkout reference */
.parth-purchase-body {
  --bg: #fafaf8;
  --card: #ffffff;
  --card-2: #f4f4f0;
  --text: #1a1a1e;
  --text-2: #747684;
  --accent: #d58b30;
  --accent-dark: #a8661f;
  --accent-glow: rgba(213, 139, 48, 0.16);
  --border: #e8e8e3;
  --success: #059669;
  --warm-panel: #f4efe5;
  --shadow-soft: 0 18px 55px rgba(37, 31, 22, 0.08);
  --shadow-card: 0 10px 32px rgba(37, 31, 22, 0.07);
  --font-serif: "DM Serif Display", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-sans);
  line-height: 1.6;
  overflow-x: hidden;
}

.parth-purchase-body::before {
  content: "";
  position: fixed;
  inset: 60px 0 auto;
  height: 250px;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(244, 239, 229, 0.86), rgba(250, 250, 248, 0)),
    radial-gradient(circle at 32% 18%, rgba(213, 139, 48, 0.11), transparent 34%);
  pointer-events: none;
}

.parth-purchase-body .site-header,
.parth-purchase-body .site-footer {
  display: none !important;
}

.purchase-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  border-bottom: 1px solid var(--border);
  background: rgba(250, 250, 248, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.purchase-nav .nav-inner {
  max-width: 1200px;
  height: 60px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  margin: 0 auto;
  padding: 0 2rem;
}

.purchase-nav .logo {
  grid-column: 2;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: var(--text);
  font-family: var(--font-sans);
  font-size: 1.56rem;
  font-weight: 800;
  line-height: 0.92;
  letter-spacing: 0.09em;
  text-decoration: none;
}

.purchase-nav .logo span {
  margin-top: 0.22rem;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.42em;
}

.purchase-nav .nav-links {
  grid-column: 3;
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 1.45rem;
}

.purchase-nav .nav-links a {
  color: var(--text-2);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  text-decoration: none;
  transition: color 0.2s ease;
}

.purchase-nav .nav-links a:hover {
  color: var(--text);
}

.purchase-nav .cart-btn {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: transparent;
  color: var(--text) !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.purchase-nav .cart-btn svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linejoin: round;
  stroke-linecap: round;
}

.purchase-nav .cart-btn:hover {
  border-color: var(--accent);
  box-shadow: 0 0 20px var(--accent-glow);
}

.cart-badge {
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
}

.checkout-wrapper {
  max-width: 1140px;
  width: min(100% - 4rem, 1140px);
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 400px;
  gap: 1.6rem 2rem;
  margin: 68px auto 4rem;
  padding: 0;
}

.checkout-wrapper--checkout {
  grid-template-columns: 1fr;
}

.stepper {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  min-height: 54px;
  margin-bottom: 0;
}

.flow-heading {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1.5rem;
  align-items: end;
  margin: 1rem 0 0.2rem;
  padding: 1.4rem 1.55rem;
  border: 1px solid rgba(213, 139, 48, 0.18);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
}

.flow-eyebrow {
  display: inline-flex;
  margin-bottom: 0.55rem;
  color: var(--accent-dark);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.flow-heading h1 {
  margin: 0;
  color: var(--text);
  font-family: var(--font-serif);
  font-size: clamp(2.15rem, 4vw, 3.4rem);
  font-weight: 400;
  line-height: 0.94;
}

.flow-heading p {
  max-width: 620px;
  margin: 0.85rem 0 0;
  color: #666a73;
  font-size: 0.98rem;
  line-height: 1.55;
}

.flow-quick-facts {
  display: grid;
  gap: 0.55rem;
  min-width: 230px;
}

.flow-quick-facts span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.9rem;
  padding: 0.68rem 0.82rem;
  border: 1px solid rgba(213, 139, 48, 0.14);
  border-radius: 999px;
  background: rgba(244, 239, 229, 0.72);
  color: #626570;
  font-size: 0.78rem;
  font-weight: 700;
}

.flow-quick-facts strong {
  color: var(--text);
  font-variant-numeric: tabular-nums;
}

.step {
  position: relative;
  display: flex;
  align-items: center;
}

.step-dot {
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--border);
  border-radius: 50%;
  background: var(--card);
  color: var(--text-2);
  font-size: 0.75rem;
  font-weight: 700;
  transition: all 0.3s ease;
}

.step.active .step-dot {
  border-color: var(--accent);
  color: var(--accent);
  box-shadow: 0 0 16px var(--accent-glow);
}

.step.done .step-dot {
  border-color: var(--success);
  background: var(--success);
  color: #fff;
}

.step-label {
  position: absolute;
  top: 40px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--text-2);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}

.step.active .step-label {
  color: var(--accent);
}

.step.done .step-label {
  color: var(--success);
}

.step-line {
  width: 80px;
  height: 2px;
  background: var(--border);
}

.step-line.done {
  background: var(--success);
}

.woocommerce-notices-wrapper,
.checkout-wrapper > .woocommerce-message,
.checkout-wrapper > .woocommerce-error,
.checkout-wrapper > .woocommerce-info {
  grid-column: 1 / -1;
}

.parth-purchase-body .woocommerce-message,
.parth-purchase-body .woocommerce-info,
.parth-purchase-body .woocommerce-error {
  border: 1px solid var(--border) !important;
  border-top: 3px solid var(--accent) !important;
  border-radius: 14px;
  background: var(--card) !important;
  color: var(--text) !important;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.parth-purchase-body .woocommerce-error {
  border-top-color: #b45309 !important;
  background: #fff8ed !important;
}

.parth-cart-page .woocommerce-message .button,
.parth-cart-page .woocommerce-message a.button,
.parth-cart-page .woocommerce-message a[href*="cart"] {
  display: none !important;
}

.parth-cart-page .woocommerce-message {
  display: none !important;
}

.cart-form {
  display: contents;
}

.cart-form.is-syncing .checkout-btn,
.cart-form.is-syncing .promo-btn,
.cart-form.is-syncing .update-btn {
  pointer-events: none;
}

.cart-section h1,
.section-title,
.checkout-main-shell h3,
.woocommerce-billing-fields h3,
.woocommerce-additional-fields h3,
#order_review_heading {
  margin: 0 0 1rem;
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 1.48rem;
  font-weight: 400;
  line-height: 1.1;
}

.cart-item {
  display: grid;
  grid-template-columns: 116px minmax(0, 1fr) auto;
  gap: 1.35rem;
  align-items: center;
  margin-bottom: 1rem;
  padding: 1.2rem;
  border: 1px solid var(--border);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: var(--shadow-card);
  transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.cart-item:hover {
  border-color: rgba(213, 139, 48, 0.24);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.07);
  transform: translateY(-1px);
}

.cart-item.is-syncing {
  border-color: rgba(213, 139, 48, 0.22);
}

.cart-item.is-removing {
  opacity: 0.45;
  transform: translateY(0) scale(0.985);
}

.item-img {
  width: 116px;
  height: 116px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 16px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(26, 26, 30, 0.04);
}

.item-img picture {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.item-img img {
  width: calc(100% - 12px);
  height: calc(100% - 12px);
  object-fit: contain;
  display: block;
}

.item-title {
  display: inline-block;
  margin-bottom: 0.3rem;
  color: var(--text);
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
  text-decoration: none;
}

.item-title:hover {
  color: var(--accent);
}

.item-variant {
  max-width: 480px;
  margin: 0 0 0.6rem;
  color: var(--text-2);
  font-size: 0.8rem;
  line-height: 1.45;
}

.item-specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.spec-tag {
  padding: 4px 10px;
  border: 1px solid rgba(213, 139, 48, 0.18);
  border-radius: 999px;
  background: rgba(213, 139, 48, 0.11);
  color: var(--accent-dark);
  font-size: 0.7rem;
  font-weight: 600;
  white-space: nowrap;
}

.item-actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.8rem;
}

.item-price {
  color: var(--text);
  font-size: 1.2rem;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
}

.qty-control {
  display: flex;
  align-items: center;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: #fff;
}

.qty-control button {
  width: 34px;
  height: 34px;
  border: 0;
  background: var(--card-2);
  color: var(--text);
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.15s ease;
}

.qty-control button:hover {
  background: var(--border);
}

.qty-control .quantity {
  margin: 0 !important;
}

.qty-control input.qty {
  width: 38px !important;
  height: 34px !important;
  min-height: 34px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: #fff !important;
  color: var(--text) !important;
  text-align: center;
  font-size: 0.85rem;
  font-weight: 600;
  appearance: textfield;
}

.qty-control input.qty::-webkit-outer-spin-button,
.qty-control input.qty::-webkit-inner-spin-button {
  appearance: none;
  margin: 0;
}

.remove-btn {
  border: 0;
  background: none;
  color: var(--text-2);
  cursor: pointer;
  font-size: 0.75rem;
  text-decoration: underline;
  transition: color 0.2s ease;
}

.remove-btn:hover {
  color: #dc2626;
}

.continue-shopping {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  color: var(--text-2);
  font-size: 0.85rem;
  text-decoration: none;
  transition: color 0.2s ease;
}

.continue-shopping:hover {
  color: var(--accent);
}

.summary {
  position: sticky;
  top: 82px;
}

.summary-card,
.empty-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow-soft);
}

.summary-card {
  padding: 2rem 2rem 1.8rem;
}

.summary-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), rgba(213, 139, 48, 0.16));
}

.summary-card h2 {
  margin: 0 0 1.6rem;
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 1.42rem;
  font-weight: 400;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0.58rem 0;
  font-size: 0.9rem;
}

.summary-line.sub {
  color: var(--text-2);
}

.summary-line .discount,
.discount {
  color: var(--success);
}

.summary-divider {
  height: 1px;
  margin: 0.8rem 0;
  background: var(--border);
}

.summary-line.total {
  align-items: baseline;
  padding: 1rem 0 0.8rem;
  color: var(--text);
  font-size: 1.1rem;
  font-weight: 700;
}

.total-price {
  color: var(--accent);
  font-size: 1.55rem;
  font-variant-numeric: tabular-nums;
}

.shipping-bar {
  margin: 1.1rem 0;
  padding: 1rem;
  border: 1px solid rgba(213, 139, 48, 0.12);
  border-radius: 16px;
  background: var(--warm-panel);
}

.shipping-text {
  margin: 0 0 0.5rem;
  color: var(--text-2);
  font-size: 0.8rem;
  text-align: center;
}

.shipping-track {
  height: 4px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--border);
}

.shipping-fill {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  background: linear-gradient(90deg, var(--success), var(--accent));
}

.promo-row {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.promo-input {
  flex: 1;
  min-width: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #f7f6f1;
  color: var(--text);
  padding: 10px 14px;
  font: 0.85rem var(--font-sans);
  outline: none;
  transition: border-color 0.2s ease;
}

.promo-input:focus {
  border-color: var(--accent);
}

.promo-btn,
.update-btn {
  min-height: 40px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: transparent;
  color: var(--text);
  padding: 0 16px;
  cursor: pointer;
  font-size: 0.8rem;
  font-weight: 600;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.promo-btn:hover,
.update-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}

.update-btn {
  width: 100%;
  margin-bottom: 0.75rem;
}

.update-btn.is-loading {
  color: var(--accent);
  border-color: rgba(213, 139, 48, 0.35);
}

.checkout-btn,
.empty-card .checkout-btn,
.parth-purchase-body .woocommerce a.button,
.parth-purchase-body .woocommerce button.button,
.parth-purchase-body .woocommerce input.button,
.parth-purchase-body #place_order {
  width: 100%;
  min-height: 50px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border: 0 !important;
  border-radius: 999px !important;
  background: var(--accent) !important;
  color: #fff !important;
  padding: 0 18px !important;
  font: 700 1rem var(--font-sans) !important;
  letter-spacing: 0.02em;
  text-decoration: none !important;
  cursor: pointer;
  transition: box-shadow 0.3s ease, transform 0.3s ease, background 0.2s ease;
}

.checkout-btn:hover,
.parth-purchase-body .woocommerce a.button:hover,
.parth-purchase-body .woocommerce button.button:hover,
.parth-purchase-body .woocommerce input.button:hover,
.parth-purchase-body #place_order:hover {
  background: var(--accent-dark) !important;
  box-shadow: 0 14px 30px rgba(213, 139, 48, 0.26);
  transform: translateY(-1px);
}

.trust-badges {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 1.5rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--border);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  flex: 1;
  min-width: 0;
}

.trust-icon {
  min-width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border);
  border-radius: 8px;
  color: var(--text-2);
  font-size: 0.7rem;
  font-weight: 800;
}

.trust-text {
  color: var(--text-2);
  font-size: 0.65rem;
  line-height: 1.3;
  text-align: center;
}

.empty-cart-section {
  grid-column: 1 / -1;
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}

.empty-card {
  padding: 2.4rem;
}

.empty-card h2 {
  margin: 0 0 0.7rem;
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
}

.empty-card p {
  margin: 0 0 1.4rem;
  color: var(--text-2);
}

.checkout-main-shell {
  grid-column: 1 / -1;
}

.checkout-main-shell form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 390px;
  gap: 2rem;
  align-items: start;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.checkout-main-shell .woocommerce {
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.checkout-main-shell .col2-set,
.checkout-main-shell #order_review {
  width: auto !important;
  float: none !important;
}

.checkout-main-shell .col2-set {
  grid-column: 1;
  display: block !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.checkout-main-shell .woocommerce .col2-set,
.checkout-main-shell .woocommerce-page .col2-set,
.checkout-main-shell form.checkout > .col2-set {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.checkout-main-shell .col2-set .col-1,
.checkout-main-shell .col2-set .col-2 {
  width: 100% !important;
  max-width: none !important;
  float: none !important;
  margin: 0 !important;
}

.checkout-main-shell #order_review_heading,
.checkout-main-shell #order_review {
  grid-column: 2;
}

.checkout-main-shell #order_review {
  position: sticky;
  top: 82px;
}

.checkout-main-shell .woocommerce-billing-fields,
.checkout-main-shell .woocommerce-additional-fields,
.checkout-main-shell #order_review {
  border: 1px solid var(--border);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.9);
  padding: 2rem;
  box-shadow: var(--shadow-soft);
}

.checkout-main-shell .woocommerce-billing-fields {
  border-top: 4px solid rgba(213, 139, 48, 0.82);
}

.checkout-main-shell .woocommerce-additional-fields {
  margin-top: 1rem;
}

.checkout-main-shell #order_review_heading {
  display: none;
}

.checkout-main-shell #order_review::before {
  content: "Your order";
  display: block;
  margin: 0 0 1.45rem;
  color: var(--text);
  font-family: var(--font-serif);
  font-size: 1.42rem;
  font-weight: 400;
  line-height: 1.1;
}

.checkout-main-shell .woocommerce form .form-row label {
  color: var(--text-2);
  font-size: 0.8rem;
  font-weight: 600;
}

.checkout-main-shell .woocommerce form .form-row {
  margin: 0 0 0.95rem;
  padding: 0;
}

.checkout-main-shell .woocommerce form #billing_country_field {
  margin-bottom: 1.2rem;
}

.checkout-main-shell .woocommerce form .form-row-first,
.checkout-main-shell .woocommerce form .form-row-last {
  width: calc(50% - 0.5rem);
}

.checkout-main-shell .woocommerce form .form-row-first {
  margin-right: 1rem;
}

.checkout-main-shell .woocommerce input.input-text,
.checkout-main-shell .woocommerce textarea,
.checkout-main-shell .woocommerce select,
.checkout-main-shell .select2-container .select2-selection--single {
  min-height: 46px;
  width: 100%;
  border: 1px solid var(--border) !important;
  border-radius: 12px !important;
  background: #f7f6f1 !important;
  color: var(--text) !important;
  padding: 0 13px;
  font: 0.9rem var(--font-sans);
}

.checkout-main-shell .woocommerce #billing_country_field .woocommerce-input-wrapper {
  min-height: 46px;
  width: 100%;
  display: flex;
  align-items: center;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: #f7f6f1;
  color: var(--text);
  padding: 0 13px;
  font: 600 0.9rem var(--font-sans);
}

.checkout-main-shell .woocommerce textarea {
  min-height: 112px;
  padding-top: 12px;
}

.checkout-main-shell .woocommerce table.shop_table {
  border: 0 !important;
  border-collapse: collapse;
  margin-bottom: 1.25rem !important;
}

.checkout-main-shell .woocommerce table.shop_table th,
.checkout-main-shell .woocommerce table.shop_table td {
  border-color: var(--border) !important;
  color: var(--text);
  font-size: 0.88rem;
}

.checkout-main-shell .woocommerce table.shop_table tfoot tr:last-child th,
.checkout-main-shell .woocommerce table.shop_table tfoot tr:last-child td {
  color: var(--text);
  font-size: 1rem;
  font-weight: 800;
}

.checkout-main-shell .woocommerce-checkout-payment {
  border: 1px solid var(--border) !important;
  border-radius: 18px !important;
  background: var(--warm-panel) !important;
  padding: 1rem !important;
}

.checkout-main-shell .woocommerce-checkout-payment .woocommerce-info,
.checkout-main-shell .woocommerce-checkout-payment .woocommerce-error {
  margin: 0 !important;
  padding: 1rem 1.1rem 1rem 3rem !important;
  border-radius: 14px !important;
  font-size: 0.92rem;
  line-height: 1.55;
}

.checkout-main-shell #payment div.payment_box {
  background: #fff !important;
  color: var(--text-2) !important;
}

.checkout-main-shell #payment div.payment_box::before {
  border-bottom-color: #fff !important;
}

.parth-checkout-page #order_review .blockUI,
.parth-checkout-page .woocommerce-checkout-payment .blockUI {
  display: none !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

@media (max-width: 900px) {
  .checkout-wrapper,
  .checkout-main-shell form.checkout {
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
  }

  .checkout-wrapper > *,
  .checkout-main-shell,
  .checkout-main-shell .woocommerce,
  .checkout-main-shell form.checkout,
  .checkout-main-shell .col2-set,
  .checkout-main-shell #order_review,
  .cart-section,
  .summary {
    min-width: 0;
  }

  .flow-heading {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .flow-quick-facts {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    min-width: 0;
  }

  .flow-quick-facts span {
    justify-content: center;
  }

  .summary,
  .checkout-main-shell #order_review {
    position: static;
  }

  .checkout-main-shell #order_review_heading,
  .checkout-main-shell #order_review {
    grid-column: 1;
  }
}

@media (max-width: 640px) {
  .purchase-nav .nav-inner {
    height: 60px;
    grid-template-columns: 1fr auto 1fr;
    padding: 0 1rem;
  }

  .purchase-nav .nav-links {
    gap: 0.6rem;
  }

  .purchase-nav .nav-links a:not(.cart-btn) {
    display: none;
  }

  .checkout-wrapper {
    gap: 1.5rem;
    width: auto;
    max-width: none;
    margin: 68px 1rem 4rem;
  }

  .flow-heading {
    margin-top: 0.4rem;
    padding: 1.15rem;
    border-radius: 18px;
  }

  .flow-heading h1 {
    font-size: 2rem;
  }

  .flow-heading p {
    margin-top: 0.6rem;
    font-size: 0.9rem;
  }

  .flow-quick-facts {
    grid-template-columns: 1fr;
    gap: 0.45rem;
  }

  .flow-quick-facts span {
    justify-content: space-between;
    padding: 0.62rem 0.75rem;
  }

  .stepper {
    justify-content: flex-start;
    overflow-x: auto;
    min-height: 72px;
    padding-bottom: 0.65rem;
    margin-bottom: 0;
  }

  .step-line {
    width: 52px;
    flex: 0 0 52px;
  }

  .cart-item {
    grid-template-columns: 94px minmax(0, 1fr);
    align-items: start;
    padding: 1rem;
  }

  .item-img {
    width: 94px;
    height: 94px;
  }

  .item-actions {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .item-price {
    order: 2;
  }

  .remove-btn {
    order: 3;
  }

  .item-specs {
    gap: 0.45rem;
  }

  .summary-card,
  .checkout-main-shell .woocommerce-billing-fields,
  .checkout-main-shell .woocommerce-additional-fields,
  .checkout-main-shell #order_review {
    padding: 1.25rem;
    border-radius: 18px;
  }

  .promo-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .trust-badges {
    gap: 0.75rem;
  }
}

/* Native Union-inspired checkout shell, scoped to checkout only. */
.parth-checkout-page {
  --native-bg: #fff;
  --native-surface: #f6f6f6;
  --native-text: #111;
  --native-muted: #6f6f73;
  --native-line: #ddd;
  --native-accent: #ce8d37;
  background: var(--native-bg);
  color: var(--native-text);
  font-family: "Poppins", Arial, sans-serif;
}

.parth-checkout-page::before {
  display: none;
}

.parth-checkout-page .checkout-nav {
  position: relative;
  z-index: 1;
  border-bottom: 1px solid var(--native-line);
  background: var(--native-bg);
}

.parth-checkout-page .checkout-nav__inner {
  width: min(100% - 2rem, 1000px);
  min-height: 77px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.parth-checkout-page .checkout-nav__brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  color: var(--native-text);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
}

.parth-checkout-page .checkout-nav__brand small {
  margin-top: 0.38rem;
  font-size: 0.43rem;
  font-weight: 600;
  letter-spacing: 0.25em;
}

.parth-checkout-page .checkout-nav__cart {
  width: 32px;
  height: 32px;
  display: inline-grid;
  place-items: center;
  color: var(--native-accent);
}

.parth-checkout-page .checkout-nav__cart svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.parth-checkout-page .checkout-wrapper--checkout {
  width: 100%;
  max-width: none;
  display: block;
  margin: 0;
}

.parth-checkout-page .checkout-mobile-summary {
  display: none;
}

.parth-checkout-page .checkout-main-shell {
  width: 100%;
}

.parth-checkout-page .checkout-main-shell > .woocommerce,
.parth-checkout-page .checkout-main-shell .woocommerce-notices-wrapper {
  margin: 0;
  padding: 0;
}

.parth-checkout-page .checkout-main-shell form.checkout {
  display: grid;
  grid-template-columns: minmax(0, 53%) minmax(360px, 47%);
  gap: 0;
  align-items: start;
  margin: 0;
  padding: 0;
  background: linear-gradient(90deg, var(--native-bg) 0 53%, var(--native-surface) 53% 100%);
}

.parth-checkout-page .checkout-main-shell .col2-set {
  grid-column: 1;
  grid-row: 1;
  width: min(500px, calc(100% - 3rem)) !important;
  margin: 0 auto !important;
  padding: 42px 0 24px !important;
}

.parth-checkout-page .checkout-main-shell .woocommerce-billing-fields,
.parth-checkout-page .checkout-main-shell .woocommerce-additional-fields {
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.parth-checkout-page .checkout-main-shell .woocommerce-additional-fields {
  margin-top: 1.9rem;
}

.parth-checkout-page .checkout-main-shell h3,
.parth-checkout-page .checkout-main-shell .woocommerce-billing-fields h3,
.parth-checkout-page .checkout-main-shell .woocommerce-additional-fields h3 {
  margin: 0 0 0.9rem;
  color: var(--native-text);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.25;
}

.parth-checkout-page .checkout-main-shell .woocommerce form .form-row {
  margin: 0 0 0.68rem;
  padding: 0;
}

.parth-checkout-page .checkout-main-shell .woocommerce form .form-row label {
  margin: 0 0 0.32rem;
  color: var(--native-muted);
  font-size: 0.73rem;
  font-weight: 400;
}

.parth-checkout-page .checkout-main-shell .woocommerce form .form-row .required {
  color: var(--native-accent);
}

.parth-checkout-page .checkout-main-shell .woocommerce input.input-text,
.parth-checkout-page .checkout-main-shell .woocommerce textarea,
.parth-checkout-page .checkout-main-shell .woocommerce select,
.parth-checkout-page .checkout-main-shell .select2-container .select2-selection--single,
.parth-checkout-page .checkout-main-shell .woocommerce #billing_country_field .woocommerce-input-wrapper {
  min-height: 50px;
  border: 1px solid var(--native-line) !important;
  border-radius: 12px !important;
  background: #fff !important;
  color: var(--native-text) !important;
  box-shadow: none;
  font: 400 0.84rem "Poppins", Arial, sans-serif;
}

.parth-checkout-page .checkout-main-shell .woocommerce input.input-text,
.parth-checkout-page .checkout-main-shell .woocommerce textarea,
.parth-checkout-page .checkout-main-shell .woocommerce select {
  padding: 0 12px;
}

.parth-checkout-page .checkout-main-shell .woocommerce textarea {
  min-height: 100px;
  padding-top: 12px;
}

.parth-checkout-page .checkout-main-shell .woocommerce input.input-text:focus,
.parth-checkout-page .checkout-main-shell .woocommerce textarea:focus,
.parth-checkout-page .checkout-main-shell .woocommerce select:focus,
.parth-checkout-page .checkout-main-shell .select2-container--focus .select2-selection--single {
  border-color: var(--native-accent) !important;
  outline: 1px solid var(--native-accent);
  outline-offset: 0;
}

.parth-checkout-page .checkout-main-shell .woocommerce form .form-row-first,
.parth-checkout-page .checkout-main-shell .woocommerce form .form-row-last {
  width: calc(50% - 0.4rem);
}

.parth-checkout-page .checkout-main-shell .woocommerce form .form-row-first {
  margin-right: 0.8rem;
}

.parth-checkout-page .checkout-main-shell #order_review_heading {
  display: none;
}

.parth-checkout-page .checkout-main-shell #order_review {
  grid-column: 2;
  grid-row: 1 / span 2;
  width: min(400px, calc(100% - 4rem));
  min-height: calc(100vh - 77px);
  margin: 0 0 0 40px;
  padding: 42px 0 48px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.parth-checkout-page .checkout-main-shell #order_review::before {
  content: "Order summary";
  display: block;
  margin: 0 0 1.35rem;
  color: var(--native-text);
  font-family: "Poppins", Arial, sans-serif;
  font-size: 1rem;
  font-weight: 600;
}

.parth-checkout-page .checkout-main-shell .woocommerce table.shop_table {
  margin: 0 0 1.5rem !important;
  border: 0 !important;
  border-collapse: collapse;
}

.parth-checkout-page .checkout-main-shell .woocommerce table.shop_table th,
.parth-checkout-page .checkout-main-shell .woocommerce table.shop_table td {
  padding: 0.62rem 0;
  border-color: var(--native-line) !important;
  color: var(--native-text);
  font-size: 0.8rem;
  font-weight: 400;
}

.parth-checkout-page .checkout-main-shell .woocommerce table.shop_table thead {
  display: none;
}

.parth-checkout-page .checkout-main-shell .woocommerce table.shop_table tbody th {
  font-weight: 500;
}

.parth-checkout-page .checkout-main-shell .woocommerce table.shop_table tfoot tr:last-child th,
.parth-checkout-page .checkout-main-shell .woocommerce table.shop_table tfoot tr:last-child td {
  padding-top: 1rem;
  color: var(--native-text);
  font-size: 1.02rem;
  font-weight: 700;
}

.parth-checkout-page .checkout-main-shell .woocommerce-checkout-payment {
  margin-top: 1.8rem;
  padding: 0;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.parth-checkout-page .checkout-main-shell .woocommerce-checkout-payment::before {
  content: "Payment";
  display: block;
  margin: 0 0 0.32rem;
  color: var(--native-text);
  font-size: 1.12rem;
  font-weight: 600;
}

.parth-checkout-page .checkout-main-shell .woocommerce-checkout-payment .wc_payment_methods {
  margin: 0;
  border: 1px solid var(--native-line);
  border-radius: 12px;
  background: #fff;
}

.parth-checkout-page .checkout-main-shell .woocommerce-checkout-payment .wc_payment_method {
  padding: 0.85rem 0.95rem;
  border-color: var(--native-line) !important;
}

.parth-checkout-page .checkout-main-shell #payment div.payment_box {
  margin: 0.7rem 0 0;
  padding: 0.8rem;
  border: 1px solid var(--native-line);
  border-radius: 10px;
  background: var(--native-surface) !important;
  color: var(--native-muted) !important;
}

.parth-checkout-page .checkout-main-shell #payment div.payment_box::before {
  display: none;
}

.parth-checkout-page .checkout-main-shell #place_order {
  min-height: 52px !important;
  margin-top: 1.15rem;
  border-radius: 12px !important;
  background: var(--native-accent) !important;
  color: #fff !important;
  box-shadow: none;
  font: 600 0.92rem "Poppins", Arial, sans-serif !important;
}

.parth-checkout-page .checkout-main-shell #place_order:hover {
  background: #b8792c !important;
  box-shadow: none;
  transform: none;
}

.parth-checkout-page .checkout-main-shell .woocommerce-privacy-policy-text {
  color: var(--native-muted);
  font-size: 0.72rem;
}

.parth-checkout-page .checkout-policy-links {
  width: min(500px, calc(53% - 3rem));
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1.1rem;
  margin: -4.5rem auto 2rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--native-line);
}

.parth-checkout-page .checkout-policy-links a {
  color: var(--native-accent);
  font-size: 0.73rem;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .parth-checkout-page .checkout-mobile-summary {
    min-height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 1.5rem;
    border-bottom: 1px solid var(--native-line);
    background: var(--native-surface);
    color: var(--native-text);
    font-size: 0.8rem;
  }

  .parth-checkout-page .checkout-mobile-summary span::after {
    content: "\\2304";
    margin-left: 0.55rem;
    color: var(--native-accent);
    font-size: 1rem;
  }

  .parth-checkout-page .checkout-mobile-summary strong {
    font-size: 1rem;
    font-weight: 700;
  }

  .parth-checkout-page .checkout-main-shell form.checkout {
    display: flex;
    flex-direction: column;
    background: var(--native-bg);
  }

  .parth-checkout-page .checkout-main-shell .col2-set,
  .parth-checkout-page .checkout-main-shell #order_review {
    width: min(552px, calc(100% - 3rem)) !important;
    min-height: 0;
    margin: 0 auto !important;
  }

  .parth-checkout-page .checkout-main-shell .col2-set {
    order: 1;
    padding: 2rem 0 0 !important;
  }

  .parth-checkout-page .checkout-main-shell #order_review {
    order: 2;
    padding: 1.8rem 0 0;
  }

  .parth-checkout-page .checkout-main-shell #order_review::before {
    display: none;
  }

  .parth-checkout-page .checkout-policy-links {
    width: min(552px, calc(100% - 3rem));
    margin: 2rem auto;
  }
}

@media (max-width: 640px) {
  .parth-checkout-page .checkout-nav__inner {
    width: calc(100% - 1.75rem);
    min-height: 77px;
  }

  .parth-checkout-page .checkout-mobile-summary {
    padding: 0 0.9rem;
  }

  .parth-checkout-page .checkout-main-shell .col2-set,
  .parth-checkout-page .checkout-main-shell #order_review {
    width: calc(100% - 1.75rem) !important;
  }

  .parth-checkout-page .checkout-main-shell .woocommerce form .form-row-first,
  .parth-checkout-page .checkout-main-shell .woocommerce form .form-row-last {
    width: 100%;
    margin-right: 0;
  }

  .parth-checkout-page .checkout-main-shell .woocommerce input.input-text,
  .parth-checkout-page .checkout-main-shell .woocommerce textarea,
  .parth-checkout-page .checkout-main-shell .woocommerce select,
  .parth-checkout-page .checkout-main-shell .select2-container .select2-selection--single,
  .parth-checkout-page .checkout-main-shell .woocommerce #billing_country_field .woocommerce-input-wrapper {
    min-height: 50px;
  }

  .parth-checkout-page .checkout-policy-links {
    width: calc(100% - 1.75rem);
  }
}

/* Checkout field and order-summary refinements. */
.parth-checkout-page .checkout-main-shell #billing_country_field .woocommerce-input-wrapper {
  min-height: 0;
  display: block;
  padding: 0;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

.parth-checkout-page .checkout-main-shell #billing_country_field .select2-container {
  width: 100% !important;
}

.parth-checkout-page .checkout-main-shell #billing_country_field .select2-selection--single {
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 0 12px;
}

.parth-checkout-page .checkout-main-shell #billing_country_field .select2-selection__rendered {
  padding: 0 !important;
  color: var(--native-text);
  font: 400 0.84rem "Poppins", Arial, sans-serif;
  line-height: normal !important;
}

.parth-checkout-page .checkout-main-shell #billing_country_field .select2-selection__arrow {
  height: 48px;
  right: 10px;
}

.parth-checkout-page .checkout-main-shell #billing_country_field .woocommerce-input-wrapper > strong {
  width: 100%;
  min-height: 50px;
  display: flex;
  align-items: center;
  padding: 0 12px;
  border: 1px solid var(--native-line);
  border-radius: 12px;
  background: #fff;
  color: var(--native-text);
  font: 400 0.84rem "Poppins", Arial, sans-serif;
}

.parth-checkout-page .checkout-main-shell .woocommerce table.shop_table .product-name,
.parth-checkout-page .checkout-main-shell .woocommerce table.shop_table .product-total {
  vertical-align: middle;
}

.parth-checkout-page .checkout-main-shell .woocommerce table.shop_table .product-total {
  text-align: right;
  white-space: nowrap;
}

.parth-checkout-page .checkout-order-product {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.parth-checkout-page .checkout-order-product-image {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  display: block;
  object-fit: contain;
  border: 1px solid var(--native-line);
  border-radius: 10px;
  background: #fff;
}

.parth-checkout-page .checkout-order-product__name {
  min-width: 0;
  color: var(--native-text);
  font-size: 0.8rem;
  line-height: 1.4;
}

.parth-checkout-page .checkout-main-shell .woocommerce-checkout-payment .wc_payment_method {
  min-height: 62px;
  display: flex;
  align-items: center;
}

.parth-checkout-page .checkout-main-shell .woocommerce-checkout-payment .wc_payment_method > label {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--native-text);
  font-weight: 600;
}

.parth-checkout-page .checkout-main-shell .woocommerce-checkout-payment .wc_payment_method input[type="radio"] {
  margin-right: 8px;
  accent-color: var(--native-accent);
}

.parth-checkout-page .checkout-main-shell #payment .payment_box.payment_method_paypal {
  margin: 8px 0 0;
  padding: 11px 13px;
  border: 1px solid var(--native-line);
  border-radius: 10px;
  background: var(--native-surface) !important;
  color: var(--native-muted) !important;
  font-size: 0.78rem;
  line-height: 1.5;
}

@media (max-width: 640px) {
  .parth-checkout-page .checkout-order-product-image {
    width: 50px;
    height: 50px;
    flex-basis: 50px;
  }
}

/* Final order-summary composition. */
.parth-checkout-page .checkout-main-shell #order_review {
  width: min(440px, calc(100% - 4rem)) !important;
  margin: 0 0 0 40px !important;
  padding: 42px 0 48px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.parth-checkout-page .checkout-main-shell #order_review::before {
  margin-bottom: 1rem;
  font-size: 1.05rem;
}

.parth-checkout-page .checkout-main-shell .woocommerce table.shop_table {
  table-layout: fixed;
}

.parth-checkout-page .checkout-main-shell .woocommerce table.shop_table tbody .product-name {
  display: flex !important;
  align-items: center !important;
  gap: 12px !important;
  padding: 14px 0 !important;
}

.parth-checkout-page .checkout-main-shell .woocommerce table.shop_table tbody .product-total {
  width: 96px !important;
  padding: 14px 0 !important;
  text-align: right !important;
}

.parth-checkout-page .checkout-order-product {
  min-width: 0;
  display: flex !important;
  flex: 1 1 auto;
  align-items: center !important;
  gap: 14px !important;
}

.parth-checkout-page .checkout-order-product-image {
  width: 78px !important;
  height: 78px !important;
  flex: 0 0 78px !important;
  padding: 5px !important;
  object-fit: contain !important;
  object-position: center !important;
}

.parth-checkout-page .checkout-order-product__name {
  min-width: 0;
  font-size: 0.86rem !important;
  font-weight: 500 !important;
  line-height: 1.45 !important;
}

.parth-checkout-page .checkout-main-shell .woocommerce table.shop_table tbody .checkout-order-product__quantity,
.parth-checkout-page .checkout-main-shell .woocommerce table.shop_table tbody .product-quantity {
  flex: 0 0 auto;
  margin: 0 !important;
  color: var(--native-muted);
  font-size: 0.72rem !important;
  font-weight: 600;
  white-space: nowrap;
}

.parth-checkout-page #ship-to-different-address > label {
  display: flex !important;
  align-items: center !important;
  gap: 9px;
}

.parth-checkout-page #ship-to-different-address > label > span {
  color: transparent !important;
  font-size: 0 !important;
}

.parth-checkout-page #ship-to-different-address > label > span::after {
  content: "Ship to a different address?" !important;
  display: inline !important;
  color: var(--native-text) !important;
  font-size: 0.95rem !important;
  font-weight: 600 !important;
}

.parth-checkout-page .checkout-policy-links {
  position: static !important;
  clear: both;
  width: min(500px, calc(53% - 3rem));
  margin: 2rem auto 3rem !important;
}

@media (max-width: 900px) {
  .parth-checkout-page .checkout-main-shell #order_review {
    width: min(552px, calc(100% - 3rem)) !important;
    margin: 0 auto !important;
    padding: 1.8rem 0 0 !important;
  }

  .parth-checkout-page .checkout-policy-links {
    width: min(552px, calc(100% - 3rem));
  }
}

@media (max-width: 640px) {
  .parth-checkout-page .checkout-main-shell #order_review {
    width: calc(100% - 1.75rem) !important;
  }

  .parth-checkout-page .checkout-order-product-image {
    width: 62px !important;
    height: 62px !important;
    flex-basis: 62px !important;
  }

  .parth-checkout-page .checkout-policy-links {
    width: calc(100% - 1.75rem);
  }
}

/* Keep checkout hierarchy through spacing, not decorative frames. */
.parth-checkout-page .checkout-main-shell #order_review {
  background: transparent !important;
}

.parth-checkout-page .checkout-main-shell #order_review .woocommerce table.shop_table tbody .product-name,
.parth-checkout-page .checkout-main-shell #order_review .woocommerce table.shop_table tbody .product-total {
  border-bottom: 0 !important;
}

.parth-checkout-page .checkout-policy-links {
  padding-top: 0 !important;
  border-top: 0 !important;
}

/* Remove all non-interactive order-summary surfaces and dividers. */
body.parth-checkout-page .checkout-main-shell form.checkout #order_review,
body.parth-checkout-page .checkout-main-shell form.checkout #order_review .woocommerce-checkout-review-order-table,
body.parth-checkout-page .checkout-main-shell form.checkout #order_review table.shop_table,
body.parth-checkout-page .checkout-main-shell form.checkout #order_review table.shop_table tbody,
body.parth-checkout-page .checkout-main-shell form.checkout #order_review table.shop_table tfoot,
body.parth-checkout-page .checkout-main-shell form.checkout #order_review table.shop_table tr,
body.parth-checkout-page .checkout-main-shell form.checkout #order_review table.shop_table th,
body.parth-checkout-page .checkout-main-shell form.checkout #order_review table.shop_table td {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.parth-checkout-page .checkout-main-shell form.checkout #order_review {
  padding: 38px 0 42px !important;
}

body.parth-checkout-page .checkout-main-shell form.checkout #order_review table.shop_table tbody .product-name,
body.parth-checkout-page .checkout-main-shell form.checkout #order_review table.shop_table tbody .product-total {
  border-bottom: 0 !important;
}

body.parth-checkout-page .checkout-main-shell form.checkout #order_review .checkout-order-product-image {
  border: 0 !important;
  background: #fff !important;
  box-shadow: none !important;
}

/* Compact the live order and PayPal section without changing its data. */
body.parth-checkout-page .checkout-main-shell form.checkout #order_review .woocommerce table.shop_table tbody .product-name,
body.parth-checkout-page .checkout-main-shell form.checkout #order_review .woocommerce table.shop_table tbody .product-total {
  padding-bottom: 12px !important;
}

body.parth-checkout-page .checkout-main-shell form.checkout #order_review .checkout-order-product-image {
  width: 52px !important;
  height: 52px !important;
  flex-basis: 52px !important;
}

body.parth-checkout-page .checkout-main-shell form.checkout #order_review .woocommerce table.shop_table tfoot th,
body.parth-checkout-page .checkout-main-shell form.checkout #order_review .woocommerce table.shop_table tfoot td {
  padding: 5px 0 !important;
}

body.parth-checkout-page .checkout-main-shell form.checkout #order_review .woocommerce table.shop_table tfoot tr:first-child th,
body.parth-checkout-page .checkout-main-shell form.checkout #order_review .woocommerce table.shop_table tfoot tr:first-child td {
  padding-top: 12px !important;
}

body.parth-checkout-page .checkout-main-shell form.checkout #order_review .woocommerce table.shop_table tfoot tr:last-child th,
body.parth-checkout-page .checkout-main-shell form.checkout #order_review .woocommerce table.shop_table tfoot tr:last-child td {
  padding-top: 10px !important;
}

body.parth-checkout-page .checkout-main-shell form.checkout #order_review .woocommerce-checkout-payment {
  margin-top: 28px !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

body.parth-checkout-page .checkout-main-shell form.checkout #order_review .woocommerce-checkout-payment .wc_payment_methods {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
}

body.parth-checkout-page .checkout-main-shell form.checkout #order_review .woocommerce-checkout-payment .wc_payment_method {
  min-height: 54px !important;
}

body.parth-checkout-page .checkout-main-shell form.checkout #order_review .woocommerce-checkout-payment .payment_box {
  display: none !important;
}

/* Clean order summary: one quiet panel, no stacked cards or badges. */
.parth-checkout-page .checkout-main-shell #order_review {
  padding: 34px 32px 40px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: var(--native-surface) !important;
  box-shadow: none !important;
}

.parth-checkout-page .checkout-main-shell #order_review .woocommerce table.shop_table {
  overflow: visible;
  border: 0 !important;
  border-radius: 0 !important;
  border-collapse: collapse !important;
  border-spacing: 0;
  background: transparent !important;
}

.parth-checkout-page .checkout-main-shell #order_review .woocommerce table.shop_table tbody .product-name,
.parth-checkout-page .checkout-main-shell #order_review .woocommerce table.shop_table tbody .product-total {
  padding: 0 0 20px !important;
  border-bottom: 1px solid var(--native-line) !important;
}

.parth-checkout-page .checkout-main-shell #order_review .woocommerce table.shop_table tbody .product-name {
  position: static;
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
}

.parth-checkout-page .checkout-main-shell #order_review .woocommerce table.shop_table tbody .product-total {
  width: 82px !important;
  padding-top: 4px !important;
  text-align: right !important;
  color: var(--native-text);
  font-size: 0.86rem;
  font-weight: 500;
}

.parth-checkout-page .checkout-main-shell #order_review .checkout-order-product {
  min-width: 0;
  display: flex !important;
  flex: 1 1 auto;
  align-items: center !important;
  gap: 14px !important;
}

.parth-checkout-page .checkout-main-shell #order_review .checkout-order-product-image {
  width: 64px !important;
  height: 64px !important;
  flex: 0 0 64px !important;
  padding: 4px !important;
  border: 1px solid var(--native-line) !important;
  border-radius: 12px !important;
  background: #fff !important;
  object-fit: contain !important;
}

.parth-checkout-page .checkout-main-shell #order_review .checkout-order-product__name {
  min-width: 0;
  padding: 0 !important;
  font-size: 0.86rem !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
}

.parth-checkout-page .checkout-main-shell #order_review .checkout-order-product__quantity,
.parth-checkout-page .checkout-main-shell #order_review .product-quantity {
  position: static !important;
  width: auto !important;
  height: auto !important;
  display: inline !important;
  flex: 0 0 auto;
  margin: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--native-muted) !important;
  font-size: 0.74rem !important;
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
}

.parth-checkout-page .checkout-main-shell #order_review .woocommerce table.shop_table tfoot th,
.parth-checkout-page .checkout-main-shell #order_review .woocommerce table.shop_table tfoot td {
  padding: 7px 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--native-text);
  font-size: 0.86rem;
  font-weight: 400;
}

.parth-checkout-page .checkout-main-shell #order_review .woocommerce table.shop_table tfoot tr:first-child th,
.parth-checkout-page .checkout-main-shell #order_review .woocommerce table.shop_table tfoot tr:first-child td {
  padding-top: 18px !important;
}

.parth-checkout-page .checkout-main-shell #order_review .woocommerce table.shop_table tfoot tr:last-child th,
.parth-checkout-page .checkout-main-shell #order_review .woocommerce table.shop_table tfoot tr:last-child td {
  padding-top: 14px !important;
  border-top: 0 !important;
  background: transparent !important;
  color: var(--native-text);
  font-size: 1.1rem;
  font-weight: 700;
}

@media (max-width: 640px) {
  .parth-checkout-page .checkout-main-shell #order_review {
    padding: 26px 18px 32px !important;
  }
}

/* Centered desktop checkout workspace. */
@media (min-width: 901px) {
  .parth-checkout-page .checkout-nav__inner {
    width: min(100% - 4rem, 1120px);
  }

  .parth-checkout-page .checkout-wrapper--checkout {
    width: min(100% - 4rem, 1120px);
    margin: 0 auto;
  }

  .parth-checkout-page .checkout-main-shell form.checkout {
    grid-template-columns: minmax(0, 520px) minmax(0, 440px);
    grid-template-rows: auto auto;
    justify-content: center;
    gap: 0 72px;
    background: transparent;
  }

  .parth-checkout-page .checkout-main-shell .col2-set {
    width: 520px !important;
    margin: 0 !important;
    padding: 38px 0 28px !important;
  }

  .parth-checkout-page .checkout-main-shell .woocommerce-billing-fields,
  .parth-checkout-page .checkout-main-shell .woocommerce-additional-fields {
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  .parth-checkout-page .checkout-main-shell .woocommerce-additional-fields {
    margin-top: 1.75rem !important;
    padding-top: 1.5rem !important;
    border-top: 1px solid var(--native-line) !important;
  }

  .parth-checkout-page .checkout-main-shell #order_review {
    grid-column: 2;
    grid-row: 1 / span 2;
    width: 440px !important;
    min-height: 0;
    margin: 38px 0 0 !important;
    padding: 26px !important;
    border: 1px solid var(--native-line) !important;
    border-radius: 16px !important;
    background: #fafafa !important;
    box-shadow: 0 16px 38px rgba(20, 20, 20, 0.05) !important;
  }

  .parth-checkout-page .checkout-main-shell #order_review::before {
    margin-bottom: 1.1rem;
  }

  .parth-checkout-page .checkout-policy-links {
    width: 520px;
    margin: 2.25rem auto 3.5rem 0 !important;
  }
}

/* Order-summary inner spacing. */
.parth-checkout-page .checkout-main-shell #order_review .woocommerce table.shop_table {
  overflow: hidden;
  border: 1px solid var(--native-line) !important;
  border-radius: 14px;
  border-collapse: separate !important;
  border-spacing: 0;
  background: #fff;
}

.parth-checkout-page .checkout-main-shell #order_review .woocommerce table.shop_table tbody .product-name {
  padding: 15px 16px !important;
}

.parth-checkout-page .checkout-main-shell #order_review .woocommerce table.shop_table tbody .product-total {
  width: 78px !important;
  padding: 15px 16px 15px 0 !important;
}

.parth-checkout-page .checkout-main-shell #order_review .checkout-order-product {
  gap: 12px !important;
}

.parth-checkout-page .checkout-main-shell #order_review .checkout-order-product-image {
  width: 64px !important;
  height: 64px !important;
  flex-basis: 64px !important;
  padding: 4px !important;
}

.parth-checkout-page .checkout-main-shell #order_review .woocommerce table.shop_table tfoot th,
.parth-checkout-page .checkout-main-shell #order_review .woocommerce table.shop_table tfoot td {
  padding: 11px 16px !important;
  background: #fff;
}

.parth-checkout-page .checkout-main-shell #order_review .woocommerce table.shop_table tfoot tr:last-child th,
.parth-checkout-page .checkout-main-shell #order_review .woocommerce table.shop_table tfoot tr:last-child td {
  padding: 16px !important;
  border-top: 1px solid var(--native-line) !important;
}

@media (max-width: 640px) {
  .parth-checkout-page .checkout-main-shell #order_review .woocommerce table.shop_table tbody .product-name {
    padding: 13px 12px !important;
  }

  .parth-checkout-page .checkout-main-shell #order_review .woocommerce table.shop_table tbody .product-total {
    width: 70px !important;
    padding: 13px 12px 13px 0 !important;
  }

  .parth-checkout-page .checkout-main-shell #order_review .woocommerce table.shop_table tfoot th,
  .parth-checkout-page .checkout-main-shell #order_review .woocommerce table.shop_table tfoot td {
    padding: 10px 12px !important;
  }
}

/* Live WooCommerce field variants and PayPal-only checkout. */
.parth-checkout-page .checkout-main-shell #billing_country_field .woocommerce-input-wrapper {
  width: 100% !important;
  min-height: 0 !important;
  display: block !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.parth-checkout-page .checkout-main-shell #billing_country_field .woocommerce-input-wrapper > *:not(input[type="hidden"]) {
  width: 100% !important;
  min-height: 50px !important;
  display: flex !important;
  align-items: center !important;
  box-sizing: border-box !important;
  padding: 0 12px !important;
  border: 1px solid var(--native-line) !important;
  border-radius: 12px !important;
  background: #fff !important;
  color: var(--native-text) !important;
  font: 400 0.84rem "Poppins", Arial, sans-serif !important;
}

.parth-checkout-page .checkout-main-shell .woocommerce table.shop_table tr.woocommerce-shipping-totals th {
  font-size: 0 !important;
}

.parth-checkout-page .checkout-main-shell .woocommerce table.shop_table tr.woocommerce-shipping-totals th::after {
  content: "Shipping";
  color: var(--native-text);
  font-size: 0.8rem;
  font-weight: 400;
}

.parth-checkout-page .checkout-main-shell .woocommerce-checkout-payment .wc_payment_method {
  min-height: 0 !important;
  display: block !important;
}

.parth-checkout-page .checkout-main-shell .woocommerce-checkout-payment .wc_payment_method > label {
  min-height: 48px;
  display: flex !important;
  align-items: center;
}

.parth-checkout-page .checkout-main-shell .woocommerce-checkout-payment .wc_payment_method > label::after {
  width: auto;
  height: auto;
  display: inline-block;
  flex: 0 0 auto;
  margin-left: auto;
  background: linear-gradient(105deg, #003087 0 54%, #009cde 55% 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  content: "PayPal";
  font-family: Arial, sans-serif;
  font-size: 0.98rem;
  font-style: italic;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
}

.parth-checkout-page .checkout-main-shell .woocommerce-checkout-payment .wc_payment_method {
  padding: 0 !important;
  border: 1px solid var(--native-line) !important;
  border-radius: 12px !important;
  background: #fff;
}

.parth-checkout-page .checkout-main-shell .woocommerce-checkout-payment .wc_payment_method > label {
  min-height: 56px;
  padding: 0 16px;
}

.parth-checkout-page .checkout-main-shell #payment .payment_box.payment_method_paypal {
  display: none !important;
}

/* Flat order summary, adapted from the approved reference without coupons. */
.parth-checkout-page .checkout-main-shell #order_review {
  padding: 34px 32px 40px !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: var(--native-surface) !important;
  box-shadow: none !important;
}

.parth-checkout-page .checkout-main-shell #order_review .woocommerce table.shop_table {
  overflow: visible;
  border: 0 !important;
  border-radius: 0;
  border-collapse: separate !important;
  border-spacing: 0;
  background: transparent;
}

.parth-checkout-page .checkout-main-shell #order_review .woocommerce table.shop_table tbody .product-name {
  position: relative;
  padding: 0 0 28px !important;
}

.parth-checkout-page .checkout-main-shell #order_review .woocommerce table.shop_table tbody .product-total {
  width: 80px !important;
  padding: 2px 0 28px !important;
  color: var(--native-text);
  font-size: 0.86rem;
  font-weight: 500;
}

.parth-checkout-page .checkout-main-shell #order_review .checkout-order-product {
  align-items: flex-start !important;
  gap: 14px !important;
}

.parth-checkout-page .checkout-main-shell #order_review .checkout-order-product-image {
  width: 64px !important;
  height: 64px !important;
  flex-basis: 64px !important;
  padding: 4px !important;
  border-radius: 12px;
  background: #fff;
}

.parth-checkout-page .checkout-main-shell #order_review .checkout-order-product__name {
  padding-top: 4px;
  font-size: 0.86rem !important;
  font-weight: 500 !important;
  line-height: 1.4 !important;
}

.parth-checkout-page .checkout-main-shell #order_review .checkout-order-product__quantity,
.parth-checkout-page .checkout-main-shell #order_review .product-quantity {
  position: absolute;
  top: -7px;
  left: 53px;
  width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  margin: 0 !important;
  border-radius: 50%;
  background: #111;
  color: #fff;
  font-size: 0.66rem !important;
  font-weight: 700;
  line-height: 1;
}

.parth-checkout-page .checkout-main-shell #order_review .woocommerce table.shop_table tfoot th,
.parth-checkout-page .checkout-main-shell #order_review .woocommerce table.shop_table tfoot td {
  padding: 6px 0 !important;
  border: 0 !important;
  background: transparent;
  color: var(--native-text);
  font-size: 0.86rem;
  font-weight: 400;
}

.parth-checkout-page .checkout-main-shell #order_review .woocommerce table.shop_table tfoot tr:last-child th,
.parth-checkout-page .checkout-main-shell #order_review .woocommerce table.shop_table tfoot tr:last-child td {
  padding: 14px 0 0 !important;
  border-top: 0 !important;
  background: transparent;
  color: var(--native-text);
  font-size: 1.1rem;
  font-weight: 700;
}

@media (max-width: 640px) {
  .parth-checkout-page .checkout-main-shell #order_review {
    padding: 26px 18px 32px !important;
  }
}

.parth-checkout-page .checkout-main-shell #payment .payment_box.payment_method_paypal {
  width: 100% !important;
  box-sizing: border-box;
  margin: 8px 0 0 !important;
}

.parth-checkout-page .checkout-main-shell .woocommerce table.shop_table tbody .product-name {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
}

.parth-checkout-page .checkout-main-shell .woocommerce table.shop_table tbody .product-total {
  width: 92px;
  padding: 12px 0;
}

.parth-checkout-page .checkout-order-product {
  flex: 1 1 auto;
  align-items: center;
  gap: 14px;
}

.parth-checkout-page .checkout-order-product-image {
  width: 74px;
  height: 74px;
  flex-basis: 74px;
  box-sizing: border-box;
  padding: 4px;
  object-fit: contain;
  object-position: center;
}

.parth-checkout-page .checkout-order-product__name {
  font-size: 0.84rem;
  font-weight: 500;
  line-height: 1.45;
}

.parth-checkout-page .checkout-main-shell .woocommerce table.shop_table tbody .product-quantity {
  flex: 0 0 auto;
  margin: 0;
  color: var(--native-text);
  font-size: 0.78rem;
  white-space: nowrap;
}

.parth-checkout-page #ship-to-different-address label > span {
  font-size: 0;
}

.parth-checkout-page #ship-to-different-address label > span::after {
  content: "Ship to a different address?";
  color: var(--native-text);
  font-size: 0.95rem;
  font-weight: 600;
}

.parth-checkout-page .checkout-policy-links {
  margin: 2rem auto 3rem;
}

@media (max-width: 640px) {
  .parth-checkout-page .checkout-order-product-image {
    width: 62px;
    height: 62px;
    flex-basis: 62px;
  }

  .parth-checkout-page .checkout-main-shell .woocommerce table.shop_table tbody .product-total {
    width: 76px;
  }
}

/* Prevent the checkout columns from colliding on tablet/narrow desktop widths. */
@media (max-width: 1180px) {
  .parth-checkout-page .checkout-wrapper--checkout {
    width: min(100% - 2rem, 720px) !important;
  }

  .parth-checkout-page .checkout-main-shell form.checkout {
    grid-template-columns: minmax(0, 1fr) !important;
    grid-template-rows: auto !important;
    justify-content: stretch !important;
    gap: 26px !important;
  }

  .parth-checkout-page .checkout-main-shell .col2-set,
  .parth-checkout-page .checkout-main-shell #order_review {
    grid-column: 1 !important;
    grid-row: auto !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
  }

  .parth-checkout-page .checkout-main-shell .col2-set {
    margin: 0 !important;
  }

  .parth-checkout-page .checkout-main-shell #order_review {
    margin: 0 !important;
    overflow: hidden !important;
  }

  .parth-checkout-page .checkout-main-shell .woocommerce-checkout-payment {
    width: 100% !important;
    max-width: 100% !important;
  }
}

/* Cohesive checkout sidebar: compact, aligned, and border-light. */
body.parth-checkout-page .checkout-main-shell form.checkout #order_review {
  width: min(100%, 424px) !important;
  max-width: 424px !important;
  margin-top: 36px !important;
  padding: 0 !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.parth-checkout-page .checkout-main-shell form.checkout #order_review::before {
  margin: 0 0 24px !important;
  color: var(--native-text);
  font-size: 1.08rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

body.parth-checkout-page .checkout-main-shell form.checkout #order_review .woocommerce table.shop_table {
  width: 100% !important;
  overflow: visible !important;
  border: 0 !important;
  border-radius: 0 !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.parth-checkout-page .checkout-main-shell form.checkout #order_review table.shop_table tbody tr.cart_item {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  column-gap: 18px !important;
  align-items: start !important;
  margin: 0 0 22px !important;
}

body.parth-checkout-page .checkout-main-shell form.checkout #order_review table.shop_table tbody .product-name,
body.parth-checkout-page .checkout-main-shell form.checkout #order_review table.shop_table tbody .product-total {
  display: block !important;
  width: auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body.parth-checkout-page .checkout-main-shell form.checkout #order_review table.shop_table tbody .product-total {
  min-width: 72px !important;
  padding-top: 7px !important;
  text-align: right !important;
  color: var(--native-text) !important;
  font-size: 0.83rem !important;
  font-weight: 500 !important;
  font-variant-numeric: tabular-nums;
}

body.parth-checkout-page .checkout-main-shell form.checkout #order_review .checkout-order-product {
  position: relative;
  display: grid !important;
  grid-template-columns: 58px minmax(0, 1fr) !important;
  column-gap: 14px !important;
  align-items: center !important;
  min-height: 58px !important;
}

body.parth-checkout-page .checkout-main-shell form.checkout #order_review .checkout-order-product-image {
  width: 58px !important;
  height: 58px !important;
  flex: 0 0 58px !important;
  padding: 3px !important;
  border: 1px solid #e7e4df !important;
  border-radius: 10px !important;
  background: #fff !important;
  object-fit: contain !important;
  object-position: center !important;
}

body.parth-checkout-page .checkout-main-shell form.checkout #order_review .checkout-order-product__name {
  max-width: 190px !important;
  padding: 0 !important;
  color: var(--native-text) !important;
  font-size: 0.85rem !important;
  font-weight: 600 !important;
  line-height: 1.35 !important;
  text-wrap: balance;
}

body.parth-checkout-page .checkout-main-shell form.checkout #order_review .checkout-order-product__quantity,
body.parth-checkout-page .checkout-main-shell form.checkout #order_review .product-quantity {
  position: static !important;
  display: inline-block !important;
  width: auto !important;
  height: auto !important;
  margin: 6px 0 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: #77746e !important;
  font-size: 0.72rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

body.parth-checkout-page .checkout-main-shell form.checkout #order_review table.shop_table tfoot {
  display: block !important;
  width: 100% !important;
}

body.parth-checkout-page .checkout-main-shell form.checkout #order_review table.shop_table tfoot tr {
  display: grid !important;
  grid-template-columns: minmax(0, 1fr) auto !important;
  align-items: center !important;
  width: 100% !important;
  min-height: 34px !important;
  margin: 0 !important;
}

body.parth-checkout-page .checkout-main-shell form.checkout #order_review table.shop_table tfoot th,
body.parth-checkout-page .checkout-main-shell form.checkout #order_review table.shop_table tfoot td {
  display: block !important;
  width: auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  color: var(--native-text) !important;
  font-size: 0.84rem !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
  text-align: left !important;
}

body.parth-checkout-page .checkout-main-shell form.checkout #order_review table.shop_table tfoot td {
  text-align: right !important;
  font-variant-numeric: tabular-nums;
}

body.parth-checkout-page .checkout-main-shell form.checkout #order_review table.shop_table tfoot tr:last-child {
  min-height: 44px !important;
  margin-top: 10px !important;
}

body.parth-checkout-page .checkout-main-shell form.checkout #order_review table.shop_table tfoot tr:last-child th,
body.parth-checkout-page .checkout-main-shell form.checkout #order_review table.shop_table tfoot tr:last-child td {
  color: var(--native-text) !important;
  font-size: 1.04rem !important;
  font-weight: 700 !important;
}

body.parth-checkout-page .checkout-main-shell form.checkout #order_review .woocommerce-checkout-payment {
  width: 100% !important;
  max-width: 100% !important;
  margin: 22px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.parth-checkout-page .checkout-main-shell form.checkout #order_review .woocommerce-checkout-payment::before {
  margin: 0 0 12px !important;
  font-size: 1.08rem !important;
  font-weight: 700 !important;
  line-height: 1.2 !important;
}

body.parth-checkout-page .checkout-main-shell form.checkout #order_review .woocommerce-checkout-payment .wc_payment_methods {
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
}

body.parth-checkout-page .checkout-main-shell form.checkout #order_review .woocommerce-checkout-payment .wc_payment_method {
  min-height: 56px !important;
  padding: 0 !important;
  border: 1px solid var(--native-line) !important;
  border-radius: 12px !important;
  background: #fff !important;
}

body.parth-checkout-page .checkout-main-shell form.checkout #order_review .woocommerce-checkout-payment .wc_payment_method > label {
  min-height: 56px !important;
  padding: 0 16px !important;
}

body.parth-checkout-page .checkout-main-shell form.checkout #order_review .woocommerce-privacy-policy-text {
  width: 100% !important;
  max-width: 100% !important;
  margin: 24px 0 0 !important;
  color: var(--native-muted) !important;
  font-size: 0.75rem !important;
  line-height: 1.55 !important;
}

body.parth-checkout-page .checkout-main-shell form.checkout #order_review #place_order {
  width: 100% !important;
  max-width: 100% !important;
  margin-top: 28px !important;
}

@media (min-width: 1181px) {
  body.parth-checkout-page .checkout-main-shell form.checkout #order_review {
    position: sticky;
    top: 96px;
  }
}

@media (max-width: 1180px) {
  body.parth-checkout-page .checkout-main-shell form.checkout #order_review {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
  }

  body.parth-checkout-page .checkout-main-shell form.checkout #order_review .checkout-order-product__name {
    max-width: none !important;
  }
}

@media (max-width: 520px) {
  body.parth-checkout-page .checkout-main-shell form.checkout #order_review table.shop_table tbody tr.cart_item {
    grid-template-columns: minmax(0, 1fr) auto !important;
    column-gap: 12px !important;
  }

  body.parth-checkout-page .checkout-main-shell form.checkout #order_review .checkout-order-product {
    grid-template-columns: 52px minmax(0, 1fr) !important;
    column-gap: 12px !important;
  }

  body.parth-checkout-page .checkout-main-shell form.checkout #order_review .checkout-order-product-image {
    width: 52px !important;
    height: 52px !important;
    flex-basis: 52px !important;
  }

  body.parth-checkout-page .checkout-main-shell form.checkout #order_review table.shop_table tbody .product-total {
    min-width: 60px !important;
  }
}

/* Keep WooCommerce's localized shipping label fully replaced in the compact summary. */
body.parth-checkout-page .checkout-main-shell form.checkout #order_review table.shop_table tr.woocommerce-shipping-totals th {
  color: transparent !important;
  font-size: 0 !important;
}

body.parth-checkout-page .checkout-main-shell form.checkout #order_review table.shop_table tr.woocommerce-shipping-totals th::after {
  content: "Shipping";
  color: var(--native-text) !important;
  font-size: 0.84rem !important;
  font-weight: 400 !important;
  line-height: 1.35 !important;
}
