/* ==========================================================
   Snooby Store Kit — announcement bar, hero themes, trust
   points, and the Oodie-style cart + checkout.
   ========================================================== */

:root {
  --snbk-font: var(--snb-font, Montserrat, "Helvetica Neue", Arial, sans-serif);
  --snbk-ink: #2a2d33;
  --snbk-text: #3d4246;
  --snbk-muted: #6b6f78;
  --snbk-line: #e4e0ec;
  --snbk-field: #d6d1e1;
  --snbk-soft: #f7f5fb;
  --snbk-purple: #8224e3;
  --snbk-purple-d: #6a17c2;
  --snbk-tint: #faf7ff;
  --snbk-green: #1f7a3f;
}

/* ---------- Announcement bar ---------- */

.snb-has-bar #top-bar { display: none !important; }

.snb-bar {
  position: relative;
  z-index: 30;
  background: var(--snb-bar-bg, #0e3b28);
  color: var(--snb-bar-fg, #f5b921);
  font: 600 13px/1.3 var(--snbk-font);
  letter-spacing: 0.02em;
}
.snb-bar.is-sale { background: var(--snb-sale-bg, #d6334c); color: var(--snb-sale-fg, #fff); }
.snb-bar__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 820px;
  min-height: 40px;
  margin: 0 auto;
  padding: 0 6px;
}
.snb-bar__track { display: grid; flex: 1; min-width: 0; text-align: center; }
.snb-bar__msg,
.snb-bar__msg a,
.snb-bar__msg span { font-size: inherit !important; line-height: inherit !important; }
.snb-bar__msg {
  grid-area: 1 / 1;
  margin: 0 !important;
  padding: 9px 6px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(5px);
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s;
}
.snb-bar__msg.is-active { opacity: 1; visibility: visible; transform: none; }
.snb-bar__msg.is-off { display: none; }
.snb-bar a { color: inherit !important; text-decoration: none; }
.snb-bar a:hover .snb-bar__text { text-decoration: underline; text-underline-offset: 3px; }
.snb-bar a:focus-visible { outline: 2px solid currentColor; outline-offset: 3px; border-radius: 3px; }
.snb-bar strong { font-weight: 800; }
.snb-bar__arrow { display: inline-block; margin-left: 6px; transition: transform 0.2s; }
.snb-bar a:hover .snb-bar__arrow { transform: translateX(3px); }
.snb-bar__cd {
  display: inline-block;
  margin-left: 8px;
  padding: 2px 10px;
  border-radius: 99px;
  background: rgba(0, 0, 0, 0.2);
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}
.snb-bar .snb-bar__nav {
  display: grid;
  flex: none;
  place-items: center;
  width: 34px;
  height: 34px;
  min-height: 0;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: none;
  color: inherit;
  line-height: 1;
  opacity: 0.75;
  cursor: pointer;
}
.snb-bar .snb-bar__nav:hover { opacity: 1; background: rgba(255, 255, 255, 0.12); }
.snb-bar .snb-bar__nav:focus-visible { outline: 2px solid currentColor; opacity: 1; }
.snb-bar .snb-bar__nav[hidden] { display: none; }
.snb-bar__nav svg { width: 16px; height: 16px; fill: none; stroke: currentColor; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round; }
@media (max-width: 549px) {
  .snb-bar { font-size: 12px; }
  .snb-bar__inner { min-height: 36px; padding: 0 2px; }
  .snb-bar__msg { padding: 8px 2px; }
  .snb-bar__cd-label { display: none; }
  .snb-bar__cd { margin-left: 6px; padding: 1px 8px; }
  .snb-bar .snb-bar__nav { width: 28px; height: 28px; }
}

/* ---------- Hero colour themes ([snooby_hero]) ---------- */

.snb-hero--purple { background: #4b1790; }
.snb-hero--purple .snb-hero__text { color: #e8dcfb; }
.snb-hero--purple .snb-hero__media::before { background: linear-gradient(90deg, #4b1790, rgba(75, 23, 144, 0)); }
.snb-hero--sale { background: #9e1830; }
.snb-hero--sale .snb-hero__eyebrow, .snb-hero--sale .snb-hero__title em { color: #ffd166; }
.snb-hero--sale .snb-hero__text { color: #fbe3e7; }
.snb-hero--sale .snb-hero__media::before { background: linear-gradient(90deg, #9e1830, rgba(158, 24, 48, 0)); }
.snb-hero--night { background: #151c3b; }
.snb-hero--night .snb-hero__text { color: #dfe3f5; }
.snb-hero--night .snb-hero__media::before { background: linear-gradient(90deg, #151c3b, rgba(21, 28, 59, 0)); }
@media (max-width: 767px) {
  .snb-hero--purple .snb-hero__media::before { background: linear-gradient(0deg, #4b1790, rgba(75, 23, 144, 0)); }
  .snb-hero--sale .snb-hero__media::before { background: linear-gradient(0deg, #9e1830, rgba(158, 24, 48, 0)); }
  .snb-hero--night .snb-hero__media::before { background: linear-gradient(0deg, #151c3b, rgba(21, 28, 59, 0)); }
}

/* ---------- Trust points ---------- */

.snb-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--snbk-text);
  font: 600 13px/1.35 var(--snbk-font);
}
.snb-trust li { display: flex; align-items: center; gap: 8px; margin: 0 !important; }
.snb-trust svg {
  flex: none;
  width: 20px;
  height: 20px;
  padding: 3px;
  border-radius: 50%;
  background: #e3f3e8;
  fill: none;
  stroke: var(--snbk-green);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.snb-trust--pdp { clear: both; margin: 18px 0 8px; padding: 14px 16px; border-radius: 12px; background: var(--snbk-soft); }
@media (max-width: 380px) { .snb-trust { grid-template-columns: 1fr; } }

/* ==========================================================
   Cart + checkout (body.snb-co)
   ========================================================== */

html:has(body.snb-co) { background: #fff !important; }
body.snb-co { background: #fff; color: var(--snbk-text); font-family: var(--snbk-font); }
.snb-co #main,
.snb-co #main-content { background: #fff; }
.snb-co.woocommerce-checkout #main-content { max-width: 1200px !important; margin: 0 auto; }
.snb-co #main.page-checkout { max-width: none; margin: 0 auto; box-shadow: none !important; }
.snb-co .woocommerce > .woocommerce-notices-wrapper:empty { display: none; }
.snb-co .absolute-footer { background: #fff !important; border-top: 1px solid var(--snbk-line); color: var(--snbk-muted) !important; }
.snb-co .absolute-footer * { color: var(--snbk-muted) !important; }
.snb-co .includes_tax { color: var(--snbk-muted); font-size: 12px !important; font-weight: 500 !important; white-space: nowrap; }
.snb-co .includes_tax .amount { font-weight: 600; }
.snb-co .woocommerce-billing-fields { padding-top: 0; border-top: 0 !important; }
.snb-co h1, .snb-co h2, .snb-co h3, .snb-co h4, .snb-co th, .snb-co label, .snb-co .button, .snb-co button, .snb-co input, .snb-co select, .snb-co textarea { font-family: var(--snbk-font); }

/* Focused checkout header: logo + steps */
.snb-co .focused-checkout-header { padding-bottom: 8px; }
.snb-co .focused-checkout-header .logo img, .snb-co .focused-checkout-logo img { max-height: 58px; width: auto; }
.snb-co .checkout-page-title, .snb-co .focused-checkout-header .page-title-inner { padding-top: 6px; padding-bottom: 6px; }
.snb-co .checkout-breadcrumbs, .snb-co .focused-checkout-header .breadcrumbs {
  font-size: 13px !important;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-transform: none;
}
.snb-co .checkout-breadcrumbs a, .snb-co .focused-checkout-header .breadcrumbs a { color: #a7a2b3; }
.snb-co .checkout-breadcrumbs a.current, .snb-co .focused-checkout-header .breadcrumbs a.current { color: var(--snbk-ink); }
.snb-co .breadcrumb-step { background-color: var(--snbk-purple) !important; }

/* Headings */
.snb-co #customer_details h3,
.snb-co #order_review_heading,
.snb-co .checkout-sidebar h3,
.snb-co .cart_totals h2,
.snb-co .cart-sidebar .widget-title {
  margin: 0 0 16px;
  color: var(--snbk-ink);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -0.2px;
  text-transform: none;
}
.snb-co .is-divider { display: none; }

/* "Returning customer? / coupon / gift card" as tidy chips */
.snb-co .woocommerce-form-login-toggle,
.snb-co .woocommerce-form-coupon-toggle { display: inline-block; margin: 0 6px 8px 0; vertical-align: top; }
.snb-co .woocommerce-form-login-toggle .woocommerce-info,
.snb-co .woocommerce-form-coupon-toggle .woocommerce-info {
  margin: 0;
  padding: 8px 14px;
  border: 1px solid var(--snbk-line);
  border-radius: 99px;
  background: var(--snbk-soft);
  color: var(--snbk-muted);
  font-size: 13px;
  line-height: 1.4;
}
.snb-co .woocommerce-form-login-toggle .message-container,
.snb-co .woocommerce-form-coupon-toggle .message-container { padding: 0 !important; text-align: left !important; }
.snb-co .woocommerce-form-login-toggle a,
.snb-co .woocommerce-form-coupon-toggle a { color: var(--snbk-purple) !important; font-size: inherit !important; font-weight: 700; }
.snb-co .woocommerce-form-login-toggle .woocommerce-info::before,
.snb-co .woocommerce-form-coupon-toggle .woocommerce-info::before { display: none; }
.snb-co form.checkout_coupon,
.snb-co form.checkout_pw_gift_card,
.snb-co form.woocommerce-form-login {
  max-width: 520px;
  margin: 4px 0 16px;
  padding: 16px;
  border: 1px solid var(--snbk-line);
  border-radius: 12px;
  background: #fff;
}
.snb-co form.checkout { margin-top: 18px; padding-top: 0; border-top: 0; }

/* Fields */
.snb-co form.checkout .form-row,
.snb-co .woocommerce-cart-form .form-row { margin-bottom: 14px; }
.snb-co form.checkout .form-row label {
  margin-bottom: 6px;
  color: var(--snbk-text);
  font-size: 13px;
  font-weight: 600;
}
.snb-co form.checkout .form-row label .optional { color: #9b97a6; font-weight: 500; }
.snb-co form.checkout .form-row label .required { color: #c2334d; text-decoration: none; }
.snb-co form.checkout input.input-text,
.snb-co form.checkout select,
.snb-co form.checkout textarea,
.snb-co form.checkout .select2-container .select2-selection--single,
.snb-co .checkout_coupon input.input-text,
.snb-co .checkout_pw_gift_card input.input-text,
.snb-co .ux-cart-coupon input.input-text {
  height: 50px;
  padding: 0 14px;
  border: 1px solid var(--snbk-field);
  border-radius: 10px;
  background: #fff;
  box-shadow: none;
  color: var(--snbk-ink);
  font-size: 16px; /* 16px stops iPhones zooming in */
  transition: border-color 0.15s, box-shadow 0.15s;
}
.snb-co form.checkout textarea { min-height: 96px; padding: 12px 14px; }
.snb-co form.checkout .select2-container .select2-selection__rendered { padding-left: 0; color: var(--snbk-ink); line-height: 48px; }
.snb-co form.checkout .select2-container .select2-selection__arrow { height: 48px; right: 8px; }
.snb-co form.checkout input.input-text:focus,
.snb-co form.checkout select:focus,
.snb-co form.checkout textarea:focus,
.snb-co form.checkout .select2-container--focus .select2-selection--single,
.snb-co form.checkout .select2-container--open .select2-selection--single {
  border-color: var(--snbk-purple);
  box-shadow: 0 0 0 3px rgba(130, 36, 227, 0.16);
  outline: 0;
}
.snb-co form.checkout .woocommerce-invalid input.input-text,
.snb-co form.checkout .woocommerce-invalid .select2-selection { border-color: #c2334d; }
.snb-co form.checkout input[type="checkbox"] { width: 18px; height: 18px; margin-right: 8px; accent-color: var(--snbk-purple); vertical-align: -3px; }
.snb-co form.checkout .woocommerce-form__label-for-checkbox,
.snb-co form.checkout #ship-to-different-address label { font-size: 14px; font-weight: 500; }
.snb-co #ship-to-different-address { margin: 8px 0 12px; font-size: 14px; }

/* "+ Add a delivery note" */
.snb-co .snb-notes-closed { display: none; }
.snb-co .snb-notes-toggle {
  min-height: 0;
  margin: 4px 0 12px;
  padding: 0;
  border: 0;
  background: none;
  color: var(--snbk-purple);
  font: 700 14px/1.4 var(--snbk-font);
  letter-spacing: 0;
  text-transform: none;
  cursor: pointer;
}
.snb-co .snb-notes-toggle:hover { text-decoration: underline; }
.snb-co .woocommerce-additional-fields h3 { display: none; }

/* Right-hand order panel */
@media (min-width: 850px) {
  .snb-co form.checkout > .row { align-items: flex-start; }
  .snb-co form.checkout > .row > .large-7 { padding-right: 36px; }
  .snb-co form.checkout > .row > .large-5 > .col-inner {
    padding: 28px 28px 24px;
    border: 0 !important;
    border-radius: 18px;
    background: var(--snbk-soft);
  }
  .snb-co .row-divided > .col + .col:not(.large-12) { border-left: 0; }
}
.snb-co .checkout-sidebar { overflow: visible; }

/* Order table */
.snb-co .woocommerce-checkout-review-order-table { margin-bottom: 8px; border: 0; }
.snb-co .woocommerce-checkout-review-order-table thead { display: none; }
.snb-co .woocommerce-checkout-review-order-table td,
.snb-co .woocommerce-checkout-review-order-table th { padding: 10px 0; border-color: var(--snbk-line); font-size: 14px; }
.snb-co .woocommerce-checkout-review-order-table .cart_item td { padding: 12px 0; vertical-align: middle; }
.snb-co .woocommerce-checkout-review-order-table .product-name { color: var(--snbk-ink); font-size: 14px; font-weight: 600; line-height: 1.35; }
.snb-co .woocommerce-checkout-review-order-table .product-total { font-weight: 700; white-space: nowrap; }
.snb-co .woocommerce-checkout-review-order-table .cart_item .product-quantity { display: none; }
.snb-co .snb-ri { display: flex; align-items: center; gap: 14px; }
.snb-co .snb-ri__img {
  position: relative;
  flex: none;
  width: 60px;
  height: 60px;
  border: 1px solid var(--snbk-line);
  border-radius: 12px;
  background: #fff;
}
.snb-co .snb-ri__img img { width: 100%; height: 100%; border-radius: 11px; object-fit: cover; }
.snb-co .snb-ri__qty,
.snb-co .snb-msum__qty {
  position: absolute;
  top: -8px;
  right: -8px;
  display: grid;
  place-items: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 99px;
  background: #5b5866;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.snb-co .woocommerce-checkout-review-order-table tfoot th { color: var(--snbk-text); font-weight: 500; }
.snb-co .woocommerce-checkout-review-order-table tfoot td { font-weight: 600; }
.snb-co .woocommerce-checkout-review-order-table .order-total th,
.snb-co .woocommerce-checkout-review-order-table .order-total td { padding-top: 16px; border-top: 1px solid var(--snbk-field); color: var(--snbk-ink); font-size: 18px; font-weight: 800; }
.snb-co .woocommerce-checkout-review-order-table .order-total .includes_tax { display: block; color: var(--snbk-muted); font-size: 12px; font-weight: 500; }

/* Shipping choices as cards */
.snb-co .shipping__table th { padding-bottom: 8px; font-weight: 500; }
.snb-co ul#shipping_method { margin: 0; }
.snb-co ul#shipping_method li,
.snb-co .shipping__list_item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 8px !important;
  padding: 13px 14px !important;
  border: 1px solid var(--snbk-field) !important;
  border-radius: 12px;
  background: #fff;
  line-height: 1.35;
}
.snb-co ul#shipping_method li:has(input:checked) { border-color: var(--snbk-purple) !important; background: var(--snbk-tint); box-shadow: 0 0 0 1px var(--snbk-purple); }
.snb-co ul#shipping_method input { flex: none; margin: 0 !important; accent-color: var(--snbk-purple); }
.snb-co ul#shipping_method label { margin: 0; color: var(--snbk-ink); font-size: 14px; font-weight: 600; }

/* Free delivery progress (Flatsome) */
.snb-co .ux-free-shipping { margin: 14px 0 18px; }
.snb-co .ux-free-shipping__notice { margin-bottom: 8px; color: var(--snbk-ink); font-size: 14px; font-weight: 600; }
.snb-co .ux-free-shipping__bar { height: 8px; overflow: hidden; border-radius: 99px; background: var(--snbk-line); }
.snb-co .ux-free-shipping__bar-progress { border-radius: 99px; background: linear-gradient(90deg, var(--snbk-purple), #b06cf0) !important; }

/* Payment methods as one grouped card */
.snb-co #payment { background: none !important; border-radius: 0; }
.snb-co #payment ul.payment_methods {
  margin: 0 0 18px;
  padding: 0 !important;
  overflow: hidden;
  border: 1px solid var(--snbk-field) !important;
  border-radius: 14px;
  background: #fff;
}
.snb-co #payment ul.payment_methods > li.wc_payment_method {
  margin: 0;
  padding: 14px 16px;
  border-bottom: 1px solid var(--snbk-line);
  line-height: 1.35;
}
.snb-co #payment ul.payment_methods > li.wc_payment_method:last-child { border-bottom: 0; }
.snb-co #payment ul.payment_methods > li.wc_payment_method:has(> input:checked) { background: var(--snbk-tint); box-shadow: inset 3px 0 0 var(--snbk-purple); }
.snb-co #payment ul.payment_methods > li > input { margin: 0 10px 0 0 !important; accent-color: var(--snbk-purple); vertical-align: middle; }
.snb-co #payment ul.payment_methods > li > label {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  width: calc(100% - 30px);
  margin: 0;
  color: var(--snbk-ink);
  font-size: 14.5px;
  font-weight: 700;
  vertical-align: middle;
  cursor: pointer;
}
.snb-co #payment ul.payment_methods > li > label img {
  max-width: 120px;
  max-height: 24px;
  width: auto;
  height: auto;
  margin: 0 0 0 auto !important;
  object-fit: contain;
}
.snb-co #payment ul.payment_methods > li > img { max-height: 22px; width: auto; margin: 6px 0 0 30px; }
.snb-co #payment .payment_box {
  margin: 8px 0 0 !important;
  padding: 0 0 0 30px !important;
  background: none !important;
  color: var(--snbk-muted);
  font-size: 13px;
  line-height: 1.5;
}
.snb-co #payment .payment_box::before { display: none !important; }
.snb-co #payment .payment_box p { margin: 0 0 6px; }
.snb-co #payment .payment_box img { max-height: 26px; width: auto; }

/* Place order */
.snb-co #payment .place-order { margin: 0 !important; padding: 0 !important; }
.snb-co #place_order,
.snb-co .wc-proceed-to-checkout .checkout-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  min-height: 56px;
  margin: 0;
  padding: 0 24px;
  border: 0;
  border-radius: 99px;
  background: var(--snbk-purple) !important;
  box-shadow: 0 10px 22px -10px rgba(130, 36, 227, 0.7);
  color: #fff !important;
  font-size: 17px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1.2;
  text-transform: none;
  transition: background 0.15s, transform 0.15s;
}
.snb-co #place_order::before,
.snb-co .wc-proceed-to-checkout .checkout-button::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: none;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round'%3E%3Crect x='5' y='10.5' width='14' height='10' rx='2'/%3E%3Cpath d='M8 10.5V8a4 4 0 0 1 8 0v2.5'/%3E%3C/svg%3E") center / contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='2.4' stroke-linecap='round'%3E%3Crect x='5' y='10.5' width='14' height='10' rx='2'/%3E%3Cpath d='M8 10.5V8a4 4 0 0 1 8 0v2.5'/%3E%3C/svg%3E") center / contain no-repeat;
}
.snb-co #place_order:hover,
.snb-co .wc-proceed-to-checkout .checkout-button:hover { background: var(--snbk-purple-d) !important; transform: translateY(-1px); }
.snb-co #place_order:focus-visible,
.snb-co .wc-proceed-to-checkout .checkout-button:focus-visible { outline: 3px solid var(--snbk-purple); outline-offset: 3px; }
.snb-co .snb-co-terms { margin: 12px 4px 0; color: var(--snbk-muted); font-size: 12.5px; line-height: 1.5; text-align: center; }
.snb-co .snb-co-terms a { color: var(--snbk-text); font-size: inherit !important; text-decoration: underline; }
.snb-co .woocommerce-privacy-policy-text p { color: var(--snbk-muted); font-size: 12px; }

.snb-co-trust { margin-top: 18px; padding: 16px 16px 14px; border: 1px solid var(--snbk-line); border-radius: 14px; background: #fff; }
.snb-co-trust__head { display: flex; align-items: center; gap: 8px; margin: 0 0 12px !important; color: var(--snbk-ink); font-size: 14px; font-weight: 800; }
.snb-co-trust__head svg { width: 18px; height: 18px; fill: none; stroke: var(--snbk-green); stroke-width: 2.2; stroke-linecap: round; }
.snb-co-trust .snb-trust { grid-template-columns: 1fr; gap: 9px; font-size: 13px; }

/* Old badge row under the checkout (replaced by the trust box) */
.snb-co-nobadges.woocommerce-checkout #content > .row { display: none; }

/* ---------- Phone order summary ---------- */

.snb-msum { display: none; }
@media (max-width: 849px) {
  .snb-co .snb-msum:not([hidden]) {
    display: block;
    margin: 0 -15px 16px;
    border-top: 1px solid var(--snbk-line);
    border-bottom: 1px solid var(--snbk-line);
    background: var(--snbk-soft);
  }
  .snb-msum > summary {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 15px 16px;
    list-style: none;
    cursor: pointer;
  }
  .snb-msum > summary::-webkit-details-marker { display: none; }
  .snb-msum > summary:focus-visible { outline: 3px solid var(--snbk-purple); outline-offset: -3px; }
  .snb-msum__label { display: flex; align-items: center; gap: 8px; color: var(--snbk-purple); font-size: 14px; font-weight: 700; }
  .snb-msum__label svg { width: 20px; height: 20px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linejoin: round; }
  .snb-msum__label .snb-msum__chev { width: 16px; height: 16px; stroke-width: 2.6; transition: transform 0.2s; }
  .snb-msum[open] .snb-msum__chev { transform: rotate(180deg); }
  .snb-msum__hide, .snb-msum[open] .snb-msum__show { display: none; }
  .snb-msum[open] .snb-msum__hide { display: inline; }
  .snb-msum__total { color: var(--snbk-ink); font-size: 17px; font-weight: 800; }
  .snb-msum__body { padding: 4px 16px 16px; }
  .snb-msum__items { margin: 0 0 12px; padding: 0; list-style: none; }
  .snb-msum__item { display: flex; align-items: center; gap: 14px; margin: 0; padding: 10px 0; }
  .snb-msum__thumb { position: relative; flex: none; width: 58px; height: 58px; border: 1px solid var(--snbk-line); border-radius: 12px; background: #fff; }
  .snb-msum__thumb img { width: 100%; height: 100%; border-radius: 11px; object-fit: cover; }
  .snb-msum__name { flex: 1; color: var(--snbk-ink); font-size: 14px; font-weight: 600; line-height: 1.35; }
  .snb-msum__price { font-size: 14px; font-weight: 700; white-space: nowrap; }
  .snb-msum__totals { margin: 0; padding-top: 10px; border-top: 1px solid var(--snbk-field); }
  .snb-msum__totals > div { display: flex; justify-content: space-between; gap: 12px; padding: 4px 0; font-size: 14px; }
  .snb-msum__totals dt { color: var(--snbk-text); font-weight: 500; letter-spacing: 0; text-transform: none; }
  .snb-msum__totals dd { margin: 0; color: var(--snbk-ink); font-weight: 600; text-align: right; }
  .snb-msum__totals dt span { margin-left: 4px; padding: 1px 6px; border-radius: 4px; background: #ece6f7; font-size: 11px; font-weight: 700; }
  .snb-msum__totals .is-discount dd { color: var(--snbk-green); }
  .snb-msum__totals .is-total { margin-top: 6px; padding-top: 10px; border-top: 1px solid var(--snbk-field); }
  .snb-msum__totals .is-total dt, .snb-msum__totals .is-total dd { color: var(--snbk-ink); font-size: 17px; font-weight: 800; }
  .snb-msum__totals .includes_tax { display: block; color: var(--snbk-muted); font-size: 11.5px; font-weight: 500; }

  /* Phone checkout rhythm */
  .snb-co #main.page-checkout { padding-top: 0; }
  .snb-co .focused-checkout-logo { padding: 12px 0 10px !important; }
  .snb-co .focused-checkout-logo img { max-height: 46px; width: auto; }
  .snb-co .focused-checkout-header { padding-bottom: 12px !important; }
  .snb-co .focused-checkout-header .page-title-inner { padding-top: 4px !important; }
  .snb-co .focused-checkout-header .breadcrumbs { padding: 4px 0 !important; }
  /* login / coupon / gift card: quiet one-line links instead of big pills */
  .snb-co .woocommerce-form-login-toggle, .snb-co .woocommerce-form-coupon-toggle { display: block; margin: 0; }
  .snb-co .woocommerce-form-login-toggle .woocommerce-info,
  .snb-co .woocommerce-form-coupon-toggle .woocommerce-info { padding: 3px 0; border: 0; border-radius: 0; background: none; font-size: 13px; }
  .snb-co form.checkout > .row > .large-5 > .col-inner { padding: 22px 0 0; border-top: 1px solid var(--snbk-line); }
  .snb-co #customer_details h3, .snb-co #order_review_heading { font-size: 19px; }
}

/* ---------- Cart page ---------- */

.snb-co .cart-header { margin-bottom: 8px; }
.snb-co .woocommerce-cart-form .shop_table thead th { color: var(--snbk-muted); font-size: 12px; font-weight: 700; letter-spacing: 0.08em; }
.snb-co .woocommerce-cart-form .shop_table td { padding-top: 16px; padding-bottom: 16px; border-color: var(--snbk-line); }
.snb-co .woocommerce-cart-form .product-thumbnail img { border-radius: 12px; }
.snb-co .woocommerce-cart-form .product-name a { color: var(--snbk-ink); font-size: 15px; font-weight: 700; line-height: 1.35; }
.snb-co .woocommerce-cart-form .product-price,
.snb-co .woocommerce-cart-form .product-subtotal { color: var(--snbk-ink); font-weight: 700; }
.snb-co .woocommerce-cart-form a.remove { border-color: var(--snbk-field) !important; color: #9b97a6 !important; }
.snb-co .woocommerce-cart-form a.remove:hover { border-color: #c2334d !important; background: #c2334d; color: #fff !important; }
.snb-co .quantity { overflow: hidden; border: 1px solid var(--snbk-field); border-radius: 99px; }
.snb-co .quantity input.qty, .snb-co .quantity .button { height: 38px; border: 0 !important; background: #fff !important; box-shadow: none; }
.snb-co .woocommerce-cart-form .actions .button,
.snb-co .continue-shopping .button {
  min-height: 42px;
  border-radius: 99px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
}
.snb-co .woocommerce-cart-form button[name="update_cart"] { border: 1px solid var(--snbk-field) !important; background: #fff !important; color: var(--snbk-ink) !important; }
.snb-co .woocommerce-cart-form button[name="update_cart"]:disabled { opacity: 0.45; }
@media (min-width: 850px) {
  .snb-co .cart-collaterals .cart-sidebar { padding: 26px 26px 20px; border-radius: 18px; background: var(--snbk-soft); }
  .snb-co .woocommerce.row-divided > .col + .col { border-left: 0; }
}
.snb-co .cart_totals .shop_table { border: 0; }
.snb-co .cart_totals th, .snb-co .cart_totals td { border-color: var(--snbk-line); font-size: 14px; }
.snb-co .cart_totals thead th { color: var(--snbk-ink); font-size: 20px; font-weight: 800; letter-spacing: -0.2px; text-transform: none; }
.snb-co .cart_totals .order-total th, .snb-co .cart_totals .order-total td { color: var(--snbk-ink); font-size: 18px; font-weight: 800; }
.snb-co .wc-proceed-to-checkout { padding-top: 6px; }
.snb-co .ux-cart-coupon .widget-title { font-size: 15px !important; }
.snb-co .ux-cart-coupon .button { border-radius: 99px; text-transform: none; }
.snb-co .cart-sidebar-content .text,
.snb-co .cart-sidebar-content .section { background: transparent !important; }
.snb-co .cart-sidebar-content .col-inner { padding: 14px 16px !important; border-radius: 12px; background: #e9fbfb !important; color: #20595b; font-size: 13px; line-height: 1.5; }
.snb-co .cart-sidebar-content p { margin: 0; font-size: 13px; }
.woocommerce-cart.snb-co #content > .text h2 { color: var(--snbk-ink); font-size: 24px; font-weight: 800; letter-spacing: -0.3px; }
