.ndav {
  --ndav-line: color-mix(in srgb, currentColor 18%, transparent);
  --ndav-accent: #111111;
  --ndav-radius: 10px;
  font-family: inherit;
  color: inherit;
  margin: 20px 0;
}
.ndav * {
  box-sizing: border-box;
}
.ndav-heading {
  font-size: 1em;
  font-weight: 600;
  margin: 0 0 10px;
}
.ndav-list {
  display: grid;
  gap: 10px;
}
.ndav-list--grid {
  grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
}
.ndav-tier {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--ndav-line);
  border-radius: var(--ndav-radius);
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.ndav-tier:hover {
  border-color: color-mix(in srgb, currentColor 35%, transparent);
}
.ndav-tier--on {
  border-color: var(--ndav-accent);
  box-shadow: 0 0 0 1px var(--ndav-accent) inset;
}
.ndav-mark {
  flex: 0 0 auto;
  width: 18px;
  height: 18px;
  border: 1px solid var(--ndav-line);
  border-radius: 50%;
  position: relative;
}
.ndav-tier--on .ndav-mark {
  border-color: var(--ndav-accent);
}
.ndav-tier--on .ndav-mark::after {
  content: "";
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: var(--ndav-accent);
}
.ndav-main {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex: 1 1 auto;
  min-width: 0;
}
.ndav-name {
  font-weight: 600;
}
.ndav-label {
  font-size: .85em;
  opacity: .75;
}
.ndav-prices {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 2px;
  white-space: nowrap;
}
.ndav-total {
  font-weight: 600;
}
.ndav-was {
  opacity: .55;
  font-size: .85em;
}
.ndav-each {
  font-size: .8em;
  opacity: .65;
}
.ndav-badge {
  position: absolute;
  top: -9px;
  right: 12px;
  padding: 2px 8px;
  border-radius: 999px;
  font-size: .72em;
  font-weight: 600;
  line-height: 1.5;
  background: var(--ndav-badge-bg, var(--ndav-accent));
  color: var(--ndav-badge-fg, #fff);
}
.ndav-add {
  margin-top: 12px;
  width: 100%;
  padding: 14px 18px;
  border: 0;
  border-radius: var(--ndav-radius);
  background: var(--ndav-accent);
  color: #fff;
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.ndav-add[disabled] {
  opacity: .6;
  cursor: default;
}
@media (max-width: 480px) {
  .ndav-tier {
    padding: 12px;
    gap: 10px;
  }
  .ndav-list--grid {
    grid-template-columns: 1fr;
  }
}
.ndav--cards .ndav-tier {
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 16px 14px;
}
.ndav--cards .ndav-mark {
  display: none;
}
.ndav--cards .ndav-prices {
  align-items: flex-start;
}
.ndav--cards .ndav-main {
  width: 100%;
}
.ndav--cards .ndav-badge {
  right: auto;
  left: 12px;
}
.ndav-pile {
  display: inline-flex;
  align-items: center;
}
.ndav-pile img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid var(--ndav-line);
  background: #fff;
}
.ndav-pile img + img {
  margin-left: -14px;
}
.ndav--cards .ndav-pile img {
  width: 44px;
  height: 44px;
}
.ndav--strip .ndav-tier {
  padding-top: 0;
  overflow: hidden;
}
.ndav--strip .ndav-badge {
  position: static;
  order: -1;
  display: block;
  width: calc(100% + 32px);
  margin: 0 -16px 10px;
  border-radius: 0;
  text-align: center;
  padding: 5px 8px;
  font-size: .78em;
}
.ndav--strip.ndav--rows .ndav-tier {
  flex-wrap: wrap;
}
.ndav--strip.ndav--rows .ndav-badge {
  margin-bottom: 12px;
}
.ndav--solid .ndav-tier--on {
  background: var(--ndav-accent);
  color: var(--ndav-badge-fg, #fff);
  border-color: var(--ndav-accent);
}
.ndav--solid .ndav-tier--on .ndav-was,
.ndav--solid .ndav-tier--on .ndav-each,
.ndav--solid .ndav-tier--on .ndav-label {
  opacity: .85;
}
.ndav--solid .ndav-tier--on .ndav-mark {
  border-color: currentColor;
}
.ndav--solid .ndav-tier--on .ndav-mark::after {
  background: currentColor;
}
.ndav--compact .ndav-tier {
  padding: 9px 12px;
  gap: 8px;
}
.ndav--compact .ndav-list {
  gap: 7px;
}
.ndav--noradio .ndav-mark {
  display: none;
}
.ndav--inline .ndav-prices {
  flex-direction: row;
  align-items: baseline;
  gap: 7px;
  flex-wrap: wrap;
}
.ndav--inline .ndav-each {
  flex-basis: 100%;
  text-align: right;
}
.ndav--inline.ndav--cards .ndav-each {
  text-align: left;
}
.ndav-soldout {
  display: inline-block;
  margin-bottom: 8px;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: .8em;
  font-weight: 600;
  border: 1px solid var(--ndav-line);
  opacity: .8;
}
.ndav--chip .ndav-main {
  flex-direction: row;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.ndav--chip .ndav-label {
  padding: 1px 8px;
  border-radius: 999px;
  background: color-mix(in srgb, currentColor 8%, transparent);
  font-size: .8em;
  opacity: 1;
}
.ndav--chip.ndav--cards .ndav-main {
  flex-direction: column;
  gap: 4px;
}
.ndav--cards .ndav-tier {
  align-items: center;
  text-align: center;
}
.ndav--cards .ndav-main {
  align-items: center;
}
.ndav--cards .ndav-prices {
  align-items: center;
}
.ndav--cards.ndav--inline .ndav-prices {
  justify-content: center;
}
.ndav-gift {
  order: 9;
  display: flex;
  align-items: center;
  gap: 8px;
  width: calc(100% + 32px);
  margin: 10px -16px -14px;
  padding: 8px 16px;
  background: #1b1d21;
  color: #fff;
  font-size: .85em;
}
.ndav-gift img {
  width: 24px;
  height: 24px;
  border-radius: 5px;
  object-fit: cover;
}
.ndav-gift-name {
  flex: 1 1 auto;
  text-align: left;
}
.ndav-gift-free {
  font-weight: 600;
}
.ndav--cards .ndav-gift {
  margin: 10px -14px -16px;
  width: calc(100% + 28px);
}
@media (max-width: 560px) {
  .ndav--cards .ndav-list--grid {
    grid-template-columns: 1fr;
  }
  .ndav--cards .ndav-tier {
    flex-direction: row;
    align-items: center;
    text-align: left;
    flex-wrap: wrap;
  }
  .ndav--cards .ndav-main {
    align-items: flex-start;
    flex: 1 1 auto;
  }
  .ndav--cards.ndav--chip .ndav-main {
    flex-direction: row;
    align-items: center;
  }
  .ndav--cards .ndav-prices {
    align-items: flex-end;
  }
  .ndav--cards.ndav--inline .ndav-prices {
    justify-content: flex-end;
  }
  .ndav--cards.ndav--strip .ndav-badge {
    margin: 0 -16px 10px;
    width: calc(100% + 32px);
  }
  .ndav--cards .ndav-gift {
    margin: 10px -16px -14px;
    width: calc(100% + 32px);
  }
}
.ndav--inline .ndav-each {
  margin-top: 1px;
}
@media (max-width: 560px) {
  .ndav--cards.ndav--inline .ndav-prices {
    flex-wrap: nowrap;
  }
  .ndav--cards.ndav--inline .ndav-each {
    flex-basis: auto;
  }
}
.ndav-tier {
  background: var(--ndav-surface, transparent);
  color: var(--ndav-fg, inherit);
}
.ndav--solid .ndav-tier--on {
  color: var(--ndav-badge-fg, #fff);
}
.ndav {
  font-family: var(--ndav-font, inherit);
}
.ndav-list {
  gap: var(--ndav-gap, 10px);
}
.ndav-tier {
  padding: var(--ndav-pad, 14px 16px);
  border-width: var(--ndav-border-width, 1px);
}
.ndav--compact .ndav-tier {
  padding: var(--ndav-pad, 9px 12px);
}
.ndav-name {
  font-size: var(--ndav-title-size, 1em);
  font-weight: var(--ndav-title-weight, 600);
}
.ndav-label {
  font-size: var(--ndav-label-size, .85em);
}
.ndav-total {
  font-size: var(--ndav-price-size, 1em);
}
.ndav-badge {
  border-radius: var(--ndav-badge-radius, 999px);
}
.ndav--strip .ndav-badge {
  border-radius: 0;
}
.ndav--solid .ndav-tier--on .ndav-label {
  background: rgba(255, 255, 255, .16);
  color: inherit;
  opacity: 1;
}
.ndav-heading {
  color: var(--ndav-heading-color, inherit);
  font-size: var(--ndav-heading-size, 1em);
  font-weight: var(--ndav-heading-weight, 600);
}
.ndav-tier {
  box-shadow: var(--ndav-shadow, none);
}
.ndav-tier--on {
  background: var(--ndav-selected-bg, var(--ndav-surface, transparent));
  color: var(--ndav-selected-fg, inherit);
  box-shadow: var(--ndav-selected-shadow, 0 0 0 1px var(--ndav-accent) inset);
}
.ndav-name {
  color: var(--ndav-title-color, inherit);
}
.ndav--chip .ndav-label {
  background: var(--ndav-label-bg, color-mix(in srgb, currentColor 8%, transparent));
  color: var(--ndav-label-fg, inherit);
  border-radius: var(--ndav-label-radius, 999px);
}
.ndav-badge {
  font-size: var(--ndav-badge-size, .72em);
}
.ndav-total {
  color: var(--ndav-price-color, inherit);
}
.ndav-was {
  color: var(--ndav-compare-color, inherit);
}
.ndav-each {
  color: var(--ndav-each-color, inherit);
}
.ndav-mark {
  border-color: var(--ndav-mark, var(--ndav-line));
}
.ndav-tier--on .ndav-mark {
  border-color: var(--ndav-mark, var(--ndav-accent));
}
.ndav-tier--on .ndav-mark::after {
  background: var(--ndav-mark, var(--ndav-accent));
}
.ndav-gift {
  background: var(--ndav-gift-bg, #1b1d21);
  color: var(--ndav-gift-fg, #fff);
}
.ndav--solid .ndav-tier--on {
  color: var(--ndav-selected-fg, var(--ndav-on-ink, #fff));
}
.ndav--solid .ndav-tier--on .ndav-total,
.ndav--solid .ndav-tier--on .ndav-name {
  color: inherit;
}
.ndav--solid .ndav-tier--on .ndav-was,
.ndav--solid .ndav-tier--on .ndav-each {
  color: inherit;
  opacity: .65;
}
.ndav-list--grid {
  align-items: stretch;
}
.ndav-list--grid .ndav-tier {
  flex-direction: column;
  justify-content: flex-start;
}
.ndav-list--grid .ndav-prices {
  margin-top: auto;
}
#nda-volume-root {
  display: block;
  width: 100%;
  max-width: 100%;
  clear: both;
}
#nda-volume-root .ndav {
  margin: 16px 0;
}
#nda-volume-root .ndav-heading {
  text-align: var(--ndav-heading-align, left);
  line-height: 1.3;
}
#nda-volume-root .ndav-list {
  padding-top: 10px;
  margin-top: -10px;
}
#nda-volume-root .ndav-tier {
  -webkit-user-select: none;
  user-select: none;
  overflow: visible;
  outline: none;
  min-height: 0;
  text-transform: none;
  letter-spacing: normal;
  line-height: 1.35;
  background-image: none;
}
#nda-volume-root .ndav--strip .ndav-tier {
  overflow: hidden;
}
#nda-volume-root .ndav-tier::before,
#nda-volume-root .ndav-tier::after {
  content: none;
}
#nda-volume-root .ndav-tier:focus-visible {
  box-shadow: 0 0 0 2px var(--ndav-accent);
}
#nda-volume-root .ndav-tier--badged {
  margin-top: 2px;
}
#nda-volume-root .ndav-badge {
  display: inline-block !important;
  position: absolute !important;
  top: 0 !important;
  right: 12px;
  transform: translateY(-50%);
  z-index: 2;
  white-space: nowrap;
  max-width: calc(100% - 24px);
  overflow: hidden;
  text-overflow: ellipsis;
  background: var(--ndav-badge-bg, var(--ndav-accent, #111)) !important;
  color: var(--ndav-badge-fg, var(--ndav-on-ink, #fff)) !important;
  opacity: 1 !important;
  visibility: visible !important;
  border: 0 !important;
  box-shadow: none !important;
  text-indent: 0 !important;
}
#nda-volume-root .ndav--cards .ndav-badge {
  right: auto;
  left: 12px;
}
#nda-volume-root .ndav--strip .ndav-badge {
  position: static !important;
  transform: none;
  max-width: none;
  top: auto !important;
}
#nda-volume-root .ndav-mark {
  box-sizing: border-box;
  min-width: 18px;
}
#nda-volume-root .ndav-name,
#nda-volume-root .ndav-label,
#nda-volume-root .ndav-total,
#nda-volume-root .ndav-each {
  text-transform: none;
  letter-spacing: normal;
}
#nda-volume-root .ndav-prices {
  min-width: 0;
}
#nda-volume-root .ndav-countdown {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 12px;
  font-size: .9em;
  font-weight: 600;
  line-height: 1.3;
  font-variant-numeric: tabular-nums;
}
#nda-volume-root .ndav-countdown--bar {
  padding: 9px 12px;
  border-radius: var(--ndav-radius, 10px);
  background: var(--ndav-countdown-bg, color-mix(in srgb, var(--ndav-accent, currentColor) 10%, transparent));
  color: var(--ndav-countdown-fg, inherit);
}
#nda-volume-root .ndav-countdown-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--ndav-accent, currentColor);
  animation: ndav-pulse 1.6s ease-in-out infinite;
}
@keyframes ndav-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: .35;
  }
}
@media (prefers-reduced-motion: reduce) {
  #nda-volume-root .ndav-countdown-dot {
    animation: none;
  }
}
#nda-volume-root .ndav-picks {
  order: 10;
  flex: 1 1 100%;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 8px;
  margin-top: 4px;
  padding-top: 10px;
  border-top: 1px solid var(--ndav-line);
  cursor: default;
}
#nda-volume-root .ndav-pick {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
  text-align: left;
}
#nda-volume-root .ndav-pick-name {
  font-size: .8em;
  opacity: .75;
}
#nda-volume-root .ndav-pick-select {
  width: 100%;
  min-height: 36px;
  padding: 6px 30px 6px 10px;
  font: inherit;
  font-size: .9em;
  color: inherit;
  background-color: var(--ndav-surface, #fff);
  border: 1px solid var(--ndav-line);
  border-radius: calc(var(--ndav-radius, 10px) * .6);
  -webkit-appearance: auto;
  appearance: auto;
}
#nda-volume-root .ndav--solid .ndav-tier--on .ndav-pick-select {
  color: #111;
  background-color: #fff;
}
#nda-volume-root .ndav-tier {
  flex-wrap: wrap;
}
#nda-volume-root .ndav-list--grid .ndav-picks {
  grid-template-columns: 1fr;
}
#nda-volume-root .ndav-tier {
  border-style: solid;
}
#nda-volume-root .ndav-badge:empty {
  display: none !important;
}
#nda-volume-root .ndav-countdown {
  font-family: var(--nd-font, inherit);
  font-size: var(--nd-size, .9em);
  font-weight: var(--nd-weight, 600);
  justify-content: var(--nd-justify, flex-start);
  color: var(--nd-fg, inherit);
  gap: var(--nd-gap, 8px);
}
#nda-volume-root .ndav-countdown--bar {
  background: var(--nd-bg, color-mix(in srgb, var(--ndav-accent, #111) 10%, transparent));
  border-radius: var(--nd-radius, var(--ndav-radius, 10px));
  border: var(--nd-border-width, 0px) solid var(--nd-border, transparent);
  padding: var(--nd-pad, 9px) calc(var(--nd-pad, 9px) + 3px);
}
#nda-volume-root .ndav-countdown-dot {
  background: var(--nd-dot, var(--ndav-accent, currentColor));
}
#nda-volume-root .ndav-countdown--still .ndav-countdown-dot {
  animation: none;
}
#nda-volume-root .ndav-pick-name {
  color: var(--nd-muted, inherit);
  font-family: var(--nd-font, inherit);
}
#nda-volume-root .ndav-pick-select {
  background-color: var(--nd-bg, var(--ndav-surface, #fff));
  color: var(--nd-fg, inherit);
  border: var(--nd-border-width, 1px) solid var(--nd-border, var(--ndav-line));
  border-radius: var(--nd-radius, 6px);
  font-size: var(--nd-size, .9em);
  font-family: var(--nd-font, inherit);
  font-weight: var(--nd-weight, 400);
}
#nda-volume-root .ndav--solid .ndav-tier--on .ndav-pick-select {
  color: var(--nd-fg, #111);
  background-color: var(--nd-bg, #fff);
}
#nda-volume-root .ndav--rows .ndav-main {
  flex: 1 1 0;
  min-width: 0;
}
#nda-volume-root .ndav--rows .ndav-main .ndav-name {
  display: inline;
}
#nda-volume-root .ndav--rows .ndav-prices {
  flex: 0 1 auto;
  max-width: 48%;
}
#nda-volume-root .ndav--rows .ndav-picks {
  flex-basis: 100%;
}
#nda-volume-root .ndav--chip .ndav-main {
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 8px;
}
#nda-volume-root .ndav--chip.ndav--cards .ndav-main {
  flex-direction: column;
  align-items: flex-start;
}
#nda-volume-root .nd-fx-glass {
  background: color-mix(in srgb, var(--nd-bg, #fff) 55%, transparent) !important;
  backdrop-filter: blur(14px) saturate(160%);
  -webkit-backdrop-filter: blur(14px) saturate(160%);
  border-color: color-mix(in srgb, var(--nd-fg, #111) 14%, transparent) !important;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .08), inset 0 1px 0 rgba(255, 255, 255, .55);
}
#nda-volume-root .nd-fx-soft {
  box-shadow: 0 6px 24px rgba(16, 24, 40, .10);
  border-color: transparent !important;
}
#nda-volume-root .nd-fx-outline {
  background: transparent !important;
  border-width: 2px !important;
}
#nda-volume-root .nd-fx-glow {
  box-shadow: 0 0 0 1px var(--nd-accent, #111), 0 0 18px color-mix(in srgb, var(--nd-accent, #111) 45%, transparent);
}
#nda-volume-root .nd-bs-dashed {
  border-style: dashed !important;
}
#nda-volume-root .nd-bs-none {
  border: 0 !important;
}

.ndav-heading--ruled {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: var(--ndav-heading-size, .78em);
  font-weight: var(--ndav-heading-weight, 700);
}

.ndav-heading--ruled::before,
.ndav-heading--ruled::after {
  content: "";
  flex: 1 1 auto;
  height: 1px;
  background: currentColor;
  opacity: .22;
}

#nda-volume-root .ndav--badge-sticker .ndav-list {
  padding-top: 18px;
  margin-top: -6px;
}
#nda-volume-root .ndav--badge-sticker .ndav-badge {
  top: -24px !important;
  right: -30px;
  left: auto;
  transform: rotate(-9deg);
  width: 96px;
  max-width: none;
  padding: 9px 10px 8px;
  border-radius: 50% !important;
  white-space: normal;
  overflow: visible;
  text-align: center;
  font-family: Georgia, "Times New Roman", Times, serif;
  font-size: 15px;
  font-weight: 700;
  font-style: normal;
  line-height: .95;
  letter-spacing: -.01em;
  background: var(--ndav-badge-bg, #1d1a5c) !important;
  box-shadow: 0 2px 6px rgba(15, 15, 40, .28) !important;
  z-index: 3;
}
#nda-volume-root .ndav--badge-sticker .ndav-badge::before,
#nda-volume-root .ndav--badge-sticker .ndav-badge::after {
  content: "\2726";
  position: absolute;
  font-family: Arial, sans-serif;
  font-size: 9px;
  line-height: 1;
}
#nda-volume-root .ndav--badge-sticker .ndav-badge::before {
  left: 7px;
  top: 58%;
}
#nda-volume-root .ndav--badge-sticker .ndav-badge::after {
  right: 8px;
  top: 16%;
  font-size: 11px;
}
#nda-volume-root .ndav--badge-sticker.ndav--cards .ndav-badge {
  left: auto;
  right: -14px;
}
#nda-volume-root .ndav--badge-sticker .ndav-tier--badged .ndav-prices {
  padding-top: 6px;
}
#nda-volume-root .ndav--badge-tab .ndav-badge {
  top: 0 !important;
  right: 14px;
  transform: translateY(-58%);
  border-radius: 4px 4px 3px 3px !important;
  padding: 3px 8px;
  font-size: 10.5px;
  font-weight: 800;
  letter-spacing: .05em;
  text-transform: uppercase;
  background: var(--ndav-badge-bg, #e0201f) !important;
}
#nda-volume-root .ndav-titleline {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 8px;
}
#nda-volume-root .ndav-tag {
  display: inline-block;
  padding: 3px 9px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ndav-tag-fg, var(--ndav-accent, #111));
  background: var(--ndav-tag-bg, color-mix(in srgb, var(--ndav-accent, #111) 17%, #fff));
  white-space: nowrap;
}
#nda-volume-root .ndav--deal .ndav-list {
  gap: 12px;
}
#nda-volume-root .ndav--deal .ndav-tier {
  gap: 14px;
  padding: 15px 18px;
  border: 1px solid var(--ndav-line);
  border-radius: var(--ndav-radius, 10px);
  background: var(--ndav-surface, color-mix(in srgb, var(--ndav-accent, #111) 7%, #fff));
  box-shadow: none;
  align-items: center;
}
#nda-volume-root .ndav--deal .ndav-tier--on {
  background: var(--ndav-selected-bg, #fff);
  border-color: var(--ndav-accent);
  box-shadow: 0 0 0 1px var(--ndav-accent) inset;
}
#nda-volume-root .ndav--deal .ndav-mark {
  position: relative;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  border: 1.5px solid #b9bfcc;
  border-radius: 50%;
  background: #fff;
}
#nda-volume-root .ndav--deal .ndav-tier--on .ndav-mark {
  border-color: var(--ndav-mark, var(--ndav-accent));
  background: var(--ndav-mark, var(--ndav-accent));
  box-shadow: inset 0 0 0 4px #fff;
}
#nda-volume-root .ndav--deal .ndav-tier--on .ndav-mark::after {
  content: none;
}
#nda-volume-root .ndav--deal .ndav-main {
  flex-direction: column;
  align-items: flex-start;
  gap: 3px;
}
#nda-volume-root .ndav--deal .ndav-name {
  font-size: var(--ndav-title-size, 17px);
  font-weight: var(--ndav-title-weight, 700);
  line-height: 1.25;
}
#nda-volume-root .ndav--deal .ndav-label {
  font-size: var(--ndav-label-size, 14px);
  opacity: 1;
  color: var(--ndav-label-fg, color-mix(in srgb, currentColor 62%, transparent));
  background: none;
  padding: 0;
}
#nda-volume-root .ndav--deal .ndav-prices {
  align-items: flex-end;
  gap: 2px;
}
#nda-volume-root .ndav--deal .ndav-total {
  font-size: var(--ndav-price-size, 17px);
  font-weight: 700;
}
#nda-volume-root .ndav--deal .ndav-was {
  font-size: 14px;
  opacity: .5;
}
#nda-volume-root .ndav--deal .ndav-each {
  font-size: 13px;
  opacity: .6;
}
#nda-volume-root .ndav--deal .ndav-heading--ruled {
  font-size: var(--ndav-heading-size, 14px);
  font-weight: var(--ndav-heading-weight, 800);
  letter-spacing: .06em;
  margin-bottom: 14px;
}
#nda-volume-root .ndav--deal .ndav-heading--ruled::before,
#nda-volume-root .ndav--deal .ndav-heading--ruled::after {
  height: 2px;
  opacity: 1;
  background: color-mix(in srgb, var(--ndav-accent, #111) 22%, #fff);
}
#nda-volume-root .ndav--deal .ndav-picks {
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-top: 0;
  padding-top: 2px;
}
#nda-volume-root .ndav--deal .ndav-pick {
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
#nda-volume-root .ndav--deal .ndav-pick-name {
  flex: 0 0 auto;
  min-width: 22px;
  font-size: 13px;
  opacity: .7;
}
#nda-volume-root .ndav--deal .ndav-pick-select {
  width: auto;
  min-width: 120px;
  min-height: 34px;
  background-color: #fff;
  border-color: #cfd3dc;
  border-radius: 4px;
}
#nda-volume-root .ndav--deal .ndav-add {
  width: 100%;
  min-height: 52px;
  margin-top: 14px;
  border-radius: 4px;
  background: #111 !important;
  color: #fff !important;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: .06em;
}

.ndav-saved {
  font-size: .82em;
  font-weight: 600;
  color: var(--ndav-saved-color, #128a4a);
  white-space: nowrap;
}

.ndav--solid .ndav-tier--on .ndav-saved {
  color: inherit;
  opacity: .9;
}

.ndav--inline .ndav-saved {
  flex-basis: 100%;
  text-align: right;
}

.ndav--cards .ndav-saved,
.ndav--inline.ndav--cards .ndav-saved {
  text-align: center;
}

.ndav-countdown.nd-fx-tinted { --ndt-acc: var(--nd-accent, #1f4fd1); --ndt-tint: color-mix(in srgb, var(--ndt-acc) 6%, #fff); --ndt-line: color-mix(in srgb, var(--ndt-acc) 16%, #e6e8ee); --ndt-lift: 0 1px 2px rgba(16,24,40,.06), 0 4px 12px rgba(16,24,40,.08); background: var(--ndt-tint) !important; border: 1px solid var(--ndt-line); }
.ndav-picks.nd-fx-tinted { --ndt-acc: var(--nd-accent, #1f4fd1); --ndt-tint: color-mix(in srgb, var(--ndt-acc) 6%, #fff); --ndt-line: color-mix(in srgb, var(--ndt-acc) 16%, #e6e8ee); --ndt-lift: 0 1px 2px rgba(16,24,40,.06), 0 4px 12px rgba(16,24,40,.08); background: var(--ndt-tint); border: 1px solid var(--ndt-line); border-radius: 10px; padding: 10px; }
#nda-volume-root .ndav-picks--options {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
#nda-volume-root .ndav-picks-head {
  font-size: .8em;
  opacity: .7;
}
#nda-volume-root .ndav-pick--options {
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
#nda-volume-root .ndav-pick--options .ndav-pick-name {
  flex: 0 0 auto;
  min-width: 22px;
}
#nda-volume-root .ndav-pick--options .ndav-pick-select {
  width: auto;
  min-width: 96px;
  flex: 0 1 auto;
}
#nda-volume-root .ndav-swatches {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 6px;
  padding: 3px;
  border: 1px solid var(--ndav-line);
  border-radius: calc(var(--ndav-radius, 10px) * .6);
  background: var(--ndav-surface, #fff);
}
#nda-volume-root .ndav-swatch {
  width: 30px;
  height: 30px;
  min-height: 0;
  padding: 0;
  margin: 0;
  border: 2px solid transparent;
  border-radius: 6px;
  background: #fff;
  box-shadow: none;
  cursor: pointer;
  position: relative;
  font: inherit;
  color: inherit;
}
#nda-volume-root .ndav-swatch::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--ndav-swatch, #ccc);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, .15);
}
#nda-volume-root .ndav-swatch--on {
  border-color: var(--ndav-accent, #111);
}
#nda-volume-root .ndav-swatch--text {
  width: auto;
  padding: 0 8px;
  font-size: .8em;
}
#nda-volume-root .ndav-swatch--text::after {
  content: none;
}
#nda-volume-root .ndav-swatch--out {
  opacity: .35;
  cursor: not-allowed;
}
#nda-volume-root .ndav-tiergift {
  order: 30;
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  gap: 10px;
  width: calc(100% + 32px);
  margin: 10px -16px -14px;
  padding: 8px 16px;
  border-radius: 0 0 calc(var(--ndav-radius, 10px) - 1px) calc(var(--ndav-radius, 10px) - 1px);
  background: var(--ndav-tiergift-bg, #2f9e55);
  color: var(--ndav-tiergift-fg, #ffffff);
  font-size: .9em;
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
}
#nda-volume-root .ndav-tiergift img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 4px;
  background: #fff;
  flex: 0 0 auto;
}
#nda-volume-root .ndav--deal .ndav-tiergift {
  width: calc(100% + 36px);
  margin: 12px -18px -15px;
  padding: 9px 18px;
}
#nda-volume-root .ndav--cards .ndav-tiergift {
  width: calc(100% + 28px);
  margin: 10px -14px -16px;
}
#nda-volume-root .ndav-subs {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0 0 12px;
}
#nda-volume-root .ndav-subs-toggle {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  gap: 8px;
}
#nda-volume-root .ndav-subs-opt {
  min-height: 48px;
  padding: 8px 12px;
  border: 1px solid var(--ndav-line);
  border-radius: var(--ndav-radius, 10px);
  background: var(--ndav-surface, color-mix(in srgb, currentColor 5%, transparent));
  color: inherit;
  font: inherit;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  cursor: pointer;
}
#nda-volume-root .ndav-subs-opt--on {
  background: var(--ndav-selected-bg, #fff);
  border-color: var(--ndav-accent);
  box-shadow: 0 0 0 1px var(--ndav-accent) inset;
}
#nda-volume-root .ndav-subs-every {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: .9em;
}
#nda-volume-root .ndav-subs-every .ndav-pick-select {
  width: auto;
  flex: 1 1 auto;
}

/* Randurile cu eticheta langa titlu sau cu "You save": pretul ramane pe
   acelasi rand, in dreapta; eticheta se rupe pe doua randuri daca nu incape.
   Doar pentru optiunile noi, stilurile vechi raman neatinse. */
#nda-volume-root .ndav-list:not(.ndav-list--grid) .ndav-main:has(> .ndav-titleline),
#nda-volume-root .ndav-list:not(.ndav-list--grid) .ndav-tier:has(.ndav-saved) > .ndav-main {
  flex: 1 1 0;
}
#nda-volume-root .ndav-list:not(.ndav-list--grid) .ndav-main:has(> .ndav-titleline) ~ .ndav-prices,
#nda-volume-root .ndav-list:not(.ndav-list--grid) .ndav-tier:has(.ndav-saved) > .ndav-prices {
  flex: 0 0 auto;
  margin-left: auto;
}
#nda-volume-root .ndav-list:not(.ndav-list--grid) .ndav-titleline .ndav-tag {
  white-space: normal;
}

/* page builder: produsul ofertei, doar pe paginile fara produs */
.ndav-product { display: flex; align-items: center; gap: 12px; margin: 0 0 12px; color: inherit; text-decoration: none; }
.ndav-product-img { width: 64px; height: 64px; object-fit: cover; border-radius: 8px; flex: none; background: rgba(0,0,0,.04); }
.ndav-product-title { font-size: 1.05em; font-weight: 600; line-height: 1.3; }
.ndav-product:hover .ndav-product-title { text-decoration: underline; }

/* ───── sigle noi (alese in Visual styles > Badge); ovalul si celelalte raman neschimbate ───── */
#nda-volume-root .ndav--badge-flag .ndav-badge { top: -14px !important; right: 14px; left: auto; transform: none; max-width: 88px; padding: 5px 8px 10px; white-space: normal; overflow: visible; max-width: none; text-overflow: clip; text-align: center; border-radius: 0 !important; clip-path: polygon(0 0, 100% 0, 100% 100%, 50% 80%, 0 100%); font-size: 10.5px; font-weight: 800; line-height: 1.1; text-transform: uppercase; letter-spacing: .03em; z-index: 3; }
#nda-volume-root .ndav--badge-tag .ndav-badge { transform: translateY(-50%) rotate(-4deg); padding: 3px 10px 3px 17px; border-radius: 0 4px 4px 0 !important; clip-path: polygon(10px 0, 100% 0, 100% 100%, 10px 100%, 0 50%); background: radial-gradient(circle at 8px 50%, transparent 2.4px, var(--ndav-badge-bg, var(--ndav-accent, #111)) 2.9px) !important; font-weight: 700; }
#nda-volume-root .ndav--badge-bubble .ndav-badge { transform: translateY(-62%); padding: 4px 11px; border-radius: 10px !important; overflow: visible; font-weight: 700; }
#nda-volume-root .ndav--badge-bubble .ndav-badge::after { content: ""; position: absolute; left: 14px; bottom: -6px; width: 11px; height: 7px; background: var(--ndav-badge-bg, var(--ndav-accent, #111)); clip-path: polygon(0 0, 100% 0, 20% 100%); }
#nda-volume-root .ndav--badge-burst .ndav-badge { top: -34px !important; right: -24px; left: auto; transform: rotate(-10deg); width: 68px; height: 68px; padding: 0 9px; display: flex !important; align-items: center; justify-content: center; white-space: normal; overflow: visible; max-width: none; text-overflow: clip; text-align: center; clip-path: polygon(50% 0%, 61% 11%, 75% 4%, 79% 19%, 94% 21%, 90% 36%, 100% 50%, 90% 64%, 94% 79%, 79% 81%, 75% 96%, 61% 89%, 50% 100%, 39% 89%, 25% 96%, 21% 81%, 6% 79%, 10% 64%, 0% 50%, 10% 36%, 6% 21%, 21% 19%, 25% 4%, 39% 11%); border-radius: 0 !important; font-size: 10.5px; font-weight: 800; line-height: 1.02; text-transform: uppercase; letter-spacing: .02em; z-index: 3; }
#nda-volume-root .ndav--badge-circle .ndav-badge { top: -32px !important; right: -22px; left: auto; transform: rotate(9deg); width: 64px; height: 64px; padding: 0 7px; display: flex !important; align-items: center; justify-content: center; white-space: normal; overflow: visible; max-width: none; text-overflow: clip; text-align: center; border-radius: 50% !important; box-shadow: inset 0 0 0 3px var(--ndav-badge-bg, var(--ndav-accent, #111)), inset 0 0 0 4.5px rgba(255, 255, 255, .8), 0 2px 6px rgba(15, 15, 40, .25) !important; font-size: 10px; font-weight: 800; line-height: 1.02; text-transform: uppercase; letter-spacing: .03em; z-index: 3; }
#nda-volume-root .ndav--badge-burst .ndav-list, #nda-volume-root .ndav--badge-burst .ndavp-list { padding-top: 14px; }
#nda-volume-root .ndav--badge-burst .ndav-tier--badged .ndav-prices, #nda-volume-root .ndav--badge-burst .ndavp-tier--badged .ndavp-prices { padding-right: 40px; }
#nda-volume-root .ndav--badge-circle .ndav-list, #nda-volume-root .ndav--badge-circle .ndavp-list { padding-top: 14px; }
#nda-volume-root .ndav--badge-circle .ndav-tier--badged .ndav-prices, #nda-volume-root .ndav--badge-circle .ndavp-tier--badged .ndavp-prices { padding-right: 40px; }
#nda-volume-root .ndav--badge-ribbon .ndav-badge { transform: translateY(-50%); padding: 3px 14px; border-radius: 0 !important; clip-path: polygon(0 0, 100% 0, calc(100% - 7px) 50%, 100% 100%, 0 100%, 7px 50%); font-size: 10.5px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em; }

/* ───── stilurile noi ale countdown-ului (casete, banner, pastila, alerta); bar si line raman neschimbate ───── */
#nda-volume-root .ndav-countdown--boxes { flex-direction: column; align-items: var(--nd-justify, center); gap: var(--nd-gap, 8px); padding: var(--nd-pad, 12px); border-radius: var(--nd-radius, var(--ndav-radius, 12px)); background: var(--nd-bg, color-mix(in srgb, var(--ndav-accent, #111) 6%, transparent)); border: var(--nd-border-width, 1px) solid var(--nd-border, color-mix(in srgb, var(--ndav-accent, #111) 14%, transparent)); }
#nda-volume-root .ndav-countdown--boxes .ndav-countdown-label { font-size: .92em; font-weight: var(--nd-title-weight, 700); letter-spacing: .02em; text-transform: uppercase; }
#nda-volume-root .ndav-cd-tiles { display: flex; gap: 8px; }
#nda-volume-root .ndav-cd-tile { display: flex; flex-direction: column; align-items: center; min-width: 50px; padding: 7px 6px 5px; border-radius: var(--nd-btn-radius, 8px); background: var(--nd-accent, var(--ndav-accent, #111)); color: var(--nd-accent-fg, #fff); }
#nda-volume-root .ndav-cd-num { font-size: 1.45em; font-weight: 800; line-height: 1; font-variant-numeric: tabular-nums; }
#nda-volume-root .ndav-cd-unit { margin-top: 3px; font-size: .68em; font-weight: 600; opacity: .8; text-transform: uppercase; letter-spacing: .06em; }
#nda-volume-root .ndav-countdown--banner { padding: var(--nd-pad, 11px) calc(var(--nd-pad, 11px) + 3px); border-radius: var(--nd-radius, var(--ndav-radius, 10px)); background: var(--nd-bg, #111827); color: var(--nd-fg, #fff); border: var(--nd-border-width, 0px) solid var(--nd-border, transparent); }
#nda-volume-root .ndav-countdown--banner .ndav-countdown-time { margin-left: auto; font-weight: 800; font-variant-numeric: tabular-nums; letter-spacing: .03em; color: var(--nd-accent, #fbbf24); }
#nda-volume-root .ndav-countdown-icon { display: inline-flex; flex: 0 0 auto; width: 18px; height: 18px; }
#nda-volume-root .ndav-countdown-icon svg { width: 100%; height: 100%; }
#nda-volume-root .ndav-countdown--pill { justify-content: var(--nd-justify, center); width: fit-content; max-width: 100%; margin-left: auto; margin-right: auto; padding: 7px 16px; border-radius: 999px; background: var(--nd-bg, color-mix(in srgb, #dc2626 9%, #fff)); color: var(--nd-fg, #b91c1c); border: var(--nd-border-width, 1px) solid var(--nd-border, color-mix(in srgb, #dc2626 28%, transparent)); font-weight: var(--nd-weight, 700); }
#nda-volume-root .ndav-countdown--pill .ndav-countdown-dot { background: var(--nd-dot, #dc2626); box-shadow: 0 0 0 3px color-mix(in srgb, #dc2626 22%, transparent); }
#nda-volume-root .ndav-countdown--urgent { padding: var(--nd-pad, 10px) calc(var(--nd-pad, 10px) + 2px); border-radius: var(--nd-radius, 8px); background: var(--nd-bg, #fff7ed); color: var(--nd-fg, #7c2d12); border: var(--nd-border-width, 0px) solid var(--nd-border, transparent); border-left: 4px solid var(--nd-accent, #ea580c); }
#nda-volume-root .ndav-countdown--urgent .ndav-countdown-icon { color: var(--nd-accent, #ea580c); animation: ndav-pulse 1.6s ease-in-out infinite; }
#nda-volume-root .ndav-countdown--urgent .ndav-countdown-time { margin-left: auto; font-weight: 800; color: var(--nd-accent, #c2410c); font-variant-numeric: tabular-nums; }
#nda-volume-root .ndav-countdown--still .ndav-countdown-icon { animation: none; }
@media (prefers-reduced-motion: reduce) { #nda-volume-root .ndav-countdown--urgent .ndav-countdown-icon { animation: none; } }
