/* =========================================================
   The Sweet Change — Cart Drawer Custom Styles
   - Single scrollable region (cart items + Pick & Add upsell)
   - Compact grid cart item rows with qty stepper bottom-right
   - Pick & Add upsell row
   - Senior-friendly larger fonts on mobile
   ========================================================= */

#CartDrawer .drawer__inner {
  display: flex;
  flex-direction: column;
  height: 100%;
}
#CartDrawer .drawer__header,
#CartDrawer #tsc-milestone-bar,
#CartDrawer .drawer__footer { flex-shrink: 0; }

#CartDrawer .tsc-scroll-region {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--tsc-blue-soft, #eaf1ff) transparent;
}
#CartDrawer .tsc-scroll-region::-webkit-scrollbar { width: 6px; }
#CartDrawer .tsc-scroll-region::-webkit-scrollbar-thumb {
  background: var(--tsc-blue-soft, #eaf1ff);
  border-radius: 999px;
}
#CartDrawer cart-drawer-items {
  overflow: visible !important;
  flex: 0 0 auto !important;
}
#CartDrawer #CartDrawer-CartItems {
  overflow: visible !important;
  max-height: none !important;
}

#CartDrawer .drawer__header {
  padding-top: 1rem !important;
  padding-bottom: 0.6rem !important;
  position: relative;
  z-index: 5;
  background: #fff;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
}
#CartDrawer .drawer__heading {
  font-family: 'Dela Gothic One', 'Poppins', system-ui, sans-serif;
  font-size: 1.55rem;
  letter-spacing: 0.5px;
  color: var(--tsc-blue, #0e4398);
  margin: 0 auto;
  text-align: center;
  flex: 0 1 auto;
}
#CartDrawer .drawer__close {
  position: absolute !important;
  right: 0.85rem !important;
  top: 50% !important;
  transform: translateY(-50%);
  z-index: 10;
}

@media screen and (max-width: 749px) {
  #CartDrawer .drawer__heading { font-size: 1.4rem; }
}

#CartDrawer .drawer__cart-items-wrapper { padding-right: 0 !important; }
#CartDrawer .cart-items { display: block !important; width: 100% !important; border-spacing: 0 !important; }
#CartDrawer .cart-items thead { display: none !important; }
#CartDrawer .cart-items tbody { display: block !important; }

#CartDrawer tr.cart-item {
  display: grid !important;
  grid-template-columns: 64px minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  grid-template-areas:
    "media details totals"
    "media details qty";
  column-gap: 10px;
  row-gap: 6px;
  padding: 14px 0 !important;
  border-bottom: 1px solid rgba(14, 67, 152, 0.08);
}

#CartDrawer tr.cart-item td {
  display: block !important;
  border: none !important;
  padding: 0 !important;
  width: auto !important;
  vertical-align: top !important;
}

#CartDrawer .cart-item__media { grid-area: media; width: 64px !important; }
#CartDrawer .cart-item__image {
  width: 60px !important;
  height: auto !important;
  max-height: 80px;
  border-radius: 8px;
  background: var(--tsc-blue-soft, #eaf1ff);
  object-fit: cover;
}

#CartDrawer .cart-item__details { grid-area: details; min-width: 0 !important; }
#CartDrawer .cart-item__details .cart-item__discounted-prices { display: none !important; }

#CartDrawer .cart-item__name {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--tsc-blue, #0e4398);
  margin: 0 0 0.4rem;
  display: block;
}
#CartDrawer .cart-item__details .product-option {
  font-size: 0.95rem;
  color: var(--tsc-text, #565656);
  margin-bottom: 0.2rem;
  line-height: 1.35;
}

#CartDrawer .cart-item__totals { grid-area: totals; text-align: right; align-self: start; }
#CartDrawer .cart-item__totals .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--tsc-blue, #0e4398);
  line-height: 1.2;
}
#CartDrawer .cart-item__totals .cart-item__old-price {
  font-size: 0.9rem;
  color: #999;
  font-weight: 400;
  text-decoration: line-through;
}

#CartDrawer .cart-item__quantity { grid-area: qty; align-self: end; justify-self: end; }
#CartDrawer .cart-item__quantity-wrapper {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  justify-content: flex-end !important;
  margin: 0 !important;
}

#CartDrawer .cart-quantity.quantity {
  display: inline-flex !important;
  align-items: stretch !important;
  min-width: 84px !important;
  width: 84px !important;
  height: 28px !important;
  border: 1px solid var(--tsc-blue, #0e4398) !important;
  border-radius: 4px !important;
  background: #fff !important;
  overflow: hidden !important;
  box-shadow: none !important;
  padding: 0 !important;
}
/* Kill Dawn's underline pseudo-elements that create the double-border effect */
#CartDrawer .cart-quantity.quantity::before,
#CartDrawer .cart-quantity.quantity::after,
#CartDrawer .cart-quantity::before,
#CartDrawer .cart-quantity::after {
  content: none !important;
  display: none !important;
  border: none !important;
  background: none !important;
  box-shadow: none !important;
}
#CartDrawer .cart-quantity.quantity .quantity__button {
  flex: 0 0 28px !important;
  width: 28px !important;
  min-width: 28px !important;
  height: 26px !important;
  color: var(--tsc-blue, #0e4398) !important;
  background: transparent !important;
  border: none !important;
  padding: 0 !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  font-size: 14px !important;
  line-height: 1 !important;
}
#CartDrawer .cart-quantity.quantity .quantity__button:hover { background: var(--tsc-blue-soft, #eaf1ff) !important; }
#CartDrawer .cart-quantity.quantity .quantity__input {
  flex: 1 1 auto !important;
  width: auto !important;
  min-width: 0 !important;
  font-size: 0.88rem !important;
  font-weight: 600 !important;
  color: var(--tsc-blue, #0e4398) !important;
  height: 26px !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: center !important;
  -moz-appearance: textfield;
}
#CartDrawer .cart-quantity.quantity .quantity__input::-webkit-outer-spin-button,
#CartDrawer .cart-quantity.quantity .quantity__input::-webkit-inner-spin-button {
  -webkit-appearance: none; margin: 0;
}
#CartDrawer .cart-remove-button .button {
  color: var(--tsc-text, #565656);
  padding: 0.3rem !important;
  min-width: 0 !important;
}
#CartDrawer .cart-remove-button .button:hover { color: var(--tsc-blue, #0e4398); }

#CartDrawer .totals__total { font-size: 1.05rem !important; }
#CartDrawer .totals__total-value {
  font-size: 1.25rem !important;
  font-weight: 700 !important;
  color: var(--tsc-blue, #0e4398) !important;
}

#CartDrawer .tsc-upsell {
  margin: 0.4rem 0.5rem 0.5rem;
  padding: 0.5rem 0.85rem 0.4rem;
  border-top: 1px solid rgba(14, 67, 152, 0.08);
}
#CartDrawer .tsc-upsell__title {
  font-family: 'Dela Gothic One', 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--tsc-blue, #0e4398);
  margin: 0 0 0.5rem;
  text-align: center;
  line-height: 1.3;
}
#CartDrawer .tsc-upsell__title em {
  font-style: normal;
  color: var(--tsc-blue, #0e4398);
  background: var(--tsc-lime, #c5e42c);
  padding: 0 0.4rem;
  border-radius: 4px;
  font-family: inherit;
}
#CartDrawer .tsc-upsell__scroller {
  display: flex;
  gap: 0.75rem;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0.2rem 0.2rem 0.5rem;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: var(--tsc-blue-soft, #eaf1ff) transparent;
}
#CartDrawer .tsc-upsell__scroller::-webkit-scrollbar { height: 6px; }
#CartDrawer .tsc-upsell__scroller::-webkit-scrollbar-thumb { background: var(--tsc-blue-soft, #eaf1ff); border-radius: 999px; }
#CartDrawer .tsc-upsell__card {
  flex: 0 0 130px;
  width: 130px;
  border-radius: 10px;
  background: #fff;
  border: 1px solid var(--tsc-blue-soft, #eaf1ff);
  padding: 0.5rem 0.5rem 0.6rem;
  display: flex;
  flex-direction: column;
  scroll-snap-align: start;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
#CartDrawer .tsc-upsell__card:hover {
  transform: translateY(-2px);
  border-color: var(--tsc-blue, #0e4398);
  box-shadow: 0 4px 12px rgba(14, 67, 152, 0.12);
}
#CartDrawer .tsc-upsell__image-wrap {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: var(--tsc-blue-soft, #eaf1ff);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0.5rem;
}
#CartDrawer .tsc-upsell__image { width: 100%; height: 100%; object-fit: cover; display: block; }
#CartDrawer .tsc-upsell__name {
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.3;
  color: var(--tsc-blue, #0e4398);
  margin: 0 0 0.4rem;
  /* Allow full product name to wrap to as many lines as needed */
  display: block;
  overflow: visible;
  word-break: break-word;
  hyphens: auto;
}
#CartDrawer .tsc-upsell__price-row { display: flex; align-items: baseline; gap: 0.35rem; margin-bottom: 0.55rem; }
#CartDrawer .tsc-upsell__price { font-size: 0.92rem; font-weight: 700; color: var(--tsc-blue, #0e4398); }
#CartDrawer .tsc-upsell__price-compare { font-size: 0.78rem; color: #999; text-decoration: line-through; }
#CartDrawer .tsc-upsell__add-btn {
  width: 100%;
  background: var(--tsc-blue, #0e4398);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 0.55rem 0.75rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.4px;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.1s ease;
  margin-top: auto;
}
#CartDrawer .tsc-upsell__add-btn:hover { background: #0a3580; }
#CartDrawer .tsc-upsell__add-btn:active { transform: scale(0.97); }
#CartDrawer .tsc-upsell__add-btn[disabled],
#CartDrawer .tsc-upsell__add-btn.is-loading {
  background: var(--tsc-blue-mid, #9abbf1);
  cursor: wait;
  pointer-events: none;
}
#CartDrawer .tsc-upsell__add-btn.is-added { background: var(--tsc-lime, #c5e42c); color: var(--tsc-blue, #0e4398); }
#CartDrawer .tsc-upsell__add-btn .tsc-upsell__add-icon { display: inline-block; margin-right: 0.25rem; font-weight: 800; }

.is-empty #CartDrawer .tsc-upsell { display: none; }

@media screen and (max-width: 749px) {
  #CartDrawer .drawer__heading { font-size: 1.1rem; }
  #CartDrawer .cart-item__name { font-size: 1.08rem; }
  #CartDrawer .cart-item__details .product-option { font-size: 0.95rem; }
  #CartDrawer .cart-item__totals .price { font-size: 1.08rem; }
  #CartDrawer .cart-item__totals .cart-item__old-price { font-size: 0.88rem; }
  #CartDrawer .cart-quantity.quantity { min-width: 82px !important; width: 82px !important; height: 28px !important; }
  #CartDrawer .cart-quantity.quantity .quantity__button { flex: 0 0 26px !important; width: 26px !important; min-width: 26px !important; height: 26px !important; font-size: 14px !important; }
  #CartDrawer .cart-quantity.quantity .quantity__input { font-size: 0.9rem !important; height: 26px !important; }
  #CartDrawer tr.cart-item { grid-template-columns: 60px minmax(0, 1fr) auto; column-gap: 8px; padding: 12px 0 !important; }
  #CartDrawer .cart-item__media { width: 60px !important; }
  #CartDrawer .cart-item__image { width: 56px !important; max-height: 74px; }
  #CartDrawer .totals__total { font-size: 1rem !important; }
  #CartDrawer .totals__total-value { font-size: 1.2rem !important; }
  #CartDrawer .tsc-upsell__title { font-size: 1rem; }
  #CartDrawer .tsc-upsell__card { flex: 0 0 118px; width: 118px; }
  #CartDrawer .tsc-upsell__name { font-size: 0.78rem; }
  #CartDrawer .tsc-upsell__price { font-size: 0.88rem; }
}



/* =========================================================
   TSC B2G1 modal + toast
   ========================================================= */
.tsc-b2g1-modal {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-family: 'Poppins', system-ui, sans-serif;
  animation: tscB2G1FadeIn 0.25s ease-out;
}
.tsc-b2g1-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(14, 67, 152, 0.72);
  backdrop-filter: blur(2px);
}
.tsc-b2g1-modal__card {
  position: relative;
  max-width: 460px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  background: #fff;
  border-radius: 14px;
  padding: 22px 22px 20px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25);
  animation: tscB2G1PopIn 0.35s cubic-bezier(0.18, 1.2, 0.4, 1);
}
.tsc-b2g1-modal__title {
  font-family: 'Dela Gothic One', 'Poppins', sans-serif;
  font-size: 2.3rem;
  color: #0e4398;
  text-align: center;
  margin: 0 0 8px;
  letter-spacing: 0.3px;
}
.tsc-b2g1-modal__subtitle {
  font-size: 1.5rem;
  color: #565656;
  text-align: center;
  margin: 0 0 18px;
  line-height: 1.4;
}
.tsc-b2g1-modal__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
.tsc-b2g1-modal__choice {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 6px;
  padding: 10px 10px 12px;
  border: 1px solid #eaf1ff;
  border-radius: 12px;
  background: #fff;
  cursor: pointer;
  font-family: inherit;
  transition: border-color 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  text-align: center;
}
.tsc-b2g1-modal__choice:hover {
  border-color: #0e4398;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(14, 67, 152, 0.18);
}
.tsc-b2g1-modal__choice[disabled] { opacity: 0.6; cursor: wait; }
.tsc-b2g1-modal__img-wrap {
  width: 84px;
  margin: 0 auto;
  aspect-ratio: 1/1;
  background: #eaf1ff;
  border-radius: 8px;
  overflow: hidden;
}
.tsc-b2g1-modal__img { width: 100%; height: 100%; object-fit: cover; display: block; }
.tsc-b2g1-modal__name {
  font-size: 1.45rem;
  font-weight: 600;
  color: #0e4398;
  line-height: 1.25;
  min-height: 2.5em;
}
.tsc-b2g1-modal__cta {
  margin-top: 4px;
  background: #c5e42c;
  color: #0e4398;
  border-radius: 999px;
  padding: 9px 12px;
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: uppercase;
}
.tsc-b2g1-modal__choice:hover .tsc-b2g1-modal__cta { background: #0e4398; color: #c5e42c; }

@keyframes tscB2G1FadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes tscB2G1PopIn {
  0% { transform: scale(0.85); opacity: 0; }
  100% { transform: scale(1); opacity: 1; }
}

body.tsc-b2g1-open { overflow: hidden; }

@media screen and (max-width: 480px) {
  .tsc-b2g1-modal__card { padding: 18px 14px 16px; }
  .tsc-b2g1-modal__title { font-size: 1.95rem; }
  .tsc-b2g1-modal__subtitle { font-size: 1.3rem; }
  .tsc-b2g1-modal__name { font-size: 1.25rem; }
  .tsc-b2g1-modal__cta { font-size: 1.1rem; padding: 8px 10px; }
  .tsc-b2g1-modal__img-wrap { width: 54px; }
}

/* Toast notification */
.tsc-toast {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: #0e4398;
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  opacity: 0;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 100000;
  pointer-events: none;
}
.tsc-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}


/* Close X + skip link on the B2G1 modal */
.tsc-b2g1-modal__close {
  position: absolute;
  top: 8px;
  right: 10px;
  width: 32px;
  height: 32px;
  border: none;
  background: transparent;
  color: #565656;
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease;
}
.tsc-b2g1-modal__close:hover {
  background: #f1f1f1;
  color: #0e4398;
}
.tsc-b2g1-modal__skip {
  display: block;
  margin: 14px auto 0;
  padding: 6px 12px;
  background: transparent;
  border: none;
  color: #888;
  font-family: 'Poppins', system-ui, sans-serif;
  font-size: 0.85rem;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.15s ease;
}
.tsc-b2g1-modal__skip:hover { color: #0e4398; }
.tsc-b2g1-modal__card { padding-top: 30px !important; }
                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                     
/* ============================================================
   TSC Buy 2 Get 1 — FREE item row in the cart drawer
   Read-only quantity (no stepper) + remove button.
   ============================================================ */
.cart-item.tsc-free-item {
  background: #eaf1ff;
  border-left: 3px solid #c5e42c;
}
.cart-item.tsc-free-item .cart-item__image {
  border: 1px solid #dbe6fb;
  border-radius: 8px;
}

/* Lime "Free" pill next to the product name */
.tsc-free-tag {
  display: inline-block;
  vertical-align: middle;
  margin-left: 6px;
  background: #c5e42c;
  color: #0a3580;
  font-family: 'Poppins', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 4px 11px;
  border-radius: 999px;
  line-height: 1.4;
}

/* Blue "Buy 2 Get 1 Free" caption */
.tsc-free-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  color: #0e4398;
  line-height: 1;
  white-space: nowrap;
}
.tsc-free-badge__icon { display: inline-flex; }
.tsc-free-badge__icon svg { width: 13px; height: 13px; }
.tsc-free-badge__icon svg path { fill: #0e4398; }

/* Read-only quantity + remove button wrapper */
.tsc-free-qty-wrapper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}
.tsc-free-qty {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid #cdd9ee;
  border-radius: 4px;
  padding: 6px 11px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  color: #565656;
  cursor: not-allowed;
  user-select: none;
  white-space: nowrap;
}
.tsc-free-qty__lock { display: inline-flex; }
.tsc-free-qty__lock svg { width: 12px; height: 12px; }
.tsc-free-qty__lock svg path { fill: #9abbf1; }
.tsc-free-qty__label { color: #888; }
.tsc-free-qty__value { font-weight: 700; color: #0e4398; }

.cart-item.tsc-free-item .tsc-free-qty-wrapper .cart-remove-button {
  border: 1px solid #e2c9c9;
  border-radius: 4px;
}
.cart-item.tsc-free-item .tsc-free-qty-wrapper .cart-remove-button svg path { fill: #b46a6a; }


/* ============================================================
   TSC cart drawer UI polish (text sizes, qty box, upsell, reviews tab)
   NOTE: theme root font-size is 62.5% so 1rem = 10px here.
   ============================================================ */

/* #1 Keep the Judge.me reviews tab from covering the open cart drawer */
.jdgm-revs-tab-btn { z-index: 998 !important; }
body:has(cart-drawer.active) .jdgm-revs-tab-btn,
body:has(cart-drawer.animate) .jdgm-revs-tab-btn { display: none !important; }

/* #2 Larger, more readable cart text */
#CartDrawer .drawer__heading { font-size: 2rem; }
#CartDrawer .cart-item__name { font-size: 1.3rem; line-height: 1.3; }
#CartDrawer .cart-item__details .product-option,
#CartDrawer .cart-item__details dt,
#CartDrawer .cart-item__details dd { font-size: 1.3rem; }
#CartDrawer .cart-item .price,
#CartDrawer .cart-item__final-price,
#CartDrawer .cart-item__old-price { font-size: 1.5rem; }
#CartDrawer .totals__total,
#CartDrawer .totals__total-value { font-size: 1.75rem; }
#CartDrawer .discounts__discount { font-size: 1.25rem; }

/* #6 Tidier, smaller quantity stepper on paid lines */
#CartDrawer .cart-quantity.quantity,
#CartDrawer .cart-item .quantity { min-height: 36px; height: 36px; border-radius: 8px; }
#CartDrawer .cart-quantity .quantity__input { font-size: 1.5rem; font-weight: 700; color: #0e4398; }
#CartDrawer .cart-quantity .quantity__button svg { width: 11px; height: 11px; }

/* #6 Free-gift read-only quantity: compact pill with readable text */
.tsc-free-qty { padding: 5px 12px; border-radius: 999px; font-size: 1.25rem; gap: 7px; }
.tsc-free-qty__label { font-size: 1.1rem; color: #888; }
.tsc-free-qty__value { font-size: 1.4rem; font-weight: 700; color: #0e4398; }
.tsc-free-qty__lock svg { width: 13px; height: 13px; }

/* #5 Upsell cards: "+ Add" button above the image + more compact card */
#CartDrawer .tsc-upsell__card { padding: 0.45rem 0.5rem 0.55rem; }
#CartDrawer .tsc-upsell__add-btn { order: -1; margin-top: 0; margin-bottom: 0.5rem; font-size: 1.15rem; padding: 0.45rem 0.6rem; }
#CartDrawer .tsc-upsell__image-wrap { aspect-ratio: auto; height: 74px; margin-bottom: 0.45rem; }
#CartDrawer .tsc-upsell__name { font-size: 1.15rem; margin: 0 0 0.25rem; }
#CartDrawer .tsc-upsell__price-row { margin-bottom: 0.35rem; }
#CartDrawer .tsc-upsell__price { font-size: 1.25rem; }

/* #4 Modal: price line under each choice */
.tsc-b2g1-modal__price { display: block; font-size: 1.35rem; margin: 3px 0 7px; font-weight: 700; }
.tsc-b2g1-modal__price s { color: #999; font-weight: 500; margin-right: 6px; }
.tsc-b2g1-modal__price b { color: #0e4398; }

/* Hide Dawn's duplicate discount line on the free item (the "Buy 2 Get 1 Free" badge already states it) */
.cart-item.tsc-free-item .discounts { display: none; }

/* Cushion the mobile scrollbar so it doesn't clip the right-aligned prices */
#CartDrawer .tsc-scroll-region { padding-right: 10px; }
/* Pull the "Pick & Add" upsell up (reduce the gap above it) */
#CartDrawer .tsc-upsell { margin-top: 0; padding-top: 0; }
#CartDrawer-CartItems .cart-item:last-child { margin-bottom: 4px; }
#CartDrawer cart-drawer-items { flex: 0 0 auto; }
