/* ZenOnco cart page v2 */
.cv2 {
  --cv-navy: #0D2B5B;
  --cv-teal: #007F7B;
  --cv-teal-dark: #00645F;
  --cv-mint: #EAF8F6;
  --cv-blue: #EEF6FA;
  --cv-peach: #FFF2EA;
  --cv-orange: #F97316;
  --cv-green: #18A66A;
  --cv-border: #D9E5EA;
  --cv-text: #173B63;
  --cv-muted: #667C96;
  --cv-radius: 16px;
  --cv-bg: #F7FAFB;
  font-family: Poppins, sans-serif;
  color: var(--cv-text);
  background: var(--cv-bg);
  padding-bottom: 0;
}
.cv2 * { box-sizing: border-box; }
.cv2 a { text-decoration: none; }
.cv2 .container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Stepper */
.cv2-stepper-wrap {
  background: #fff;
  border-bottom: 1px solid var(--cv-border);
  padding: 18px 0;
}
.cv2-stepper-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cv2-steps {
  display: flex;
  align-items: center;
  gap: 0;
  flex: 1;
  max-width: 520px;
}
.cv2-step {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--cv-muted);
  font-size: 14px;
  font-weight: 600;
}
.cv2-step-num {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--cv-blue);
  color: var(--cv-teal);
  font-size: 13px;
  font-weight: 700;
}
.cv2-step.is-active {
  color: var(--cv-navy);
}
.cv2-step.is-active .cv2-step-num {
  background: var(--cv-orange);
  color: #fff;
}
.cv2-step-line {
  width: 48px;
  height: 2px;
  margin: 0 10px;
  background: #D5E2E8;
}
.cv2-secure-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--cv-green);
  font-size: 13px;
  font-weight: 600;
}
.cv2-secure-badge img {
  width: 18px;
  height: 18px;
}

/* Layout */
.cv2-body {
  padding: 28px 0 40px;
}
.cv2-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 390px);
  gap: 28px;
  align-items: start;
}
.cv2-side {
  position: sticky;
  top: 88px;
}

.cv2-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px 16px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.cv2-head-copy {
  min-width: 0;
  /* Grow horizontally on desktop; do NOT use a 220px flex-basis — in
     column (mobile) layout that basis becomes height and opens a huge gap. */
  flex: 1 1 auto;
}
.cv2-title {
  margin: 0 0 6px;
  color: var(--cv-navy);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.15;
}
.cv2-sub {
  margin: 0;
  color: var(--cv-muted);
  font-size: 14px;
}
.cv2-continue,
a.cv2-continue.cnt-shp,
a.cnt-shp.cv2-continue {
  display: inline-flex !important;
  align-items: center;
  gap: 8px;
  color: var(--cv-teal) !important;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap !important;
  margin-top: 4px;
  flex: 0 0 auto;
  max-width: none !important;
  width: auto !important;
  overflow: visible !important;
  text-overflow: unset !important;
  text-decoration: none !important;
  padding: 8px 12px 8px 8px;
  border-radius: 999px;
  background: #F3FAF9;
  border: 1px solid #D7ECE9;
  box-sizing: border-box;
}
.cv2-continue:hover,
a.cv2-continue.cnt-shp:hover {
  color: var(--cv-teal-dark) !important;
  background: #E7F5F3;
  border-color: #C5E2DE;
}
.cv2-continue-ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #fff;
  border: 1px solid #D7ECE9;
  flex-shrink: 0;
  color: var(--cv-teal);
}
.cv2-continue-ico img {
  display: block;
  width: 14px;
  height: 14px;
}
.cv2-continue-txt {
  display: inline-block;
  white-space: nowrap !important;
  overflow: visible !important;
  text-overflow: unset !important;
}

/* Cart item */
.cv2-item {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr) minmax(150px, auto);
  gap: 20px;
  padding: 20px;
  margin-bottom: 14px;
  background: #fff;
  border: 1px solid var(--cv-border);
  border-radius: var(--cv-radius);
  align-items: start;
  overflow: visible;
  position: relative;
  z-index: 1;
}
.cv2-item-img {
  width: 140px;
  height: 150px;
  border-radius: 12px;
  background: #F4F8FA;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  flex-shrink: 0;
}
.cv2-item-img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.cv2-item-info {
  min-width: 0;
}
.cv2-item-name {
  margin: 0 0 4px;
  color: var(--cv-navy);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.3;
}
.cv2-item-name a { color: inherit; }
.cv2-item-qty-label {
  margin: 0 0 8px;
  color: var(--cv-muted);
  font-size: 13px;
  line-height: 1.4;
}
.cv2-protein-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 10px;
  margin-bottom: 10px;
  border-radius: 999px;
  background: var(--cv-blue);
  color: var(--cv-teal);
  font-size: 12px;
  font-weight: 600;
}
.cv2-protein-pill img { width: 14px; height: 14px; }
.cv2-rating {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 12px;
  font-size: 13px;
}
.cv2-rating .avg {
  color: var(--cv-navy);
  font-weight: 700;
}
.cv2-rating img {
  width: 14px;
  height: 14px;
}
.cv2-rating .count {
  color: var(--cv-muted);
  margin-left: 4px;
}
.cv2-features {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.cv2-feature {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--cv-muted);
  font-size: 12px;
  font-weight: 500;
}
.cv2-feature img { width: 16px; height: 16px; flex-shrink: 0; }

.cv2-item-price {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
  min-width: 160px;
  max-width: 200px;
  position: relative;
  z-index: 2;
}
.cv2-price-stack {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  width: 100%;
}
.cv2-remove {
  border: 1px solid #F0D7D4;
  background: #FFF7F6;
  padding: 0;
  margin: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  line-height: 0;
  align-self: flex-end;
  border-radius: 12px;
  position: relative;
  z-index: 3;
  color: #C0392B;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  box-sizing: border-box;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.cv2-remove:hover {
  background: #FFE8E5;
  border-color: #E8B4AE;
  color: #A93226;
}
.cv2-remove:active {
  transform: scale(0.96);
}
.cv2-remove img {
  width: 18px;
  height: 18px;
  display: block;
  pointer-events: none;
}
.cv2-ico {
  display: inline-block;
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  background-color: currentColor;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.cv2-ico--trash {
  width: 20px;
  height: 20px;
  -webkit-mask-image: url("../images/cart-v2/trash.svg?v=3");
  mask-image: url("../images/cart-v2/trash.svg?v=3");
}
.cv2-sale {
  color: var(--cv-navy);
  font-size: 22px;
  font-weight: 700;
  line-height: 1.15;
  text-decoration: none !important;
}
.cv2-mrp-row {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
  white-space: normal;
  max-width: 100%;
}
.cv2-mrp {
  color: var(--cv-muted);
  font-size: 13px;
  line-height: 1.2;
  text-decoration: line-through;
}
.cv2-off {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 1px;
  position: static;
  top: auto;
  left: auto;
  transform: none;
  background: #E7F8EE;
  color: var(--cv-green);
  border-radius: 6px;
  padding: 3px 8px;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 600;
  font-synthesis: none;
  font-kerning: none;
  font-variant-ligatures: none;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
  line-height: 1.35;
  text-decoration: none !important;
  white-space: nowrap;
  -webkit-font-smoothing: antialiased;
}
.cv2-off-num {
  display: inline-block;
  letter-spacing: 0.04em;
  font-variant-numeric: tabular-nums;
}
.cv2-qty {
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-top: 2px;
  padding: 4px;
  border-radius: 999px;
  background: var(--cv-mint);
  flex-shrink: 0;
}
.cv2-qty .minus,
.cv2-qty .plus {
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  user-select: none;
  line-height: 0;
}
.cv2-qty .minus:hover,
.cv2-qty .plus:hover {
  background: rgba(0, 127, 123, 0.1);
}
.cv2-qty .qty-input {
  width: 36px;
  height: 32px;
  border: 0;
  background: transparent;
  text-align: center;
  color: var(--cv-navy);
  font-size: 15px;
  font-weight: 700;
  line-height: 32px;
  outline: none;
  pointer-events: none;
  padding: 0;
  margin: 0;
  appearance: none;
  -moz-appearance: textfield;
}
.cv2-free {
  color: var(--cv-green) !important;
  font-weight: 700;
}
.cv2-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.cv2-empty {
  padding: 40px 20px;
  text-align: center;
  background: #fff;
  border: 1px solid var(--cv-border);
  border-radius: var(--cv-radius);
  color: var(--cv-muted);
}

/* Trust strip */
.cv2-trust {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 18px 0 28px;
  background: #fff;
  border: 1px solid var(--cv-border);
  border-radius: var(--cv-radius);
  overflow: hidden;
}
.cv2-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 18px;
  background: transparent;
  border-radius: 0;
  min-width: 0;
}
.cv2-trust-item + .cv2-trust-item {
  border-left: 1px solid #EEF3F5;
}
.cv2-trust-item .cv2-trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cv-mint);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}
.cv2-trust-icon img {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
  object-position: center;
  margin: 0;
}
.cv2-trust-item strong {
  display: block;
  color: var(--cv-navy);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 3px;
}
.cv2-trust-item > div span {
  display: block;
  color: var(--cv-muted);
  font-size: 12px;
  line-height: 1.4;
}

/* Recommendations */
.cv2-recs-sep {
  border: 0;
  border-top: 1px solid var(--cv-border);
  margin: 28px 0 24px;
  width: 100%;
}
.cv2-recs {
  margin-top: 0;
}
.cv2-recs-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
}
.cv2-recs-head img {
  width: 22px;
  height: 22px;
}
.cv2-recs-head h3 {
  margin: 0;
  color: var(--cv-navy);
  font-size: 20px;
  font-weight: 700;
}
.cv2-recs-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  align-items: stretch;
}
.cv2-rec-card {
  background: #fff;
  border: 1px solid var(--cv-border);
  border-radius: var(--cv-radius);
  padding: 10px;
  display: flex;
  flex-direction: column;
  gap: 0;
  height: 100%;
  min-height: 0;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}
.cv2-rec-card:hover {
  border-color: #B7D4D2;
  box-shadow: 0 8px 20px rgba(13, 43, 91, 0.06);
}
.cv2-rec-media {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  min-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #F4F8FA 0%, #EEF4F6 100%);
  border-radius: 10px;
  margin-bottom: 10px;
  overflow: hidden;
  flex: 0 0 auto;
}
.cv2-rec-media img {
  width: 92%;
  height: 92%;
  max-width: 92%;
  max-height: 92%;
  object-fit: contain;
}
.cv2-rec-body {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 0 0 auto;
  min-height: 0;
}
.cv2-rec-name {
  color: var(--cv-navy);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  min-height: 0;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.cv2-rec-name a { color: inherit; }
.cv2-rec-name a:hover { color: var(--cv-teal); }
.cv2-rec-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  min-height: 16px;
}
.cv2-rec-meta {
  color: var(--cv-muted);
  font-size: 12px;
  line-height: 1.3;
  min-height: 0;
  flex: 1 1 auto;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.cv2-rec-meta.is-empty {
  visibility: hidden;
}
.cv2-rec-rating {
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 12px;
  color: var(--cv-navy);
  font-weight: 600;
  min-height: 0;
  line-height: 1.2;
  flex: 0 0 auto;
}
.cv2-rec-rating.is-empty {
  display: none;
}
.cv2-rec-rating img { width: 12px; height: 12px; flex-shrink: 0; }
.cv2-rec-rating small { color: var(--cv-muted); font-weight: 500; }
.cv2-rec-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  flex-wrap: wrap;
  margin-top: 2px;
  min-height: 0;
}
.cv2-rec-price strong {
  color: var(--cv-navy);
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
}
.cv2-rec-price .old {
  color: var(--cv-muted);
  font-size: 12px;
  text-decoration: line-through;
  line-height: 1.2;
}
/* Use .cv2-off — never bare .off (guidance-modal.css sets .off { position:absolute }). */
.cv2-rec-price .cv2-off {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  position: static;
  top: auto;
  left: auto;
  transform: none;
  background: #E7F8EE;
  color: var(--cv-green);
  border-radius: 5px;
  padding: 2px 6px;
  font-family: Poppins, sans-serif;
  font-size: 11px;
  font-weight: 600;
  font-synthesis: none;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.03em;
  line-height: 1.3;
  white-space: nowrap;
  text-decoration: none !important;
}
.cv2-rec-form {
  margin-top: 10px;
  padding-top: 0;
  width: 100%;
  flex: 0 0 auto;
}
.cv2-rec-atc {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  height: 40px;
  padding: 0 12px;
  border: 1.5px solid var(--cv-teal);
  border-radius: 10px;
  background: #fff;
  color: var(--cv-teal);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.cv2-rec-atc:hover {
  background: var(--cv-teal);
  border-color: var(--cv-teal);
  color: #fff;
}
.cv2-rec-atc:hover img {
  filter: brightness(0) invert(1);
}
.cv2-rec-atc img { width: 14px; height: 14px; }

/* Sidebar */
.cv2-coupon,
.cv2-pay {
  background: #fff;
  border: 1px solid var(--cv-border);
  border-radius: var(--cv-radius);
  padding: 18px;
  margin-bottom: 14px;
}
.cv2-coupon-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  color: var(--cv-navy);
  font-size: 16px;
  font-weight: 700;
}
.cv2-coupon-title img { width: 20px; height: 20px; }
.cv2-coupon-row {
  display: flex;
  gap: 8px;
}
.cv2-coupon-row .cart-coupon {
  flex: 1;
  height: 44px;
  border: 1px solid var(--cv-border);
  border-radius: 10px;
  padding: 0 12px;
  font-size: 14px;
  color: var(--cv-text);
  outline: none;
}
.cv2-coupon-row .cart-coupon:focus {
  border-color: var(--cv-teal);
}
.cv2-apply {
  height: 44px;
  padding: 0 16px;
  border: 0;
  border-radius: 10px;
  background: var(--cv-teal);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.cv2-apply:hover { background: var(--cv-teal-dark); }
#couponStatus {
  margin-top: 8px;
  font-size: 13px;
  color: var(--cv-green);
}
#couponStatus.CouponError { color: #d64545 !important; }

.cv2-pay-title {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 14px;
  color: var(--cv-navy);
  font-size: 16px;
  font-weight: 700;
}
.cv2-pay-title img { width: 18px; height: 18px; }
.cv2-line {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  color: var(--cv-muted);
  font-size: 14px;
}
.cv2-line strong,
.cv2-line .val {
  color: var(--cv-navy);
  font-weight: 600;
}
.cv2-line .neg { color: var(--cv-green); }
.cv2-money {
  display: inline-flex;
  align-items: baseline;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
  line-height: 1;
}
.cv2-money > span {
  display: inline-block;
  line-height: 1;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
}
.cv2-rs {
  font-size: 0.9em !important;
  font-weight: 700 !important;
  margin-right: 0.08em;
  transform: translateY(0.06em);
}
.cv2-sign {
  margin-right: 0.04em;
  font-weight: 700 !important;
  transform: translateY(0.02em);
}
.cv2-line-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.cv2-line-label img { width: 14px; height: 14px; opacity: 0.7; }
.cv2-divider {
  height: 1px;
  background: var(--cv-border);
  margin: 12px 0;
}
.cv2-total {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 4px;
}
.cv2-total > .final-amount-txt {
  color: var(--cv-navy);
  font-size: 15px;
  font-weight: 700;
}
.cv2-total .amt {
  color: var(--cv-navy);
  font-size: 24px;
  font-weight: 700;
  font-variant-numeric: tabular-nums;
  letter-spacing: -0.02em;
}
.cv2-total .amt .cv2-rs {
  font-size: 0.82em !important;
  transform: translateY(0.08em);
}
.cv2-tax {
  margin: 0 0 16px;
  color: var(--cv-muted);
  font-size: 12px;
}
.cv2-checkout {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  border: 0;
  border-radius: 12px;
  background: var(--cv-teal-dark) !important;
  color: #fff !important;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}
.cv2-checkout:hover { filter: brightness(1.05); }
.cv2-checkout img { width: 16px; height: 16px; filter: brightness(0) invert(1); }
.cv2-legal {
  margin: 12px 0 0;
  color: var(--cv-muted);
  font-size: 11px;
  line-height: 1.45;
  text-align: center;
}
.cv2-legal a {
  color: var(--cv-teal);
  font-weight: 600;
}
.cv2-delivery-note {
  margin-top: 12px;
  color: var(--cv-muted);
  font-size: 11px;
  line-height: 1.45;
}

.cv2-accept {
  margin-bottom: 14px;
}
.cv2-accept h4 {
  margin: 0 0 10px;
  color: var(--cv-muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}
.cv2-accept-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}
.cv2-pay-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  height: 30px;
  padding: 0 8px;
  border: 1px solid var(--cv-border);
  border-radius: 6px;
  background: #fff;
  color: var(--cv-navy);
  font-size: 11px;
  font-weight: 700;
}

.cv2-side-trust {
  display: flex;
  flex-direction: column;
  gap: 0;
  background: #fff;
  border: 1px solid var(--cv-border);
  border-radius: var(--cv-radius);
  padding: 6px 14px;
  overflow: hidden;
}
.cv2-side-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 2px;
  color: var(--cv-muted);
  font-size: 13px;
  font-weight: 500;
}
.cv2-side-trust-item + .cv2-side-trust-item {
  border-top: 1px solid #EEF3F5;
}
.cv2-side-trust-item .cv2-side-trust-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--cv-mint);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}
.cv2-side-trust-icon img {
  width: 24px;
  height: 24px;
  display: block;
  object-fit: contain;
  object-position: center;
}
.cv2-side-trust-item strong {
  display: block;
  color: var(--cv-navy);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 2px;
}
.cv2-side-trust-item > div span {
  display: block;
  font-size: 12px;
  line-height: 1.3;
  color: var(--cv-muted);
}

/* Care banner */
.cv2-care {
  background: var(--cv-peach);
  padding: 22px 0;
  margin-top: 20px;
}
.cv2-care-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.cv2-care-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.cv2-care-icon img { width: 24px; height: 24px; }
.cv2-care-copy {
  flex: 1;
  color: var(--cv-navy);
  font-size: 14px;
  line-height: 1.5;
}
.cv2-care-copy strong {
  display: block;
  font-size: 16px;
  margin-bottom: 2px;
}
.cv2-care-mark {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--cv-teal);
  font-size: 12px;
  font-weight: 700;
  text-align: center;
  flex-shrink: 0;
}
.cv2-care-mark img { width: 36px; height: 36px; }

.cv2-mobile-checkout,
.cv2-inline-checkout {
  display: none;
}

@media (max-width: 991px) {
  .cv2-grid {
    grid-template-columns: 1fr;
  }
  .cv2-side {
    position: static;
  }
  .cv2-recs-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .cv2-trust {
    grid-template-columns: 1fr;
  }
  .cv2-trust-item + .cv2-trust-item {
    border-left: 0;
    border-top: 1px solid #EEF3F5;
  }
  .cv2-trust-item {
    padding: 14px 16px;
  }
  .cv2-item {
    grid-template-columns: 100px minmax(0, 1fr);
    gap: 14px;
  }
  .cv2-item-img {
    width: 100px;
    height: 110px;
  }
  .cv2-item-price {
    grid-column: 1 / -1;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    min-width: 0;
    max-width: none;
    gap: 12px;
  }
  .cv2-price-stack {
    align-items: flex-start;
    order: 1;
    flex: 1 1 auto;
    min-width: 0;
  }
  .cv2-remove {
    order: 2;
    align-self: center;
    margin-left: auto;
  }
  .cv2-qty {
    order: 3;
    margin-left: 0;
  }
  .cv2-inline-checkout {
    display: block;
    margin: 4px 0 18px;
    padding: 0;
    background: transparent;
    border: 0;
    position: static;
  }
  .cv2-inline-checkout .cv2-checkout {
    width: 100%;
  }
  .desk-only-checkout { display: none !important; }
}
@media (max-width: 991px) {
  .cv2-head {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
  }
  .cv2-head-copy {
    flex: 0 0 auto;
  }
  .cv2-continue,
  a.cv2-continue.cnt-shp {
    align-self: flex-start;
    margin-top: 0;
  }
}
@media (max-width: 767px) {
  .cv2-title { font-size: 26px; }
  .cv2-head {
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 12px;
  }
  .cv2-head-copy {
    flex: 0 0 auto;
  }
  .cv2-continue,
  a.cv2-continue.cnt-shp {
    align-self: flex-start;
    max-width: 100% !important;
    white-space: nowrap !important;
  }
  .cv2-recs-grid { grid-template-columns: 1fr; }
  .cv2-care-inner { flex-direction: column; text-align: center; }
  .cv2-steps { max-width: none; }
  .cv2-step-line { width: 24px; margin: 0 6px; }
  .cv2-step span.cv2-step-label { font-size: 12px; }
}
