.svn13-overlay[hidden],
.svn13-ebac-modal[hidden],
.svn13-research-gate[hidden] {
  display: none !important;
}

.svn13-drawer,
.svn13-drawer *,
.svn13-ebac-modal,
.svn13-ebac-modal *,
.svn13-research-gate,
.svn13-research-gate * {
  box-sizing: border-box;
}

.svn13-overlay {
  position: fixed;
  inset: 0;
  z-index: 99990;
  background: rgba(0, 0, 0, 0.66);
}

html.svn13-overlay-open,
html.svn13-overlay-open body {
  overflow: hidden;
}

.svn13-cart-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.5rem;
  border: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  cursor: pointer;
}

.svn13-cart-count {
  display: inline-grid;
  place-items: center;
  min-width: 1.5rem;
  height: 1.5rem;
  padding: 0 0.35rem;
  border: 1px solid currentColor;
  border-radius: 99px;
  background: transparent;
  color: inherit;
  font-size: 0.75rem;
}

.svn13-drawer.svn13-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 99999;
  display: flex;
  width: min(480px, 100vw);
  height: 100vh;
  height: 100dvh;
  flex-direction: column;
  background: #0a0a0a;
  color: #fff;
  border-left: 1px solid #333;
  box-shadow: -18px 0 50px rgba(0, 0, 0, 0.38);
  transform: translateX(105%);
  transition: transform 220ms ease;
}

.svn13-drawer.is-open {
  transform: translateX(0);
}

.svn13-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 1.35rem;
  border-bottom: 1px solid #333;
}

.svn13-drawer__header h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 400;
}

.svn13-drawer .svn13-icon-button {
  border-color: #444;
  background: #0a0a0a;
  color: #fff;
}

.svn13-icon-button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid #d8d8d8;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.svn13-cart-trigger:focus-visible,
.svn13-icon-button:focus-visible,
.svn13-cart-line__controls button:focus-visible,
.svn13-cart-line__controls input:focus-visible,
.svn13-ebac-modal__quantity button:focus-visible,
.svn13-ebac-modal__quantity input:focus-visible,
.svn13-bundle__card:focus-visible,
.svn13-drawer a:focus-visible,
.svn13-ebac-modal a:focus-visible,
.svn13-ebac-modal__accept:focus-visible {
  outline: 3px solid #267361;
  outline-offset: 3px;
}

.svn13-drawer__body {
  display: flex;
  min-height: 0;
  flex: 1;
  flex-direction: column;
  overflow: auto;
}

.svn13-cart-lines {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.svn13-cart-line {
  display: grid;
  grid-template-columns: 76px minmax(0, 1fr) auto;
  gap: 0.9rem;
  align-items: start;
  padding: 1rem 1.35rem;
  border-bottom: 1px solid #292929;
  transition: opacity 150ms ease;
}

.svn13-cart-line.is-updating {
  opacity: 0.48;
  pointer-events: none;
}

.svn13-cart-line__image img {
  display: block;
  width: 76px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 10px;
}

.svn13-cart-line__name {
  color: inherit;
  font-weight: 700;
  text-decoration: none;
}

.svn13-cart-line__prices {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  margin-top: 0.35rem;
  font-size: 0.88rem;
}

.svn13-cart-line__prices del {
  color: #707070;
}

.svn13-cart-line__controls,
.svn13-ebac-modal__quantity {
  display: inline-flex;
  align-items: center;
  margin-top: 0.7rem;
  border: 1px solid #4a4a4a;
  border-radius: 10px;
  overflow: hidden;
}

.svn13-cart-line__controls button,
.svn13-cart-line__controls input,
.svn13-ebac-modal__quantity button,
.svn13-ebac-modal__quantity input {
  width: 44px;
  height: 44px;
  margin: 0;
  padding: 0;
  border: 0;
  background: #0a0a0a;
  color: #fff;
  text-align: center;
}

.svn13-cart-line__controls button,
.svn13-ebac-modal__quantity button {
  cursor: pointer;
}

.svn13-cart-line__controls input,
.svn13-ebac-modal__quantity input {
  appearance: textfield;
}

.svn13-cart-line__remove {
  width: auto !important;
  padding: 0 0.65rem !important;
  color: rgba(255, 255, 255, 0.72) !important;
  font-size: 0.75rem;
  text-decoration: underline;
}

.svn13-cart-line__total {
  white-space: nowrap;
}

.svn13-drawer__footer {
  margin-top: auto;
  padding: 1.2rem 1.35rem 1.5rem;
  border-top: 1px solid #333;
}

.svn13-drawer__discount {
  margin-bottom: 1rem;
  border-bottom: 1px solid #333;
}

.svn13-drawer__discount summary {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.35rem 0;
  list-style: none;
  font-size: 0.9rem;
  font-weight: 700;
}

.svn13-drawer__discount summary::-webkit-details-marker {
  display: none;
}

.svn13-drawer__discount[open] summary span:last-child {
  transform: rotate(45deg);
}

.svn13-drawer__discount-form {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 0.6rem;
  padding: 0.25rem 0 0.9rem;
}

.svn13-drawer__discount-form input,
.svn13-drawer__discount-form button {
  min-height: 46px;
  margin: 0;
  border-radius: 999px;
  font: inherit;
}

.svn13-drawer__discount-form input {
  min-width: 0;
  padding: 0 1rem;
  border: 1px solid #555;
  background: #1a1a1a;
  color: #fff;
}

.svn13-drawer__discount-form input::placeholder {
  color: rgba(255, 255, 255, 0.62);
}

.svn13-drawer__discount-form button {
  padding: 0 1.1rem;
  border: 1px solid #fff;
  background: #fff;
  color: #111;
  font-weight: 700;
}

.svn13-drawer__discount-status {
  margin: -0.25rem 0 0.8rem !important;
  color: rgba(255, 255, 255, 0.82) !important;
}

.svn13-drawer__applied-coupons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 0 0 0.9rem;
  padding: 0;
  list-style: none;
}

.svn13-drawer__applied-coupons li {
  display: inline-flex;
  min-height: 32px;
  align-items: center;
  gap: 0.35rem;
  padding: 0 0.4rem 0 0.75rem;
  border: 1px solid #555;
  border-radius: 999px;
  font-size: 0.75rem;
  text-transform: uppercase;
}

.svn13-drawer__applied-coupons button {
  display: grid;
  width: 26px;
  height: 26px;
  padding: 0;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: #fff;
  font-size: 1.1rem;
}

.svn13-drawer__subtotal {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.05rem;
}

.svn13-drawer__footer p {
  margin: 0.45rem 0 1rem;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.8rem;
}

.svn13-drawer .checkout-button.checkout-button,
.svn13-cart-empty .button.button {
  border: 1px solid #fff;
  border-radius: 999px;
  background: #fff;
  color: #111;
}

.svn13-drawer .checkout-button,
.svn13-ebac-modal__accept,
.svn13-cart-empty .button {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  width: 100%;
  border: 0;
  border-radius: 14px;
  background: #0a0a0a;
  color: #fff;
  font-weight: 750;
  text-decoration: none;
}

.svn13-cart-empty {
  display: grid;
  place-items: center;
  gap: 1rem;
  margin: auto;
  padding: 2rem;
  text-align: center;
}

.svn13-cart-tier-title {
  font-weight: inherit;
}

.svn13-ebac-modal.svn13-ebac-modal {
  position: fixed;
  top: 50%;
  left: 50%;
  z-index: 100000;
  display: grid;
  grid-template-columns: minmax(150px, 205px) minmax(0, 1fr);
  width: min(660px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  max-height: calc(100dvh - 40px);
  padding: 14px;
  overflow-y: auto;
  border-radius: 18px;
  background: #fff;
  color: #111;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
  transform: translate(-50%, -50%);
}

.svn13-ebac-modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 36px;
  height: 36px;
  border: 0;
  background: rgba(255, 255, 255, 0.9);
  font-size: 28px;
}

.svn13-ebac-modal__close:hover {
  background: #eee;
}

.svn13-ebac-modal__image {
  display: grid;
  min-height: 300px;
  padding: 22px;
  overflow: hidden;
  place-items: center;
  border-radius: 14px;
  background: #f4f4f4;
}

.svn13-ebac-modal__image img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 260px;
  object-fit: contain;
  border-radius: 14px;
}

.svn13-ebac-modal__content {
  padding: 30px 30px 20px;
}

.svn13-eyebrow {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.65;
}

.svn13-ebac-modal h2 {
  margin: 0 38px 12px 0;
  font-size: clamp(24px, 4vw, 34px);
  line-height: 1.08;
}

.svn13-ebac-modal__body {
  margin: 0;
  font-size: 15px;
  line-height: 1.55;
}

.svn13-ebac-modal__product {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 22px 0 16px;
  padding: 14px 0;
  border-block: 1px solid #e5e5e5;
}

.svn13-ebac-modal__product strong {
  line-height: 1.3;
}

.svn13-ebac-modal__price {
  display: block;
  flex-shrink: 0;
  text-align: right;
  font-weight: 700;
  white-space: nowrap;
}

.svn13-ebac-modal__price small {
  display: block;
  margin-top: 2px;
  font-size: 11px;
  font-weight: 500;
  opacity: 0.6;
}

.svn13-ebac-modal__quantity-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin: 0 0 20px;
}

.svn13-ebac-modal__quantity-label {
  font-size: 14px;
  font-weight: 700;
}

.svn13-ebac-modal__quantity.svn13-ebac-modal__quantity {
  display: inline-grid;
  grid-template-columns: 38px 42px 38px;
  min-height: 40px;
  margin: 0;
  overflow: hidden;
  border: 1px solid #c9c9c9;
  border-radius: 999px;
  background: #fff;
}

.svn13-ebac-modal__quantity.svn13-ebac-modal__quantity button,
.svn13-ebac-modal__quantity.svn13-ebac-modal__quantity input {
  width: 100%;
  height: 40px;
  border-radius: 0;
  background: #fff;
  color: #111;
}

.svn13-ebac-modal__quantity.svn13-ebac-modal__quantity button {
  font-size: 20px;
  line-height: 1;
}

.svn13-ebac-modal__quantity.svn13-ebac-modal__quantity button:hover:not(:disabled) {
  background: rgba(0, 0, 0, 0.06);
}

.svn13-ebac-modal__quantity.svn13-ebac-modal__quantity button:disabled {
  cursor: not-allowed;
  opacity: 0.35;
}

.svn13-ebac-modal__quantity.svn13-ebac-modal__quantity input {
  min-width: 42px;
  border-right: 1px solid #e1e1e1;
  border-left: 1px solid #e1e1e1;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  -moz-appearance: textfield;
}

.svn13-ebac-modal__quantity input::-webkit-inner-spin-button,
.svn13-ebac-modal__quantity input::-webkit-outer-spin-button {
  margin: 0;
  -webkit-appearance: none;
}

.svn13-ebac-modal__accept.svn13-ebac-modal__accept,
.svn13-ebac-modal__decline.svn13-ebac-modal__decline {
  display: flex;
  width: 100%;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
}

.svn13-ebac-modal button.button.svn13-ebac-modal__accept {
  border: 1px solid #111;
  background: #111;
  color: #fff;
}

.svn13-ebac-modal__accept.svn13-ebac-modal__accept:hover:not(:disabled) {
  background: #2a2a2a;
}

.svn13-ebac-modal__decline.svn13-ebac-modal__decline {
  margin-top: 10px;
  border: 1px solid #bbb;
  background: transparent;
  color: #111;
}

.svn13-ebac-modal__decline.svn13-ebac-modal__decline:hover {
  border-color: #111;
  background: rgba(0, 0, 0, 0.04);
}

.svn13-ajax-error {
  color: #a00;
  font-size: 0.9rem;
}

.svn13-bundle {
  width: 100%;
  margin: 1.4rem 0;
  padding: 0;
  border: 0;
}

.svn13-bundle legend {
  margin-bottom: 0.85rem;
  font-size: 0.875rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.svn13-bundle__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.svn13-bundle__card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(42px, 0.7fr) minmax(0, 1fr);
  min-height: 112px;
  align-items: center;
  gap: 0.45rem;
  padding: 1.5rem 0.6rem 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 14px;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.svn13-bundle__card.is-selected {
  border: 2px solid currentColor;
  box-shadow: 0 0 0 1px currentColor;
}

.svn13-bundle__badge {
  position: absolute;
  top: -11px;
  left: 50%;
  width: max-content;
  max-width: calc(100% - 10px);
  padding: 5px 8px;
  border-radius: 4px;
  background: #267361;
  color: #fff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  transform: translateX(-50%);
}

.svn13-bundle__card:last-child .svn13-bundle__badge {
  background: #b85b00;
}

.svn13-bundle__images {
  display: flex;
  height: 70px;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.svn13-bundle__images img {
  width: 34px;
  height: 68px;
  object-fit: contain;
  border-radius: 8px;
}

.svn13-bundle__images img + img {
  margin-left: -9px;
}

.svn13-bundle__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.svn13-bundle__copy strong {
  font-size: 0.8rem;
  font-weight: 800;
  text-transform: uppercase;
}

.svn13-bundle__copy small {
  margin-top: 0.3rem;
  color: #267361;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
}

html.svn13-research-gate-is-open,
html.svn13-research-gate-is-open body {
  overflow: hidden !important;
}

.svn13-research-gate {
  --svn13-gate-background: #fff;
  --svn13-gate-text: #171717;
  --svn13-gate-muted: #666;
  --svn13-gate-accent: #111;
  --svn13-gate-border: rgba(20, 20, 20, 0.16);

  position: fixed;
  inset: 0;
  z-index: 2147483000;
  display: grid;
  place-items: center;
  padding: 20px;
  color: var(--svn13-gate-text);
}

.svn13-research-gate__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.78);
  backdrop-filter: blur(7px);
}

.svn13-research-gate__dialog {
  position: relative;
  z-index: 1;
  width: min(620px, 100%);
  max-height: calc(100vh - 40px);
  max-height: calc(100dvh - 40px);
  padding: 38px;
  overflow-y: auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 20px;
  background: var(--svn13-gate-background);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.42);
}

.svn13-research-gate__eyebrow {
  margin: 0 0 8px;
  color: var(--svn13-gate-muted);
  font-size: 11px;
  font-weight: 750;
  line-height: 1.3;
  letter-spacing: 0.13em;
  text-align: center;
  text-transform: uppercase;
}

.svn13-research-gate__heading {
  margin: 0;
  color: var(--svn13-gate-text);
  font-size: clamp(28px, 5vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  text-align: center;
}

.svn13-research-gate__intro {
  max-width: 500px;
  margin: 16px auto 0;
  color: var(--svn13-gate-muted);
  font-size: 15px;
  line-height: 1.65;
  text-align: center;
}

.svn13-research-gate__confirmations {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 0;
  border: 0;
}

.svn13-research-gate__check-row {
  position: relative;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr);
  align-items: start;
  gap: 12px;
  padding: 16px;
  border: 1px solid var(--svn13-gate-border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  transition: border-color 160ms ease, background 160ms ease, transform 160ms ease;
}

.svn13-research-gate__check-row:hover {
  border-color: rgba(20, 20, 20, 0.34);
  background: #fff;
  transform: translateY(-1px);
}

.svn13-research-gate__checkbox {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.svn13-research-gate__custom-checkbox {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  margin-top: 1px;
  border: 1.5px solid rgba(20, 20, 20, 0.45);
  border-radius: 5px;
  background: #fff;
  color: transparent;
}

.svn13-research-gate__checkbox:checked + .svn13-research-gate__custom-checkbox {
  border-color: var(--svn13-gate-accent);
  background: var(--svn13-gate-accent);
  color: #fff;
}

.svn13-research-gate__checkbox:focus-visible + .svn13-research-gate__custom-checkbox {
  outline: 3px solid rgba(0, 0, 0, 0.25);
  outline-offset: 3px;
}

.svn13-research-gate__check-copy {
  color: var(--svn13-gate-text);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.55;
}

.svn13-research-gate__agreement {
  margin-top: 18px;
  color: var(--svn13-gate-muted);
  font-size: 12px;
  line-height: 1.55;
  text-align: center;
}

.svn13-research-gate__agreement p {
  margin: 0;
}

.svn13-research-gate__validation {
  margin: 15px 0 0;
  color: #a32117;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
}

.svn13-research-gate__actions {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(120px, 0.8fr);
  gap: 10px;
  margin-top: 22px;
}

.svn13-research-gate__enter,
.svn13-research-gate__exit {
  min-height: 52px;
  margin: 0;
  padding: 12px 18px;
  border-radius: 999px;
  font: inherit;
  font-size: 14px;
  font-weight: 750;
  line-height: 1.2;
  cursor: pointer;
}

.svn13-research-gate__enter {
  border: 1px solid var(--svn13-gate-accent);
  background: var(--svn13-gate-accent);
  color: #fff;
}

.svn13-research-gate__enter:disabled {
  border-color: #b9b9b9;
  background: #d8d8d8;
  color: #777;
  cursor: not-allowed;
}

.svn13-research-gate__enter:not(:disabled):hover {
  filter: brightness(1.08);
}

.svn13-research-gate__exit {
  border: 1px solid var(--svn13-gate-border);
  background: transparent;
  color: var(--svn13-gate-text);
}

.svn13-research-gate__exit:hover {
  border-color: var(--svn13-gate-text);
  background: rgba(0, 0, 0, 0.04);
}

.svn13-research-gate__enter:focus-visible,
.svn13-research-gate__exit:focus-visible {
  outline: 3px solid rgba(0, 0, 0, 0.35);
  outline-offset: 3px;
}

.svn13-research-gate__footnote {
  margin: 16px 0 0;
  color: var(--svn13-gate-muted);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
}

.svn13-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (prefers-reduced-motion: no-preference) {
  .svn13-research-gate:not([hidden]) {
    animation: svn13-research-gate-fade-in 180ms ease-out;
  }

  .svn13-research-gate:not([hidden]) .svn13-research-gate__dialog {
    animation: svn13-research-gate-rise-in 220ms ease-out;
  }

  @keyframes svn13-research-gate-fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
  }

  @keyframes svn13-research-gate-rise-in {
    from {
      opacity: 0;
      transform: translateY(16px) scale(0.985);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
}

@media (max-width: 600px) {
  .svn13-bundle__grid {
    gap: 0.45rem;
  }

  .svn13-bundle__card {
    grid-template-columns: 1fr;
    justify-items: center;
    min-height: 142px;
    padding-inline: 0.35rem;
    text-align: center;
  }

  .svn13-cart-line {
    grid-template-columns: 64px minmax(0, 1fr);
  }

  .svn13-cart-line__image img {
    width: 64px;
  }

  .svn13-cart-line__total {
    grid-column: 2;
  }

  .svn13-ebac-modal.svn13-ebac-modal {
    top: auto;
    bottom: 10px;
    grid-template-columns: 96px minmax(0, 1fr);
    width: calc(100vw - 20px);
    max-height: calc(100vh - 20px);
    max-height: calc(100dvh - 20px);
    padding: 10px;
    transform: translateX(-50%);
  }

  .svn13-ebac-modal__image {
    min-height: 100%;
    padding: 10px;
  }

  .svn13-ebac-modal__content {
    padding: 28px 14px 14px;
  }

  .svn13-ebac-modal h2 {
    margin-right: 28px;
    font-size: 22px;
  }

  .svn13-ebac-modal__body {
    font-size: 14px;
  }

  .svn13-ebac-modal__product {
    align-items: flex-start;
    margin-top: 16px;
  }

  .svn13-ebac-modal__close {
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    font-size: 25px;
  }

  .svn13-research-gate {
    align-items: end;
    padding: 10px;
  }

  .svn13-research-gate__dialog {
    width: 100%;
    max-height: calc(100vh - 20px);
    max-height: calc(100dvh - 20px);
    padding: 26px 18px 20px;
    border-radius: 18px;
  }

  .svn13-research-gate__heading {
    font-size: 30px;
  }

  .svn13-research-gate__intro {
    font-size: 14px;
  }

  .svn13-research-gate__check-row {
    padding: 14px;
  }

  .svn13-research-gate__actions {
    grid-template-columns: 1fr;
  }

  .svn13-research-gate__exit {
    min-height: 46px;
  }
}

@media (max-width: 390px) {
  .svn13-ebac-modal.svn13-ebac-modal {
    grid-template-columns: 82px minmax(0, 1fr);
  }

  .svn13-ebac-modal__content {
    padding-right: 10px;
    padding-left: 12px;
  }

  .svn13-ebac-modal__quantity.svn13-ebac-modal__quantity {
    grid-template-columns: 34px 36px 34px;
  }

  .svn13-ebac-modal__quantity.svn13-ebac-modal__quantity input {
    min-width: 36px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .svn13-drawer {
    transition: none;
  }
}

@media (forced-colors: active) {
  .svn13-bundle__card.is-selected,
  .svn13-cart-trigger,
  .svn13-icon-button,
  .svn13-research-gate__check-row,
  .svn13-research-gate__enter,
  .svn13-research-gate__exit {
    border: 2px solid ButtonText;
  }
}
