/* mutaciones.css — Estilos propios de Mutaciones
   El tema base Basho vive en screen.css — no editar.
   Todo lo de Mutaciones va aquí.
*/

/* ============================================
   DESIGN TOKENS
   ============================================ */
:root {
  /* Colores de marca */
  --mo: #9D67FF;
  --ve: #AFF757;
  --na: #FB6200;
  --ro: #FFD4FC;
  --ne: #000000;
  --bl: #FFFFFF;
  --fo: #FAFAFA;
  --ink: #161618;
  --gray-100: #F1F1EE;
  --gray-300: #D9D9D2;
  --gray-500: #8A8A85;
  --gray-700: #4A4A48;

  /* Tipografía */
  --ft: 'Space Grotesk', system-ui, sans-serif;
  --fc: 'DM Sans', system-ui, sans-serif;
}

/* ============================================
   RESET OVERRIDES
   Override Basho defaults where needed.
   ============================================ */
body {
  font-family: var(--ft);
  background: var(--fo);
  color: var(--ink);
}

/* ============================================
   NAV / HEADER
   ============================================ */
.mo-nav-wrap {
  background: var(--mo);
  height: 131px;
  padding: 0 70px;
  display: flex;
  align-items: center;
  position: sticky;
  top: 0;
  z-index: 200;
}
.mo-nav {
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.mo-nav__logo { display: flex; align-items: center; }
.mo-nav__logo-img { width: 120px; height: 41px; display: block; }
.mo-nav__menu {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}
.mo-nav__item { position: relative; }
.mo-nav__link {
  display: flex;
  align-items: center;
  gap: 5px;
  color: white;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 999px;
  cursor: pointer;
  transition: background 0.15s;
  white-space: nowrap;
}
.mo-nav__link:hover,
.mo-nav__item--open .mo-nav__link { background: rgba(255,255,255,0.15); }
.mo-nav__chev { transition: transform 0.2s; flex-shrink: 0; }
.mo-nav__item--open .mo-nav__chev { transform: rotate(180deg); }
.mo-nav__dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  background: white;
  border-radius: 16px;
  border-top: 2px solid var(--mo);
  min-width: 200px;
  box-shadow: 0 12px 40px rgba(20,20,40,0.14);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  padding: 6px 0;
}
.mo-nav__item--open .mo-nav__dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.mo-nav__dropdown a {
  display: block;
  padding: 12px 18px;
  font-size: 14px;
  color: var(--ink);
  transition: background 0.15s;
}
.mo-nav__dropdown a:hover { background: #F0EAFF; color: var(--mo); }
.mo-nav__cta {
  color: white;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
}

/* ============================================
   HERO
   ============================================ */
.mo-hero {
  background: var(--mo);
  height: 515px;
  padding: 0 70px;
  display: flex;
  align-items: center;
}
.mo-hero__inner {
  max-width: 1320px;
  width: 100%;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;          /* keep first lines aligned across columns */
}

/* Left: "Mutaciones es" with glyph */
.mo-hero__left {
  position: relative;
  min-height: 219px;
  display: flex;
  align-items: flex-start;
  padding-top: 6px;
}
.mo-hero__brand {
  position: relative;
  display: inline-block;
  font-size: 74px;
  font-weight: 700;
  line-height: 1.0;
  color: white;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.mo-hero__brand--visible {
  opacity: 1;
  transform: translateY(0);
}
.mo-hero__ch {
  display: inline-block;
  position: relative;
}
.mo-hero__ch--target {
  color: transparent;          /* hide letter text but keep its space */
}
.mo-hero__glyph-img {
  position: absolute;
  left: 50%;
  bottom: 0.05em;             /* sit on the baseline */
  transform: translateX(-50%);
  height: 0.72em;             /* match lowercase letter height */
  width: auto;
  pointer-events: none;
}
.mo-hero__glyph-img--pop {
  animation: glyph-pop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@keyframes glyph-pop {
  0%   { transform: translateX(-50%) scale(0.4); }
  55%  { transform: translateX(-50%) scale(1.15); }
  100% { transform: translateX(-50%) scale(1); }
}

/* Right: typewriter */
.mo-hero__right {
  position: relative;
  min-height: 219px;
  display: flex;
  align-items: flex-start;
  padding-top: 6px;
}
.mo-hero__typewriter {
  font-size: 74px;
  font-weight: 700;
  color: white;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.35s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.mo-hero__typewriter--out {
  opacity: 0;
  transform: translateY(-10px);
}
.mo-hero__tw-line {
  height: 81px;
  line-height: 1.1;
  white-space: nowrap;
}
.mo-hero__tw-line--small {
  height: 50px;
  font-size: 0.52em;
  font-weight: 400;
  opacity: 0.75;
  line-height: 1.3;
}
.mo-hero__cursor {
  display: inline-block;
  width: 3px;
  margin-left: 4px;
  background: currentColor;
  vertical-align: -0.08em;
  height: 0.78em;
  animation: cursor-blink 0.9s step-end infinite;
}
@keyframes cursor-blink {
  0%, 49%  { opacity: 1; }
  50%, 100% { opacity: 0; }
}

/* ============================================
   FILTER ("Quiero...")
   ============================================ */
.mo-filter-wrap {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 5;
  margin: 60px 0;
}
.mo-filter {
  position: relative;
  background: white;
  border-radius: 999px;
  padding: 18px 28px;
  min-width: 380px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  cursor: pointer;
  box-shadow: 0 4px 24px rgba(20,20,40,0.08);
  border: 1px solid var(--gray-300);
  transition: box-shadow 0.2s;
}
.mo-filter:hover { box-shadow: 0 6px 32px rgba(20,20,40,0.14); }
.mo-filter__label {
  font-family: var(--ft);
  font-weight: 500;
  font-size: 20px;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
}
.mo-filter__selected { color: var(--mo); font-weight: 600; }
.mo-filter__chevron {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: var(--mo);
  display: grid;
  place-items: center;
  color: white;
  transition: transform 0.2s;
  flex-shrink: 0;
}
.mo-filter--open .mo-filter__chevron { transform: rotate(180deg); }
.mo-filter__menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translate(-50%, -6px);
  width: max-content;
  min-width: 260px;
  background: white;
  border-radius: 16px;
  border-top: 2px solid var(--mo);
  padding: 0 16px;
  box-shadow: 0 12px 40px rgba(20,20,40,0.14);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
}
.mo-filter--open .mo-filter__menu {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}
.mo-filter__menu a {
  display: block;
  padding: 14px 12px;
  font-size: 17px;
  font-weight: 400;
  text-align: center;
  color: var(--ink);
  border-bottom: 1px solid var(--gray-300);
  transition: background 0.15s, color 0.15s;
}
.mo-filter__menu a:last-child { border-bottom: none; }
.mo-filter__menu a:hover { background: var(--gray-100); }
.mo-filter__menu a.mo-filter__option--active { color: var(--mo); font-weight: 500; }

/* ============================================
   CARDS GRID
   ============================================ */
.mo-grid-section { padding: 0 70px 80px; }
.mo-grid {
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.mo-card {
  cursor: pointer;
  background: #FFFFFF;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.25s ease;
}
.mo-card:hover { transform: translateY(-4px); }
.mo-card__media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--gray-100);
}
.mo-card__body {
  padding: 16px 20px 24px;
}
.mo-card__media img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* Card tags */
.mo-card__tag {
  position: absolute;
  top: 0; left: 0;
  padding: 7px 14px;
  border-radius: 16px 0 16px 0;
  font-family: var(--ft);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  z-index: 2;
}
.mo-tag--servicios { background: var(--na); color: var(--bl); }
.mo-tag--comunidad { background: var(--ve); color: var(--ne); }
.mo-tag--about     { background: var(--ro); color: var(--ne); }
.mo-tag--historia  { background: var(--na); color: var(--bl); }
.mo-tag--training  { background: var(--na); color: var(--bl); }
.mo-tag--mutalab   { background: var(--mo); color: var(--bl); }
.mo-tag--proyecto  { background: var(--mo); color: var(--bl); }
.mo-tag--especial  { background: var(--ne); color: var(--bl); }

/* Card meta pills */
.mo-card__meta {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: 16px 0 10px;
}
.mo-card__pill {
  background: var(--gray-100);
  color: var(--gray-700);
  padding: 4px 10px;
  border-radius: 999px;
  font-family: var(--ft);
  font-size: 11px;
  font-weight: 500;
}

/* Card text */
.mo-card__title {
  font-family: var(--ft);
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--ink);
}
.mo-card__desc {
  font-family: var(--fc);
  color: #555;
  font-size: 13px;
  line-height: 1.6;
}
.mo-card__desc p {
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.mo-card__desc strong { font-weight: 600; color: var(--ne); }

/* Solid-color media variants */
.mo-card__media--lime {
  background: var(--ve);
  width: 100%; height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 28px;
}
.mo-card__media--dark {
  background: var(--ink);
  width: 100%; height: 100%;
  display: grid;
  place-items: center;
}
.mo-card__media--morado {
  background: var(--mo);
  width: 100%; height: 100%;
  display: grid;
  place-items: center;
}

/* Card decorative shapes */
.mo-face-eyes { display: flex; gap: 14px; }
.mo-face-eyes span {
  width: 14px; height: 14px;
  background: var(--ink);
  border-radius: 50%;
}
.mo-ghost-shape {
  width: 55%; height: 65%;
  background: var(--mo);
  border-radius: 50% 50% 18% 18% / 60% 60% 18% 18%;
  position: relative;
}
.mo-ghost-shape::before, .mo-ghost-shape::after {
  content: '';
  position: absolute;
  top: 38%;
  width: 14px; height: 14px;
  background: var(--ink);
  border-radius: 50%;
}
.mo-ghost-shape::before { left: 28%; }
.mo-ghost-shape::after  { right: 28%; }
.mo-star-burst {
  font-size: 48px;
  line-height: 1;
  color: var(--ve);
  text-align: center;
}

/* Dark overlay card */
.mo-card--dark .mo-card__media { background: var(--ink); }
.mo-card--dark .mo-card__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(0,0,0,0.78) 100%);
}
.mo-card__overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px;
  color: white;
  z-index: 2;
}
.mo-card__overlay h3 {
  font-family: var(--ft);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 8px;
}
.mo-card__overlay p {
  font-size: 15px;
  opacity: 0.9;
  margin-bottom: 10px;
  line-height: 1.7;
  font-family: var(--fc);
}
.mo-card__overlay .mo-card__meta { margin: 0; }
.mo-card__overlay .mo-card__pill {
  background: rgba(255,255,255,0.15);
  color: white;
  backdrop-filter: blur(8px);
}

/* Ver más button */
.mo-more-wrap { display: flex; justify-content: center; margin-top: 56px; }
.mo-btn-pill {
  background: var(--ne);
  color: var(--bl);
  padding: 14px 36px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  transition: transform 0.2s, background 0.2s;
  display: inline-block;
}
.mo-btn-pill:hover { background: #2a2a2e; transform: translateY(-2px); }

/* ============================================
   TEAM BANNER
   ============================================ */
.mo-team-banner {
  background: var(--ro);
  padding: 88px 0 88px 70px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  column-gap: 56px;
  align-items: center;
  overflow: hidden;
}
.mo-team-banner__text { max-width: 580px; }
.mo-team-banner__heading {
  font-family: var(--ft);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.2;
  letter-spacing: -0.01em;
  color: var(--ne);
  margin-bottom: 20px;
}
.mo-hl--lime {
  background: var(--ve);
  padding: 0 10px 2px;
  border-radius: 8px;
  display: inline-block;
}
.mo-hl--orange {
  background: var(--na);
  color: white;
  padding: 0 10px 2px;
  border-radius: 8px;
  display: inline-block;
}
.mo-team-banner__sub {
  font-family: var(--fc);
  font-size: 17px;
  color: rgba(0,0,0,0.65);
  line-height: 1.6;
  max-width: 420px;
}
.mo-team-banner__carousel { overflow: hidden; }
.mo-team-banner__track {
  display: flex;
  gap: 16px;
  animation: carousel-scroll 18s linear infinite;
}
@keyframes carousel-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.mo-team-banner__slide {
  flex-shrink: 0;
  width: 300px; height: 400px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--gray-100);
}
.mo-team-banner__slide img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.mo-footer {
  background: var(--mo);
  color: white;
}
.mo-footer__inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 72px 70px 48px;
}

/* Newsletter */
.mo-newsletter {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding-bottom: 56px;
  border-bottom: 1px solid white;
  margin-bottom: 56px;
}
.mo-newsletter h2 {
  font-family: var(--ft);
  font-size: 32px;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.02em;
}
.mo-newsletter h2 strong { font-weight: 700; }
.mo-newsletter__right { display: flex; flex-direction: column; gap: 14px; }
.mo-newsletter__label {
  font-size: 14px;
  font-family: var(--fc);
}
.mo-newsletter__form {
  display: flex;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.3);
}
.mo-newsletter__form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 20px;
  color: white;
  font-family: var(--fc);
  font-size: 14px;
  outline: none;
}
.mo-newsletter__form input::placeholder { color: rgba(255,255,255,0.5); }
.mo-newsletter__form button {
  background: var(--ne);
  color: var(--bl);
  border: none;
  padding: 14px 28px;
  font-family: var(--ft);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  border-radius: 999px;
}
.mo-newsletter__form button:hover { background: var(--gray-700); }

/* Footer grid */
.mo-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.mo-footer__brand { display: flex; flex-direction: column; gap: 16px; }
.mo-footer__logo-img { width: 120px; height: 41px; display: block; }
.mo-footer__tagline {
  font-family: var(--fc);
  font-size: 13px;
  line-height: 1.65;
  opacity: 0.75;
  max-width: 280px;
}
.mo-footer__copyright { font-size: 12px; opacity: 0.4; }
.mo-footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mo-footer__col--right { align-self: stretch; }
.mo-footer__col a {
  font-family: var(--ft);
  font-size: 14px;
  font-weight: 400;
  color: white;
  transition: opacity 0.15s;
}
.mo-footer__col a:hover { opacity: 0.8; color: var(--ve); }
.mo-footer__social { display: flex; gap: 16px; align-items: center; margin-top: auto; padding-top: 24px; }
.mo-footer__social a {
  color: white;
  transition: opacity 0.15s;
}
.mo-footer__social a:hover { opacity: 1; }

/* ============================================
   MUTASHOP — Hero
   ============================================ */
.mo-shop-hero {
  background: var(--mo);
  padding: 36px 70px 48px;
  text-align: center;
}
.mo-shop-hero__title {
  font-size: 160px;
  font-weight: 600;
  line-height: 1;
  color: white;
  letter-spacing: -0.04em;
  display: inline-flex;
  align-items: center;
  gap: 0;
  white-space: nowrap;
}
.mo-shop-hero__o {
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
  position: relative;
  top: -0.06em;
}
.mo-shop-hero__o img {
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  vertical-align: middle;
}

/* ============================================
   MUTASHOP — Marquee
   ============================================ */
.mo-marquee {
  background: var(--ve);
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
  border-top: 1.5px solid rgba(0,0,0,0.08);
  border-bottom: 1.5px solid rgba(0,0,0,0.08);
}
.mo-marquee__track {
  display: inline-flex;
  animation: marquee-scroll 22s linear infinite;
}
.mo-marquee__text {
  font-size: 15px;
  font-weight: 500;
  color: var(--ne);
  padding-right: 4px;
  white-space: nowrap;
}
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ============================================
   MUTASHOP — Transitions
   ============================================ */
:root {
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --dur-fast: 0.25s;
  --dur-med: 0.45s;
  --dur-slow: 0.65s;
}

/* ============================================
   MUTASHOP — Stage
   ============================================ */
.mo-stage-wrap {
  position: relative;
  background: var(--fo);
  cursor: default;
}
.mo-stage {
  position: relative;
  width: 1440px;
  max-width: 100%;
  height: 814px;
  margin: 0 auto;
  overflow: hidden;
  background: var(--fo);
}
/* Black floor */
.mo-stage::after {
  content: '';
  position: absolute;
  top: 363px;
  left: 0; right: 0;
  height: 451px;
  background: var(--ne);
  z-index: 1;
  opacity: 0;
  transition: opacity var(--dur-slow) var(--ease-out);
}
.mo-stage.state-2::after,
.mo-stage.state-3::after { opacity: 1; }

/* ============================================
   MUTASHOP — Products base
   ============================================ */
.mo-product {
  position: absolute;
  z-index: 10;
  cursor: pointer;
  user-select: none;
  transform-origin: bottom center;
  transition: transform 0.2s var(--ease-spring);
}

/* Mutito XL — hero product */
.mo-product--mutito-xl {
  left: 548px;
  top: 80px;
  width: 344px;
  height: 324px;
  z-index: 5;
  transition: left 300ms ease, top 300ms ease;
}
.mo-product--mutito-xl img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mo-stage.state-2 .mo-product--mutito-xl,
.mo-stage.state-3 .mo-product--mutito-xl {
  left: 959px;
  top: 80px;
}

/* Secondary products — hidden in state1 */
.mo-product--secondary {
  opacity: 0;
  pointer-events: none;
  transform: translateY(16px) scale(0.95);
  transition: opacity 300ms ease, transform 300ms ease;
}
.mo-product--secondary.revealed {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

/* Exact bodegón positions (1440×814) */
.mo-product--tote            { left: 540px;  top: 203px; width: 278px; height: 402px; }
.mo-product--taza-logra      { left: 126px;  top: 272px; width: 148px; height: 131px; }
.mo-product--mutarot         { left: 196px;  top: 495px; width: 281px; height: 141px; }
.mo-product--peluche-naranja { left: 1186px; top: 280px; width: 180px; height: 164px; }
.mo-product--workbook        { left: 316px;  top: 169px; width: 306px; height: 216px; }
.mo-product--llavero-m       { left: 805px;  top: 405px; width: 119px; height: 184px; }
.mo-product--libreta         { left: 870px;  top: 216px; width: 149px; height: 188px; }
.mo-product--taza-reunion    { left: 1162px; top: 493px; width: 148px; height: 131px; }
.mo-product--llavero-o       { left: 55px;   top: 383px; width: 96px;  height: 182px; }
.mo-product--stickers        { left: 938px;  top: 431px; width: 163px; height: 116px; }

/* Hover in state3 */
.mo-stage.state-3 .mo-product:hover {
  transform: scale(1.04) translateY(-4px);
}

/* Product name tooltip */
.mo-product__label {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  background: var(--ne);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 999px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s;
  z-index: 40;
}
.mo-stage.state-3 .mo-product:hover .mo-product__label { opacity: 1; }

/* Intro text + catalog button (state1) */
.mo-stage__intro {
  position: absolute;
  top: 448px;
  left: 0; right: 0;
  text-align: center;
  z-index: 15;
  transition: opacity 300ms ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.mo-stage__intro p {
  font-family: var(--fc);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
  color: #666666;
  transition: opacity 300ms ease;
}
.mo-stage:not(.state-1) .mo-stage__intro p {
  opacity: 0;
  pointer-events: none;
}

/* CTA (state3) */
.mo-stage__cta {
  position: absolute;
  bottom: 462px;
  left: 0; right: 0;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
  color: rgba(0,0,0,0.3);
  z-index: 15;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--dur-slow);
}
.mo-stage.state-3 .mo-stage__cta { opacity: 1; }

/* ============================================
   MUTASHOP — Modal
   ============================================ */
.mo-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.50);
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--dur-med), visibility var(--dur-med);
  padding: 32px;
}
.mo-modal-overlay.open {
  opacity: 1;
  visibility: visible;
}
.mo-modal {
  position: relative;
  background: white;
  border-radius: 16px;
  overflow: hidden;
  width: 861px;
  max-width: 100%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  transform: translateY(20px) scale(0.97);
  transition: transform var(--dur-med) var(--ease-spring);
}
.mo-modal-overlay.open .mo-modal {
  transform: translateY(0) scale(1);
}
.mo-modal__accent {
  height: 52px;
  background: var(--mo);
  flex-shrink: 0;
  position: relative;
}
.mo-modal__body {
  display: flex;
  flex: 1;
  min-height: 434px;
}
.mo-modal__photo-col {
  width: 50.4%;
  flex-shrink: 0;
  background: var(--ro);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.mo-modal__photo-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mo-modal__info {
  flex: 1;
  padding: 24px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}
.mo-modal__name {
  font-family: var(--ft);
  font-size: 38px;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ne);
  margin-bottom: 12px;
}
.mo-modal__badge {
  display: inline-block;
  background: var(--ro);
  font-family: var(--ft);
  font-size: 20px;
  font-weight: 500;
  color: var(--ne);
  padding: 6px 16px;
  border-radius: 8px;
  align-self: flex-start;
  margin-bottom: 20px;
  line-height: 1.4;
}
.mo-modal__desc {
  font-family: var(--fc);
  font-size: 16px;
  line-height: 1.65;
  color: #444;
  flex: 1;
  margin-bottom: 20px;
}
.mo-modal__cta {
  font-family: var(--fc);
  font-size: 16px;
  font-weight: 400;
  color: var(--ne);
  align-self: flex-start;
  transition: opacity 0.15s;
}
.mo-modal__cta strong {
  font-weight: 700;
  color: var(--mo);
}
.mo-modal__cta:hover { opacity: 0.75; }
.mo-modal__close {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.2);
  transition: background 0.15s;
  cursor: pointer;
  border: none;
}
.mo-modal__close:hover { background: rgba(255,255,255,0.35); }
.mo-modal__close svg { pointer-events: none; }
