/** Shopify CDN: Minification failed

Line 299:13 Expected ":"

**/
/* ==================================================================
   NextDev cart drawer.
   Everything is scoped under .nextdev--cart-drawer* - no global resets.
   Closed state: .nextdev--cart-drawer__root is visibility:hidden until
   JS toggles .nextdev--cart-drawer--active.
   ================================================================== */

/* ---------------------------------------------------------------- tokens */
.nextdev--cart-drawer {
  --nextdev-cart-primary: #fe9a01;
  --nextdev-cart-primary-hover: #ef8c00;
  --nextdev-cart-primary-active: #d97e00;
  --nextdev-cart-primary-soft: #fff1dc;
  --nextdev-cart-primary-tint: #ffe3bb;
  --nextdev-cart-primary-deep: #b06400;
  --nextdev-cart-muted: #9a9a9a;
  --nextdev-cart-line: #ececec;
  --nextdev-cart-strike: #b8b8b8;
  --nextdev-cart-green: #1fa463;
  --nextdev-cart-warn-bg: #fcf6da;
  --nextdev-cart-warn-line: #f0e4ad;
  --nextdev-cart-card: #fdf3e6;

  display: block;
}

.nextdev--cart-drawer__root {
  position: fixed;
  inset: 0;
  z-index: 2147483640;
  visibility: hidden;
  pointer-events: none;
}
.nextdev--cart-drawer--active .nextdev--cart-drawer__root {
  visibility: visible;
  pointer-events: auto;
}

.nextdev--cart-drawer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(40, 33, 26, 0.28);
  backdrop-filter: blur(1.5px);
  -webkit-backdrop-filter: blur(1.5px);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.nextdev--cart-drawer--active .nextdev--cart-drawer__overlay {
  display: block;
  opacity: 1;
}

.nextdev--cart-drawer__inner {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 430px;
  max-width: 100vw;
  background: #fff;
  color: var(--nextdev-color-ink);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-top-left-radius: 18px;
  border-bottom-left-radius: 18px;
  box-shadow: -18px 0 60px rgba(0, 0, 0, 0.22);
  transform: translateX(100%);
  line-height: normal;
}
.nextdev--cart-drawer--animating .nextdev--cart-drawer__inner {
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.nextdev--cart-drawer--active .nextdev--cart-drawer__inner {
  transform: none;
}

.nextdev--cart-drawer__inner,
.nextdev--cart-drawer__inner * {
  box-sizing: border-box;
}
.nextdev--cart-drawer__inner :where(h2, h3, p, ul, li) {
  margin: 0;
  padding: 0;
}
.nextdev--cart-drawer__inner :where(h1, h2, h3, h4, h5, h6) {
  /* The drawer's headings are the body sans, not the display serif. This read
     var(--font-body-family), which is Dawn's token and not one of ours: in the
     theme it would have set the heading in whatever face the theme uses, and
     anywhere the theme does not define it the declaration is dropped and the
     heading falls back to whatever it inherits. */
  font-family: var(--nextdev-font-body);
}
.nextdev--cart-drawer__inner :where(ul) {
  list-style: none;
}
.nextdev--cart-drawer__inner :where(button) {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  cursor: pointer;
}
.nextdev--cart-drawer__inner :where(button):disabled {
  cursor: default;
  opacity: 0.55;
}
.nextdev--cart-drawer__inner :where(a) {
  color: inherit;
  text-decoration: none;
}
.nextdev--cart-drawer__inner :where(img) {
  display: block;
  max-width: 100%;
}

.nextdev--cart-drawer__scroll {
  flex: 1;
  overflow-y: auto;
}
.nextdev--cart-drawer__scroll::-webkit-scrollbar {
  width: 0;
}

.nextdev--cart-drawer--busy .nextdev--cart-drawer__inner {
  pointer-events: none;
}
.nextdev--cart-drawer--busy .nextdev--cart-drawer__overlay {
  pointer-events: auto;
}

.nextdev--cart-drawer__errors {
  padding: 0 22px;
  color: #d6534a;
  font-size: 12.5px;
}
.nextdev--cart-drawer__errors:empty {
  display: none;
}

.nextdev--cart-drawer__topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  padding-bottom: 14px;
  transition: box-shadow 0.2s ease;
}
.nextdev--cart-drawer__topbar.is-stuck {
  box-shadow: 0 6px 16px -8px rgba(0, 0, 0, 0.25);
}
.nextdev--cart-drawer--empty .nextdev--cart-drawer__topbar {
  padding-bottom: 0;
}

.nextdev--cart-drawer__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 22px 24px 16px;
}
.nextdev--cart-drawer__title {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.2;
}
.nextdev--cart-drawer__count {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--nextdev-cart-primary);
  color: #fff;
  font-size: 12.5px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nextdev--cart-drawer__close {
  margin-left: auto;
  width: 30px;
  height: 30px;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.nextdev--cart-drawer__close:hover {
  background: #f3f3f3;
  color: var(--nextdev-color-ink);
}
.nextdev--cart-drawer__close:active {
  background: #e7e7e7;
  color: #000;
}

.nextdev--cart-drawer__banner {
  margin: 0 18px;
  background: var(--nextdev-cart-warn-bg);
  border: 1px solid var(--nextdev-cart-warn-line);
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
}
.nextdev--cart-drawer__banner-title {
  font-size: 14px;
  font-weight: 700;
  color: #7a5a12;
}
.nextdev--cart-drawer__banner-sub {
  font-size: 10.5px;
  letter-spacing: 1px;
  color: #9a8033;
  margin-top: 3px;
  text-transform: uppercase;
}
.nextdev--cart-drawer__timer {
  font-size: 15px;
  font-weight: 600;
  color: #3a3a3a;
  font-variant-numeric: tabular-nums;
}

.nextdev--cart-item {
  position: relative;
  display: flex;
  gap: 14px;
  padding: 18px 22px;
}
.nextdev--cart-item + .nextdev--cart-item {
  border-top: 1px solid var(--nextdev-cart-line);
}
.nextdev--cart-drawer__items .nextdev--cart-item:first-child {
  padding-top: 8px;
}

.nextdev--cart-item__thumb {
  position: relative; 
  width: 88px;
  height: 88px;
  align-self: flex-start;
  border-radius: 12px;
  flex-shrink: 0;
  overflow: hidden;
  border: 1px solid var(--nextdev-cart-line);
}
.nextdev--cart-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.nextdev--cart-item__main {
  flex: 1;
  min-width: 0;
}
.nextdev--cart-item__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
.nextdev--cart-item__id {
  min-width: 0; 
}
.nextdev--cart-item__name {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
}
.nextdev--cart-item__variant {
  font-size: 13px;
  color: var(--nextdev-cart-muted);
  margin-top: 3px;
}
.nextdev--cart-item__total {
  font-size: 16px;
  font-weight: 600;
  white-space: nowrap;
}
.nextdev--cart-item__pre-order {
  margin-top: 6px;
}
.nextdev--cart-item__pre-order span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  line-height 18px;
  background-color: var(--nextdev-cart-card);
  border-radius: 1000px;
  padding: 4px 8px;
}
.nextdev--cart-item__pre-order span svg {
  display: block;
  width: 14px;
  height: 14px;
}
.nextdev--cart-item__pricing {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 12px;
  flex-wrap: wrap;
}
.nextdev--cart-item__pre-order + .nextdev--cart-item__pricing {
  margin-top: 6px;
}
.nextdev--cart-item__now {
  font-size: 14px;
  font-weight: 600;
}
.nextdev--cart-item__pricing s {
  font-size: 13px;
  color: var(--nextdev-cart-strike);
}
.nextdev--cart-item__badge {
  background: var(--nextdev-cart-primary-soft);
  color: var(--nextdev-cart-primary-deep);
  font-size: 11.5px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 6px;
}
.nextdev--cart-item__discounts {
  margin-top: 8px;
  font-size: 12px;
  color: var(--nextdev-cart-green);
}

.nextdev--cart-item__actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}

.nextdev--cart-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--nextdev-cart-line);
  border-radius: 22px;
  overflow: hidden;
  transition: border-color 0.15s;
}
.nextdev--cart-qty:hover {
  border-color: var(--nextdev-cart-primary-tint);
}
.nextdev--cart-qty__btn {
  width: 36px;
  height: 34px;
  background: #fff;
  font-size: 18px;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s, color 0.15s;
}
.nextdev--cart-qty__btn:hover {
  background: var(--nextdev-cart-primary-soft);
  color: var(--nextdev-cart-primary-deep);
}
.nextdev--cart-qty__btn:active {
  background: var(--nextdev-cart-primary-tint);
  color: var(--nextdev-cart-primary-deep);
}
.nextdev--cart-qty__val {
  min-width: 30px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
}

.nextdev--cart-remove {
  color: #b9b9b9;
  padding: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
.nextdev--cart-remove svg {
  width: 19px;
  height: 19px;
}
.nextdev--cart-remove:hover {
  color: #d6534a;
  background: #fdf0ef;
}
.nextdev--cart-remove:active {
  color: #a83a32;
  background: #fbe3e1;
}

.nextdev--cart-item__loading {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.72);
  display: none;
  align-items: center;
  justify-content: center;
}
.nextdev--cart-item.is-loading .nextdev--cart-item__loading {
  display: flex;
}
.nextdev--cart-item__loading span {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 2px solid var(--nextdev-cart-primary-tint);
  border-top-color: var(--nextdev-cart-primary);
  animation: nextdev--cart-spin 0.7s linear infinite;
}
@keyframes nextdev--cart-spin {
  to {
    transform: rotate(360deg);
  }
}

.nextdev--cart-drawer--empty .nextdev--cart-drawer__scroll {
  display: flex;
  flex-direction: column;
}
.nextdev--cart-drawer--empty .nextdev--cart-drawer__items {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 40px;
}

.nextdev--cart-empty {
  padding: 30px 22px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.nextdev--cart-empty__ico {
  width: 66px;
  height: 66px;
  border-radius: 50%;
  background: var(--nextdev-cart-primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.nextdev--cart-empty__ico svg {
  width: 30px;
  height: 30px;
  fill: none;
  stroke: var(--nextdev-cart-primary-deep);
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nextdev--cart-empty__title {
  font-size: 17px;
  font-weight: 700;
}
.nextdev--cart-empty__sub {
  font-size: 13px;
  color: var(--nextdev-cart-muted);
  margin-top: 7px;
  max-width: 250px;
  line-height: 1.5;
}
.nextdev--cart-empty__cta {
  margin-top: 22px;
  background: var(--nextdev-cart-primary);
  color: var(--nextdev-color-ink);
  font-size: 14.5px;
  font-weight: 800;
  letter-spacing: 0.3px;
  padding: 13px 26px;
  border-radius: 12px;
  transition: background 0.16s ease, transform 0.1s ease;
}
.nextdev--cart-empty__cta:hover {
  background: var(--nextdev-cart-primary-hover);
}
.nextdev--cart-empty__cta:active {
  background: var(--nextdev-cart-primary-active);
  transform: translateY(1px);
}

.nextdev--cart-upsell__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px;
}
.nextdev--cart-upsell__head:before,
.nextdev--cart-upsell__head:after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--nextdev-cart-line);
}
.nextdev--cart-upsell__head h2 {
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 1.4px;
  color: #8a8a8a;
  text-transform: uppercase;
}

.nextdev--cart-upsell__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 0 22px 22px;
}
.nextdev--cart-up {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--nextdev-cart-card);
  border-radius: 14px;
  padding: 12px;
}
.nextdev--cart-up__thumb {
  width: 58px;
  height: 58px;
  border-radius: 10px;
  flex-shrink: 0;
  background: #fff;
  overflow: hidden;
}
.nextdev--cart-up__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.nextdev--cart-up__info {
  flex: 1;
  min-width: 0;
}
.nextdev--cart-up__title {
  font-size: 14px;
  font-weight: 600;
  /* white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis; */
}
.nextdev--cart-up__price {
  font-size: 13px;
  color: #666;
  margin-top: 3px;
}
.nextdev--cart-up__price s {
  color: var(--nextdev-cart-strike);
  margin-left: 5px;
  font-size: 12px;
}
.nextdev--cart-up__add {
  background: #262626;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.4px;
  padding: 11px 20px;
  border-radius: 9px;
  white-space: nowrap;
  transition: background 0.16s ease, transform 0.1s ease;
}
.nextdev--cart-up__add:hover {
  background: #3d3d3d;
}
.nextdev--cart-up__add:active {
  background: #000;
  transform: translateY(1px);
}
.nextdev--cart-up__add:disabled {
  opacity: 0.55;
  cursor: default;
  transform: none;
}

.nextdev--cart-drawer__foot {
  border-top: 1px solid var(--nextdev-cart-line);
  padding: 18px 22px 20px;
  background: #fff;
}

.nextdev--cart-protect {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.nextdev--cart-protect__ico {
  align-self: flex-start;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  background: var(--nextdev-cart-primary-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background 0.25s;
}
.nextdev--cart-protect__ico svg {
  width: 20px;
  height: 20px;
  stroke: var(--nextdev-cart-primary-deep);
  fill: none;
  transition: stroke 0.25s;
}
.nextdev--cart-protect.is-on .nextdev--cart-protect__ico {
  background: #e2f6ec;
}
.nextdev--cart-protect.is-on .nextdev--cart-protect__ico svg {
  stroke: var(--nextdev-cart-green);
}
.nextdev--cart-protect.nextdev--cart-pop .nextdev--cart-protect__ico {
  animation: nextdev--cart-pico-pop 0.55s cubic-bezier(0.2, 1.6, 0.4, 1);
}
@keyframes nextdev--cart-pico-pop {
  0% { transform: scale(1); }
  35% { transform: scale(1.28) rotate(-8deg); }
  65% { transform: scale(0.94) rotate(4deg); }
  100% { transform: scale(1); }
}
.nextdev--cart-protect__txt {
  flex: 1;
}
.nextdev--cart-protect__t {
  font-size: 13.5px;
  font-weight: 500;
}
.nextdev--cart-protect__s {
  font-size: 11.5px;
  color: var(--nextdev-cart-muted);
  margin-top: 2px;
}
.nextdev--cart-protect__price {
  font-size: 13.5px;
  color: #444;
  margin-right: 6px;
}

.nextdev--cart-switch {
  position: relative;
  width: 42px;
  height: 24px;
  flex-shrink: 0;
}
.nextdev--cart-switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.nextdev--cart-switch__slider {
  position: absolute;
  inset: 0;
  background: #d9d9d9;
  border-radius: 24px;
  cursor: pointer;
  transition: 0.2s;
}
.nextdev--cart-switch__slider:before {
  content: "";
  position: absolute;
  height: 18px;
  width: 18px;
  left: 3px;
  top: 3px;
  background: #fff;
  border-radius: 50%;
  transition: 0.2s;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}
.nextdev--cart-switch__slider:hover {
  background: #cbcbcb;
}
.nextdev--cart-switch__slider:active:before {
  width: 22px;
}
.nextdev--cart-switch.nextdev--cart-pop {
  animation: nextdev--cart-sw-pop 0.45s cubic-bezier(0.2, 1.6, 0.4, 1);
}
@keyframes nextdev--cart-sw-pop {
  0% { transform: scale(1); }
  40% { transform: scale(1.16); }
  100% { transform: scale(1); }
}
.nextdev--cart-switch input:checked + .nextdev--cart-switch__slider {
  background: var(--nextdev-cart-green);
}
.nextdev--cart-switch input:checked + .nextdev--cart-switch__slider:hover {
  background: #1b915a;
}
.nextdev--cart-switch input:checked + .nextdev--cart-switch__slider:before {
  transform: translateX(18px);
}

.nextdev--cart-checkout {
  position: relative;
  width: 100%;
  background: var(--nextdev-cart-primary);
  color: var(--nextdev-color-ink);
  padding: 14px 18px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
  transition: background 0.16s ease, transform 0.1s ease;
}
.nextdev--cart-checkout__main {
  font-size: 15.5px;
  font-weight: 600;
  letter-spacing: 0.3px;
}
.nextdev--cart-checkout__sub {
  font-size: 11px;
  font-weight: 600;
  opacity: 0.6;
}

.nextdev--cart-checkout__lock {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.nextdev--cart-checkout__lock svg {
  width: 19px;
  height: 19px;
}
.nextdev--cart-checkout__loading {
  display: none;
  position: absolute;
  right: 16px;
  top: 50%;
  margin-top: -9px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(56, 46, 46, 0.25);
  border-top-color: var(--nextdev-color-ink);
  animation: nextdev--cart-spin 0.7s linear infinite;
}
.nextdev--cart-drawer--busy .nextdev--cart-checkout__loading {
  display: block;
}
.nextdev--cart-checkout:hover {
  background: var(--nextdev-cart-primary-hover);
}
.nextdev--cart-checkout:active {
  background: var(--nextdev-cart-primary-active);
  transform: translateY(1px);
}

.nextdev--cart-trustpilot {
  text-align: center;
}
.nextdev--cart-trustpilot img {
  width: 100%;
  max-width: 220px;
  height: auto;
  display: block;
  margin: 10px auto 0;
}

.nextdev--cart-drawer__inner button:focus-visible,
.nextdev--cart-drawer__inner a:focus-visible,
.nextdev--cart-switch input:focus-visible + .nextdev--cart-switch__slider {
  outline: 2px solid var(--nextdev-cart-primary-deep);
  outline-offset: 2px;
}

.nextdev--cart-enter {
  animation: nextdev--cart-enter 0.42s cubic-bezier(0.2, 1.3, 0.4, 1) both;
}
.nextdev--cart-flash {
  animation: nextdev--cart-flash 1.1s ease-out;
}
.nextdev--cart-enter.nextdev--cart-flash {
  animation: nextdev--cart-enter 0.42s cubic-bezier(0.2, 1.3, 0.4, 1) both, nextdev--cart-flash 1.1s ease-out;
}
@keyframes nextdev--cart-enter {
  0% { opacity: 0; transform: translateY(-8px) scale(0.97); }
  100% { opacity: 1; transform: none; }
}
@keyframes nextdev--cart-flash {
  0% { background: #e2f6ec; }
  70% { background: #f3faf6; }
  100% { background: transparent; }
}

.nextdev--cart-fx {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 2147483642;
  overflow: hidden;
  --nextdev-cart-green: #1fa463;
}
.nextdev--cart-fx-anchor {
  position: absolute;
  transform: translate(-50%, -100%);
}
.nextdev--cart-fx-anchor--right {
  transform: translate(-100%, -100%);
}
.nextdev--cart-fx-anchor--right .nextdev--cart-woohoo:after {
  left: auto;
  right: 16px;
  margin-left: 0;
}

.nextdev--cart-burst {
  position: absolute;
  width: 0;
  height: 0;
}
.nextdev--cart-burst i {
  position: absolute;
  left: 0;
  top: 0;
  width: 7px;
  height: 7px;
  border-radius: 2px;
  opacity: 0;
  animation: nextdev--cart-confetti 0.85s cubic-bezier(0.15, 0.7, 0.4, 1) forwards;
}
@keyframes nextdev--cart-confetti {
  0% { opacity: 1; transform: translate(0, 0) scale(0.5) rotate(0deg); }
  100% { opacity: 0; transform: translate(var(--dx), var(--dy)) scale(1) rotate(var(--rot)); }
}

.nextdev--cart-woohoo {
  position: relative;
  display: inline-block;
  background: var(--nextdev-cart-green, #1fa463);
  color: #fff;
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.2px;
  padding: 6px 11px;
  border-radius: 12px;
  white-space: nowrap;
  box-shadow: 0 6px 14px rgba(31, 164, 99, 0.35);
  animation: nextdev--cart-woohoo 2.6s cubic-bezier(0.2, 1.4, 0.4, 1) forwards;
}
.nextdev--cart-woohoo:after {
  content: "";
  position: absolute;
  left: 50%;
  margin-left: -5px;
  top: 100%;
  border: 5px solid transparent;
  border-top-color: var(--nextdev-cart-green, #1fa463);
}
@keyframes nextdev--cart-woohoo {
  0% { opacity: 0; transform: translateY(8px) scale(0.7); }
  10% { opacity: 1; transform: translateY(-3px) scale(1.06); }
  17% { transform: translateY(0) scale(1); }
  88% { opacity: 1; transform: translateY(0) scale(1); }
  100% { opacity: 0; transform: translateY(-8px) scale(0.95); }
}

.nextdev--cart-fly {
  position: fixed;
  z-index: 2147483641;
  pointer-events: none;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.62s cubic-bezier(0.5, -0.2, 0.3, 1), opacity 0.62s ease-in,
    border-radius 0.62s ease;
}

@media (prefers-reduced-motion: reduce) {
  .nextdev--cart-fx,
  .nextdev--cart-fly {
    display: none;
  }
  .nextdev--cart-enter,
  .nextdev--cart-flash,
  .nextdev--cart-protect.nextdev--cart-pop .nextdev--cart-protect__ico,
  .nextdev--cart-switch.nextdev--cart-pop {
    animation: none;
  }
}

@media (max-width: 520px) {
  .nextdev--cart-drawer__inner {
    width: 100vw;
    border-radius: 0;
  }
}

.nextdev--cart-item--gift {
  padding-top: 0;
}
.nextdev--cart-item + .nextdev--cart-item--gift {
  border-top: 0; 
}
.nextdev--cart-item--gift .nextdev--cart-item__thumb {
  width: 58px;
  height: 58px;
  border-radius: 10px;
}
.nextdev--cart-item--gift .nextdev--cart-item__name {
  font-size: 14px;
}
.nextdev--cart-item__free {
  display: inline-block;
  background: #e2f6ec;
  color: var(--nextdev-cart-green);
  font-size: 11.5px;
  font-weight: 800;
  letter-spacing: 0.3px;
  padding: 3px 8px;
  border-radius: 6px;
}

.nextdev--cart-discounts {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 14px 22px 0;
}
.nextdev--cart-discount {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #eef9f2;
  border: 1px dashed #b3e0c8;
  border-radius: 11px;
  padding: 9px 12px;
}
.nextdev--cart-discount__ico {
  width: 26px;
  height: 26px;
  border-radius: 7px;
  background: #dcf2e6;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.nextdev--cart-discount__ico svg {
  width: 15px;
  height: 15px;
  stroke: #12603d;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.nextdev--cart-discount__txt {
  flex: 1;
  min-width: 0;
  font-size: 13.5px;
  font-weight: 700;
  color: #12603d;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.nextdev--cart-discount__amount {
  font-size: 14px;
  font-weight: 800;
  color: var(--green, #12603d);
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.nextdev--cart-checkout__main s {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.5;
}