/* Marketplace premium — boutique e-commerce layer */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=Outfit:wght@500;600;700;800&display=swap');

.marketplace-premium-body {
  --mp-bg: #070b12;
  --mp-surface: rgba(15, 23, 42, 0.72);
  --mp-surface-2: rgba(30, 41, 59, 0.55);
  --mp-border: rgba(148, 163, 184, 0.14);
  --mp-accent: #34d399;
  --mp-accent-dim: rgba(52, 211, 153, 0.14);
  --mp-gold: #fbbf24;
  --mp-text: #f1f5f9;
  --mp-muted: rgba(148, 163, 184, 0.88);
  --mp-radius: 20px;
  --mp-font-display: 'Outfit', system-ui, sans-serif;
  --mp-font-body: 'DM Sans', system-ui, sans-serif;
  font-family: var(--mp-font-body);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(52, 211, 153, 0.08), transparent 55%),
    radial-gradient(900px 500px at 90% 0%, rgba(59, 130, 246, 0.06), transparent 50%),
    var(--mp-bg);
}

.marketplace-premium-body .main-content {
  max-width: 1280px;
  align-items: stretch;
}

/* ── Hub / listing magazine ── */
.mp-hub-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: clamp(1.25rem, 3vw, 2rem);
  padding: clamp(1.5rem, 4vw, 2.5rem);
  border-radius: calc(var(--mp-radius) + 4px);
  border: 1px solid var(--mp-border);
  background: linear-gradient(135deg, rgba(15, 23, 42, 0.92), rgba(8, 12, 22, 0.95));
}

.mp-hub-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    -12deg,
    transparent,
    transparent 48px,
    rgba(255, 255, 255, 0.012) 48px,
    rgba(255, 255, 255, 0.012) 49px
  );
  pointer-events: none;
}

.mp-hub-hero__inner {
  position: relative;
  z-index: 1;
}

.mp-hub-hero__eyebrow {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.65rem;
  margin: 0 0 0.65rem;
}

.mp-hub-hero__eyebrow-note {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.75);
}

/* SEO category pills — landing hub + /marketplace hero */
.mp-seo-tags {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.mp-seo-tags span {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.62rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(167, 243, 208, 0.95);
  background: rgba(52, 211, 153, 0.1);
  border: 1px solid rgba(52, 211, 153, 0.24);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.mp-hub-hero__title {
  margin: 0;
  font-family: var(--mp-font-display);
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  color: var(--mp-text);
}

.mp-hub-hero__lead {
  margin: 0.65rem 0 0;
  max-width: 52ch;
  font-size: 1.02rem;
  line-height: 1.55;
  color: var(--mp-muted);
}

.mp-stores-grid {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 340px));
  justify-content: start;
  gap: clamp(1rem, 2.5vw, 1.5rem);
}

/* ── Store card (logo watermark background) ── */
.mp-store-card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 260px;
  padding: 0;
  border-radius: var(--mp-radius);
  border: 1px solid var(--mp-border);
  background: linear-gradient(160deg, rgba(17, 24, 39, 0.95), rgba(8, 12, 22, 0.98));
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.35s ease, border-color 0.35s ease;
  isolation: isolate;
}

.mp-store-card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(52, 211, 153, 0.35);
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.45),
    0 0 0 1px rgba(52, 211, 153, 0.12),
    0 0 40px rgba(52, 211, 153, 0.08);
}

.mp-store-card__watermark {
  position: absolute;
  inset: -20% -10% auto auto;
  width: 72%;
  height: 72%;
  opacity: 0.11;
  filter: grayscale(0.2) blur(0.5px);
  transform: rotate(-8deg);
  pointer-events: none;
  object-fit: contain;
  object-position: center;
}

.mp-store-card__watermark--ph {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5rem;
  color: rgba(148, 163, 184, 0.25);
}

.mp-store-card__glow {
  position: absolute;
  bottom: -40%;
  left: -20%;
  width: 80%;
  height: 80%;
  background: radial-gradient(circle, rgba(52, 211, 153, 0.15), transparent 65%);
  pointer-events: none;
}

.mp-store-card__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  padding: 1.35rem 1.35rem 1.15rem;
  gap: 0.75rem;
}

.mp-store-card__layout {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: stretch;
  flex: 1;
  min-height: 0;
}

.mp-store-card__previews {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.35rem;
  flex-shrink: 0;
  padding: 1.1rem 0.85rem 1.1rem 0;
}

.mp-store-card__preview-thumb {
  display: block;
  width: 46px;
  height: 46px;
  border-radius: 10px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 23, 42, 0.85);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.28);
}

.mp-store-card__preview-thumb--ph {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.85rem;
  color: rgba(148, 163, 184, 0.45);
}

.mp-store-card__badge {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--mp-accent-dim);
  color: #6ee7b7;
  border: 1px solid rgba(52, 211, 153, 0.25);
}

.mp-store-card__avatar-row {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.mp-store-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 14px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  background: rgba(15, 23, 42, 0.8);
}

.mp-store-card__avatar--ph {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--mp-muted);
}

.mp-store-card__title {
  margin: 0;
  font-family: var(--mp-font-display);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: -0.02em;
  color: var(--mp-text);
}

.mp-store-card__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-top: auto;
  padding-top: 0.5rem;
  font-size: 0.8125rem;
  color: var(--mp-muted);
}

.mp-store-card__stat strong {
  color: var(--mp-text);
  font-weight: 700;
}

.mp-store-card__brands {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.mp-store-card__brand {
  width: 22px;
  height: 22px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.06);
  padding: 2px;
  object-fit: contain;
}

.mp-store-card__cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 0.35rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--mp-accent);
}

.mp-store-card__cta i {
  transition: transform 0.25s ease;
}

.mp-store-card:hover .mp-store-card__cta i {
  transform: translateX(4px);
}

/* ── Organizer company meta (store card + shop hero) ── */
.mp-org-meta {
  display: grid;
  gap: 0.35rem;
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.35;
  color: rgba(203, 213, 225, 0.88);
}

.mp-org-meta--card {
  padding-top: 0.1rem;
}

.mp-org-meta--shop {
  margin-top: 0.65rem;
  max-width: 42rem;
}

.mp-org-meta__row {
  display: grid;
  grid-template-columns: minmax(4.5rem, auto) 1fr;
  gap: 0.35rem 0.65rem;
  align-items: baseline;
  margin: 0;
}

.mp-org-meta__k {
  margin: 0;
  font-weight: 600;
  font-size: 0.68rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(148, 163, 184, 0.85);
}

.mp-org-meta__v {
  margin: 0;
  word-break: break-word;
}

.mp-org-meta__row--rating .mp-org-meta__v {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.4rem;
}

.mp-org-meta__stars {
  color: #fbbf24;
  font-size: 0.72rem;
  letter-spacing: 0.04em;
}

.mp-org-meta__reviews {
  color: rgba(148, 163, 184, 0.9);
  font-weight: 500;
}

.mp-shop-hero__profile-link {
  margin: 0.85rem 0 0;
  font-size: 0.92rem;
}

.mp-shop-hero__profile-link a {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  color: #6ee7b7;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}

.mp-shop-hero__profile-link a:hover {
  color: #a7f3d0;
  text-decoration: underline;
}

/* ── Shop page ── */
.mp-shop-hero {
  position: relative;
  margin-bottom: 0.85rem;
  padding: 0.85rem 1rem;
  border-radius: calc(var(--mp-radius) - 2px);
  border: 1px solid var(--mp-border);
  background: linear-gradient(125deg, rgba(15, 23, 42, 0.88), rgba(6, 10, 18, 0.96));
  overflow: hidden;
}

.mp-shop-hero__bg-logo {
  position: absolute;
  right: -8%;
  top: 50%;
  transform: translateY(-50%) rotate(-6deg);
  width: min(200px, 38vw);
  height: min(200px, 38vw);
  opacity: 0.06;
  object-fit: contain;
  pointer-events: none;
}

.mp-shop-hero__grid {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.75rem 1rem;
}

.mp-shop-hero__main {
  flex: 1;
  min-width: 0;
}

.mp-shop-hero__logo {
  width: 56px;
  height: 56px;
  flex-shrink: 0;
  border-radius: 14px;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.35);
}

.mp-shop-hero__logo--ph {
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(30, 41, 59, 0.8);
  font-size: 1.35rem;
  color: var(--mp-muted);
}

.mp-shop-hero__title {
  margin: 0;
  font-family: var(--mp-font-display);
  font-size: clamp(1.05rem, 2.5vw, 1.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--mp-text);
}

.mp-shop-hero__sub {
  margin: 0.35rem 0 0;
  font-size: 0.9375rem;
  color: var(--mp-muted);
}

.mp-shop-hero__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.3rem;
  margin-top: 0.35rem;
}

.mp-shop-hero__chip {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 600;
  color: rgba(203, 213, 225, 0.92);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.mp-shop-hero__chip .fa-star {
  color: #fbbf24;
  font-size: 0.62rem;
}

.mp-shop-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.45rem;
}

.mp-shop-hero__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 32px;
  padding: 0.35rem 0.7rem;
  border-radius: 9px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--mp-text);
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.mp-shop-hero__btn:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.22);
}

.mp-shop-hero__btn--accent {
  border-color: rgba(52, 211, 153, 0.35);
  background: rgba(52, 211, 153, 0.12);
  color: #6ee7b7;
}

.mp-shop-hero__btn--accent:hover {
  background: rgba(52, 211, 153, 0.2);
  border-color: rgba(52, 211, 153, 0.5);
}

.mp-shop-toolbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-bottom: 1.25rem;
}

.mp-shop-toolbar__count {
  font-size: 0.875rem;
  color: var(--mp-muted);
}

.mp-shop-toolbar__count strong {
  color: var(--mp-text);
  font-size: 1.125rem;
  font-weight: 700;
}

/* Product grid — online shop cards */
.mp-catalog {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 240px), 1fr));
  gap: clamp(1rem, 2.2vw, 1.35rem);
}

.mp-product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: calc(var(--mp-radius) - 2px);
  border: 1px solid var(--mp-border);
  background: var(--mp-surface);
  backdrop-filter: blur(12px);
  overflow: hidden;
  color: inherit;
  transition: transform 0.32s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.32s ease, border-color 0.32s ease;
}

.mp-product-card__hit {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  text-decoration: none;
  color: inherit;
}

.mp-product-card__actions {
  display: flex;
  gap: 0.4rem;
  padding: 0 0.75rem 0.75rem;
  margin-top: -0.15rem;
}

.mp-product-card__actions--guest {
  padding-top: 0.15rem;
}

.mp-product-card__btn-fav,
.mp-product-card__btn-cart,
.mp-product-card__btn-cart--link,
.mp-product-card__btn-fav--link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  flex: 1;
  min-height: 36px;
  padding: 0.4rem 0.55rem;
  border-radius: 10px;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  text-decoration: none;
}

.mp-product-card__btn-fav {
  border: 1px solid rgba(244, 114, 182, 0.35);
  background: rgba(244, 114, 182, 0.08);
  color: #fbcfe8;
}

.mp-product-card__btn-fav.is-favorited {
  border-color: rgba(244, 114, 182, 0.55);
  background: rgba(244, 114, 182, 0.18);
  color: #f472b6;
}

.mp-product-card__btn-fav.is-favorited i {
  color: #f472b6;
}

.mp-product-card__btn-fav:hover:not(:disabled) {
  background: rgba(244, 114, 182, 0.16);
}

.mp-product-card__btn-fav--link:hover {
  background: rgba(244, 114, 182, 0.16);
}

.mp-product-card__btn-cart,
.mp-product-card__btn-cart--link {
  border: none;
  background: linear-gradient(135deg, #34d399, #10b981);
  color: #022c22;
  box-shadow: 0 6px 18px rgba(16, 185, 129, 0.25);
}

.mp-product-card__btn-cart:hover:not(:disabled),
.mp-product-card__btn-cart--link:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 22px rgba(16, 185, 129, 0.32);
}

.mp-product-card__btn-cart:disabled {
  opacity: 0.45;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}

.mp-product-card__btn-label {
  white-space: nowrap;
}

.mp-product-card:hover {
  transform: translateY(-8px);
  border-color: rgba(52, 211, 153, 0.3);
  box-shadow:
    0 24px 48px rgba(0, 0, 0, 0.38),
    0 0 32px rgba(52, 211, 153, 0.06);
}

.mp-product-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  background: linear-gradient(180deg, rgba(30, 41, 59, 0.5), rgba(15, 23, 42, 0.85));
  overflow: hidden;
}

.mp-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.22, 1, 0.36, 1);
}

.mp-product-card:hover .mp-product-card__media img {
  transform: scale(1.06);
}

.mp-product-card__media-ph {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  font-size: 3rem;
  color: rgba(148, 163, 184, 0.35);
}

.mp-product-card__ribbon {
  position: absolute;
  top: 12px;
  left: 12px;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  font-size: 0.65rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(52, 211, 153, 0.92);
  color: #022c22;
}

.mp-product-card__ribbon--out {
  background: rgba(239, 68, 68, 0.9);
  color: #fff;
}

.mp-product-card__grade {
  position: absolute;
  top: 12px;
  right: 12px;
  padding: 0.25rem 0.55rem;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  background: rgba(15, 23, 42, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #93c5fd;
}

.mp-product-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1rem 1rem 1.1rem;
  gap: 0.45rem;
}

.mp-product-card__brand {
  margin: 0;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mp-muted);
}

.mp-product-card__title {
  margin: 0;
  font-family: var(--mp-font-display);
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--mp-text);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.mp-product-card__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.mp-product-card__spec {
  padding: 0.15rem 0.5rem;
  border-radius: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.05);
  color: var(--mp-muted);
}

.mp-product-card__footer {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.5rem;
  margin-top: auto;
  padding-top: 0.65rem;
}

.mp-product-card__price {
  margin: 0;
  font-family: var(--mp-font-display);
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--mp-gold);
  line-height: 1;
}

.mp-product-card__price small {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--mp-muted);
}

.mp-product-card__stock {
  font-size: 0.72rem;
  font-weight: 600;
  color: #6ee7b7;
  text-align: right;
}

.mp-product-card__stock--out {
  color: #fca5a5;
}

/* ── Product gallery (PDP) — magazin online ── */
.mp-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  min-width: 0;
}

.mp-gallery__hero {
  position: relative;
  border-radius: calc(var(--mp-radius) + 6px);
  border: 1px solid var(--mp-border);
  background:
    radial-gradient(ellipse 80% 60% at 50% 20%, rgba(52, 211, 153, 0.08), transparent 55%),
    linear-gradient(180deg, rgba(15, 23, 42, 0.55), rgba(8, 12, 22, 0.95));
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
  overflow: hidden;
  isolation: isolate;
}

.mp-gallery__hero--empty {
  aspect-ratio: 1;
  max-height: min(72vh, 640px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
}

.mp-gallery__empty {
  font-size: 4.5rem;
  color: rgba(148, 163, 184, 0.25);
}

.mp-gallery__empty-label {
  margin: 0;
  font-size: 0.875rem;
  color: var(--mp-muted);
}

.mp-gallery__stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 1;
  max-height: min(72vh, 680px);
  padding: 0;
  border: 0;
  border-radius: inherit;
  background: transparent;
  cursor: zoom-in;
  overflow: hidden;
}

.mp-gallery__stage:focus-visible {
  outline: 2px solid var(--mp-accent);
  outline-offset: -2px;
}

.mp-gallery__img {
  display: block;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  padding: clamp(1rem, 3vw, 2rem);
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.25s ease;
}

.mp-gallery__stage.is-switching .mp-gallery__img {
  opacity: 0.35;
  transform: scale(0.97);
}

.mp-gallery__zoom-badge {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(8, 12, 22, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  pointer-events: none;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.mp-gallery__stage:hover .mp-gallery__zoom-badge,
.mp-gallery__stage:focus-visible .mp-gallery__zoom-badge {
  opacity: 1;
  transform: translateY(0);
}

.mp-gallery__arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(8, 12, 22, 0.78);
  color: #fff;
  font-size: 0.95rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.mp-gallery__arrow:hover {
  background: rgba(52, 211, 153, 0.22);
  border-color: rgba(52, 211, 153, 0.45);
}

.mp-gallery__arrow:active {
  transform: translateY(-50%) scale(0.94);
}

.mp-gallery__arrow--prev {
  left: 0.85rem;
}

.mp-gallery__arrow--next {
  right: 0.85rem;
}

.mp-gallery__counter {
  position: absolute;
  left: 50%;
  bottom: 0.85rem;
  transform: translateX(-50%);
  z-index: 2;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(8, 12, 22, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  pointer-events: none;
}

.mp-gallery__thumbs-wrap {
  position: relative;
  margin: 0 -0.15rem;
  overflow: hidden;
}

.mp-gallery__thumbs-wrap::before,
.mp-gallery__thumbs-wrap::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1.5rem;
  z-index: 2;
  pointer-events: none;
}

.mp-gallery__thumbs-wrap::before {
  left: 0;
  background: linear-gradient(90deg, rgba(5, 6, 13, 0.95), transparent);
}

.mp-gallery__thumbs-wrap::after {
  right: 0;
  background: linear-gradient(270deg, rgba(5, 6, 13, 0.95), transparent);
}

.mp-gallery__thumbs {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.55rem;
  padding: 0.15rem 0.25rem 0.35rem;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior-x: contain;
  scrollbar-width: thin;
  scrollbar-color: rgba(52, 211, 153, 0.35) transparent;
}

.mp-gallery__thumb {
  flex: 0 0 auto;
  scroll-snap-align: start;
  width: 76px;
  height: 76px;
  padding: 0;
  border: 2px solid rgba(255, 255, 255, 0.08);
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(15, 23, 42, 0.85);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease, opacity 0.2s ease;
  opacity: 0.72;
}

.mp-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mp-gallery__thumb:hover {
  opacity: 1;
  transform: translateY(-2px);
}

.mp-gallery__thumb.is-active {
  opacity: 1;
  border-color: var(--mp-accent);
  box-shadow: 0 0 0 1px rgba(52, 211, 153, 0.35), 0 8px 20px rgba(52, 211, 153, 0.15);
}

.mp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100500;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(0.75rem, 3vw, 1.5rem);
}

.mp-lightbox[hidden] {
  display: none !important;
}

body.mp-lightbox-open {
  overflow: hidden;
}

.mp-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(2, 4, 10, 0.92);
  backdrop-filter: blur(12px);
}

.mp-lightbox__close {
  position: absolute;
  top: max(0.85rem, env(safe-area-inset-top));
  right: max(0.85rem, env(safe-area-inset-right));
  z-index: 4;
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.mp-lightbox__close:hover {
  background: rgba(255, 255, 255, 0.16);
}

.mp-lightbox__arrow {
  position: absolute;
  top: 50%;
  z-index: 4;
  transform: translateY(-50%);
  display: grid;
  place-items: center;
  width: clamp(2.75rem, 8vw, 3.25rem);
  height: clamp(2.75rem, 8vw, 3.25rem);
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 1.15rem;
  cursor: pointer;
  backdrop-filter: blur(8px);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.mp-lightbox__arrow:hover {
  background: rgba(52, 211, 153, 0.25);
  border-color: rgba(52, 211, 153, 0.5);
}

.mp-lightbox__arrow--prev {
  left: max(0.65rem, env(safe-area-inset-left));
}

.mp-lightbox__arrow--next {
  right: max(0.65rem, env(safe-area-inset-right));
}

.mp-lightbox__stage {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: min(96vw, 1200px);
  height: min(78vh, 900px);
  pointer-events: none;
}

.mp-lightbox__img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  filter: drop-shadow(0 32px 64px rgba(0, 0, 0, 0.55));
  transition: opacity 0.28s ease, transform 0.32s cubic-bezier(0.22, 1, 0.36, 1);
}

.mp-lightbox__img.is-switching {
  opacity: 0;
  transform: scale(0.96);
}

.mp-lightbox__counter {
  position: absolute;
  top: max(0.95rem, env(safe-area-inset-top));
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  margin: 0;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 600;
  font-variant-numeric: tabular-nums;
  color: rgba(255, 255, 255, 0.92);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.mp-lightbox__filmstrip {
  position: absolute;
  bottom: max(0.85rem, env(safe-area-inset-bottom));
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 0.45rem;
  max-width: min(92vw, 640px);
  padding: 0.45rem 0.55rem;
  border-radius: 16px;
  background: rgba(8, 12, 22, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  overflow-x: auto;
  scrollbar-width: none;
}

.mp-lightbox__filmstrip::-webkit-scrollbar {
  display: none;
}

.mp-lightbox__film-btn {
  flex: 0 0 auto;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.55;
  transition: opacity 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.mp-lightbox__film-btn img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.mp-lightbox__film-btn:hover {
  opacity: 0.85;
}

.mp-lightbox__film-btn.is-active {
  opacity: 1;
  border-color: var(--mp-accent);
  transform: scale(1.05);
}

@media (max-width: 640px) {
  .mp-gallery {
    gap: 0.5rem;
  }

  .mp-gallery__hero,
  .mp-gallery__hero--empty {
    aspect-ratio: auto;
    max-height: min(42vh, 280px);
  }

  .mp-gallery__stage {
    aspect-ratio: 1;
    max-height: min(42vh, 280px);
    height: 100%;
  }

  .mp-gallery__img {
    padding: 0.35rem 0.5rem;
  }

  .mp-gallery__thumbs-wrap {
    margin: 0;
  }

  .mp-gallery__thumbs {
    flex-wrap: nowrap;
    gap: 0.4rem;
    padding: 0.1rem 0.15rem 0.2rem;
    margin-top: 0;
  }

  .mp-gallery__arrow {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 0.85rem;
  }

  .mp-gallery__arrow--prev {
    left: 0.5rem;
  }

  .mp-gallery__arrow--next {
    right: 0.5rem;
  }

  .mp-gallery__thumb {
    width: 64px;
    height: 64px;
  }

  .mp-gallery__zoom-badge span {
    display: none;
  }

  .mp-lightbox__filmstrip {
    max-width: calc(100vw - 1.5rem);
  }
}

/* ── Product detail page (PDP) ── */
.mp-pdp {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(1.5rem, 4vw, 2.5rem);
  margin-top: 0.5rem;
}

@media (min-width: 960px) {
  .mp-pdp {
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    align-items: start;
  }
}

.mp-pdp-info {
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2.5vw, 1.25rem);
  min-width: 0;
}

@media (min-width: 960px) {
  .mp-pdp-info {
    position: sticky;
    top: calc(var(--navbar-height, 64px) + 1rem);
    align-self: start;
  }
}

.mp-pdp-buy {
  border-radius: calc(var(--mp-radius) + 2px);
  border: 1px solid var(--mp-border);
  background: linear-gradient(165deg, rgba(17, 24, 39, 0.94), rgba(8, 12, 22, 0.98));
  padding: clamp(1.25rem, 3vw, 1.75rem);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
}

.mp-pdp-seller {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.85rem;
  padding: 0.35rem 0.75rem 0.35rem 0.35rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--mp-muted);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.06);
  transition: border-color 0.2s ease, color 0.2s ease;
}

.mp-pdp-seller:hover {
  color: var(--mp-accent);
  border-color: rgba(52, 211, 153, 0.25);
}

.mp-pdp-seller__logo {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  object-fit: cover;
}

.mp-pdp-title {
  margin: 0 0 0.5rem;
  font-family: var(--mp-font-display);
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--mp-text);
}

.mp-pdp-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 1.25rem;
}

.mp-pdp-chip {
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  background: rgba(59, 130, 246, 0.12);
  color: #93c5fd;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.mp-pdp-chip--grade {
  background: rgba(52, 211, 153, 0.12);
  color: #6ee7b7;
  border-color: rgba(52, 211, 153, 0.22);
}

.mp-pdp-price-block {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 0.5rem 1rem;
  margin-bottom: 0.75rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.mp-pdp-price {
  margin: 0;
  font-family: var(--mp-font-display);
  font-size: clamp(2rem, 5vw, 2.75rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--mp-gold);
  line-height: 1;
}

.mp-pdp-stock {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 600;
  color: #6ee7b7;
}

.mp-pdp-stock--out {
  color: #fca5a5;
}

.mp-pdp-actions {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  margin: 1.25rem 0 0;
}

.mp-pdp-btn-cart {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  width: 100%;
  min-height: 52px;
  padding: 0.85rem 1.25rem;
  border: none;
  border-radius: 14px;
  font-family: var(--mp-font-display);
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #022c22;
  background: linear-gradient(135deg, #34d399, #10b981);
  box-shadow: 0 12px 32px rgba(16, 185, 129, 0.35);
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.mp-pdp-btn-cart:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 40px rgba(16, 185, 129, 0.45);
}

.mp-pdp-btn-fav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  margin-top: 0.65rem;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(244, 114, 182, 0.35);
  background: rgba(244, 114, 182, 0.08);
  color: #fbcfe8;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.mp-pdp-btn-fav.is-favorited {
  border-color: rgba(244, 114, 182, 0.65);
  background: rgba(244, 114, 182, 0.2);
  color: #fce7f3;
}

.mp-pdp-btn-fav.is-favorited i {
  color: #f472b6;
}

.mp-pdp-btn-fav:hover {
  border-color: rgba(244, 114, 182, 0.55);
}

.mp-pdp-hint {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: var(--mp-muted);
  text-align: center;
}

.mp-pdp-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.5rem;
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.mp-pdp-trust__item {
  text-align: center;
  font-size: 0.68rem;
  font-weight: 600;
  color: var(--mp-muted);
  line-height: 1.35;
}

.mp-pdp-trust__item i {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 1rem;
  color: var(--mp-accent);
}

.mp-pdp-details {
  margin-top: 0;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border-radius: var(--mp-radius);
  border: 1px solid var(--mp-border);
  background: var(--mp-surface);
  text-align: left;
}

.mp-pdp-details__title {
  margin: 0 0 0.75rem;
  font-family: var(--mp-font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--mp-text);
}

.mp-pdp-details__text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--mp-muted);
}

.mp-pdp-details__list {
  margin: 0.5rem 0 0;
  padding-left: 1.15rem;
  color: var(--mp-muted);
  font-size: 0.9375rem;
  line-height: 1.55;
}

.mp-pdp-banner {
  padding: 0.85rem 1rem;
  border-radius: 12px;
  font-size: 0.875rem;
  line-height: 1.45;
}

.mp-pdp-banner--ok {
  background: rgba(52, 211, 153, 0.12);
  border: 1px solid rgba(52, 211, 153, 0.25);
  color: #a7f3d0;
}

.mp-pdp-banner--warn {
  background: rgba(251, 191, 36, 0.1);
  border: 1px solid rgba(251, 191, 36, 0.22);
  color: #fde68a;
}

/* Marketplace legal disclaimer — used / defective goods, no warranty */
.mp-legal-disclaimer {
  margin-top: clamp(1.25rem, 3vw, 2rem);
  padding: clamp(1.1rem, 2.8vw, 1.65rem);
  border-radius: calc(var(--mp-radius) + 2px);
  border: 1px solid rgba(251, 191, 36, 0.28);
  background:
    linear-gradient(165deg, rgba(251, 191, 36, 0.07), rgba(8, 12, 22, 0.92)),
    rgba(8, 12, 22, 0.88);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.28);
}

.mp-legal-disclaimer--compact {
  margin-top: 0;
  margin-bottom: 0.85rem;
  padding: 0.75rem 0.85rem;
  border-radius: 12px;
  border-color: rgba(251, 191, 36, 0.35);
  background: rgba(251, 191, 36, 0.08);
  box-shadow: none;
}

.mp-legal-disclaimer__compact-lead {
  margin: 0;
  font-size: 0.78rem;
  line-height: 1.5;
  color: #fde68a;
}

.mp-legal-disclaimer__compact-lead i {
  margin-right: 0.35rem;
  color: #fbbf24;
}

.mp-legal-disclaimer__compact-lead a {
  color: #fef3c7;
  font-weight: 600;
  text-underline-offset: 2px;
}

.mp-legal-disclaimer__compact-lead a:hover {
  color: #fff;
}

.mp-legal-disclaimer__head {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 1rem;
}

.mp-legal-disclaimer__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 12px;
  background: rgba(251, 191, 36, 0.14);
  border: 1px solid rgba(251, 191, 36, 0.25);
  color: #fbbf24;
  font-size: 1.05rem;
}

.mp-legal-disclaimer__title {
  margin: 0 0 0.35rem;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
  font-weight: 700;
  line-height: 1.3;
  color: #fef3c7;
}

.mp-legal-disclaimer__subtitle {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: var(--mp-muted);
}

.mp-legal-disclaimer__alert {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  margin-bottom: 1.1rem;
  padding: 0.85rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(248, 113, 113, 0.28);
  background: rgba(248, 113, 113, 0.08);
}

.mp-legal-disclaimer__alert i {
  flex-shrink: 0;
  margin-top: 0.1rem;
  color: #f87171;
}

.mp-legal-disclaimer__alert p {
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #fecaca;
}

.mp-legal-disclaimer__grid {
  display: grid;
  gap: 0.85rem;
}

@media (min-width: 900px) {
  .mp-legal-disclaimer__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.mp-legal-disclaimer__block {
  padding: 0.85rem 0.95rem;
  border-radius: 12px;
  border: 1px solid rgba(148, 163, 184, 0.14);
  background: rgba(255, 255, 255, 0.02);
}

.mp-legal-disclaimer__block h3 {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin: 0 0 0.55rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  color: #e2e8f0;
}

.mp-legal-disclaimer__block h3 i {
  color: #94a3b8;
  font-size: 0.75rem;
}

.mp-legal-disclaimer__block ul {
  margin: 0;
  padding-left: 1.05rem;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--mp-muted);
}

.mp-legal-disclaimer__block li + li {
  margin-top: 0.4rem;
}

.mp-legal-disclaimer__block strong {
  color: #cbd5e1;
  font-weight: 600;
}

.mp-legal-disclaimer__foot {
  margin-top: 1rem;
  padding-top: 0.85rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
}

.mp-legal-disclaimer__foot p {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--mp-muted);
}

.mp-legal-disclaimer__foot a {
  color: #fde68a;
  font-weight: 600;
  text-underline-offset: 2px;
}

.mp-legal-disclaimer__foot a:hover {
  color: #fff;
}

.mp-legal-disclaimer__foot-muted {
  margin-top: 0.45rem !important;
  font-size: 0.6875rem !important;
  opacity: 0.75;
}

.mp-pdp-disclaimer-full {
  grid-column: 1 / -1;
  margin-top: 0.25rem;
}

.mp-breadcrumb-premium {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.8125rem;
}

.mp-breadcrumb-premium a {
  color: var(--mp-muted);
  text-decoration: none;
  transition: color 0.15s ease;
}

.mp-breadcrumb-premium a:hover {
  color: var(--mp-accent);
}

.mp-breadcrumb-premium__sep {
  color: rgba(148, 163, 184, 0.45);
}

.mp-breadcrumb-premium__current {
  color: var(--mp-text);
  font-weight: 600;
}

/* ── Mobile: magazine compacte, produse 2 coloane ── */
@media (max-width: 640px) {
  .mp-shop-hero {
    padding: 0.6rem 0.7rem;
    margin-bottom: 0.55rem;
  }

  .mp-shop-hero__bg-logo {
    width: 100px;
    height: 100px;
    opacity: 0.04;
  }

  .mp-shop-hero__grid {
    gap: 0.55rem 0.65rem;
  }

  .mp-shop-hero__logo {
    width: 44px;
    height: 44px;
    border-radius: 11px;
  }

  .mp-shop-hero__logo--ph {
    font-size: 1.1rem;
  }

  .mp-shop-hero__title {
    font-size: 0.95rem;
  }

  .mp-shop-hero__chips {
    margin-top: 0.25rem;
    gap: 0.25rem;
  }

  .mp-shop-hero__chip {
    font-size: 0.62rem;
    padding: 0.12rem 0.4rem;
  }

  .mp-shop-hero__actions {
    margin-top: 0.35rem;
    gap: 0.3rem;
  }

  .mp-shop-hero__btn {
    min-height: 28px;
    padding: 0.28rem 0.55rem;
    font-size: 0.68rem;
    border-radius: 8px;
  }

  .mp-stores-grid {
    grid-template-columns: 1fr;
    gap: 0.65rem;
  }

  .mp-store-card {
    min-height: 0;
    border-radius: calc(var(--mp-radius) - 4px);
  }

  .mp-store-card:hover {
    transform: none;
  }

  .mp-store-card__watermark {
    width: 55%;
    height: 55%;
    opacity: 0.07;
  }

  .mp-store-card__body {
    padding: 0.75rem 0.65rem 0.7rem 0.85rem;
    gap: 0.4rem;
  }

  .mp-store-card__previews {
    gap: 0.28rem;
    padding: 0.65rem 0.55rem 0.65rem 0;
  }

  .mp-store-card__preview-thumb {
    width: 34px;
    height: 34px;
    border-radius: 8px;
  }

  .mp-store-card__preview-thumb--ph {
    font-size: 0.72rem;
  }

  .mp-store-card__badge {
    font-size: 0.58rem;
    padding: 0.2rem 0.45rem;
  }

  .mp-store-card__avatar-row {
    gap: 0.5rem;
  }

  .mp-store-card__avatar {
    width: 36px;
    height: 36px;
    border-radius: 10px;
  }

  .mp-store-card__avatar--ph {
    font-size: 1rem;
  }

  .mp-store-card__title {
    font-size: 0.95rem;
  }

  .mp-org-meta--card .mp-org-meta__row:not(.mp-org-meta__row--rating) {
    display: none;
  }

  .mp-org-meta--card {
    font-size: 0.7rem;
    gap: 0.2rem;
  }

  .mp-store-card__brands {
    display: none;
  }

  .mp-store-card__stats {
    padding-top: 0.25rem;
    gap: 0.35rem 0.65rem;
    font-size: 0.72rem;
  }

  .mp-store-card__cta {
    padding-top: 0.45rem;
    margin-top: 0.15rem;
    font-size: 0.72rem;
  }

  .mp-catalog {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.45rem 0.4rem;
  }

  .mp-product-card {
    border-radius: 10px;
  }

  .mp-product-card:hover {
    transform: none;
    box-shadow: none;
  }

  .mp-product-card__media {
    aspect-ratio: 1 / 1;
  }

  .mp-product-card__media-ph {
    font-size: 1.75rem;
  }

  .mp-product-card__ribbon {
    top: 6px;
    left: 6px;
    padding: 0.18rem 0.4rem;
    font-size: 0.55rem;
  }

  .mp-product-card__grade {
    top: 6px;
    right: 6px;
    padding: 0.15rem 0.35rem;
    font-size: 0.58rem;
  }

  .mp-product-card__body {
    padding: 0.45rem 0.5rem 0.5rem;
    gap: 0.2rem;
  }

  .mp-product-card__brand {
    display: none;
  }

  .mp-product-card__title {
    font-size: 0.76rem;
    line-height: 1.25;
  }

  .mp-product-card__specs {
    display: none;
  }

  .mp-product-card__footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.15rem;
    padding-top: 0.25rem;
  }

  .mp-product-card__price {
    font-size: 0.88rem;
  }

  .mp-product-card__price small {
    font-size: 0.62rem;
  }

  .mp-product-card__stock {
    font-size: 0.62rem;
    text-align: left;
  }

  .mp-product-card__actions {
    gap: 0.3rem;
    padding: 0 0.45rem 0.45rem;
  }

  .mp-product-card__btn-fav,
  .mp-product-card__btn-cart,
  .mp-product-card__btn-cart--link,
  .mp-product-card__btn-fav--link {
    min-height: 30px;
    padding: 0.32rem 0.35rem;
    border-radius: 8px;
    font-size: 0.62rem;
    gap: 0.2rem;
  }

  .mp-product-card__btn-label {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mp-store-card,
  .mp-product-card,
  .mp-product-card__media img,
  .mp-pdp-btn-cart {
    transition: none;
  }
  .mp-store-card:hover,
  .mp-product-card:hover {
    transform: none;
  }
}
