/* ════════════════════════════════════════════════════════════════════
   Viloer Side Cart V3 — stylesheet
   Design values ported 1:1 from the Claude-designed reference
   (V3 "Compact"). All colors flow through CSS variables so the
   Elementor "Brand Palette" section recolors everything at once.
   ════════════════════════════════════════════════════════════════════ */

.vsc {
  /* —— brand tokens (overridable from the widget Style tab) —— */
  --vsc-ink: #12302b;
  --vsc-sage: #cdecb8;
  --vsc-sage-700: #4c7a39;
  --vsc-coral: #dc4526;
  --vsc-paper: #fbfaf8;
  --vsc-cloud: #e7edee;
  --vsc-line: #e8e6e2;
  --vsc-muted: #6f7a73;
  --vsc-font: 'Hanken Grotesk', -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;
  --vsc-radius: 16px;

  position: fixed;
  inset: 0;
  z-index: 99999;
  pointer-events: none;
  font-family: var(--vsc-font);
  color: var(--vsc-ink);
  -webkit-font-smoothing: antialiased;
}
.vsc.is-open { pointer-events: auto; }

.vsc *, .vsc *::before, .vsc *::after { box-sizing: border-box; }
.vsc [hidden] { display: none !important; }
.vsc a { color: inherit; text-decoration: none; }
.vsc button { font-family: inherit; }
.vsc img { border: none; }

/* —— Scrim: dims the page while the cart is open ——————————————————— */
.vsc-scrim {
  position: absolute;
  inset: 0;
  background: rgba(18, 48, 43, .4);
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s ease;
}
.vsc.is-open .vsc-scrim { opacity: 1; pointer-events: auto; }

/* —— Drawer shell: 3 stacked zones, slides in from the side ———————— */
.vsc-cart {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 430px;
  max-width: 100%;
  background: var(--vsc-paper);
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .42s cubic-bezier(.22, .8, .2, 1), visibility .42s;
  visibility: hidden;
  box-shadow: -24px 0 60px rgba(18, 48, 43, .22);
}
.vsc.is-open .vsc-cart { transform: translateX(0); visibility: visible; }

/* left-side mirror */
.vsc--left .vsc-cart {
  right: auto;
  left: 0;
  transform: translateX(-100%);
  box-shadow: 24px 0 60px rgba(18, 48, 43, .22);
}
.vsc--left.is-open .vsc-cart { transform: translateX(0); }

.vsc-cart__header {
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
  padding: 14px 18px 12px;
  box-shadow: 0 8px 16px -12px rgba(18, 48, 43, .35); /* static top */
}
.vsc-cart__body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;                                   /* SCROLLS */
  padding: 14px 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  scrollbar-width: thin;
  scrollbar-color: #cdd2ce transparent;
}
.vsc-cart__body > * { flex-shrink: 0; }               /* natural height → real scroll */
.vsc-cart__footer {
  flex: 0 0 auto;
  position: relative;
  z-index: 2;
  padding: 12px 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 11px;
  background: var(--vsc-paper);
  box-shadow: 0 -10px 20px -12px rgba(18, 48, 43, .28); /* static bottom */
}

/* —— Header: title + close + free-shipping meter ——————————————————— */
.vsc-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 11px;
}
.vsc-head__title { font-size: 17px; font-weight: 900; letter-spacing: -.3px; }
.vsc-count { color: var(--vsc-muted); font-weight: 700; }
.vsc-close {
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid var(--vsc-line);
  background: #fff;
  display: grid;
  place-items: center;
  cursor: pointer;
  color: var(--vsc-ink);
  padding: 0;
}

.vsc-ship__label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 13px;
  line-height: 1.3;
  margin-bottom: 8px;
}
.vsc-ico--ship { color: var(--vsc-sage-700); }
.vsc-ship__label b, .vsc-ship__label strong { font-weight: 800; }
.vsc-ship__track {
  height: 7px;
  border-radius: 999px;
  background: #e7e4df;
  overflow: hidden;
}
.vsc-ship__fill {
  height: 100%;
  border-radius: 999px;
  background: var(--vsc-sage-700);
  width: 0;
  transition: width .5s cubic-bezier(.2, .8, .2, 1);
}

/* —— Line item ————————————————————————————————————————————————————— */
.vsc-entry { display: flex; flex-direction: column; gap: 10px; }
.vsc-entry.is-removing { opacity: 0; transform: translateX(14px); transition: opacity .25s ease, transform .25s ease; }

.vsc-item { display: flex; gap: 11px; align-items: center; }
.vsc-item__thumb {
  width: 60px;
  height: 60px;
  border-radius: 12px;
  overflow: hidden;
  flex: 0 0 60px;
  background: var(--vsc-cloud);
}
.vsc-item__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vsc-item__info { flex: 1; min-width: 0; }
.vsc-item__name { font-size: 13.5px; font-weight: 800; line-height: 1.15; }
.vsc-item__meta { font-size: 11.5px; color: var(--vsc-muted); margin-top: 1px; }
.vsc-item__price { text-align: right; }
.vsc-item__now { font-size: 14.5px; font-weight: 900; }
.vsc-item__was { font-size: 11px; color: var(--vsc-muted); text-decoration: line-through; }

/* —— Quantity stepper ————————————————————————————————————————————— */
.vsc-qty {
  display: inline-flex;
  align-items: center;
  border: 1.5px solid var(--vsc-line);
  border-radius: 999px;
  background: #fff;
}
.vsc-qty button {
  width: 28px;
  height: 28px;
  border: none;
  background: none;
  color: var(--vsc-ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  border-radius: 999px;
  padding: 0;
}
.vsc-qty span {
  min-width: 18px;
  text-align: center;
  font-weight: 700;
  font-size: 13px;
  font-variant-numeric: tabular-nums;
}

/* —— Variation pills + qty row ————————————————————————————————————— */
.vsc-variants {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.vsc-variants__groups {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 10px;
  min-width: 0;
}
.vsc-sizes { display: flex; flex-wrap: wrap; gap: 6px; }
.vsc-size {
  min-width: 34px;
  height: 32px;
  padding: 0 8px;
  border-radius: 9px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
  font-size: 12.5px;
  border: 1.5px solid var(--vsc-line);
  background: transparent;
  color: var(--vsc-ink);
  transition: all .15s;
}
.vsc-size.is-active {
  border-color: var(--vsc-ink) !important;
  background: var(--vsc-ink) !important;
  color: #fff !important;
}
.vsc-size:disabled { opacity: .45; cursor: default; }

/* —— Limited-time offer (deep-green upsell w/ live countdown) ——————— */
.vsc-lto {
  border-radius: var(--vsc-radius);
  overflow: hidden;
  background: var(--vsc-ink);
  transition: opacity .3s;
}
.vsc-lto.is-expired { opacity: .6; }
.vsc-lto__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 9px 13px;
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}
.vsc-lto__tag {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--vsc-sage);
}
.vsc-lto__timer {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 13px;
  font-weight: 900;
  color: #fff;
  font-variant-numeric: tabular-nums;
}
.vsc-lto__row { display: flex; gap: 12px; align-items: center; padding: 13px; }
.vsc-lto__thumb {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  overflow: hidden;
  flex: 0 0 56px;
  background: rgba(255, 255, 255, .1);
  display: block;
}
.vsc-lto__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vsc-lto__info { flex: 1; min-width: 0; }
.vsc-lto__name { font-size: 13.5px; font-weight: 800; color: #fff; line-height: 1.15; display: block; }
.vsc-lto__price { font-size: 12.5px; margin-top: 3px; color: #fff; }
.vsc-lto__price b { color: var(--vsc-sage); font-size: 15.5px; }
.vsc-lto__price s { color: rgba(255, 255, 255, .5); }
.vsc-lto__price em { color: var(--vsc-sage); font-weight: 800; font-style: normal; }
.vsc-lto__add {
  flex: 0 0 auto;
  padding: 10px 17px;
  border-radius: 999px;
  border: 1.5px solid transparent;
  cursor: pointer;
  background: var(--vsc-sage);
  color: var(--vsc-ink);
  font-weight: 900;
  font-size: 13.5px;
  font-family: inherit;
  display: flex;
  align-items: center;
  gap: 5px;
}
.vsc-lto__add.is-added {
  background: transparent !important;
  color: #fff !important;
  border-color: rgba(255, 255, 255, .4) !important;
}
.vsc-lto__add:disabled { cursor: default; }

/* —— Cross-sell "You may also like" ——————————————————————————————— */
.vsc-also__title {
  font-size: 12px;
  font-weight: 800;
  color: var(--vsc-muted);
  text-transform: uppercase;
  letter-spacing: .4px;
  margin-bottom: 10px;
}
.vsc-also__list { display: flex; flex-direction: column; gap: 11px; }
.vsc-also__item { display: flex; gap: 11px; align-items: center; }
.vsc-also__thumb {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  overflow: hidden;
  flex: 0 0 46px;
  background: var(--vsc-cloud);
  display: block;
}
.vsc-also__thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.vsc-also__info { flex: 1; min-width: 0; }
.vsc-also__name {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.15;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
}
.vsc-also__price { font-size: 12.5px; margin-top: 1px; }
.vsc-also__price s { color: var(--vsc-muted); }
.vsc-also__add {
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 999px;
  border: 1.5px solid var(--vsc-line);
  background: #fff;
  color: var(--vsc-ink);
  cursor: pointer;
  display: grid;
  place-items: center;
  padding: 0;
}
.vsc-also__add.is-added {
  background: var(--vsc-ink) !important;
  color: #fff !important;
  border-color: var(--vsc-ink) !important;
}

/* —— Coupon (collapsed link → input + Apply → applied chips) ——————— */
.vsc-coupon__toggle {
  display: flex;
  align-items: center;
  gap: 7px;
  border: none;
  background: none;
  cursor: pointer;
  color: var(--vsc-ink);
  font-size: 13px;
  font-weight: 600;
  padding: 0;
  font-family: inherit;
}
.vsc-coupon__toggle .vsc-ico { opacity: .7; }
.vsc-coupon__box { display: none; gap: 8px; }
.vsc-coupon__box input {
  flex: 1;
  min-width: 0;
  padding: 10px 13px;
  border-radius: 11px;
  border: 1.5px solid var(--vsc-line);
  background: #fff;
  color: var(--vsc-ink);
  font-size: 14px;
  font-family: inherit;
  outline: none;
}
.vsc-coupon__box input.is-error { border-color: var(--vsc-coral) !important; }
.vsc-coupon__apply {
  padding: 0 18px;
  border-radius: 11px;
  border: none;
  cursor: pointer;
  background: var(--vsc-ink);
  color: #fff;
  font-weight: 700;
  font-size: 14px;
  font-family: inherit;
}
.vsc-coupon__applied { display: none; flex-direction: column; gap: 7px; }
.vsc-coupon__chip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 12px;
  background: #eef6e7;
  border: 1px dashed var(--vsc-sage-700);
}
.vsc-coupon__chip .vsc-code {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--vsc-sage-700);
  min-width: 0;
}
.vsc-coupon__chip .vsc-remove {
  border: none;
  background: none;
  cursor: pointer;
  color: var(--vsc-muted);
  font-size: 12px;
  text-decoration: underline;
  font-family: inherit;
  padding: 0;
  flex: 0 0 auto;
}
.vsc-coupon__hint { font-size: 11.5px; color: var(--vsc-muted); margin-top: 6px; }

/* state toggles set by JS: .vsc-coupon.is-open / .has-coupons */
.vsc-coupon.is-open .vsc-coupon__toggle { display: none; }
.vsc-coupon.is-open .vsc-coupon__box { display: flex; }
.vsc-coupon.has-coupons .vsc-coupon__toggle,
.vsc-coupon.has-coupons .vsc-coupon__box { display: none; }
.vsc-coupon.has-coupons .vsc-coupon__applied { display: flex; }
.vsc-coupon.has-coupons.is-open .vsc-coupon__box { display: flex; }
.vsc-coupon.has-coupons.is-open .vsc-coupon__applied { display: flex; }

/* —— Totals (NO shipping row — by design) —————————————————————————— */
.vsc-totals { display: flex; flex-direction: column; gap: 4px; }
.vsc-totals__row {
  display: flex;
  justify-content: space-between;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--vsc-muted);
}
.vsc-totals__row span:last-child { color: var(--vsc-ink); font-weight: 700; }
.vsc-totals__row.is-save { color: var(--vsc-sage-700); }
.vsc-totals__row.is-save span:last-child { color: var(--vsc-sage-700); }
.vsc-totals__rule { height: 1px; background: var(--vsc-line); margin: 3px 0; }
.vsc-totals__row.is-total { font-size: 17px; font-weight: 800; color: var(--vsc-ink); }
.vsc-totals__row.is-total span:last-child { font-weight: 900; }

/* —— Checkout button ——————————————————————————————————————————————— */
.vsc-checkout {
  width: 100%;
  padding: 15px;
  border-radius: 999px;
  border: none;
  background: var(--vsc-ink);
  color: #fff;
  font-size: 15.5px;
  font-weight: 800;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-align: center;
}
.vsc-checkout:hover { background: #0d241e; color: #fff; }
.vsc-checkout.is-disabled { opacity: .55; pointer-events: none; }

/* —— Trust row (under checkout) ——————————————————————————————————— */
.vsc-trust { display: flex; justify-content: center; flex-wrap: wrap; gap: 6px 16px; }
.vsc-trust span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: 11.5px;
  font-weight: 600;
  color: var(--vsc-muted);
}

/* —— Icons inherit text color ————————————————————————————————————— */
.vsc-ico { display: inline-flex; flex: 0 0 auto; align-items: center; justify-content: center; }
.vsc-ico svg { display: block; }

/* —— Empty state + loading spinner ————————————————————————————————— */
.vsc-empty {
  text-align: center;
  color: var(--vsc-muted);
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.5;
  padding: 26px 8px;
}
.vsc-loading { display: flex; justify-content: center; padding: 26px 0; }
.vsc-spinner {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 2.5px solid var(--vsc-ink);
  border-top-color: transparent;
  animation: vsc-spin .7s linear infinite;
}
@keyframes vsc-spin { to { transform: rotate(360deg); } }

/* busy guard while a mutation is in flight */
.vsc-cart.is-busy [data-items],
.vsc-cart.is-busy [data-lto],
.vsc-cart.is-busy [data-also] { opacity: .55; pointer-events: none; transition: opacity .15s; }

/* —— Editor preview: drawer renders inline, no fixed overlay ———————— */
.vsc--editor {
  position: relative;
  inset: auto;
  pointer-events: auto;
  display: flex;
  justify-content: center;
  padding: 10px 0;
}
.vsc--editor .vsc-scrim { display: none; }
.vsc--editor .vsc-cart {
  position: relative;
  transform: none;
  visibility: visible;
  height: 680px;
  max-height: 80vh;
  border-radius: 14px;
  overflow: hidden;
}

/* —— Responsive: full-width sheet on phones ———————————————————————— */
@media (max-width: 767px) {
  .vsc-cart { width: 100%; box-shadow: none; }
}

/* —— Reduced motion ———————————————————————————————————————————————— */
@media (prefers-reduced-motion: reduce) {
  .vsc-cart, .vsc-scrim, .vsc-ship__fill, .vsc-size, .vsc-entry.is-removing { transition: none; }
  .vsc-spinner { animation-duration: 1.4s; }
}

/* —— Variant row actions (qty + remove) ——————————————————————————— */
.vsc-variants__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 0 0 auto;
}
.vsc-item__remove {
  width: 28px;
  height: 28px;
  border: none;
  background: transparent;
  color: var(--vsc-muted);
  cursor: pointer;
  display: grid;
  place-items: center;
  border-radius: 999px;
  padding: 0;
  transition: color .15s ease, background-color .15s ease;
}
.vsc-item__remove:hover { color: var(--vsc-coral); background: #f8ece8; }

/* —— Editor placeholder (preview collapsed) ———————————————————————— */
.vsc-editor-placeholder {
  border: 1.5px dashed var(--vsc-line, #e8e6e2);
  border-radius: 12px;
  padding: 14px 18px;
  font-size: 13px;
  color: var(--vsc-muted, #6f7a73);
  background: var(--vsc-paper, #fbfaf8);
  text-align: center;
}

/* ------------------------------------------------------------------
   Theme conflict shield.
   The Hello theme and Elementor's Global (kit) styles paint generic
   `button`, `a` and `input` rules (accent backgrounds, link colors,
   borders, paddings) that can override the drawer's design. This
   layer re-asserts every interactive element at higher specificity.
   Colors/backgrounds carry !important; structural props (border,
   padding, font) rely on specificity only — so the widget's own
   style controls (higher specificity, colors also !important) always
   win over everything below.
------------------------------------------------------------------- */
.vsc .vsc-cart button,
.vsc .vsc-cart input[type="text"] {
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none !important;
  text-shadow: none !important;
  text-transform: none;
  letter-spacing: normal;
  font-family: inherit;
  line-height: 1.2;
  outline: none;
}
.vsc .vsc-cart a,
.vsc .vsc-cart a:hover,
.vsc .vsc-cart a:focus,
.vsc .vsc-cart a:visited {
  text-decoration: none;
  box-shadow: none !important;
  background-image: none !important;
}

.vsc .vsc-close { color: var(--vsc-ink) !important; background: #fff !important; border: 1px solid var(--vsc-line); padding: 0; }
.vsc .vsc-close:hover { background: var(--vsc-cloud) !important; }

.vsc .vsc-size { color: var(--vsc-ink) !important; background: transparent !important; border: 1.5px solid var(--vsc-line); padding: 0 8px; font-size: 12.5px; font-weight: 800; }
.vsc .vsc-size.is-active { color: #fff !important; background: var(--vsc-ink) !important; border-color: var(--vsc-ink) !important; }

.vsc .vsc-qty { background: #fff !important; }
.vsc .vsc-qty button { color: var(--vsc-ink) !important; background: transparent !important; border: none; padding: 0; }
.vsc .vsc-qty span { color: var(--vsc-ink) !important; }

.vsc .vsc-item__remove { color: var(--vsc-muted) !important; background: transparent !important; border: none; padding: 0; }
.vsc .vsc-item__remove:hover { color: var(--vsc-coral) !important; background: #f8ece8 !important; }

.vsc .vsc-lto__name,
.vsc .vsc-lto__name:hover,
.vsc .vsc-lto__name:visited { color: #fff !important; }
.vsc .vsc-lto__add { color: var(--vsc-ink) !important; background: var(--vsc-sage) !important; border: 1.5px solid transparent; padding: 10px 17px; font-size: 13.5px; font-weight: 900; }
.vsc .vsc-lto__add.is-added { color: #fff !important; background: transparent !important; border-color: rgba(255, 255, 255, .4) !important; }

.vsc .vsc-also__name,
.vsc .vsc-also__name:visited { color: var(--vsc-ink) !important; }
.vsc .vsc-also__name:hover { color: var(--vsc-ink) !important; text-decoration: underline; }
.vsc .vsc-also__add { color: var(--vsc-ink) !important; background: #fff !important; border: 1.5px solid var(--vsc-line); padding: 0; }
.vsc .vsc-also__add.is-added { color: #fff !important; background: var(--vsc-ink) !important; border-color: var(--vsc-ink) !important; }

.vsc .vsc-coupon__toggle { color: var(--vsc-ink) !important; background: transparent !important; border: none; padding: 0; font-size: 13px; font-weight: 600; }
.vsc .vsc-cart .vsc-coupon__box input { color: var(--vsc-ink) !important; background: #fff !important; border: 1.5px solid var(--vsc-line); border-radius: 11px; padding: 10px 13px; font-size: 14px; }
.vsc .vsc-cart .vsc-coupon__box input.is-error { border-color: var(--vsc-coral) !important; }
.vsc .vsc-coupon__apply { color: #fff !important; background: var(--vsc-ink) !important; border: none; padding: 0 18px; }
.vsc .vsc-coupon__chip .vsc-code { color: var(--vsc-sage-700) !important; }
.vsc .vsc-coupon__chip .vsc-remove { color: var(--vsc-muted) !important; background: transparent !important; border: none; padding: 0; }

.vsc .vsc-checkout,
.vsc .vsc-checkout:visited,
.vsc .vsc-checkout:focus { color: #fff !important; background: var(--vsc-ink) !important; border: none; padding: 15px; }
.vsc .vsc-checkout:hover { color: #fff !important; background: #0d241e !important; }
.vsc .vsc-checkout span,
.vsc .vsc-checkout .vsc-ico { color: inherit !important; }

/* ------------------------------------------------------------------
   Mobile zoom-on-focus prevention.
   iOS Safari (and some Android browsers) zoom the whole page when a
   focused text input computes to less than 16px. Keep the coupon
   input at 16px on small screens so the viewport never zooms.
------------------------------------------------------------------- */
@media (max-width: 767px) {
  .vsc .vsc-cart .vsc-coupon__box input { font-size: 16px; }
}

/* ------------------------------------------------------------------
   Bundle group entries — one card per bundle: header with pack badge
   and the combined price, a size row per unit, one stepper, one trash.
------------------------------------------------------------------- */
.vsc-bundle__badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
  padding: 3px 9px;
  border-radius: 999px;
  background: #eef6e7;
  color: var(--vsc-sage-700);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
  width: fit-content;
}
.vsc-bundle__badge .vsc-ico { width: 12px; height: 12px; }

.vsc-bundle__units {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 2px;
}
.vsc-bundle__unit {
  display: flex;
  align-items: center;
  gap: 10px;
}
.vsc-bundle__idx {
  flex: 0 0 auto;
  min-width: 22px;
  color: var(--vsc-muted);
  font-size: 12px;
  font-weight: 700;
}

.vsc-bundle__toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  background: none;
  padding: 0;
  cursor: pointer;
  color: var(--vsc-muted);
  font-family: inherit;
  font-size: 12.5px;
  font-weight: 700;
}
.vsc-bundle__toggle .vsc-ico { transition: transform .2s ease; }
.vsc-entry--collapsed .vsc-bundle__toggle .vsc-ico { transform: rotate(180deg); }

/* Shield extension for the new interactive element. */
.vsc .vsc-bundle__toggle { color: var(--vsc-muted) !important; background: transparent !important; border: none; padding: 0; }
.vsc .vsc-bundle__badge { color: var(--vsc-sage-700) !important; background: #eef6e7 !important; }
