/* Shop — Art therapy FOR WOMEN (canon: uxui/visual-concept-art-therapy-for-women.md) */
:root {
  --mh-bg: #F7F3EE;
  --mh-card: #FFFDFC;
  --mh-ink: #171313;
  --mh-text: #393536;
  --mh-muted: #756D6D;
  --mh-accent: #8E3047;
  --mh-accent-hover: #742638;
  --mh-rose: #E8C5C7;
  --mh-border: #DED7D1;
  --mh-gold: #B59662;
  --mh-shadow: 0 8px 28px rgba(23, 19, 19, 0.06);
  --mh-radius: 8px;
}

* { box-sizing: border-box; }

body.mh-shop {
  margin: 0;
  font-family: "Inter", system-ui, sans-serif;
  color: var(--mh-text);
  background: var(--mh-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

.mh-shop h1, .mh-shop h2, .mh-shop h3,
.mh-shop .mh-hero h1, .mh-shop .mh-section h2 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--mh-ink);
  font-weight: 600;
}

.mh-back {
  display: block;
  text-align: center;
  padding: 10px 15px;
  color: var(--mh-muted);
  font-size: .875rem;
  text-decoration: none;
}
.mh-back:hover { color: var(--mh-accent); }

.mh-page {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px 56px;
}

.mh-hero {
  text-align: center;
  padding: 2rem 0 1.5rem;
  max-width: 820px;
  margin: 0 auto 1rem;
}
.mh-hero h1 {
  font-size: clamp(1.85rem, 4.5vw, 2.65rem);
  margin: 0 0 1rem;
  line-height: 1.15;
}
.mh-hero h2, .mh-section h2 {
  font-size: clamp(1.35rem, 3vw, 1.85rem);
  margin: 2.25rem 0 1rem;
  text-align: center;
}
.mh-lead {
  font-size: 1.05rem;
  color: var(--mh-muted);
  margin: 0 auto 1.25rem;
}
.mh-hero p { color: var(--mh-muted); margin: 0 0 .85rem; }

.mh-section-sub {
  text-align: center;
  color: var(--mh-muted);
  margin: -.5rem auto 1.75rem;
  max-width: 640px;
}

.mh-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 220px), 260px));
  justify-content: center;
  gap: 18px;
  margin: 1.5rem 0 2.5rem;
}
@media (min-width: 960px) {
  .mh-grid { grid-template-columns: repeat(4, minmax(0, 260px)); }
}
.mh-grid-wide { grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); }

.mh-card {
  background: var(--mh-card);
  border: 1px solid var(--mh-border);
  border-radius: var(--mh-radius);
  box-shadow: var(--mh-shadow);
  padding: 0 0 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.mh-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(23, 19, 19, 0.09);
}
.mh-card-media {
  aspect-ratio: 4 / 3;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px;
  background: linear-gradient(145deg, var(--mh-rose) 0%, var(--mh-bg) 100%);
}
.mh-card-media img, .mh-card img, .mh-card-thumb {
  width: 100%;
  height: 100%;
  max-height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  background: transparent;
}
.mh-card-symbol .mh-card-media {
  background: #F4EFE8;
}
.mh-card-symbol .mh-card-media img {
  width: 72%;
  height: 72%;
  object-fit: contain;
}
.mh-card-body { padding: 12px 14px 16px; display: flex; flex-direction: column; flex: 1; }
.mh-card h3 {
  font-size: 1rem;
  margin: 0 0 8px;
  line-height: 1.35;
}
.mh-card p {
  flex: 1;
  font-size: .88rem;
  margin: 0 0 12px;
  color: var(--mh-muted);
  line-height: 1.5;
}
.mh-card-wide { text-align: left; }
.mh-card-wide h3 { text-align: center; }

.mh-price-line {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--mh-accent);
  text-align: center;
  margin: 0 0 12px;
}
.mh-was {
  font-size: .9rem;
  color: var(--mh-muted);
  text-decoration: line-through;
  font-weight: 400;
  margin-left: 6px;
}

.mh-btn {
  display: inline-block;
  align-self: center;
  padding: 10px 24px;
  background: var(--mh-accent);
  color: #fff;
  text-decoration: none;
  font-weight: 600;
  font-size: .9rem;
  letter-spacing: .02em;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  transition: background .2s ease;
}
.mh-btn:hover { background: var(--mh-accent-hover); color: #fff; }

.mh-list {
  max-width: 720px;
  margin: 0 auto;
  padding-left: 1.2rem;
  color: var(--mh-muted);
}
.mh-list li { margin-bottom: .65rem; }
.mh-list strong { color: var(--mh-text); }

.mh-note {
  text-align: center;
  color: var(--mh-muted);
  font-size: .875rem;
  font-style: italic;
  margin-bottom: 1.5rem;
}

.mh-video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 20px;
}
.mh-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  background: var(--mh-ink);
  border-radius: var(--mh-radius);
  box-shadow: var(--mh-shadow);
}
.mh-video iframe {
  position: absolute; inset: 0;
  width: 100%; height: 100%; border: 0;
}

.mh-footer {
  text-align: center;
  margin-top: 3rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--mh-border);
  color: var(--mh-muted);
  font-size: .9rem;
}
.mh-footer a { color: var(--mh-accent); font-weight: 500; }

.mh-order-box {
  width: 100%;
  max-width: 520px;
  margin: 2rem auto;
  padding: 1.5rem 1.35rem;
  border: 1px solid var(--mh-border);
  border-left: 4px solid var(--mh-accent);
  background: var(--mh-card);
  border-radius: var(--mh-radius);
  box-shadow: var(--mh-shadow);
  box-sizing: border-box;
}
.mh-order-box label { display: block; font-weight: 600; margin-bottom: 4px; color: var(--mh-ink); }
.mh-order-box input, .mh-order-box textarea {
  width: 100%;
  padding: 11px 12px;
  margin-bottom: 14px;
  border: 1px solid var(--mh-border);
  border-radius: 4px;
  font: inherit;
  background: #fff;
}
.mh-order-box textarea { min-height: 100px; resize: vertical; }

@media (max-width: 640px) {
  .mh-page { padding-left: 12px; padding-right: 12px; }
  .mh-order-box { margin: 1rem 0; padding: 1.15rem 1rem; }
}
.mh-product-title {
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  margin: 1.25rem 0;
  color: var(--mh-ink);
}

.mh-bundle {
  border-color: var(--mh-gold);
  background: linear-gradient(180deg, #fff 0%, #fdf8f3 100%);
}

/* EVO mandala shop — collage sections (source: evo-school.com/mandalashop) */
.mh-ms-page { max-width: none; padding-left: 0; padding-right: 0; }
.mh-ms-page .mh-hero { padding-left: 20px; padding-right: 20px; }
.mh-ms-hero,
.mh-ms-row {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.mh-ms-hero {
  min-height: 18vh;
  padding: 34px 20px 26px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.mh-ms-hero-panel,
.mh-ms-promo-box {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: 18px 24px;
  color: #fff;
  text-align: center;
  border-radius: 10px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  box-shadow: 0 8px 28px rgba(23, 19, 19, 0.16);
}
.mh-ms-hero-panel h1 {
  margin: 0 0 8px;
  color: #fff;
  font-family: "Open Sans", Inter, system-ui, sans-serif;
  font-size: clamp(1.5rem, 3vw, 2rem);
  line-height: 1.25;
}
.mh-ms-hero-panel p {
  margin: 0;
  color: rgba(255,255,255,.92);
}
.mh-ms-row {
  padding: 30px 20px;
  margin-bottom: 0;
}
.mh-ms-row-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.3);
  pointer-events: none;
}
.mh-ms-row-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  align-items: stretch;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}
.mh-ms-card {
  background: rgba(255, 253, 252, 0.97);
  border-radius: 20px;
  box-shadow: 0 0 7px rgba(172, 172, 172, 0.45);
}
.mh-ms-card-media {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
  background: #F4EFE8;
  padding: 12px;
}
.mh-ms-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
}
.mh-ms-card-collage {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  padding: 4px;
}
.mh-ms-card-collage img {
  min-width: 0;
  min-height: 0;
  border-radius: 10px;
  background: #F7F3EE;
  object-fit: contain;
}
.mh-ms-card .mh-card-body { padding: 18px 18px 20px; }
.mh-ms-promo {
  position: relative;
  padding: 22px 20px;
  display: flex;
  justify-content: center;
  background-size: cover;
  background-position: center;
}
.mh-ms-promo-box {
  font-family: "Open Sans", Inter, system-ui, sans-serif;
  font-size: clamp(1.25rem, 3vw, 2rem);
  line-height: 1.3;
}
.mh-ms-promo-box strong { color: #ffeff5; }
.mh-ms-row-cta .mh-ms-row-grid {
  grid-template-columns: minmax(260px, 520px);
}
.mh-ms-page .mh-footer { max-width: 1140px; margin-left: auto; margin-right: auto; padding-left: 20px; padding-right: 20px; }
