/* MYGEAR Store UI — primitives */

/* Breadcrumb — compact: home icon + last 2 crumbs */
.mg-ui-v2 .mg-store-breadcrumb {
  padding-block: 10px 8px;
  font-size: var(--store-fs-sm);
  color: var(--store-text-muted);
}

.mg-ui-v2 .mg-store-breadcrumb__trail {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 2px;
  list-style: none;
  margin: 0;
  padding: 0;
  min-width: 0;
  overflow: hidden;
}

.mg-ui-v2 .mg-store-breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  min-width: 0;
  max-width: 100%;
}

.mg-ui-v2 .mg-store-breadcrumb__item--home {
  flex: 0 0 auto;
}

.mg-ui-v2 .mg-store-breadcrumb__item--last {
  flex: 1 1 auto;
  min-width: 0;
}

.mg-ui-v2 .mg-store-breadcrumb__link {
  color: var(--store-text-muted);
  text-decoration: none;
  transition: color 0.15s;
  min-width: 0;
}

.mg-ui-v2 .mg-store-breadcrumb__link:hover {
  color: var(--store-brand);
}

.mg-ui-v2 .mg-store-breadcrumb__link--home {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 6px;
  color: var(--store-text-muted);
  transition:
    color 0.15s ease,
    background 0.15s ease;
}

.mg-ui-v2 .mg-store-breadcrumb__link--home:hover {
  color: var(--store-brand);
  background: color-mix(in srgb, var(--store-brand) 8%, transparent);
}

.mg-ui-v2 .mg-store-breadcrumb__home-icon {
  display: block;
  flex-shrink: 0;
}

.mg-ui-v2 .mg-store-breadcrumb__text {
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 28ch;
}

.mg-ui-v2 .mg-store-breadcrumb__item--last .mg-store-breadcrumb__text {
  max-width: min(42ch, 100%);
}

.mg-ui-v2 .mg-store-breadcrumb__current {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  max-width: 100%;
  color: var(--store-text);
  font-weight: 500;
}

.mg-ui-v2 .mg-store-breadcrumb__sep {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  color: var(--store-border);
}

@media (max-width: 767px) {
  .mg-ui-v2 .mg-store-breadcrumb {
    padding-block: 8px 6px;
    font-size: 12.5px;
  }

  .mg-ui-v2 .mg-store-breadcrumb__text {
    max-width: 16ch;
  }

  .mg-ui-v2 .mg-store-breadcrumb__item--last .mg-store-breadcrumb__text {
    max-width: min(28ch, 52vw);
  }

  .mg-ui-v2 .mg-store-breadcrumb__link--home {
    width: 26px;
    height: 26px;
  }
}

/* Price */
.mg-ui-v2 .mg-store-price {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mg-ui-v2 .mg-store-price__label {
  font-size: var(--store-fs-xs);
  font-weight: 500;
  color: var(--store-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.mg-ui-v2 .mg-store-price__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 8px;
}

.mg-ui-v2 .mg-store-price__current {
  font-size: var(--store-fs-xl);
  font-weight: 700;
  color: var(--store-price);
  line-height: 1.2;
}

.mg-ui-v2 .mg-store-price__current--lg {
  font-size: var(--store-fs-2xl);
}

.mg-ui-v2 .mg-store-price__old {
  font-size: var(--store-fs-sm);
  color: var(--store-text-muted);
  text-decoration: line-through;
}

.mg-ui-v2 .mg-store-price__discount {
  padding: 2px 6px;
  font-size: var(--store-fs-xs);
  font-weight: 700;
  color: #fff;
  background: var(--store-price);
  border-radius: var(--store-radius-sm);
}

.mg-ui-v2 .mg-store-price__contact {
  font-size: var(--store-fs-lg);
  font-weight: 600;
  color: var(--store-brand);
}

/* Badge */
.mg-ui-v2 .mg-store-badge {
  display: inline-flex;
  align-items: center;
  padding: 2px 8px;
  font-size: var(--store-fs-xs);
  font-weight: 600;
  line-height: 1.4;
  border-radius: var(--store-radius-sm);
  white-space: nowrap;
}

.mg-ui-v2 .mg-store-badge--brand {
  color: #fff;
  background: var(--store-brand);
}

.mg-ui-v2 .mg-store-badge--hot {
  color: #fff;
  background: #ff6b00;
}

.mg-ui-v2 .mg-store-badge--new {
  color: var(--store-brand);
  background: rgba(217, 22, 5, 0.08);
  border: 1px solid rgba(217, 22, 5, 0.2);
}

.mg-ui-v2 .mg-store-badge--muted {
  color: var(--store-text-muted);
  background: var(--store-surface);
  border: 1px solid var(--store-border);
}

/* Button */
.mg-ui-v2 .mg-store-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 20px;
  font-family: inherit;
  font-size: var(--store-fs-base);
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: var(--store-radius-sm);
  cursor: pointer;
  transition: background 0.15s, border-color 0.15s, color 0.15s;
}

.mg-ui-v2 .mg-store-btn:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.mg-ui-v2 .mg-store-btn--primary {
  color: #fff;
  background: var(--store-brand);
}

.mg-ui-v2 .mg-store-btn--primary:hover:not(:disabled) {
  background: var(--store-brand-dark);
}

.mg-ui-v2 .mg-store-btn--secondary {
  color: var(--store-brand);
  background: #fff;
  border-color: var(--store-brand);
}

.mg-ui-v2 .mg-store-btn--secondary:hover:not(:disabled) {
  background: rgba(217, 22, 5, 0.06);
}

.mg-ui-v2 .mg-store-btn--ghost {
  color: var(--store-text);
  background: var(--store-surface);
}

.mg-ui-v2 .mg-store-btn--ghost:hover:not(:disabled) {
  background: var(--store-border);
}

.mg-ui-v2 .mg-store-btn--sm {
  min-height: 36px;
  padding: 6px 14px;
  font-size: var(--store-fs-sm);
}

/* Section title */
.mg-ui-v2 .mg-store-section-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--store-gap);
  margin-bottom: var(--store-gap);
}

.mg-ui-v2 .mg-store-section-title__text {
  margin: 0;
  font-size: var(--store-fs-lg);
  font-weight: 700;
  color: var(--store-text);
  letter-spacing: 0;
}

.mg-ui-v2 .mg-store-section-title__link {
  flex-shrink: 0;
  font-size: var(--store-fs-sm);
  font-weight: 500;
  color: var(--store-brand);
  text-decoration: none;
}

.mg-ui-v2 .mg-store-section-title__link:hover {
  text-decoration: underline;
}

/* Product card — TGDD / CellphoneS / FPT retail hierarchy */
.mg-ui-v2 .mg-store-card {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-sizing: border-box;
  padding: 8px 8px 42px;
  background: #fff;
  border: none;
  border-radius: 0;
  line-height: 1.35;
}

.mg-ui-v2 .mg-store-card:hover {
  border-color: transparent;
}

.mg-ui-v2 .mg-store-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1;
  width: 100%;
  margin-bottom: 8px;
  overflow: hidden;
  background: #fff;
}

.mg-ui-v2 .mg-store-card__img {
  object-fit: contain;
  padding: 6px;
}

.mg-ui-v2 .mg-store-card__ribbons {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 4px;
  pointer-events: none;
}

.mg-ui-v2 .mg-store-card__ribbon {
  display: inline-block;
  padding: 2px 6px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1.3;
  color: #fff;
  white-space: nowrap;
}

.mg-ui-v2 .mg-store-card__ribbon--sale {
  background: #e30019;
}

.mg-ui-v2 .mg-store-card__ribbon--flash {
  background: var(--store-brand);
  letter-spacing: 0.02em;
}

.mg-ui-v2 .mg-store-card__ribbon--installment {
  background: #1a73e8;
}

.mg-ui-v2 .mg-store-card__flags {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  pointer-events: none;
}

.mg-ui-v2 .mg-store-card__flag {
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.mg-ui-v2 .mg-store-card__flag--bestsale {
  width: 64px;
  height: 28px;
  background-image: url("https://mygear.com.vn/media/lib/07-10-2024/icon_hot.png");
}

.mg-ui-v2 .mg-store-card__flag--new {
  width: 34px;
  height: 34px;
  background-image: url("https://mygear.com.vn/media/lib/07-10-2024/new-label-3d-illustration-icon-png.png");
}

.mg-ui-v2 .mg-store-card__flag-hot {
  margin: 4px;
}

.mg-ui-v2 .mg-store-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  min-height: 0;
}

.mg-ui-v2 .mg-store-card__spec {
  margin: 0 0 4px;
  overflow: hidden;
  font-size: 11px;
  line-height: 1.35;
  color: var(--store-text-muted);
  white-space: nowrap;
  text-overflow: ellipsis;
}

/* Outside homepage rail: collapse empty reserved slots */
.mg-ui-v2 .mg-store-card__spec:empty {
  display: none;
}

.mg-ui-v2 .mg-store-card__name {
  display: block;
  margin: 0 0 4px;
  color: var(--store-text);
  text-decoration: none;
}

.mg-ui-v2 .mg-store-card__name-text {
  display: -webkit-box;
  margin: 0;
  overflow: hidden;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.35;
  color: inherit;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow-wrap: break-word;
}

.mg-ui-v2 .mg-store-card__name:hover,
.mg-ui-v2 .mg-store-card__name:hover .mg-store-card__name-text {
  color: var(--store-brand);
}

.mg-ui-v2 .mg-store-card__warranty {
  margin: 0 0 6px;
  font-size: 11px;
  color: var(--store-text-muted);
}

.mg-ui-v2 .mg-store-card__warranty:empty {
  display: none;
}

.mg-ui-v2 .mg-store-card__price-group {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  flex-shrink: 0;
  min-height: 72px;
  margin-top: auto;
}

.mg-ui-v2 .mg-store-card__price-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  min-height: 22px;
}

.mg-ui-v2 .mg-store-card__old {
  font-size: 13px;
  color: #999;
  text-decoration: line-through;
}

.mg-ui-v2 .mg-store-card__discount {
  padding: 0 3px;
  border-radius: 3px;
  background: #ffdcd9;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  color: var(--store-brand);
}

.mg-ui-v2 .mg-store-card__price {
  margin: 2px 0 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--store-price);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mg-ui-v2 .mg-store-card__price u {
  text-decoration: none;
  font-size: 0.72em;
}

.mg-ui-v2 .mg-store-card__installment {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.3;
  color: #1a73e8;
}

.mg-ui-v2 .mg-store-card__stock {
  margin: 4px 0 0;
  font-size: 12px;
  font-weight: 500;
  color: var(--store-text-muted);
}

.mg-ui-v2 .mg-store-card__promo {
  margin: 4px 0 0;
  overflow: hidden;
  font-size: 11px;
  line-height: 1.35;
  color: var(--store-brand);
  white-space: nowrap;
  text-overflow: ellipsis;
}

.mg-ui-v2 .mg-store-card__actions {
  position: absolute;
  right: 8px;
  bottom: 8px;
}

.mg-ui-v2 .mg-store-card__cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 30px;
  border: 0;
  border-radius: var(--store-radius-sm);
  background: #f5f5f5;
  color: var(--store-text);
  cursor: pointer;
  transition: background-color var(--store-ease), color var(--store-ease);
}

.mg-ui-v2 .mg-store-card__cart:hover:not(:disabled) {
  background: var(--store-brand);
  color: #fff;
}

.mg-ui-v2 .mg-store-card__cart:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.mg-ui-v2 .mg-store-card--has-action {
  padding-bottom: 48px;
}

.mg-ui-v2 .mg-store-card--has-action .mg-store-card__actions {
  left: 8px;
  right: 8px;
}

.mg-ui-v2 .mg-store-card__configure {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 30px;
  padding: 0 10px;
  border-radius: var(--store-radius-sm);
  background: var(--store-brand);
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
  text-decoration: none;
  white-space: nowrap;
  transition: background-color var(--store-ease), opacity var(--store-ease);
}

.mg-ui-v2 .mg-store-card__configure:hover {
  background: #b81204;
  color: #fff;
}

.mg-ui-v2 .mg-store-card--skeleton {
  pointer-events: none;
}

.mg-ui-v2 .mg-store-card__media--skeleton {
  aspect-ratio: 1;
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: mg-store-skeleton-shimmer 1.2s ease-in-out infinite;
}

.mg-ui-v2 .mg-store-card__skeleton-line {
  border-radius: 4px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: mg-store-skeleton-shimmer 1.2s ease-in-out infinite;
}

.mg-ui-v2 .mg-store-card__skeleton-line--spec {
  height: 12px;
  width: 72%;
  margin-bottom: 8px;
}

.mg-ui-v2 .mg-store-card__skeleton-line--name {
  height: 14px;
  width: 100%;
  margin-bottom: 6px;
}

.mg-ui-v2 .mg-store-card__skeleton-line--name-short {
  height: 14px;
  width: 65%;
  margin-bottom: 12px;
}

.mg-ui-v2 .mg-store-card__skeleton-line--price {
  height: 18px;
  width: 48%;
  margin-top: auto;
}

@keyframes mg-store-skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

.mg-ui-v2 .mg-store-skeleton-block {
  border-radius: 8px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: mg-store-skeleton-shimmer 1.2s ease-in-out infinite;
}

.mg-ui-v2 .mg-store-page-skeleton__hero {
  height: clamp(180px, 28vw, 360px);
  margin-bottom: 16px;
}

.mg-ui-v2 .mg-store-page-skeleton__rail {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.mg-ui-v2 .mg-store-page-skeleton__card {
  aspect-ratio: 0.72;
}

.mg-ui-v2 .mg-store-pdp-skeleton {
  display: grid;
  gap: 20px;
  grid-template-columns: minmax(0, 1fr);
}

@media (min-width: 992px) {
  .mg-ui-v2 .mg-store-pdp-skeleton {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  }
}

.mg-ui-v2 .mg-store-pdp-skeleton__gallery {
  aspect-ratio: 1;
}

.mg-ui-v2 .mg-store-pdp-skeleton__line {
  height: 14px;
  margin-bottom: 10px;
  width: 100%;
}

.mg-ui-v2 .mg-store-pdp-skeleton__line--title {
  height: 22px;
  width: 88%;
}

.mg-ui-v2 .mg-store-pdp-skeleton__line--price {
  height: 28px;
  width: 42%;
}

.mg-ui-v2 .mg-store-pdp-skeleton__line--meta {
  width: 64%;
}

.mg-ui-v2 .mg-store-pdp-skeleton__cta {
  height: 44px;
  width: 100%;
  margin-top: 8px;
}

.mg-ui-v2 .mg-store-catalog-skeleton__count {
  height: 16px;
  width: 140px;
  margin-bottom: 12px;
}

.mg-ui-v2 .mg-store-catalog-skeleton__card {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mg-ui-v2 .mg-store-catalog-skeleton__media {
  aspect-ratio: 1;
}

.mg-ui-v2 .mg-store-catalog-skeleton__line {
  height: 12px;
  width: 100%;
}

.mg-ui-v2 .mg-store-catalog-skeleton__line--title {
  height: 14px;
}

.mg-ui-v2 .mg-store-catalog-skeleton__line--price {
  width: 48%;
}

.mg-ui-v2 .mg-store-catalog-skeleton--overlay {
  position: absolute;
  inset: 28px 0 0;
  pointer-events: none;
  opacity: 0.92;
}

.mg-ui-v2 .mg-store-catalog__grid-wrap {
  position: relative;
}

.mg-ui-v2 .mg-store-hero-strip-skeleton__head {
  height: 18px;
  width: 56%;
  margin-bottom: 12px;
}

.mg-ui-v2 .mg-store-hero-strip-skeleton__body {
  display: flex;
  gap: 12px;
}

.mg-ui-v2 .mg-store-hero-strip-skeleton__thumb {
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.mg-ui-v2 .mg-store-hero-strip-skeleton__lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mg-ui-v2 .mg-store-hero-strip-skeleton__line {
  height: 12px;
  width: 100%;
}

.mg-ui-v2 .mg-store-hero-strip-skeleton__line--short {
  width: 62%;
}

.mg-ui-v2 .mg-store-hero-strip-skeleton__cta {
  height: 36px;
  width: 100%;
  margin-top: 12px;
}

.mg-ui-v2 .mg-store-cart-line-skeleton__row {
  display: flex;
  gap: 12px;
  padding: 12px 0;
}

.mg-ui-v2 .mg-store-cart-line-skeleton__thumb {
  width: 80px;
  height: 80px;
  flex-shrink: 0;
}

.mg-ui-v2 .mg-store-cart-line-skeleton__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.mg-ui-v2 .mg-store-cart-line-skeleton__line {
  height: 12px;
  width: 100%;
}

.mg-ui-v2 .mg-store-cart-line-skeleton__line--short {
  width: 40%;
}

.mg-ui-v2 .mg-store-page-skeleton__hero,
.mg-ui-v2 .mg-store-page-skeleton__card,
.mg-ui-v2 .mg-store-pdp-skeleton__gallery,
.mg-ui-v2 .mg-store-pdp-skeleton__line,
.mg-ui-v2 .mg-store-pdp-skeleton__cta,
.mg-ui-v2 .mg-store-catalog-skeleton__count,
.mg-ui-v2 .mg-store-catalog-skeleton__media,
.mg-ui-v2 .mg-store-catalog-skeleton__line,
.mg-ui-v2 .mg-store-hero-strip-skeleton__head,
.mg-ui-v2 .mg-store-hero-strip-skeleton__cta,
.mg-ui-v2 .mg-store-hero-strip-skeleton__thumb,
.mg-ui-v2 .mg-store-hero-strip-skeleton__line,
.mg-ui-v2 .mg-store-cart-line-skeleton__thumb,
.mg-ui-v2 .mg-store-cart-line-skeleton__line {
  border-radius: 8px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e8e8e8 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  animation: mg-store-skeleton-shimmer 1.2s ease-in-out infinite;
}

/* —— Price teaser: live price or wait state (no skeleton / no loading chrome) —— */
.mg-ui-v2 .mg-store-price-teaser {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.mg-ui-v2 .mg-store-price-teaser__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 8px;
}

.mg-ui-v2 .mg-store-price-teaser__now {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
  color: var(--store-price, #e11d48);
  white-space: nowrap;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
}

.mg-ui-v2 .mg-store-price-teaser--lg .mg-store-price-teaser__now {
  font-size: clamp(18px, 1.55vw, 26px);
}

.mg-ui-v2 .mg-store-price-teaser--sm .mg-store-price-teaser__now {
  font-size: 14px;
}

.mg-ui-v2 .mg-store-price-teaser__now u,
.mg-ui-v2 .mg-store-price-teaser__old u,
.mg-ui-v2 .mg-store-price-teaser__list-num u,
.mg-ui-v2 .mg-store-price-teaser__mask u {
  text-decoration: none;
  font-size: 0.72em;
  font-weight: 700;
}

.mg-ui-v2 .mg-store-price-teaser__old {
  font-size: 12px;
  color: var(--store-text-muted, #8a9199);
  text-decoration: line-through;
  white-space: nowrap;
}

.mg-ui-v2 .mg-store-price-teaser__list {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 6px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.25;
  color: var(--store-text-muted, #8a9199);
}

.mg-ui-v2 .mg-store-price-teaser__list-label {
  color: var(--store-text-muted, #8a9199);
}

.mg-ui-v2 .mg-store-price-teaser__list-num {
  color: var(--store-text-muted, #8a9199);
  text-decoration: line-through;
  font-variant-numeric: tabular-nums;
}

.mg-ui-v2 .mg-store-price-teaser__contact {
  font-size: 13px;
  font-weight: 600;
  color: var(--store-brand, #d91605);
}

/* Primary wait line — same slot as price, plain type, zero animation */
.mg-ui-v2 .mg-store-price-teaser__wait {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--store-text, #212b36);
  white-space: nowrap;
}

.mg-ui-v2 .mg-store-price-teaser--lg .mg-store-price-teaser__wait {
  font-size: clamp(16px, 1.35vw, 22px);
}

.mg-ui-v2 .mg-store-price-teaser--sm .mg-store-price-teaser__wait {
  font-size: 14px;
}

.mg-ui-v2 .mg-store-price-teaser__caption {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--store-text-muted, #8a9199);
}

.mg-ui-v2 .mg-store-price-teaser--lg .mg-store-price-teaser__caption {
  font-size: 12px;
}

.mg-ui-v2 .mg-store-price-teaser__mask {
  font-size: 15px;
  font-weight: 800;
  line-height: 1.15;
  color: #9aa3ad;
  font-variant-numeric: tabular-nums;
  letter-spacing: 0.04em;
}

.mg-ui-v2 .mg-store-price-teaser--lg .mg-store-price-teaser__mask {
  font-size: clamp(16px, 1.4vw, 22px);
}