/* Mahfel Public Site — depends on mahfel-tokens.css */

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

body.mh-public {
  margin: 0;
  font-family: var(--mh-font);
  color: var(--mh-text);
  background: #fff;
  line-height: 1.55;
  min-height: 100vh;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--mh-primary); text-decoration: none; }
a:hover { color: var(--mahfel-turquoise); }
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--mahfel-turquoise);
  outline-offset: 3px;
}
.mh-skip {
  position: absolute; left: -9999px; top: 0; background: #000; color: #fff; padding: .5rem 1rem; z-index: 10000;
}
.mh-skip:focus { left: 1rem; top: 1rem; }

/* ——— Header ——— */
.mh-pub-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid transparent;
  transition: box-shadow .25s ease, border-color .25s ease;
}
.mh-pub-header.is-scrolled {
  box-shadow: var(--mh-shadow-md);
  border-bottom-color: var(--mh-border);
}
.mh-pub-header__inner {
  max-width: var(--mh-content-max); margin: 0 auto; padding: .85rem 1.25rem;
  display: flex; align-items: center; gap: 1.25rem;
}
.mh-pub-logo { flex-shrink: 0; }
.mh-pub-logo img { height: 48px; width: auto; }
.mh-nav-toggle {
  display: none; background: none; border: 0; width: 44px; height: 44px; padding: 10px; cursor: pointer; margin-left: auto;
}
.mh-nav-toggle span {
  display: block; height: 2px; background: var(--mh-primary); margin: 6px 0; border-radius: 2px;
}
.mh-pub-nav {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: flex-end;
  gap: .2rem 1.25rem; flex: 1;
}
.mh-pub-nav a {
  color: var(--mh-text); font-weight: 500; font-size: .95rem; padding: .4rem 0;
  position: relative;
}
.mh-pub-nav a.is-active { color: var(--mh-primary); }
.mh-pub-nav a.is-active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: 0;
  height: 2px; background: var(--mahfel-green); border-radius: 2px;
}
.mh-pub-nav a:hover { color: var(--mh-primary); }
.mh-nav-cta {
  display: inline-flex; align-items: center; gap: .45rem;
  border: 1.5px solid var(--mahfel-green); border-radius: 10px; padding: .5rem 1.15rem !important;
  color: var(--mahfel-dark-green) !important; font-weight: 600 !important;
  background: #fff;
}
.mh-nav-cta:hover { background: var(--mahfel-light-green); color: var(--mahfel-dark-green) !important; }
.mh-nav-cta--solid {
  background: var(--mahfel-green); color: #fff !important; border-color: var(--mahfel-green);
}
.mh-nav-cta--solid:hover { filter: brightness(1.04); color: #fff !important; }
.mh-nav-register { font-size: .875rem; color: var(--mh-text-muted) !important; }
.mh-nav-user {
  display: inline-flex; align-items: center; gap: .4rem;
  font-weight: 600; color: var(--mahfel-dark-green); font-size: .92rem;
  max-width: 160px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap;
}
.mh-nav-account {
  position: relative;
  margin-left: .35rem;
}
.mh-nav-account__btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  min-height: 44px;
  padding: .35rem .7rem;
  border-radius: 999px;
  border: 1.5px solid var(--mahfel-border);
  background: #fff;
  color: var(--mahfel-dark-green);
  font: inherit;
  font-weight: 600;
  cursor: pointer;
}
.mh-nav-account__btn:hover,
.mh-nav-account__btn[aria-expanded="true"] {
  border-color: var(--mahfel-green);
  background: var(--mahfel-light-green);
}
.mh-nav-account__menu {
  position: absolute;
  right: 0;
  top: calc(100% + .4rem);
  min-width: 200px;
  background: #fff;
  border: 1px solid var(--mahfel-border);
  border-radius: 14px;
  box-shadow: var(--mh-shadow-md);
  padding: .4rem;
  z-index: 50;
}
.mh-nav-account__menu a {
  display: block;
  padding: .7rem .85rem !important;
  border-radius: 10px;
  color: var(--mh-text) !important;
  font-weight: 500 !important;
}
.mh-nav-account__menu a:hover {
  background: var(--mahfel-light-green);
  color: var(--mahfel-dark-green) !important;
}
.mh-nav-account__menu a::after { display: none !important; }

/* ——— Buttons ——— */
.mh-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .45rem;
  min-height: 48px; padding: .75rem 1.4rem; border-radius: 999px; border: 1px solid transparent;
  font-weight: 600; font-size: 1rem; cursor: pointer; font-family: inherit;
  transition: transform .2s ease, filter .2s ease, background .2s ease;
}
.mh-btn i { font-size: .95em; }
.mh-btn--primary {
  background: var(--mahfel-dark-green); color: #fff; border-color: var(--mahfel-dark-green);
}
.mh-btn--primary:hover { filter: brightness(1.08); color: #fff; }
.mh-btn--lime {
  background: var(--mahfel-green); color: #163b31; border-color: var(--mahfel-green);
  border-radius: 999px;
}
.mh-btn--lime:hover { background: var(--mahfel-green-deep); color: #fff; border-color: var(--mahfel-green-deep); }
.mh-btn--lime .fa-arrow-right,
.mh-btn--primary .fa-arrow-right { transition: transform .2s ease; }
.mh-btn--lime:hover .fa-arrow-right,
.mh-btn--primary:hover .fa-arrow-right { transform: translateX(3px); }
.mh-btn--outline {
  background: #fff; color: var(--mahfel-dark-green);
  border-color: var(--mahfel-green); border-radius: 999px;
}
.mh-btn--outline:hover { background: var(--mahfel-light-green); color: var(--mahfel-dark-green); }
.mh-btn--light {
  background: #fff;
  color: var(--mahfel-dark-green);
  border-color: #fff;
}
.mh-btn--light:hover {
  background: var(--mahfel-light-green);
  color: var(--mahfel-dark-green);
  border-color: var(--mahfel-light-green);
}
.mh-btn--ghost { background: transparent; border-color: currentColor; color: inherit; }
.mh-btn--text { background: transparent; border: 0; color: var(--mh-muted); text-decoration: underline; min-height: auto; padding: .35rem; }
.mh-link-more {
  font-weight: 600; font-size: .95rem; color: var(--mahfel-dark-green);
  display: inline-flex; align-items: center; gap: .35rem;
}
.mh-link-more:hover { color: var(--mahfel-turquoise); }

/* ——— Layout helpers ——— */
.mh-container { max-width: var(--mh-content-max); margin: 0 auto; padding: 0 1.25rem; }
.mh-section { max-width: var(--mh-content-max); margin: 0 auto; padding: 4rem 1.25rem; }
.mh-section--tight { padding-top: 1.5rem; padding-bottom: 2.5rem; }
.mh-section__head {
  display: flex; align-items: flex-end; justify-content: space-between; gap: 1rem;
  margin-bottom: 1.5rem; flex-wrap: wrap;
}
.mh-section__eyebrow {
  display: block; font-size: .72rem; font-weight: 700; letter-spacing: .1em;
  text-transform: uppercase; color: var(--mahfel-green); margin-bottom: .55rem;
}
.mh-section h2, .mh-section__title {
  font-family: var(--mh-display); font-size: clamp(1.55rem, 2.8vw, 2rem);
  margin: 0; color: var(--mahfel-dark-green); font-weight: 700; line-height: 1.2;
}
.mh-testimonials .mh-section__title,
.mh-testimonials__title {
  text-align: center;
  width: 100%;
  margin-bottom: 1.25rem;
}
.mh-section__lead { color: var(--mh-muted); max-width: 48ch; margin: .65rem 0 0; }
.mh-grid { display: grid; gap: 1.25rem; }
.mh-grid--4 { grid-template-columns: repeat(4, 1fr); }
.mh-grid--3 { grid-template-columns: repeat(3, 1fr); }
.mh-grid--2 { grid-template-columns: repeat(2, 1fr); }
.mh-split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }

/* ——— Home hero (ref 1024×334 → ratio 3.07) ——— */
.mh-home-hero {
  --hero-bg: var(--mh-hero-bg, #fcf9f5);
  --hero-ink: #1b3c2a;
  --hero-h: 334px;
  background: var(--mh-hero-bg, #fcf9f5);
  padding: 0 1.25rem 1.75rem;
}
.mh-home-hero__panel {
  max-width: var(--mh-content-max);
  margin: 0 auto;
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.95fr) minmax(300px, 1.15fr);
  align-items: stretch;
  height: var(--hero-h);
  min-height: var(--hero-h);
  max-height: var(--hero-h);
  background: var(--hero-bg);
  border-radius: 0 0 1.75rem 1.75rem;
  overflow: hidden;
}
.mh-home-hero__copy {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 1.15rem 1rem 1.15rem 1.35rem;
  background: linear-gradient(
    90deg,
    var(--hero-bg) 0%,
    var(--hero-bg) 58%,
    rgba(var(--mh-hero-bg-rgb), 0.9) 76%,
    rgba(var(--mh-hero-bg-rgb), 0) 100%
  );
}
.mh-home-hero__copy h1 {
  font-family: var(--mh-display);
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  line-height: 1.12;
  margin: 0 0 .55rem;
  color: var(--hero-ink);
  font-weight: 700;
  max-width: 14ch;
  letter-spacing: -0.02em;
}
.mh-home-hero__copy h1 .mh-leaf {
  display: inline-flex;
  align-items: center;
  margin-left: .15em;
  font-size: .4em;
  vertical-align: middle;
  color: var(--hero-ink);
  transform: translateY(-0.12em);
}
.mh-home-hero__copy > p {
  font-size: .88rem;
  color: #4a5560;
  max-width: 40ch;
  margin: 0 0 .85rem;
  line-height: 1.45;
  font-weight: 400;
}
.mh-home-hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: .9rem;
}
.mh-btn--hero-primary {
  background: var(--hero-ink);
  color: #fff;
  border-color: var(--hero-ink);
  border-radius: 999px;
  min-height: 38px;
  padding: .45rem 1.05rem;
  font-size: .9rem;
  font-weight: 600;
}
.mh-btn--hero-primary:hover {
  background: #143022;
  color: #fff;
  border-color: #143022;
}
.mh-btn--hero-secondary {
  background: #fff;
  color: var(--hero-ink);
  border: 1.5px solid var(--hero-ink);
  border-radius: 999px;
  min-height: 38px;
  padding: .45rem 1rem;
  font-size: .9rem;
  font-weight: 600;
}
.mh-btn--hero-secondary:hover {
  background: #eef4ef;
  color: var(--hero-ink);
}
.mh-btn--hero-secondary .fa-leaf {
  color: #3d7a4a;
  margin-left: .15rem;
}
.mh-home-hero__media {
  position: relative;
  z-index: 1;
  height: 100%;
  margin-left: -14%;
  border-radius: 0 0 0 3.25rem;
  overflow: hidden;
  background: #e8ebe6;
}
.mh-home-hero__media::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 40%;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    var(--hero-bg) 0%,
    rgba(var(--mh-hero-bg-rgb), 0.85) 28%,
    rgba(var(--mh-hero-bg-rgb), 0.3) 58%,
    rgba(var(--mh-hero-bg-rgb), 0) 100%
  );
}
.mh-home-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  object-position: 48% 40%;
  display: block;
}
.mh-advantages {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .4rem .65rem;
}
.mh-advantage {
  display: flex;
  align-items: center;
  gap: .45rem;
}
.mh-advantage__icon {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #e4efdf;
  color: var(--hero-ink);
  display: grid;
  place-items: center;
  font-size: .75rem;
}
.mh-advantage__text {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}
.mh-advantage__text strong {
  font-size: .78rem;
  color: var(--hero-ink);
  font-weight: 700;
  line-height: 1.15;
}
.mh-advantage__text small {
  font-size: .68rem;
  color: #6b7680;
  line-height: 1.2;
}

/* ——— Home about (ref 1024×185 compact band) ——— */
.mh-about-home {
  padding: 0 1.25rem 2rem;
  background: #fff;
}
.mh-about-home__panel {
  max-width: var(--mh-content-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 0.9fr) minmax(320px, 1.35fr);
  gap: 1.75rem 2.25rem;
  align-items: center;
  min-height: 210px;
}
.mh-about-home__media {
  border-radius: 1.15rem;
  overflow: hidden;
  height: 210px;
  background: #eef2ee;
  box-shadow: var(--mh-shadow-sm);
}
.mh-about-home__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 40% 50%;
  display: block;
}
.mh-about-home__copy {
  min-width: 0;
}
.mh-about-home__eyebrow {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #6fa32e;
  margin: 0 0 .45rem;
}
.mh-about-home__copy h2 {
  font-family: var(--mh-display);
  font-size: clamp(1.35rem, 2.2vw, 1.75rem);
  margin: 0 0 .55rem;
  color: #163b31;
  line-height: 1.2;
  font-weight: 700;
}
.mh-about-home__copy > p {
  margin: 0 0 1rem;
  color: #5c6b66;
  font-size: .88rem;
  line-height: 1.5;
  max-width: 62ch;
}
.mh-about-feats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .65rem .85rem;
}
.mh-about-feats li {
  display: flex;
  align-items: flex-start;
  gap: .5rem;
  min-width: 0;
}
.mh-about-feats__icon {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: .85rem;
  flex-shrink: 0;
}
.mh-about-feats__icon--1 { background: #e5f2d8; color: #4e8d13; }
.mh-about-feats__icon--2 { background: #d9f1ef; color: #178f88; }
.mh-about-feats__icon--3 { background: #fde9d6; color: #e0892a; }
.mh-about-feats__icon--4 { background: #dceff5; color: #2a8aaa; }
.mh-about-feats__text {
  display: flex;
  flex-direction: column;
  gap: .12rem;
  min-width: 0;
}
.mh-about-feats__text strong {
  font-size: .8rem;
  color: #163b31;
  font-weight: 700;
  line-height: 1.2;
}
.mh-about-feats__text small {
  font-size: .7rem;
  color: #6b7c75;
  line-height: 1.25;
}

/* ——— Service cards (home — horizontal icon + copy) ——— */
.mh-services-home {
  padding-top: 0.25rem;
  padding-bottom: 3rem;
  background: #fff;
}
.mh-svc-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem 1.1rem;
}
.mh-svc-card {
  background: #fff;
  border: none;
  border-radius: 1.1rem;
  padding: 1.35rem 1.15rem 1.25rem;
  box-shadow: 0 6px 22px rgba(22, 59, 49, 0.08);
  transition: transform .22s ease, box-shadow .22s ease;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: .85rem;
  min-height: 100%;
}
.mh-svc-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(22, 59, 49, 0.12);
}
.mh-svc-card__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.2rem;
  flex-shrink: 0;
}
.mh-svc-card__icon--1 { background: #2ec4b6; color: #fff; }
.mh-svc-card__icon--2 { background: #e8f6c8; color: #3d7a1a; }
.mh-svc-card__icon--3 { background: #fde9d4; color: #e0892a; }
.mh-svc-card__icon--4 { background: #d9f3f4; color: #1a8f96; }
.mh-svc-card__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: .35rem;
  flex: 1;
}
.mh-svc-card h3 {
  margin: 0;
  font-size: 1.05rem;
  font-family: var(--mh-font);
  font-weight: 700;
  color: #1a1a1a;
  line-height: 1.25;
}
.mh-svc-card p {
  margin: 0;
  color: #6b7680;
  font-size: .82rem;
  line-height: 1.45;
  flex: 1;
}
.mh-svc-card__link {
  display: inline-flex;
  align-items: center;
  gap: .25rem;
  margin-top: .35rem;
  font-size: .86rem;
  font-weight: 700;
  color: #0f5c3a;
  text-decoration: none;
  white-space: nowrap;
}
.mh-svc-card__link:hover {
  color: var(--mahfel-turquoise);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ——— Home listings: events (left) + menu (right), mockup 1024×192 ——— */
.mh-home-listings {
  max-width: var(--mh-content-max);
  margin: 0 auto;
  padding: 1.35rem 1.25rem 2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
  gap: 1.25rem 1.35rem;
  align-items: start;
  background: #fff;
}
.mh-home-listings__col { min-width: 0; }
.mh-section__head--listings {
  align-items: center;
  margin-bottom: .75rem;
  gap: .5rem;
}
.mh-section__title--listings {
  font-family: var(--mh-font);
  font-size: .92rem;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #6fa32e;
  white-space: nowrap;
}
.mh-link-more--listings {
  font-size: .78rem;
  font-weight: 600;
  color: #6fa32e;
  gap: .25rem;
  white-space: nowrap;
}
.mh-link-more--listings:hover { color: #4e8d13; }

.mh-card {
  background: #fff;
  border: 1px solid #e4e7ea;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform .22s ease, box-shadow .22s ease;
  box-shadow: none;
}
.mh-home-listings .mh-card { box-shadow: none; }
.mh-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(22, 59, 49, 0.08);
}
.mh-card__media {
  aspect-ratio: 16 / 10;
  object-fit: cover;
  width: 100%;
  background: #eef2ee;
  display: block;
}
.mh-card__media-wrap {
  position: relative;
  display: block;
  overflow: hidden;
}
.mh-card__date {
  position: absolute;
  left: .45rem;
  top: .45rem;
  background: #fff;
  border-radius: 8px;
  padding: .28rem .36rem .24rem;
  text-align: center;
  line-height: 1.05;
  min-width: 2.35rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}
.mh-card__date-day {
  display: block;
  font-size: .95rem;
  font-weight: 800;
  color: #2f3639;
  letter-spacing: -0.02em;
}
.mh-card__date-mon {
  display: block;
  font-size: .55rem;
  text-transform: uppercase;
  letter-spacing: .05em;
  color: #6fa32e;
  font-weight: 800;
  margin-top: .04rem;
}
.mh-card__body {
  padding: .65rem .7rem .75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.mh-card__body h3 {
  margin: 0 0 .35rem;
  font-size: .82rem;
  font-family: var(--mh-font);
  font-weight: 700;
  color: #171a1c;
  line-height: 1.25;
}
.mh-card__body h3 a { color: inherit; }
.mh-card__body h3 a:hover { color: #6fa32e; }
.mh-card__body p {
  margin: 0;
  color: #8a9499;
  flex: 1;
  font-size: .7rem;
  line-height: 1.35;
}
.mh-card__meta {
  display: flex;
  flex-direction: column;
  gap: .18rem;
  font-size: .68rem;
  color: #7a858c;
}
.mh-card__meta i {
  margin-right: .25rem;
  width: .9em;
  color: #9aa3a8;
  font-size: .85em;
}
.mh-badge {
  display: inline-block;
  font-size: .72rem;
  font-weight: 700;
  padding: .2rem .55rem;
  border-radius: 999px;
  background: var(--mahfel-light-green);
  color: var(--mahfel-dark-green);
  margin-bottom: .5rem;
}
.mh-price {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--mahfel-dark-green);
  margin-top: auto;
}
.mh-price--old {
  text-decoration: line-through;
  color: var(--mh-muted);
  font-weight: 500;
  font-size: .95rem;
  margin-right: .4rem;
}

.mh-event-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .55rem;
}
.mh-event-vcard .mh-card__media { aspect-ratio: 4 / 3; }
.mh-event-vcard .mh-card__body h3 { margin-bottom: .4rem; }
.mh-menu-home-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: .5rem;
}
.mh-menu-vcard .mh-card__media { aspect-ratio: 4 / 3.1; }
.mh-menu-vcard .mh-card__body { padding: .55rem .55rem .65rem; }
.mh-menu-vcard .mh-card__body h3 { margin-bottom: .2rem; font-size: .78rem; }
.mh-empty {
  background: var(--mahfel-beige);
  border: 1px dashed var(--mh-border);
  border-radius: var(--mh-radius-md);
  padding: 1.5rem;
  color: var(--mh-muted);
  text-align: center;
}
.mh-dual { display: grid; grid-template-columns: 1.1fr 1fr; gap: 2.5rem; }
.mh-event-list { display: flex; flex-direction: column; gap: 1rem; }
.mh-menu-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

/* ——— Menu page ——— */
.mh-menu-page {
  max-width: var(--mh-content-max);
  margin: 0 auto;
  padding: 0 1.25rem 3.5rem;
}
/* Menu hero — Hakkımızda / Etkinlikler ile aynı düzen; sağ görsel 624×205 */
.mh-menu-hero.mh-about-hero .mh-about-hero__media,
.mh-menu-hero.mh-about-hero .mh-about-hero__media picture,
.mh-menu-hero.mh-about-hero .mh-about-hero__media img {
  aspect-ratio: 624 / 205;
}
.mh-menu-filters {
  display: flex;
  flex-wrap: nowrap;
  gap: .65rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  padding: 1.5rem 0 1.75rem;
  margin-bottom: .25rem;
}
.mh-menu-filter {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 44px;
  padding: .55rem 1.05rem;
  border-radius: 999px;
  border: 1px solid var(--mh-border);
  background: #fff;
  color: var(--mh-text);
  font-family: inherit;
  font-weight: 600;
  font-size: .92rem;
  cursor: pointer;
  white-space: nowrap;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease;
}
.mh-menu-filter i { color: var(--mahfel-green); }
.mh-menu-filter:hover { border-color: var(--mahfel-green); }
.mh-menu-filter.is-active {
  background: var(--mahfel-dark-green);
  border-color: var(--mahfel-dark-green);
  color: #fff;
}
.mh-menu-filter.is-active i { color: #fff; }
.mh-menu-filter:active { transform: scale(.98); }

.mh-menu-section { margin-bottom: 2.75rem; }
.mh-menu-section.is-filtered-out {
  display: none;
}
.mh-menu-section__head {
  display: flex;
  align-items: center;
  margin-bottom: 1.15rem;
}
.mh-menu-section__head h2 {
  margin: 0;
  font-family: var(--mh-display);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  color: var(--mahfel-dark-green);
  display: flex;
  align-items: center;
  gap: .55rem;
}
.mh-menu-section__head h2 i {
  color: var(--mahfel-green);
  font-size: .95em;
}

.mh-menu-grid--4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}
.mh-menu-grid--3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.15rem;
}
.mh-menu-grid--compact .mh-menu-card__body { padding: .95rem 1rem 1.05rem; }
.mh-menu-grid--compact .mh-menu-card__media { aspect-ratio: 4/3; }
.mh-menu-grid--stack {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.85rem;
  width: 100%;
}

/* Soğuk & Özel İçecekler — referans kompakt kart */
.mh-menu-section--special .mh-menu-section__head h2 {
  font-size: clamp(1.35rem, 2.1vw, 1.6rem);
  color: #023c22;
}
.mh-menu-section--special .mh-menu-section__head h2 i {
  color: #4e8d13;
}
.mh-menu-section--special .mh-menu-grid--4 {
  gap: 1.1rem;
}
.mh-menu-section--special .mh-menu-card {
  border-radius: 16px;
  border: 1px solid #e7ebe8;
  box-shadow: 0 2px 12px rgba(22, 59, 49, 0.06);
}
.mh-menu-section--special .mh-menu-card__media {
  aspect-ratio: 238 / 118;
  background: #f3eee4;
}
.mh-menu-section--special .mh-menu-card__body--compact {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 0.85rem 1rem;
  flex: 1 1 auto;
}
.mh-menu-section--special .mh-menu-card__body--compact h3 {
  margin: 0;
  font-size: 0.98rem;
  font-weight: 700;
  color: #1f2933;
  line-height: 1.25;
}
.mh-menu-section--special .mh-menu-card__body--compact .mh-menu-price {
  margin: 0;
  font-size: 1rem;
  color: #4e8d13;
  flex-shrink: 0;
}

/* İmza Shake’ler — referans kart düzeni */
.mh-menu-section[data-section-key="shake"] .mh-menu-section__head {
  margin-bottom: 1rem;
}
.mh-menu-section[data-section-key="shake"] .mh-menu-section__head h2 {
  font-size: clamp(1.4rem, 2.2vw, 1.65rem);
  color: #023c22;
  font-weight: 700;
  gap: 0.45rem;
}
.mh-menu-section[data-section-key="shake"] .mh-menu-section__head h2 i {
  color: #075b47;
  font-size: 1.05rem;
}
.mh-menu-section[data-section-key="shake"] .mh-menu-grid--4 {
  gap: 1.15rem;
}
.mh-menu-section[data-section-key="shake"] .mh-menu-card {
  border-radius: 16px;
  border: 1px solid #e7ebe8;
  box-shadow: 0 2px 12px rgba(22, 59, 49, 0.06);
  background: #fff;
}
.mh-menu-section[data-section-key="shake"] .mh-menu-card__media {
  aspect-ratio: 235 / 149;
  background: #f3eee4;
}
.mh-menu-section[data-section-key="shake"] .mh-menu-card__body {
  padding: 0.95rem 1.05rem 1.05rem;
}
.mh-menu-section[data-section-key="shake"] .mh-menu-card__body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #1f2933;
  margin: 0 0 0.35rem;
}
.mh-menu-section[data-section-key="shake"] .mh-menu-card__body p {
  -webkit-line-clamp: 2;
  min-height: 2.6em;
  font-size: 0.875rem;
  color: #667079;
  line-height: 1.45;
}
.mh-menu-section[data-section-key="shake"] .mh-menu-price {
  font-size: 1.02rem;
  color: #4e8d13;
}

.mh-menu-card {
  background: var(--mh-surface-card);
  border: 1px solid var(--mh-border);
  border-radius: 16px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 100%;
  box-shadow: 0 2px 10px rgba(22, 59, 49, 0.06);
  transition: transform .25s ease, box-shadow .25s ease;
}
.mh-menu-card.is-filtered-out { display: none; }
.mh-menu-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--mh-shadow-md);
}
.mh-menu-card__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: var(--mahfel-light-green);
}
.mh-menu-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}
.mh-menu-card:hover .mh-menu-card__media img { transform: scale(1.03); }
.mh-menu-badge {
  position: absolute;
  left: .65rem;
  top: .65rem;
  z-index: 1;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .01em;
  padding: .28rem .55rem;
  border-radius: 6px;
  color: #fff;
  box-shadow: 0 2px 8px rgba(22, 59, 49, 0.12);
  line-height: 1.2;
}
.mh-menu-badge--popular { background: var(--mahfel-orange); }
.mh-menu-badge--favorite { background: #6fa32e; }
.mh-menu-badge--new { background: var(--mahfel-green); }
.mh-menu-card__body {
  padding: 1.05rem 1.15rem 1.15rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #fff;
}
.mh-menu-card__body h3 {
  margin: 0 0 .4rem;
  font-size: 1.05rem;
  color: #1f2933;
  line-height: 1.3;
  font-weight: 700;
}
.mh-menu-star {
  color: var(--mahfel-green);
  font-size: .8em;
  margin-left: .15em;
  vertical-align: 0.05em;
}
.mh-menu-card__body p {
  margin: 0;
  color: #667079;
  font-size: .875rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
  min-height: 2.6em;
}
.mh-menu-card__body p.mh-menu-points {
  flex: 0 0 auto;
  min-height: 0;
  display: flex;
  -webkit-line-clamp: unset;
  -webkit-box-orient: unset;
  overflow: visible;
}
.mh-menu-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: .85rem;
  width: 100%;
  min-width: 0;
}
.mh-menu-price {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--mahfel-green);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Bowl + Çay & Kahve — alt alta */
.mh-menu-dual {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 2.75rem;
}
.mh-menu-dual.is-filtered-out { display: none; }
.mh-menu-dual .mh-menu-section {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  min-height: 0;
}
.mh-menu-section--bowl .mh-menu-section__head h2,
.mh-menu-section--tea .mh-menu-section__head h2 {
  font-family: var(--mh-display);
  font-size: clamp(1.25rem, 1.9vw, 1.45rem);
  color: #023c22;
  font-weight: 700;
  gap: 0.45rem;
  letter-spacing: -0.01em;
}
.mh-menu-section--bowl .mh-menu-section__head h2 i,
.mh-menu-section--bowl .mh-menu-section__glyph,
.mh-menu-section--tea .mh-menu-section__head h2 i,
.mh-menu-section--tea .mh-menu-section__glyph {
  color: #0a5c4c;
}
.mh-menu-section__glyph {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}
.mh-menu-section__glyph svg { display: block; }
.mh-menu-section--bowl .mh-menu-section__head,
.mh-menu-section--tea .mh-menu-section__head {
  margin-bottom: 0.65rem;
}
.mh-menu-section--bowl .mh-menu-grid--3 {
  gap: 0.75rem;
  flex: 1 1 auto;
}
.mh-menu-section--bowl .mh-menu-card {
  border-radius: 14px;
  border: 1px solid #e6ebe8;
  box-shadow: 0 1px 6px rgba(22, 59, 49, 0.05);
}
.mh-menu-section--bowl .mh-menu-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(22, 59, 49, 0.08);
}
.mh-menu-section--bowl .mh-menu-card__media {
  aspect-ratio: 16 / 9;
  background: #f3eee4;
}
.mh-menu-section--bowl .mh-menu-badge {
  top: 0.45rem;
  left: 0.45rem;
  font-size: 0.62rem;
  padding: 0.22rem 0.5rem;
}
.mh-menu-section--bowl .mh-menu-card__body {
  padding: 0.65rem 0.8rem 0.75rem;
}
.mh-menu-section--bowl .mh-menu-card__body h3 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #1f2933;
  margin: 0 0 0.25rem;
}
.mh-menu-section--bowl .mh-menu-card__body p {
  -webkit-line-clamp: 2;
  min-height: 0;
  font-size: 0.78rem;
  line-height: 1.4;
  color: #7a848c;
}
.mh-menu-section--bowl .mh-menu-card__footer {
  padding-top: 0.55rem;
  flex-direction: column;
  align-items: stretch;
  gap: 8px;
}
.mh-menu-section--bowl .mh-menu-card__footer .mh-menu-price {
  width: 100%;
  line-height: 1.2;
}
.mh-menu-section--bowl .mh-menu-card__footer .mh-product-actions,
.mh-menu-section--bowl .mh-menu-card__footer .mh-order-ctl {
  width: 100%;
  justify-content: flex-end;
}
.mh-menu-section--bowl .mh-menu-price {
  color: #6e933e;
  font-size: 0.95rem;
}

/* Çay & Kahve — soğuk içecekler gibi görselli kart, alt alta */
.mh-menu-section--tea .mh-menu-grid--stack {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.1rem;
}
@media (max-width: 1024px) {
  .mh-menu-section--tea .mh-menu-grid--stack {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (max-width: 560px) {
  .mh-menu-section--tea .mh-menu-grid--stack {
    grid-template-columns: 1fr;
  }
}
.mh-menu-section--tea .mh-menu-card {
  border-radius: 14px;
  border: 1px solid #e7ebe8;
  box-shadow: 0 1px 6px rgba(22, 59, 49, 0.05);
}
.mh-menu-section--tea .mh-menu-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(22, 59, 49, 0.08);
}
.mh-menu-section--tea .mh-menu-card__media {
  aspect-ratio: 238 / 118;
  background: #f3eee4;
}
.mh-menu-section--tea .mh-menu-card__body--compact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 0.75rem 0.9rem 0.85rem;
  flex: 1 1 auto;
}
.mh-menu-section--tea .mh-menu-card__body--compact h3 {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: #1f2933;
  line-height: 1.25;
}
.mh-menu-section--tea .mh-menu-card__footer {
  padding-top: 0;
  margin-top: 0;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.mh-menu-section--tea .mh-menu-card__footer .mh-menu-price {
  width: auto;
  color: #6e933e;
  font-size: 0.95rem;
}
.mh-menu-section--tea .mh-menu-card__footer .mh-product-actions,
.mh-menu-section--tea .mh-menu-card__footer .mh-order-ctl {
  width: auto;
  margin-left: auto;
}

.mh-menu-list {
  background: #fff;
  border: 1px solid #e3e8e5;
  border-radius: 14px;
  padding: 0.2rem 0.95rem;
  box-shadow: none;
  max-width: 520px;
}
.mh-menu-list--tea {
  max-width: none;
  width: 100%;
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0.2rem 0.95rem;
  min-height: 0;
}
.mh-menu-list__row {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.38rem 0;
  border-bottom: 1px solid #e8ece9;
}
.mh-menu-list--tea .mh-menu-list__row {
  border-bottom: 1px dashed #d9e0db;
  padding: 0.32rem 0;
}
.mh-menu-list__row:last-child { border-bottom: 0; }
.mh-menu-list__row.is-filtered-out { display: none; }
.mh-menu-list__left {
  display: flex;
  align-items: center;
  gap: .7rem;
  min-width: 0;
}
.mh-menu-list__icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #eef3e6;
  border: 1px solid #e2ead8;
  color: #3d6b2b;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: .75rem;
}
.mh-menu-list__icon svg {
  display: block;
  width: 14px;
  height: 14px;
}
.mh-menu-list__line {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.mh-menu-list__main {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.mh-menu-list__row h3 {
  margin: 0;
  font-family: var(--mh-font);
  font-size: 0.88rem;
  font-weight: 600;
  color: #243038;
  line-height: 1.3;
  white-space: normal;
  overflow-wrap: anywhere;
}
.mh-menu-list__main .mh-menu-card__footer {
  padding-top: 0;
  margin-top: 0;
  gap: 10px;
}
.mh-menu-list__leader,
.mh-menu-list__dots {
  display: none;
}
.mh-menu-section--tea .mh-menu-list__row .mh-menu-price,
.mh-menu-list--tea .mh-menu-price {
  flex-shrink: 0;
  font-size: 0.92rem;
  font-weight: 700;
  color: #6e933e;
  white-space: nowrap;
}

.mh-menu-info {
  display: flex;
  align-items: center;
  gap: .75rem;
  background: var(--mahfel-light-green);
  border-radius: var(--mh-radius-md);
  padding: .85rem 1.15rem;
  margin: .5rem 0 1.5rem;
  color: var(--mahfel-dark-green);
}
.mh-menu-info i { font-size: 1.15rem; flex-shrink: 0; }
.mh-menu-info p { margin: 0; font-size: .95rem; }

/* Menu CTA — hakkımızda CTA bandı + 2 buton (referans) */
.mh-menu-page .mh-menu-cta-wrap.mh-cta-about {
  max-width: none;
  width: 100%;
  margin: 0.25rem 0 0;
  padding: 0;
}
.mh-menu-cta-wrap .mh-cta-band {
  --cta-green: #015f4b;
  background: var(--cta-green);
  border-radius: 22px;
  min-height: 104px;
  padding: 1.2rem 1.85rem;
  gap: 1.35rem;
  flex-wrap: nowrap;
  align-items: center;
}
.mh-menu-cta-wrap .mh-cta-band__icon {
  width: 56px;
  height: 56px;
  color: var(--cta-green);
}
.mh-menu-cta-wrap .mh-cta-band h2 {
  font-size: clamp(1.2rem, 2.2vw, 1.55rem);
  margin: 0;
  line-height: 1.2;
}
.mh-menu-cta-wrap .mh-cta-band p {
  margin: 0.35rem 0 0;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.95);
}
.mh-menu-cta__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.7rem;
  position: relative;
  z-index: 1;
  flex-shrink: 0;
}
.mh-menu-cta-wrap .mh-cta-band__btn {
  height: 46px;
  padding: 0 1.4rem;
  font-size: 0.95rem;
}
.mh-cta-band__btn--outline {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, 0.9);
  box-shadow: none;
}
.mh-cta-band__btn--outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}
.mh-cta-band__btn--outline .fa-whatsapp {
  font-size: 1.05em;
  margin-left: 0.1rem;
}

.mh-fade-up {
  animation: mhFadeUp .55s ease both;
}
@keyframes mhFadeUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.mh-menu-section:nth-child(2) .mh-fade-up,
.mh-menu-filters.mh-fade-up { animation-delay: .05s; }
.mh-menu-section:nth-child(3) { animation-delay: .08s; }

.mh-menu-card,
.mh-menu-list__row,
.mh-menu-section {
  transition: opacity .25s ease;
}


/* ——— CTA home — locked to mock 1184×100 ——— */
.mh-cta-home {
  --cta-ref-w: 1184px;
  --cta-ref-h: 100px;
  --cta-green: #005b3d;
  width: 100%;
  max-width: var(--cta-ref-w);
  margin: 1.25rem auto 1.5rem;
  padding: 0 1.25rem;
  box-sizing: border-box;
}
.mh-cta-band {
  --cta-green: #005b3d;
  background: var(--cta-green);
  color: #fff;
  border-radius: 12px;
  padding: 1.1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.mh-cta-home .mh-cta-band {
  width: 100%;
  height: var(--cta-ref-h);
  min-height: var(--cta-ref-h);
  max-height: var(--cta-ref-h);
  box-sizing: border-box;
  padding: 0 28px;
  gap: 20px;
  flex-wrap: nowrap;
}
.mh-cta-band__inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1;
  min-width: 0;
  height: 100%;
}
.mh-cta-band__icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #fff;
  color: var(--cta-green);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.mh-cta-band__icon svg { display: block; width: 22px; height: 22px; }
.mh-cta-band__copy {
  min-width: 0;
  text-align: left;
}
.mh-cta-home .mh-cta-band h2 {
  color: #fff;
  font-family: var(--mh-display);
  font-size: 22px;
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
  white-space: nowrap;
}
.mh-cta-home .mh-cta-band p {
  margin: 4px 0 0;
  font-size: 14px;
  line-height: 1.3;
  font-family: var(--mh-font);
  font-weight: 400;
  color: #fff;
  white-space: nowrap;
}
.mh-cta-band h2 {
  color: #fff;
  font-family: var(--mh-display);
  font-size: 1.25rem;
  margin: 0;
  font-weight: 700;
  line-height: 1.25;
}
.mh-cta-band p {
  margin: .3rem 0 0;
  font-size: .92rem;
  color: #fff;
}
.mh-cta-band__btn {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 999px;
  font-weight: 700;
  font-family: var(--mh-font);
  background: #fff;
  color: var(--cta-green);
  border: 0;
  height: 42px;
  padding: 0 22px;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: none;
  transition: background .2s ease, color .2s ease;
}
.mh-cta-band__btn:hover {
  background: #f2faf6;
  color: #004d34;
}

/* About page CTA — mockup match */
.mh-cta-about {
  --cta-green: #015f4b;
  width: 100%;
  max-width: var(--mh-content-max);
  margin: 1.5rem auto 2.5rem;
  padding: 0 1.25rem;
  box-sizing: border-box;
}
.mh-cta-about .mh-cta-band {
  --cta-green: #015f4b;
  background: var(--cta-green);
  border-radius: 20px;
  min-height: 100px;
  padding: 1.15rem 1.75rem;
  gap: 1.25rem;
  flex-wrap: nowrap;
  align-items: center;
}
.mh-cta-about .mh-cta-band__deco {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 140px;
  pointer-events: none;
  z-index: 0;
  background-repeat: no-repeat;
  background-size: auto 100%;
  opacity: 0.95;
}
.mh-cta-about .mh-cta-band__deco--left {
  left: 0;
  background-image: url("/assets/img/about/cta-leaf-left.png");
  background-position: left center;
}
.mh-cta-about .mh-cta-band__deco--right {
  right: 0;
  background-image: url("/assets/img/about/cta-leaf-right.png");
  background-position: right center;
}
.mh-cta-about .mh-cta-band__inner {
  gap: 1rem;
}
.mh-cta-about .mh-cta-band__icon {
  width: 54px;
  height: 54px;
  color: var(--cta-green);
  font-size: 1.2rem;
}
.mh-cta-about .mh-cta-band h2 {
  color: #fff;
  font-family: var(--mh-display);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  margin: 0;
  line-height: 1.25;
}
.mh-cta-about .mh-cta-band p {
  margin: 0.3rem 0 0;
  font-family: var(--mh-font);
  font-size: 0.92rem;
  font-weight: 400;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
}
.mh-cta-about .mh-cta-band__btn {
  height: 44px;
  padding: 0 1.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--cta-green);
  background: #fff;
  border-radius: 999px;
}
.mh-cta-about .mh-cta-band__btn:hover {
  background: #f2faf6;
  color: #014836;
}

/* ——— Testimonials (home mockup) ——— */
.mh-testimonials {
  position: relative;
  text-align: center;
  padding-top: 1.75rem;
  padding-bottom: 2rem;
  overflow: hidden;
  background: #fff;
}
.mh-testimonials__title {
  font-family: var(--mh-font) !important;
  font-size: clamp(.95rem, 1.5vw, 1.1rem) !important;
  font-weight: 800 !important;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #6fa32e !important;
  margin-bottom: 1.15rem !important;
}
.mh-t-carousel { position: relative; z-index: 1; max-width: 100%; }
.mh-t-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .85rem;
}
.mh-t-card {
  background: #fff;
  border: 1px solid #e5e8ea;
  border-radius: 14px;
  padding: .9rem .95rem;
  text-align: left;
  box-shadow: none;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: .75rem;
}
.mh-t-avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  flex-shrink: 0;
  margin: 0;
  background: #eef2ee;
  display: grid;
  place-items: center;
  font-family: var(--mh-font);
  font-size: 1.05rem;
  font-weight: 700;
  color: #5f9a2c;
  overflow: hidden;
}
.mh-t-avatar img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mh-t-card__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: .2rem;
  flex: 1;
}
.mh-t-card blockquote {
  margin: 0 0 .35rem;
  font-style: normal;
  color: #3a4246;
  font-size: .8rem;
  line-height: 1.4;
  font-weight: 500;
}
.mh-t-card cite {
  font-style: normal;
  font-weight: 700;
  font-size: .86rem;
  display: block;
  color: #171a1c;
  line-height: 1.25;
}
.mh-t-card .mh-t-role {
  font-size: .72rem;
  color: #8a9499;
  font-weight: 500;
}
.mh-t-dots {
  display: flex;
  justify-content: center;
  gap: .4rem;
  margin-top: 1.1rem;
}
.mh-t-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 0;
  padding: 0;
  background: #d5dbe0;
  cursor: pointer;
}
.mh-t-dots button[aria-current="true"] {
  background: #3d7a1a;
  transform: none;
}

/* ——— Footer ——— */
.mh-pub-footer {
  background: var(--mahfel-dark-green); color: #dce8e1; margin-top: 3rem; padding: 3.25rem 1.25rem 1.5rem;
}
.mh-pub-footer a { color: #eef6f1; }
.mh-pub-footer a:hover { color: var(--mahfel-light-green); }
.mh-pub-footer__grid {
  max-width: var(--mh-content-max); margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.15fr; gap: 2rem;
}
.mh-pub-footer__grid--5 {
  grid-template-columns: 1.4fr 1fr 1fr 1.15fr .9fr;
}
.mh-pub-footer__social-col .mh-social {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.mh-pub-footer h3 { color: #fff; font-size: .95rem; margin: 0 0 .85rem; letter-spacing: .04em; text-transform: uppercase; }
.mh-pub-footer ul { list-style: none; padding: 0; margin: 0; }
.mh-pub-footer li { margin-bottom: .45rem; }
.mh-pub-footer__logo { margin-bottom: 1rem; height: 42px; width: auto; filter: brightness(1.08); }
.mh-pub-footer__brand p { margin: 0 0 1rem; font-size: .95rem; max-width: 32ch; opacity: .92; }
.mh-pub-footer__copy {
  max-width: var(--mh-content-max); margin: 2rem auto 0; padding-top: 1.15rem;
  border-top: 1px solid rgba(255,255,255,.15); font-size: .88rem;
  display: flex; flex-wrap: wrap; gap: .75rem 1.25rem; justify-content: space-between; align-items: center;
}
.mh-pub-footer__legal { display: flex; flex-wrap: wrap; gap: .5rem 1rem; }
.mh-pub-footer__contact p { margin: 0 0 .4rem; font-size: .92rem; }
.mh-social { display: flex; flex-wrap: wrap; gap: .55rem; margin-top: .85rem; }
.mh-social__link {
  width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.12);
  display: grid; place-items: center; color: #fff !important; font-size: 1rem;
}
.mh-social__link:hover { background: rgba(255,255,255,.22); color: #fff !important; }

.mh-float-stack {
  position: fixed;
  right: 1rem;
  bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  pointer-events: none;
}
.mh-float-stack > a {
  pointer-events: auto;
}
.mh-wa-float {
  position: relative;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366; color: #fff;
  display: grid; place-items: center; font-size: 1.6rem; box-shadow: 0 8px 20px rgba(0,0,0,.18);
  flex-shrink: 0;
}
.mh-wa-float:hover { color: #fff; filter: brightness(1.05); }

/* ——— Modals / cookie ——— */
.mh-auth-modal[hidden], .mh-cookie[hidden] { display: none !important; }
.mh-auth-modal {
  position: fixed; inset: 0; background: rgba(20,30,26,.55); z-index: 200;
  display: grid; place-items: center; padding: 1rem;
}
.mh-auth-modal__dialog {
  background: #fff; border-radius: 18px; padding: 1.75rem; max-width: 420px; width: 100%;
}
.mh-auth-modal__actions { display: flex; flex-direction: column; gap: .6rem; margin-top: 1.25rem; }
.mh-cookie {
  position: fixed; left: 1rem; right: 1rem; bottom: 1rem; z-index: 180;
  background: #fff; border: 1px solid var(--mh-border); border-radius: 16px; padding: 1rem 1.25rem;
  box-shadow: 0 10px 30px rgba(0,0,0,.12); max-width: 640px; margin: 0 auto;
}
.mh-cookie__actions { display: flex; flex-wrap: wrap; gap: .5rem; align-items: center; margin-top: .75rem; }

/* ——— Inner pages (shared) ——— */
.mh-page-hero { padding: 3rem 1.25rem 1rem; max-width: var(--mh-content-max); margin: 0 auto; }
.mh-page-hero h1 { font-family: var(--mh-display); font-size: clamp(1.8rem, 4vw, 2.6rem); margin: 0 0 .5rem; }
.mh-breadcrumb { font-size: .9rem; color: var(--mh-muted); margin-bottom: 1rem; }
.mh-breadcrumb a { color: var(--mh-muted); }
.mh-filters { display: flex; flex-wrap: wrap; gap: .75rem; margin-bottom: 1.5rem; }
.mh-filters input, .mh-filters select {
  min-height: 44px; font-size: 16px; padding: .5rem .75rem; border: 1px solid var(--mh-border);
  border-radius: 10px; background: #fff; font-family: inherit;
}
.mh-form label { display: block; font-weight: 600; margin-bottom: .35rem; }
.mh-form .mh-field { margin-bottom: 1rem; }
.mh-form input, .mh-form textarea, .mh-form select {
  width: 100%; min-height: 44px; font-size: 16px; padding: .65rem .75rem;
  border: 1px solid var(--mh-border); border-radius: 10px; font-family: inherit;
}
.mh-form textarea { min-height: 120px; resize: vertical; }
.mh-alert { padding: .85rem 1rem; border-radius: 10px; margin-bottom: 1rem; }
.mh-alert--ok { background: #e8f5e9; color: #1b5e20; }
.mh-alert--err { background: #fdecea; color: #b71c1c; }
.mh-prose { max-width: 72ch; }
.mh-prose h2 { margin-top: 2rem; }
.mh-lightbox {
  position: fixed; inset: 0; background: rgba(0,0,0,.85); z-index: 300; display: grid; place-items: center; padding: 1rem;
}
.mh-lightbox[hidden] { display: none !important; }
.mh-lightbox img { max-height: 90vh; max-width: 100%; }

/* ——— Legacy aliases ——— */
.mh-hero { display: none; }
.mh-about-band { display: none; }
.mh-steps { display: none; }
.mh-gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: .75rem; }
.mh-gallery-grid a { border-radius: 14px; overflow: hidden; display: block; }
.mh-gallery-grid img { width: 100%; aspect-ratio: 1; object-fit: cover; }

/* ——— Responsive ——— */
@media (max-width: 1100px) {
  .mh-home-listings {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
  .mh-section__title--listings { font-size: 1.05rem; }
  .mh-link-more--listings { font-size: .88rem; }
  .mh-event-grid { gap: .85rem; }
  .mh-menu-home-grid { gap: .75rem; }
  .mh-card__body { padding: .85rem .9rem .95rem; }
  .mh-card__body h3 { font-size: .95rem; }
  .mh-card__body p { font-size: .8rem; }
  .mh-card__meta { font-size: .78rem; }
  .mh-menu-vcard .mh-card__body h3 { font-size: .9rem; }
  .mh-grid--4,
  .mh-svc-grid,
  .mh-menu-home-grid { grid-template-columns: repeat(2, 1fr); }
  .mh-menu-grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .mh-dual { grid-template-columns: 1fr; }
  .mh-home-hero {
    --hero-h: auto;
  }
  .mh-home-hero__panel {
    grid-template-columns: 1fr;
    height: auto;
    min-height: 0;
    max-height: none;
    border-radius: 0 0 1.5rem 1.5rem;
  }
  .mh-home-hero__copy {
    padding: 1.5rem 1.25rem 1.1rem;
    background: var(--hero-bg, var(--mh-hero-bg));
  }
  .mh-home-hero__media {
    margin-left: 0;
    height: 220px;
    border-radius: 0 0 1.5rem 1.5rem;
  }
  .mh-home-hero__media::before {
    width: 100%;
    height: 40%;
    inset: 0 0 auto 0;
    background: linear-gradient(180deg, var(--hero-bg, var(--mh-hero-bg)) 0%, rgba(var(--mh-hero-bg-rgb), 0) 100%);
  }
  .mh-home-hero__media img { height: 100%; }
  .mh-about-home__panel {
    grid-template-columns: 1fr;
    gap: 1.25rem;
    min-height: 0;
  }
  .mh-about-home__media { height: 200px; }
  .mh-about-feats { grid-template-columns: 1fr 1fr; }
  .mh-pub-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 1023px) {
  .mh-menu-grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
  .mh-split { grid-template-columns: 1fr; gap: 2rem; }
  .mh-grid--3,
  .mh-event-grid { grid-template-columns: 1fr 1fr; }
  .mh-event-card { flex-direction: column; }
  .mh-event-card .mh-card__media-wrap { flex: none; width: 100%; }
  .mh-event-card .mh-card__media { aspect-ratio: 16/10; min-height: 0; }
  .mh-menu-list { max-width: none; }
  .mh-menu-dual {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

@media (max-width: 767px) {
  .mh-nav-toggle { display: block; }
  .mh-pub-header__inner { position: relative; }
  .mh-pub-nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    background: #fff; flex-direction: column; align-items: stretch; padding: 1rem 1.25rem 1.25rem;
    border-bottom: 1px solid var(--mh-border); box-shadow: var(--mh-shadow-md);
    max-height: calc(100vh - 64px); overflow-y: auto;
  }
  .mh-pub-nav.is-open { display: flex; }
  .mh-pub-nav a.is-active::after { display: none; }
  .mh-pub-nav a.is-active { font-weight: 700; }
  .mh-home-hero { padding: 0 .85rem 1.25rem; }
  .mh-home-hero__copy { padding: 1.25rem 1rem 1rem; }
  .mh-home-hero__copy h1 { max-width: none; font-size: 1.55rem; }
  .mh-home-hero__copy > p { font-size: .86rem; }
  .mh-home-hero__actions .mh-btn { width: 100%; }
  .mh-home-hero__media { height: 200px; }
  .mh-advantages { grid-template-columns: 1fr; gap: .55rem; }
  .mh-about-feats { grid-template-columns: 1fr; }
  .mh-about-home { padding: 0 .85rem 1.5rem; }
  .mh-grid--4, .mh-grid--3, .mh-grid--2, .mh-svc-grid, .mh-event-grid, .mh-menu-home-grid,
  .mh-menu-grid, .mh-menu-grid--4, .mh-menu-grid--3,
  .mh-pub-footer__grid, .mh-gallery-grid {
    grid-template-columns: 1fr;
  }
  .mh-t-track {
    display: flex; overflow-x: auto; scroll-snap-type: x mandatory;
    gap: .85rem; padding-bottom: .5rem; -webkit-overflow-scrolling: touch;
  }
  .mh-t-card { flex: 0 0 min(88vw, 320px); scroll-snap-align: start; }
  .mh-cta-band {
    padding: 1.35rem 1.25rem;
    flex-direction: column;
    align-items: stretch;
    text-align: left;
  }
  .mh-cta-band .mh-btn { width: 100%; }
  .mh-float-stack { bottom: calc(1rem + env(safe-area-inset-bottom, 0px)); }
  .mh-section { padding: 3rem 1.15rem; }
  .mh-menu-page { padding: 0 1rem 2.75rem; }
  .mh-menu-filters { padding: 1.1rem 0 1.35rem; gap: .5rem; }
  .mh-menu-cta-wrap .mh-cta-band {
    flex-wrap: wrap;
    padding: 1.25rem 1.15rem;
    min-height: 0;
  }
  .mh-menu-cta__actions {
    width: 100%;
    flex-direction: column;
  }
  .mh-menu-cta__actions .mh-cta-band__btn {
    width: 100%;
  }
  .mh-menu-info { align-items: flex-start; }
}

@media (max-width: 430px) {
  .mh-home-hero__copy h1 { font-size: 1.9rem; }
  .mh-home-hero__panel,
  .mh-home-hero__media { border-radius: 0 0 1.5rem 1.5rem; }
}

/* ——— Events page ——— */
.mh-visually-hidden {
  position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.mh-events-page { background: linear-gradient(180deg, var(--mahfel-cream) 0%, var(--mahfel-white) 28%, #fafaf7 100%); }
.mh-events-section { max-width: var(--mh-content-max); margin: 0 auto; padding: 1.5rem 1.25rem 2.5rem; }
/* Events hero — Hakkımızda ile aynı düzen; sağ görsel 635×199 */
.mh-events-hero.mh-about-hero .mh-about-hero__media,
.mh-events-hero.mh-about-hero .mh-about-hero__media picture,
.mh-events-hero.mh-about-hero .mh-about-hero__media img {
  aspect-ratio: 635 / 199;
}

/* ——— Events listing (filters + cards) — ref birebir ——— */
.mh-events-listing {
  max-width: var(--mh-content-max);
  margin: 0 auto;
  padding: 1.75rem 1.25rem 2.75rem;
  box-sizing: border-box;
}
.mh-event-filters {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.7rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 0 1.5rem;
  margin: 0;
}
.mh-event-filters::-webkit-scrollbar { display: none; }
.mh-event-filter {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 44px;
  padding: 0.55rem 1.15rem;
  border: 1px solid #e2e8e4;
  background: #fff;
  color: #3d4a45;
  border-radius: 12px;
  font-family: var(--mh-font);
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  white-space: nowrap;
  box-shadow: 0 1px 2px rgba(10, 92, 76, 0.04);
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.mh-event-filter i {
  font-size: 0.95rem;
  color: var(--mahfel-dark-green);
  width: 1.05rem;
  text-align: center;
}
.mh-event-filter:hover {
  border-color: #c5d4cc;
  box-shadow: 0 2px 8px rgba(10, 92, 76, 0.08);
}
.mh-event-filter.is-active,
.mh-event-filter[aria-selected="true"] {
  background: var(--mahfel-dark-green);
  color: #fff;
  border-color: var(--mahfel-dark-green);
  box-shadow: 0 4px 14px rgba(10, 92, 76, 0.22);
}
.mh-event-filter.is-active i,
.mh-event-filter[aria-selected="true"] i { color: #fff; }
.mh-event-filter:focus-visible {
  outline: 2px solid var(--mahfel-orange);
  outline-offset: 2px;
}

.mh-events-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.35rem;
}
.mh-ev-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #edf1ee;
  box-shadow: 0 4px 18px rgba(22, 59, 49, 0.07);
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease;
}
.mh-ev-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(22, 59, 49, 0.12);
}
.mh-ev-card__media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #eef2ef;
}
.mh-ev-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}
.mh-ev-card:hover .mh-ev-card__media img { transform: scale(1.035); }
.mh-ev-card__date {
  position: absolute;
  left: 0.85rem;
  top: 0.85rem;
  background: #fff;
  border-radius: 10px;
  min-width: 50px;
  padding: 0.4rem 0.45rem 0.35rem;
  text-align: center;
  line-height: 1.05;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.mh-ev-card__date strong {
  display: block;
  font-family: var(--mh-font);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--mahfel-dark-green);
}
.mh-ev-card__date em {
  display: block;
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #7a9a4a;
  margin-top: 0.1rem;
}
.mh-ev-card__badge {
  position: absolute;
  right: 0.75rem;
  top: 0.75rem;
  background: rgba(31, 41, 51, 0.82);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 0.35rem 0.55rem;
  border-radius: 8px;
}
.mh-ev-card__badge--full { background: rgba(220, 38, 38, 0.9); }
.mh-ev-card__body {
  padding: 1rem 1.15rem 1.2rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  min-height: 0;
}
.mh-ev-card__cat {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  margin: 0 0 0.55rem;
  padding: 0.22rem 0.55rem;
  border-radius: 999px;
  background: #eef5e4;
  color: #3d6b2e;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  line-height: 1.2;
}
.mh-ev-card__title {
  font-family: var(--mh-font);
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0 0 0.4rem;
  color: #1a2e27;
  line-height: 1.3;
}
.mh-ev-card__desc {
  margin: 0 0 0.85rem;
  color: #6b7c75;
  font-size: 0.88rem;
  line-height: 1.45;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.55em;
}
.mh-ev-card__meta {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  display: grid;
  gap: 0.35rem;
  font-size: 0.86rem;
  color: #6b7c75;
}
.mh-ev-card__meta li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}
.mh-ev-card__meta i {
  width: 1rem;
  color: #8aa08f;
  text-align: center;
  flex-shrink: 0;
}
.mh-ev-card__btn {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  width: 100%;
  min-height: 44px;
  padding: 0.65rem 1rem;
  border-radius: 12px;
  border: 1.5px solid #9fc07a;
  background: #fff;
  color: var(--mahfel-dark-green);
  font-family: var(--mh-font);
  font-weight: 650;
  font-size: 0.92rem;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.mh-ev-card__btn:hover {
  background: var(--mahfel-dark-green);
  border-color: var(--mahfel-dark-green);
  color: #fff;
}

.mh-events-empty {
  text-align: center;
  padding: 3rem 1rem;
  color: var(--mh-text-muted);
}
.mh-events-empty[hidden] { display: none !important; }
.mh-events-empty i {
  font-size: 2.2rem;
  color: var(--mahfel-green-deep);
  margin-bottom: 0.75rem;
  display: block;
}
.mh-events-empty p { margin: 0 0 1.25rem; font-size: 1.05rem; }

.mh-events-mid {
  max-width: var(--mh-content-max);
  margin: 0 auto;
  padding: 0.25rem 1.25rem 2.75rem;
  box-sizing: border-box;
}
.mh-events-mid__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 1.35rem;
  align-items: stretch;
}
.mh-events-calendar {
  background: #fff;
  border: 1px solid var(--mh-border);
  border-radius: 16px;
  padding: 1.4rem 1.45rem 1.2rem;
  box-shadow: var(--mh-shadow-sm);
  display: flex;
  flex-direction: column;
  min-height: 100%;
}
.mh-events-calendar__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.05rem;
}
.mh-events-calendar__head h2 {
  margin: 0;
  font-family: var(--mh-font);
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mahfel-dark-green);
}
.mh-events-calendar__link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--mahfel-dark-green);
  white-space: nowrap;
  text-decoration: none;
}
.mh-events-calendar__link:hover { text-decoration: underline; }
.mh-events-calendar__list {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
  flex: 1;
}
.mh-events-calendar__list::before {
  content: "";
  position: absolute;
  left: calc(52px + 8px);
  top: 0.55rem;
  bottom: 0.55rem;
  border-left: 2px dashed rgba(10, 92, 76, 0.22);
  pointer-events: none;
}
.mh-events-calendar__item {
  display: grid;
  grid-template-columns: 52px 18px 40px minmax(0, 1fr);
  column-gap: 0.55rem;
  align-items: center;
  padding: 0.62rem 0;
  position: relative;
}
.mh-events-calendar__date {
  text-align: center;
  line-height: 1.05;
  z-index: 1;
}
.mh-events-calendar__date strong {
  display: block;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--mahfel-text);
  letter-spacing: -0.02em;
}
.mh-events-calendar__date span {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--mh-text-muted);
}
.mh-events-calendar__rail {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  align-self: stretch;
}
.mh-events-calendar__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--mahfel-dark-green);
  box-shadow: 0 0 0 3px #fff;
}
.mh-events-calendar__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  z-index: 1;
  font-size: 0.95rem;
  color: var(--mahfel-dark-green);
  background: var(--mahfel-light-green);
}
.mh-events-calendar__item.tone-0 .mh-events-calendar__icon { background: #e4f0d4; color: #5d8f3c; }
.mh-events-calendar__item.tone-1 .mh-events-calendar__icon { background: #d7efeb; color: #1a8a84; }
.mh-events-calendar__item.tone-2 .mh-events-calendar__icon { background: #fde8d6; color: #e07a30; }
.mh-events-calendar__item.tone-3 .mh-events-calendar__icon { background: #ece8c9; color: #7a7830; }
.mh-events-calendar__item.tone-4 .mh-events-calendar__icon { background: #e8f5d4; color: #5a8a3a; }
.mh-events-calendar__item.tone-5 .mh-events-calendar__icon { background: #0a5c4c; color: #fff; }
.mh-events-calendar__info {
  display: flex;
  align-items: baseline;
  gap: 0.55rem;
  min-width: 0;
}
.mh-events-calendar__title {
  flex: 0 1 auto;
  max-width: 72%;
  font-family: var(--mh-display);
  font-size: 0.98rem;
  font-weight: 650;
  color: var(--mahfel-text);
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mh-events-calendar__title:hover { color: var(--mahfel-dark-green); }
.mh-events-calendar__leaders {
  flex: 1 1 auto;
  min-width: 1.25rem;
  height: 0;
  align-self: center;
  border-bottom: 1px dotted rgba(107, 124, 117, 0.55);
  transform: translateY(-0.2em);
}
.mh-events-calendar__time {
  flex: 0 0 auto;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--mahfel-text);
  font-variant-numeric: tabular-nums;
}
.mh-events-calendar__empty { margin: 0.5rem 0 0; color: var(--mh-text-muted); }

.mh-events-featured {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  min-height: 100%;
  background-color: #eef3e6;
  background-size: cover;
  background-position: center right;
  background-repeat: no-repeat;
  box-shadow: var(--mh-shadow-sm);
  display: flex;
  align-items: stretch;
}
.mh-events-featured__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(255, 255, 255, 0.92) 34%,
    rgba(255, 255, 255, 0.55) 58%,
    rgba(255, 255, 255, 0.12) 76%,
    rgba(255, 255, 255, 0) 88%
  );
  pointer-events: none;
}
.mh-events-featured__copy {
  position: relative;
  z-index: 1;
  padding: 1.7rem 1.55rem 1.6rem;
  max-width: min(420px, 58%);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.mh-events-featured__badge {
  align-self: flex-start;
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #fff;
  background: var(--mahfel-dark-green);
  border-radius: 999px;
  padding: 0.4rem 0.85rem;
  margin-bottom: 0.85rem;
}
.mh-events-featured__copy h2 {
  font-family: var(--mh-display);
  font-size: clamp(1.45rem, 2.4vw, 1.95rem);
  font-weight: 700;
  margin: 0 0 0.55rem;
  color: var(--mahfel-dark-green);
  line-height: 1.2;
}
.mh-events-featured__copy > p {
  margin: 0 0 0.95rem;
  color: var(--mahfel-text);
  line-height: 1.5;
  font-size: 0.98rem;
}
.mh-events-featured__list {
  list-style: none;
  margin: 0 0 1.05rem;
  padding: 0;
  display: grid;
  gap: 0.4rem;
}
.mh-events-featured__list li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  font-size: 0.94rem;
  color: var(--mahfel-text);
}
.mh-events-featured__list i {
  color: var(--mahfel-dark-green);
  margin-top: 0.15rem;
}
.mh-events-featured__meta {
  list-style: none;
  margin: 0 0 1.2rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.2rem;
  font-size: 0.9rem;
  color: var(--mahfel-text);
}
.mh-events-featured__meta li {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}
.mh-events-featured__meta i {
  width: 1rem;
  text-align: center;
  color: var(--mahfel-dark-green);
}
.mh-events-featured__cta {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  min-height: 44px;
  padding: 0.65rem 1.25rem;
  border-radius: 12px;
  background: var(--mahfel-dark-green);
  color: #fff !important;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 0;
  box-shadow: 0 4px 14px rgba(10, 92, 76, 0.18);
  transition: filter 0.2s ease, transform 0.2s ease;
}
.mh-events-featured__cta:hover {
  filter: brightness(1.08);
  color: #fff !important;
  transform: translateY(-1px);
}
.mh-events-cta { margin: 0; }
.mh-section__leaf { color: var(--mahfel-green); font-size: .85em; margin: 0 .35rem; }

@media (max-width: 1100px) {
  .mh-events-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .mh-events-hero.mh-about-hero .mh-about-hero__media,
  .mh-events-hero.mh-about-hero .mh-about-hero__media picture,
  .mh-events-hero.mh-about-hero .mh-about-hero__media img {
    aspect-ratio: 635 / 199;
  }
  .mh-events-mid__grid { grid-template-columns: 1fr; }
  .mh-events-featured { min-height: 360px; }
  .mh-events-featured__copy { max-width: 100%; }
  .mh-events-featured__scrim {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.96) 0%,
      rgba(255, 255, 255, 0.9) 52%,
      rgba(255, 255, 255, 0.35) 78%,
      rgba(255, 255, 255, 0.08) 100%
    );
  }
}
@media (max-width: 640px) {
  .mh-events-listing { padding: 1.25rem 1rem 2.25rem; }
  .mh-events-mid { padding-left: 1rem; padding-right: 1rem; }
  .mh-events-grid { grid-template-columns: 1fr; gap: 1.1rem; }
  .mh-event-filter { padding: 0.5rem 0.95rem; font-size: 0.88rem; }
  .mh-events-calendar__item { grid-template-columns: 46px 16px 34px minmax(0, 1fr); column-gap: 0.4rem; }
  .mh-events-calendar__list::before { left: calc(46px + 7px); }
  .mh-events-calendar__icon { width: 32px; height: 32px; font-size: 0.85rem; }
  .mh-events-calendar__title { max-width: 62%; font-size: 0.9rem; }
  .mh-cta-band.mh-events-cta { flex-direction: column; align-items: stretch; }
  .mh-cta-band.mh-events-cta .mh-btn { width: 100%; }
}

/* ——— Event detail ——— */
.mh-event-detail { max-width: var(--mh-content-max); margin: 0 auto; padding: 2rem 1.25rem 3.5rem; }
.mh-event-detail .mh-breadcrumb { margin-bottom: 1.25rem; }
.mh-event-detail__layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 2rem;
  align-items: start;
}
.mh-event-detail__hero {
  display: grid; grid-template-columns: 1.15fr 1fr; gap: 1.5rem; align-items: start; margin-bottom: 2rem;
}
.mh-event-detail__cover {
  position: relative;
  border-radius: var(--mh-radius-xl); overflow: hidden; aspect-ratio: 16/10;
  background: linear-gradient(145deg, #f3ebe0, #e5d5c0);
  box-shadow: var(--mh-shadow-md);
}
.mh-event-detail__cover img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mh-event-detail__badge {
  position: absolute; left: .85rem; top: .85rem;
  font-size: .72rem; font-weight: 700; letter-spacing: .04em;
  padding: .35rem .7rem; border-radius: 999px; color: #fff;
  background: var(--mahfel-dark-green);
}
.mh-event-detail__badge--full { background: #b45309; }
.mh-event-detail__badge--completed,
.mh-event-detail__badge--closed { background: #6b7280; }
.mh-event-detail__badge--cancelled { background: #b91c1c; }
.mh-event-detail__badge--upcoming { background: #0f766e; }
.mh-event-detail__cat {
  display: inline-block; font-size: .75rem; font-weight: 700; letter-spacing: .08em;
  color: var(--mh-text-muted); margin-bottom: .5rem;
}
.mh-event-detail__summary h1 {
  font-family: var(--mh-display); font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  margin: 0 0 .65rem; color: var(--mahfel-dark-green);
}
.mh-event-detail__lead {
  margin: 0 0 1rem; color: var(--mh-text-muted); font-size: 1.02rem; line-height: 1.55;
}
.mh-event-detail__facts {
  list-style: none; margin: 0; padding: 0; display: grid; gap: .55rem;
  font-size: .95rem; color: var(--mh-text);
}
.mh-event-detail__facts i { width: 1.15rem; color: var(--mahfel-green); }
.mh-event-detail__actions { display: flex; flex-wrap: wrap; gap: .75rem; align-items: center; }
.mh-event-detail__registered {
  display: inline-block; background: var(--mahfel-light-green); color: var(--mahfel-dark-green);
  font-weight: 700; padding: .55rem 1rem; border-radius: 999px; font-size: .9rem;
  text-align: center;
}
.mh-event-detail__registered--muted { background: #e8ebe9; color: var(--mh-text-muted); }
.mh-event-detail__content h2 {
  font-family: var(--mh-display); color: var(--mahfel-dark-green);
  font-size: 1.35rem; margin: 2rem 0 .85rem;
}
.mh-event-detail__highlights { list-style: none; margin: 0 0 1.5rem; padding: 0; display: grid; gap: .55rem; }
.mh-event-detail__highlights li { display: flex; gap: .55rem; align-items: flex-start; }
.mh-event-detail__highlights i { color: var(--mahfel-dark-green); margin-top: .2rem; }
.mh-event-detail__program {
  margin: 0 0 1.5rem; padding: 0 0 0 1.1rem; display: grid; gap: .45rem;
  color: var(--mh-text);
}
.mh-event-detail__terms {
  background: linear-gradient(180deg, #faf6ef, #f3ebe0);
  border-radius: var(--mh-radius-lg); padding: 1.1rem 1.25rem;
  border: 1px solid var(--mh-border);
}
.mh-event-host {
  display: flex; gap: 1rem; align-items: flex-start;
  padding: 1rem; border-radius: var(--mh-radius-lg);
  background: #faf6ef; border: 1px solid var(--mh-border);
}
.mh-event-host__avatar {
  width: 72px; height: 72px; border-radius: 50%; overflow: hidden; flex-shrink: 0;
  background: var(--mahfel-dark-green); color: #fff;
  display: grid; place-items: center; font-weight: 700; font-size: 1.1rem;
}
.mh-event-host__avatar img { width: 100%; height: 100%; object-fit: cover; }
.mh-event-host__title { display: block; color: var(--mh-text-muted); font-size: .9rem; margin: .15rem 0 .4rem; }
.mh-event-host__body p { margin: 0; color: var(--mh-text); line-height: 1.5; }
.mh-event-location {
  padding: 1rem 1.15rem; border-radius: var(--mh-radius-lg);
  background: #faf6ef; border: 1px solid var(--mh-border);
}
.mh-event-location__name { margin: 0 0 .35rem; font-weight: 700; color: var(--mahfel-dark-green); }
.mh-event-location__addr { margin: 0 0 .85rem; color: var(--mh-text-muted); }
.mh-gallery-scroll {
  display: flex; gap: .75rem; overflow-x: auto; padding-bottom: .5rem;
  scroll-snap-type: x mandatory; -webkit-overflow-scrolling: touch;
}
.mh-gallery-scroll__item {
  flex: 0 0 min(72vw, 280px); scroll-snap-align: start;
  border-radius: var(--mh-radius-md); overflow: hidden;
  aspect-ratio: 4/3; background: #e8ebe9;
}
.mh-gallery-scroll__item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mh-event-share__row { display: flex; flex-wrap: wrap; gap: .55rem; }
.mh-event-share__toast {
  margin: .65rem 0 0; color: var(--mahfel-dark-green); font-size: .9rem; font-weight: 600;
}
.mh-event-join { position: relative; }
.mh-event-join__card {
  position: sticky; top: 5.5rem;
  background: linear-gradient(180deg, #fffdf8, #f7f0e6);
  border: 1px solid rgba(10, 92, 76, 0.12);
  border-radius: var(--mh-radius-xl);
  padding: 1.25rem 1.2rem 1.35rem;
  box-shadow: var(--mh-shadow-md);
}
.mh-event-join__title {
  font-family: var(--mh-display); color: var(--mahfel-dark-green);
  font-size: 1.25rem; margin: 0 0 1rem;
}
.mh-event-join__facts {
  margin: 0 0 1rem; display: grid; gap: .55rem;
}
.mh-event-join__facts > div {
  display: flex; justify-content: space-between; gap: .75rem;
  font-size: .92rem; border-bottom: 1px dashed rgba(10, 92, 76, 0.12);
  padding-bottom: .4rem;
}
.mh-event-join__facts dt { color: var(--mh-text-muted); }
.mh-event-join__facts dd { margin: 0; font-weight: 600; color: var(--mahfel-dark-green); text-align: right; }
.mh-event-join__label {
  display: block; font-size: .85rem; font-weight: 600; margin: 0 0 .35rem; color: var(--mh-text);
}
.mh-event-join__select {
  width: 100%; margin-bottom: .85rem; padding: .55rem .7rem;
  border-radius: 10px; border: 1px solid var(--mh-border); background: #fff;
  font: inherit;
}
.mh-event-join__reward { margin-bottom: .75rem; font-size: .9rem; }
.mh-event-join__actions {
  display: flex; flex-direction: column; gap: .55rem;
}
.mh-event-join__cta { width: 100%; justify-content: center; text-align: center; }
.mh-event-similar { margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid var(--mh-border); }
.mh-event-similar h2 {
  font-family: var(--mh-display); color: var(--mahfel-dark-green);
  font-size: 1.5rem; margin: 0 0 1.25rem;
}
.mh-events-grid--similar { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.mh-event-empty {
  text-align: center; padding: 4rem 1.25rem; max-width: 32rem; margin: 0 auto;
}
.mh-event-empty i { font-size: 2.5rem; color: var(--mahfel-dark-green); margin-bottom: 1rem; }
.mh-event-empty h1 {
  font-family: var(--mh-display); color: var(--mahfel-dark-green);
  font-size: 1.8rem; margin: 0 0 .75rem;
}
.mh-event-empty p { color: var(--mh-text-muted); margin: 0 0 1.5rem; }
.mh-event-empty__actions { display: flex; flex-wrap: wrap; gap: .75rem; justify-content: center; }
.mh-event-mobile-bar {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 40;
  display: none; align-items: center; justify-content: space-between; gap: 1rem;
  padding: .75rem 1rem calc(.75rem + env(safe-area-inset-bottom));
  background: rgba(255, 253, 248, 0.96); border-top: 1px solid var(--mh-border);
  backdrop-filter: blur(8px);
}
.mh-event-mobile-bar strong { display: block; color: var(--mahfel-dark-green); }
.mh-event-mobile-bar span { font-size: .82rem; color: var(--mh-text-muted); }
.mh-modal[hidden] { display: none !important; }
.mh-modal {
  position: fixed; inset: 0; z-index: 80;
  background: rgba(20, 30, 25, 0.45);
  display: grid; place-items: center; padding: 1rem;
}
.mh-modal__dialog {
  width: min(100%, 420px); max-height: min(90vh, 640px); overflow: auto;
  background: #fffdf8; border-radius: var(--mh-radius-xl);
  padding: 1.35rem 1.25rem; box-shadow: var(--mh-shadow-lg);
}
.mh-modal__dialog h2 {
  font-family: var(--mh-display); color: var(--mahfel-dark-green);
  font-size: 1.35rem; margin: 0 0 1rem;
}
.mh-modal__facts { margin: 0 0 1rem; display: grid; gap: .5rem; }
.mh-modal__facts > div { display: flex; justify-content: space-between; gap: .75rem; font-size: .92rem; }
.mh-modal__facts dt { color: var(--mh-text-muted); }
.mh-modal__facts dd { margin: 0; font-weight: 600; text-align: right; }
.mh-modal__note { font-size: .88rem; color: var(--mh-text-muted); margin: 0 0 1.1rem; line-height: 1.45; }
.mh-modal__actions { display: flex; flex-direction: column; gap: .55rem; }
.mh-btn--sm { padding: .45rem .85rem; font-size: .88rem; }
.mh-btn.is-disabled { opacity: .65; pointer-events: none; }
@media (max-width: 980px) {
  .mh-event-detail__layout { grid-template-columns: 1fr; }
  .mh-event-join__card { position: static; }
  .mh-events-grid--similar { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
  .mh-event-detail__hero { grid-template-columns: 1fr; }
}
@media (max-width: 720px) {
  .mh-event-detail { padding-bottom: 5.5rem; }
  .mh-event-mobile-bar:not([hidden]) { display: flex; }
}

/* ——— About page (/hakkimizda) — referans banner birebir ——— */
.mh-about-hero {
  --mh-about-hero-bg: var(--mh-hero-bg);
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  background: var(--mh-about-hero-bg);
}
.mh-about-hero__frame {
  /* Menü ile aynı genişlik ve yan boşluk — sağ kenar menüyle hizalı */
  width: 100%;
  max-width: var(--mh-content-max);
  margin: 0 auto;
  padding: 0 1.25rem;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: minmax(220px, 0.38fr) minmax(0, 0.62fr);
  align-items: stretch;
  /* Yükseklik sağ görselin birebir oranından gelir */
  aspect-ratio: auto;
  height: auto;
  min-height: 0;
  background: transparent;
  overflow: visible;
}
.mh-about-hero__copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(0.55rem, 1.4vw, 1.1rem) 0.75rem clamp(0.55rem, 1.4vw, 1.1rem) 0;
  background: var(--mh-about-hero-bg);
  box-sizing: border-box;
  min-height: 0;
}
.mh-about-hero__copy h1,
.mh-about-hero__copy > p {
  max-width: min(36ch, 100%);
}
.mh-about-hero__copy h1 {
  font-family: var(--mh-display);
  font-size: clamp(2rem, 4.2vw, 3.25rem);
  line-height: 1.08;
  margin: 0 0 0.5rem;
  color: #023c22;
  font-weight: 700;
  letter-spacing: -0.02em;
}
.mh-section__title .mh-leaf {
  display: inline-flex;
  color: var(--mahfel-green);
  font-size: .45em;
  vertical-align: middle;
}
.mh-about-hero__copy > p {
  font-family: var(--mh-font);
  font-size: clamp(0.78rem, 0.95vw, 0.92rem);
  color: #5a6874;
  margin: 0;
  line-height: 1.45;
  width: 100%;
}
.mh-about-hero__media {
  position: relative;
  z-index: 1;
  margin-left: -4%;
  overflow: hidden;
  background: transparent;
  min-height: 0;
  /* Ekteki görsel birebir oranı: 684×274 */
  aspect-ratio: 684 / 274;
  height: auto;
  /* Sağ alt oval — menü sağ kenarında biter */
  border-radius: 0 0 4.5rem 0;
}
.mh-about-hero__media::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: clamp(48px, 16%, 120px);
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    var(--mh-about-hero-bg) 0%,
    rgba(var(--mh-hero-bg-rgb), 0.85) 35%,
    rgba(var(--mh-hero-bg-rgb), 0) 100%
  );
}
.mh-about-hero__media picture,
.mh-about-hero__media img {
  width: 100%;
  height: 100%;
  min-height: 0;
  max-width: none;
  display: block;
  object-fit: cover;
  object-position: center center;
}

.mh-about-intro {
  background: transparent;
}
.mh-about-intro__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr) minmax(0, 1fr);
  gap: 1.25rem;
  align-items: stretch;
}
.mh-about-intro__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 0.5rem;
}
.mh-about-intro__copy .mh-section__title {
  margin: 0 0 1rem;
  color: #023c22;
  font-size: clamp(1.35rem, 2.4vw, 1.85rem);
  line-height: 1.25;
  max-width: 18ch;
}
.mh-about-intro__copy .mh-section__title .mh-leaf {
  color: var(--mahfel-green);
  margin-left: 0.2rem;
}
.mh-about-intro__body {
  color: var(--mh-text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
  max-width: 42ch;
}
.mh-about-intro__body p {
  margin: 0;
  color: #6b7c75;
}
.mh-mv-card {
  background: #fff;
  border: 1px solid var(--mh-border);
  border-radius: 14px;
  padding: 1.25rem 1.15rem;
  box-shadow: var(--mh-shadow-sm);
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 0.95rem;
  height: 100%;
  transition: transform .28s ease, box-shadow .28s ease;
}
.mh-mv-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--mh-shadow-md);
}
.mh-mv-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 1.15rem;
  margin: 0;
}
.mh-mv-card__icon--mission {
  background: var(--mahfel-light-green);
  color: var(--mahfel-dark-green);
}
.mh-mv-card__icon--vision {
  background: rgba(242, 140, 40, 0.18);
  color: var(--mahfel-orange);
}
.mh-mv-card__body {
  min-width: 0;
  flex: 1;
}
.mh-mv-card h3 {
  margin: 0 0 0.4rem;
  font-family: var(--mh-font);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--mahfel-text);
}
.mh-mv-card p {
  margin: 0;
  color: var(--mh-text-muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.mh-values-section .mh-section__head {
  margin-bottom: 1.5rem;
}
.mh-values-section .mh-section__title {
  color: #023c22;
}
.mh-values-section .mh-section__title .mh-leaf {
  color: var(--mahfel-green);
}
.mh-values-grid {
  gap: 1.15rem;
}
.mh-value-card {
  display: flex;
  gap: 0.95rem;
  align-items: center;
  background: #fff;
  border: 1px solid var(--mh-border);
  border-radius: 16px;
  padding: 1.2rem 1.1rem;
  box-shadow: var(--mh-shadow-sm);
  transition: transform .28s ease, box-shadow .28s ease;
  min-height: 100%;
}
.mh-value-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--mh-shadow-md);
}
.mh-value-card__icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--mahfel-light-green);
  color: var(--mahfel-dark-green);
  display: grid;
  place-items: center;
  font-size: 1.15rem;
}
.mh-value-card__icon--teal {
  background: rgba(25, 167, 160, 0.16);
  color: var(--mahfel-turquoise);
}
.mh-value-card__icon--science {
  background: rgba(139, 195, 74, 0.22);
  color: #6fa32e;
}
.mh-value-card__icon--green {
  background: rgba(10, 92, 76, 0.12);
  color: var(--mahfel-dark-green);
}
.mh-value-card__icon--orange {
  background: rgba(242, 140, 40, 0.18);
  color: var(--mahfel-orange);
}
.mh-value-card__body {
  min-width: 0;
  flex: 1;
}
.mh-value-card h3 {
  margin: 0 0 0.3rem;
  font-size: 1.02rem;
  font-family: var(--mh-font);
  font-weight: 700;
  color: var(--mahfel-text);
}
.mh-value-card p {
  margin: 0;
  font-size: 0.86rem;
  color: #6b7c75;
  line-height: 1.5;
}

.mh-process-section .mh-section__head {
  margin-bottom: 1.5rem;
}
.mh-process-section .mh-section__title {
  color: #023c22;
}
.mh-process-section .mh-section__title .mh-leaf {
  color: var(--mahfel-green);
}
.mh-process {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 0.55rem;
}
.mh-process__step {
  flex: 1;
  min-width: 0;
  margin: 0;
  text-align: left;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.95rem;
  background: #fff;
  border: 1px solid #e8eeea;
  border-radius: 16px;
  padding: 1.15rem 1.1rem;
  box-shadow: 0 2px 10px rgba(10, 92, 76, 0.045);
}
.mh-process__icon-wrap {
  position: relative;
  display: inline-flex;
  flex-shrink: 0;
  margin: 0;
}
.mh-process__icon {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: #eaf6df;
  border: 0;
  color: #0a5c4c;
  display: grid;
  place-items: center;
  font-size: 1.28rem;
}
.mh-process__icon--teal {
  background: #dff4f3;
  color: #0e7c76;
}
.mh-process__num {
  position: absolute;
  bottom: -3px;
  right: -5px;
  top: auto;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: #fff;
  color: #0a5c4c;
  border: 0;
  font-family: var(--mh-font);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  display: grid;
  place-items: center;
  box-shadow: 0 1px 4px rgba(10, 92, 76, 0.12);
}
.mh-process__num--teal {
  background: #fff;
  color: #0e7c76;
}
.mh-process__body {
  min-width: 0;
  flex: 1;
}
.mh-process__step h3 {
  margin: 0 0 0.35rem;
  font-family: var(--mh-font);
  font-size: 1rem;
  font-weight: 700;
  color: #1a2e28;
  line-height: 1.25;
}
.mh-process__step p {
  margin: 0;
  color: #6b7c75;
  font-size: 0.84rem;
  line-height: 1.5;
}
.mh-process__arrow {
  flex: 0 0 auto;
  align-self: center;
  color: #2c3431;
  font-size: 1.05rem;
  padding: 0 0.2rem;
  opacity: 0.85;
}

.mh-team-section .mh-section__head {
  margin-bottom: 1.5rem;
}
.mh-team-section .mh-section__title {
  color: #023c22;
}
.mh-team-section .mh-section__title .mh-leaf {
  color: var(--mahfel-green);
}
.mh-team-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}
.mh-team-card {
  background: #fff;
  border: 1px solid #e8eeea;
  border-radius: 14px;
  box-shadow: 0 2px 10px rgba(10, 92, 76, 0.045);
  text-align: left;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  overflow: hidden;
  min-height: 0;
  height: 100%;
  transition: none;
  padding: 0;
}
.mh-team-card:hover {
  transform: none;
  box-shadow: 0 2px 10px rgba(10, 92, 76, 0.045);
}
.mh-team-card__photo {
  flex: 0 0 42%;
  max-width: 42%;
  margin: 0;
  border-radius: 0;
  aspect-ratio: auto;
  align-self: stretch;
  background: var(--mahfel-beige);
  overflow: hidden;
}
.mh-team-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.mh-team-card__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 0.75rem 0.7rem 0.8rem 0.65rem;
}
.mh-team-card__label {
  margin: 0 0 0.15rem;
  font-family: var(--mh-font);
  font-size: 0.72rem;
  font-weight: 500;
  color: #7a8a84;
  line-height: 1.2;
}
.mh-team-card h3 {
  margin: 0 0 0.2rem;
  font-size: 0.95rem;
  font-family: var(--mh-font);
  font-weight: 700;
  color: #1a2e28;
  line-height: 1.2;
}
.mh-team-card__role {
  margin: 0 0 0.35rem;
  color: #6fa32e;
  font-family: var(--mh-font);
  font-weight: 600;
  font-size: 0.78rem;
  line-height: 1.25;
}
.mh-team-card__bio {
  margin: 0;
  color: #6b7c75;
  font-size: 0.72rem;
  line-height: 1.4;
  flex: 0;
}

/* About page testimonials — mockup match */
.mh-testimonials--about {
  position: relative;
  overflow: hidden;
  background: #fff;
  padding-top: 3.25rem;
  padding-bottom: 2.75rem;
  text-align: center;
}
.mh-testimonials--about .mh-section__title {
  color: #023c22;
  margin-bottom: 1.65rem;
}
.mh-testimonials--about .mh-section__title .mh-leaf {
  color: var(--mahfel-green);
}
.mh-testimonials__deco {
  position: absolute;
  top: 50%;
  width: 88px;
  height: 140px;
  transform: translateY(-52%);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  pointer-events: none;
  z-index: 0;
  opacity: 0.85;
}
.mh-testimonials__deco--left {
  left: max(0px, calc(50% - min(50vw, 590px) - 12px));
  background-image: url("/assets/img/about/testimonial-leaf-left.svg");
}
.mh-testimonials__deco--right {
  right: max(0px, calc(50% - min(50vw, 590px) - 12px));
  background-image: url("/assets/img/about/testimonial-leaf-right.svg");
}
.mh-testimonials--about .mh-t-carousel {
  position: relative;
  z-index: 1;
}
.mh-testimonials--about .mh-t-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}
.mh-testimonials--about .mh-t-card {
  background: #fff;
  border: 1px solid #e8eeea;
  border-radius: 16px;
  padding: 1.05rem 1rem;
  box-shadow: 0 2px 10px rgba(10, 92, 76, 0.045);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.85rem;
  text-align: left;
}
.mh-testimonials--about .mh-t-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
  overflow: hidden;
  background: #eef2ee;
}
.mh-testimonials--about .mh-t-card__body {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.mh-testimonials--about .mh-t-card blockquote {
  margin: 0;
  font-style: normal;
  font-family: var(--mh-font);
  font-weight: 500;
  font-size: 0.84rem;
  line-height: 1.45;
  color: #4a5752;
}
.mh-testimonials--about .mh-t-card cite {
  font-style: normal;
  font-family: var(--mh-font);
  font-weight: 700;
  font-size: 0.9rem;
  color: #1a2e28;
  line-height: 1.25;
}
.mh-testimonials--about .mh-t-role {
  display: block;
  font-family: var(--mh-font);
  font-size: 0.78rem;
  font-weight: 500;
  color: #8a9691;
  line-height: 1.2;
}
.mh-testimonials--about .mh-t-dots {
  margin-top: 1.35rem;
}
.mh-testimonials--about .mh-t-dots button {
  width: 9px;
  height: 9px;
  background: #d5dbe0;
}
.mh-testimonials--about .mh-t-dots button[aria-current="true"] {
  background: #0a5c4c;
}

/* Events page — same card system, slightly wider content rail */
.mh-events-testimonials {
  max-width: var(--mh-content-max);
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.mh-events-testimonials .mh-testimonials__deco--left {
  left: max(4px, calc(50% - min(50vw, 620px)));
  background-image: url("/assets/img/home/testimonial-leaf-left.png");
}
.mh-events-testimonials .mh-testimonials__deco--right {
  right: max(4px, calc(50% - min(50vw, 620px)));
  background-image: url("/assets/img/home/testimonial-leaf-right.png");
}

.mh-about-hero.mh-reveal,
.mh-section.mh-reveal,
.mh-cta-about.mh-reveal,
.mh-services-listing.mh-reveal,
.mh-services-cta.mh-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .42s ease, transform .42s ease;
}
.mh-about-hero.mh-reveal.is-visible,
.mh-section.mh-reveal.is-visible,
.mh-cta-about.mh-reveal.is-visible,
.mh-services-listing.mh-reveal.is-visible,
.mh-services-cta.mh-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .mh-about-hero.mh-reveal,
  .mh-section.mh-reveal,
  .mh-cta-about.mh-reveal,
  .mh-services-listing.mh-reveal,
  .mh-services-cta.mh-reveal,
  .mh-mv-card,
  .mh-value-card,
  .mh-team-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

@media (max-width: 1100px) {
  .mh-about-intro__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem;
  }
  .mh-about-intro__copy {
    grid-column: 1 / -1;
    padding-right: 0;
  }
  .mh-about-intro__copy .mh-section__title { max-width: none; }

  .mh-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }

  .mh-testimonials__deco {
    width: 64px;
    height: 110px;
    opacity: 0.55;
  }
}

@media (max-width: 900px) {
  .mh-about-hero {
    padding: 0;
    width: 100%;
  }
  .mh-about-hero__frame {
    grid-template-columns: 1fr;
    aspect-ratio: auto;
    min-height: 0;
    padding: 0 1.25rem;
  }
  .mh-about-hero__copy {
    padding: 1.5rem 0 1.1rem;
  }
  .mh-about-hero__copy h1 { font-size: 2.15rem; margin-bottom: 0.65rem; }
  .mh-about-hero__copy > p { max-width: none; font-size: 0.95rem; line-height: 1.55; }
  .mh-about-hero__media {
    margin-left: 0;
    aspect-ratio: 684 / 274;
    border-radius: 0 0 2.5rem 0;
  }
  .mh-about-hero__media picture,
  .mh-about-hero__media img {
    min-height: 0;
    height: 100%;
    aspect-ratio: 684 / 274;
  }
  .mh-about-intro__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.15rem;
  }
  .mh-about-intro__copy {
    grid-column: 1 / -1;
  }

  .mh-team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.9rem;
  }

  .mh-testimonials--about .mh-t-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.85rem;
    -webkit-overflow-scrolling: touch;
  }
  .mh-testimonials--about .mh-t-card {
    flex: 0 0 min(82vw, 340px);
    scroll-snap-align: start;
  }
  .mh-testimonials__deco { display: none; }

  .mh-process {
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
  }
  .mh-process__step {
    max-width: none;
  }
  .mh-process__arrow {
    display: none;
  }
  .mh-process__step h3 {
    font-size: 1.02rem;
  }
  .mh-process__step p {
    font-size: 0.9rem;
  }
}

@media (max-width: 1100px) {
  .mh-cta-home .mh-cta-band h2 { font-size: 18px; }
  .mh-cta-home .mh-cta-band p { font-size: 13px; }
}

@media (max-width: 900px) {
  .mh-cta-home .mh-cta-band {
    height: auto;
    min-height: 0;
    max-height: none;
    flex-wrap: wrap;
    padding: 16px 18px;
    border-radius: 12px;
  }
  .mh-cta-home .mh-cta-band h2,
  .mh-cta-home .mh-cta-band p { white-space: normal; }
  .mh-cta-home .mh-cta-band__btn { margin-left: auto; }

  .mh-cta-about .mh-cta-band {
    flex-wrap: wrap;
    padding: 1.25rem 1.35rem;
    min-height: 0;
  }
  .mh-cta-about .mh-cta-band h2,
  .mh-cta-about .mh-cta-band p {
    white-space: normal;
  }
  .mh-cta-about .mh-cta-band__btn {
    margin-left: auto;
  }
  .mh-cta-about .mh-cta-band__deco {
    width: 96px;
    opacity: 0.7;
  }
}

@media (max-width: 767px) {
  .mh-cta-about .mh-cta-band {
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
  }
  .mh-cta-about .mh-cta-band__inner {
    height: auto;
  }
  .mh-cta-about .mh-cta-band__btn {
    width: 100%;
    justify-content: center;
    margin-left: 0;
    height: 46px;
  }
  .mh-cta-about .mh-cta-band__deco { display: none; }
}

@media (max-width: 767px) {
  .mh-about-intro__grid { grid-template-columns: 1fr; }
  .mh-about-intro__copy { grid-column: auto; }
  .mh-values-grid { grid-template-columns: 1fr; }
  .mh-team-grid { grid-template-columns: 1fr; }
  .mh-team-card__photo { flex-basis: 36%; max-width: 36%; }
  .mh-team-card__body { padding: 0.9rem 0.85rem; }
  .mh-team-card h3 { font-size: 1.05rem; }
  .mh-team-card__role { font-size: 0.88rem; }
  .mh-team-card__bio { font-size: 0.84rem; }
  .mh-testimonials__deco { display: none; }
  .mh-testimonials--about .mh-t-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 0.85rem;
    padding-bottom: 0.25rem;
    -webkit-overflow-scrolling: touch;
  }
  .mh-testimonials--about .mh-t-card {
    flex: 0 0 min(88vw, 320px);
    scroll-snap-align: start;
  }
  .mh-cta-home .mh-cta-band {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
  }
  .mh-cta-band__inner { height: auto; }
  .mh-cta-band__btn { width: 100%; justify-content: center; margin-left: 0; height: 44px; }
}

@media (max-width: 360px) {
  .mh-about-hero__copy h1 { font-size: 1.95rem; }
  .mh-mv-card { padding: 1.2rem 1rem; }
  .mh-value-card { flex-direction: column; }
}

/* =========================================================================
   Mahfel Online Sipariş / Sepet / Puan / Ödül
   ========================================================================= */
.mh-menu-points {
  margin: 6px 0 0;
  font-size: .82rem;
  color: var(--mh-primary-dark);
  display: flex;
  align-items: center;
  gap: 6px;
}
.mh-menu-points .fa { color: var(--mh-accent); }

.mh-menu-caffeine {
  margin: .35rem 0 0;
  font-size: .85rem;
  color: #8a5a2b;
}
.mh-menu-caffeine .fa { margin-right: .25rem; }

.mh-menu-detail-link {
  margin: .5rem 0 0;
  font-size: .85rem;
}
.mh-menu-detail-link a { color: inherit; text-decoration: underline; }
.mh-menu-card__img-link { display: block; }
.mh-menu-card__body h3 a { color: inherit; text-decoration: none; }

.mh-menu-detail {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-top: 1rem;
}
.mh-menu-detail__img {
  width: 100%;
  height: auto;
  border-radius: 12px;
  object-fit: cover;
  max-height: 420px;
}
.mh-menu-detail__cat {
  text-transform: uppercase;
  letter-spacing: .04em;
  font-size: .75rem;
  opacity: .7;
  margin: 0 0 .35rem;
}
.mh-menu-detail__price { font-size: 1.35rem; font-weight: 600; }
.mh-menu-detail__qr { margin-top: 2rem; }
.mh-menu-detail__qr-img {
  display: block;
  margin-top: .75rem;
  background: #fff;
  padding: .5rem;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .mh-menu-detail { grid-template-columns: 1fr; }
}

/* Ortak ürün kartı işlem alanı: Fiyat | [− 1 +] [🛒] */
.mh-product-actions,
.mh-order-ctl {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  flex-wrap: nowrap;
  flex-shrink: 0;
}
.mh-order-ctl.is-oos {
  margin: 0;
}
.mh-menu-oos {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: .78rem;
  font-weight: 600;
  color: var(--mh-error);
  background: rgba(220, 38, 38, .08);
  border-radius: 999px;
  padding: 4px 12px;
  white-space: nowrap;
}

.mh-menu-page .mh-qty {
  height: 40px;
  min-width: 104px;
  padding: 0 8px;
  border: 1px solid #dce5e1;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #ffffff;
  flex-shrink: 0;
  overflow: hidden;
}
.mh-menu-page .mh-qty__btn {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border: 0;
  background: transparent;
  font-size: 1.05rem;
  line-height: 1;
  color: var(--mh-primary);
  cursor: pointer;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.mh-menu-page .mh-qty__btn:hover { background: var(--mh-surface-alt); }
.mh-menu-page .mh-qty__val {
  width: 28px;
  height: 28px;
  border: 0;
  text-align: center;
  font-weight: 600;
  font-size: .92rem;
  color: var(--mh-text);
  background: transparent;
  padding: 0;
  -moz-appearance: textfield;
  pointer-events: none;
}
.mh-menu-page .mh-qty__val::-webkit-outer-spin-button,
.mh-menu-page .mh-qty__val::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.mh-btn-cart {
  width: 44px;
  height: 44px;
  min-width: 44px;
  border: none;
  border-radius: 14px;
  background: #006653;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
  position: relative;
  padding: 0;
  font-size: 0;
  line-height: 0;
  overflow: hidden;
  transition: background-color 0.2s ease, transform 0.2s ease;
}
.mh-btn-cart:hover {
  background: #004f40;
  transform: translateY(-1px);
  color: #fff;
}
.mh-btn-cart:active { transform: scale(0.96); }
.mh-btn-cart.is-loading {
  opacity: .7;
  pointer-events: none;
}
.mh-btn-cart.is-success {
  background: #22A06B;
  color: #fff;
}
.mh-btn-cart__icon,
.mh-btn-cart__ok {
  width: 20px;
  height: 20px;
  display: block;
  flex-shrink: 0;
  pointer-events: none;
}
.mh-btn-cart__ok { display: none; }
.mh-btn-cart.is-success .mh-btn-cart__icon { display: none; }
.mh-btn-cart.is-success .mh-btn-cart__ok { display: block; }

/* Sepet sayfası adet kontrolü (metin buton stillerinden bağımsız) */
.mh-cart-line .mh-qty,
.mh-shop-page .mh-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--mh-border);
  border-radius: 999px;
  overflow: hidden;
  background: var(--mh-surface-card);
}
.mh-cart-line .mh-qty__btn,
.mh-shop-page .mh-qty__btn {
  width: 38px;
  height: 38px;
  min-width: 38px;
  border: 0;
  background: transparent;
  font-size: 1.1rem;
  line-height: 1;
  color: var(--mh-primary);
  cursor: pointer;
}
.mh-cart-line .mh-qty__btn:hover,
.mh-shop-page .mh-qty__btn:hover { background: var(--mh-surface-alt); }
.mh-cart-line .mh-qty__val,
.mh-shop-page .mh-qty__val {
  width: 38px;
  height: 38px;
  border: 0;
  text-align: center;
  font-weight: 600;
  color: var(--mh-text);
  background: transparent;
  -moz-appearance: textfield;
}

@media (max-width: 768px) {
  .mh-menu-card__footer {
    align-items: flex-end;
    flex-wrap: wrap;
  }
  .mh-menu-card__footer .mh-menu-price {
    width: 100%;
  }
  .mh-menu-card__footer .mh-product-actions,
  .mh-menu-card__footer .mh-order-ctl {
    margin-left: auto;
  }
  .mh-btn-cart {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 12px;
  }
  .mh-menu-list__main .mh-menu-card__footer {
    flex-wrap: wrap;
  }
  .mh-menu-list__main .mh-menu-card__footer .mh-menu-price {
    width: auto;
  }
}

@media (max-width: 480px) {
  .mh-menu-page .mh-qty {
    min-width: 96px;
    height: 40px;
  }
}

/* Yüzen sepet butonu (WhatsApp üstünde, .mh-float-stack içinde) */
.mh-cart-float {
  position: relative;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--mh-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: var(--mh-shadow-lg);
  text-decoration: none;
  transition: transform .15s ease, background .18s ease;
  flex-shrink: 0;
}
.mh-cart-float[hidden] { display: none !important; }
.mh-cart-float > .fa {
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
}
.mh-cart-float:hover { background: var(--mh-primary-dark); transform: translateY(-2px); color: #fff; }
.mh-cart-float__badge {
  position: absolute;
  top: -4px;
  right: -4px;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  border-radius: 999px;
  background: var(--mh-accent);
  color: #fff;
  font-size: .72rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Toast */
.mh-toast {
  position: fixed;
  left: 50%;
  bottom: 28px;
  transform: translate(-50%, 20px);
  background: var(--mh-primary-dark);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-size: .9rem;
  font-weight: 500;
  box-shadow: var(--mh-shadow-lg);
  opacity: 0;
  transition: opacity .28s ease, transform .28s ease;
  z-index: 120;
  max-width: 90vw;
  text-align: center;
}
.mh-toast.is-shown { opacity: 1; transform: translate(-50%, 0); }
.mh-toast.is-error { background: var(--mh-error); }

/* Sipariş / puan / ödül sayfaları ortak yerleşim */
.mh-shop-page { padding: 40px 0 80px; }
.mh-shop-page__head { margin-bottom: 24px; }
.mh-shop-page__head h1 {
  font-family: var(--mh-display);
  font-size: 2rem;
  color: var(--mh-primary-dark);
  margin: 0 0 6px;
}
.mh-shop-page__head p { color: var(--mh-text-muted); margin: 0; }
.mh-shop-grid { display: grid; grid-template-columns: 1fr 340px; gap: 24px; align-items: start; }
.mh-shop-panel {
  background: var(--mh-surface-card);
  border: 1px solid var(--mh-border);
  border-radius: var(--mh-radius-lg);
  padding: 20px;
  box-shadow: var(--mh-shadow-sm);
}
.mh-shop-summary { position: sticky; top: 88px; }
.mh-shop-summary__row { display: flex; justify-content: space-between; padding: 8px 0; color: var(--mh-text); }
.mh-shop-summary__row--total { border-top: 1px solid var(--mh-border); margin-top: 8px; padding-top: 14px; font-weight: 700; font-size: 1.1rem; }
.mh-shop-summary__points { color: var(--mh-primary); font-weight: 600; }

.mh-cart-line { display: flex; gap: 14px; padding: 16px 0; border-bottom: 1px solid var(--mh-border); }
.mh-cart-line:last-child { border-bottom: 0; }
.mh-cart-line__img { width: 72px; height: 72px; border-radius: var(--mh-radius-sm); object-fit: cover; background: var(--mh-surface-alt); flex-shrink: 0; }
.mh-cart-line__body { flex: 1; min-width: 0; }
.mh-cart-line__name { font-weight: 600; color: var(--mh-text); margin: 0 0 4px; overflow-wrap: anywhere; }
.mh-cart-line__meta { font-size: .82rem; color: var(--mh-text-muted); }
.mh-cart-line__free { color: var(--mh-success); font-weight: 600; }
.mh-cart-line__warn { color: var(--mh-error); font-size: .8rem; }
.mh-cart-line__actions { display: flex; align-items: center; gap: 10px; margin-top: 8px; }
.mh-link-danger { background: none; border: 0; color: var(--mh-error); cursor: pointer; font-size: .82rem; padding: 0; }

.mh-badge-status {
  display: inline-block; padding: 3px 12px; border-radius: 999px;
  font-size: .76rem; font-weight: 600; background: var(--mh-surface-alt); color: var(--mh-primary-dark);
}
.mh-empty-state { text-align: center; padding: 48px 16px; color: var(--mh-text-muted); }
.mh-empty-state .fa { font-size: 2.4rem; color: var(--mh-border); margin-bottom: 12px; }
.mh-loading { text-align: center; padding: 40px; color: var(--mh-text-muted); }

.mh-form-field { margin-bottom: 16px; }
.mh-form-field label { display: block; font-weight: 600; margin-bottom: 6px; color: var(--mh-text); font-size: .9rem; }
.mh-form-field input, .mh-form-field textarea, .mh-form-field select {
  width: 100%; padding: 10px 12px; border: 1px solid var(--mh-border);
  border-radius: var(--mh-radius-sm); font: inherit; background: var(--mh-surface-card); color: var(--mh-text);
}
.mh-btn-block { width: 100%; justify-content: center; }

.mh-order-card { border: 1px solid var(--mh-border); border-radius: var(--mh-radius-md); padding: 16px; margin-bottom: 14px; background: var(--mh-surface-card); }
.mh-order-card__head { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; margin-bottom: 8px; }
.mh-order-card__no { font-weight: 700; color: var(--mh-primary-dark); }
.mh-order-card__items { color: var(--mh-text-muted); font-size: .88rem; margin: 6px 0; }
.mh-order-card__foot { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

.mh-points-hero { display: flex; gap: 20px; flex-wrap: wrap; margin-bottom: 24px; }
.mh-points-stat { flex: 1; min-width: 150px; background: var(--mh-surface-card); border: 1px solid var(--mh-border); border-radius: var(--mh-radius-lg); padding: 20px; text-align: center; }
.mh-points-stat__val { font-family: var(--mh-display); font-size: 2rem; color: var(--mh-primary-dark); }
.mh-points-stat__lbl { color: var(--mh-text-muted); font-size: .85rem; }

.mh-reward-card { border: 1px solid var(--mh-border); border-radius: var(--mh-radius-md); padding: 16px; margin-bottom: 14px; background: var(--mh-surface-card); display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.mh-reward-card__body { flex: 1; min-width: 200px; }
.mh-reward-card__pts { color: var(--mh-accent); font-weight: 700; }
.mh-reward-card__code { font-family: monospace; background: var(--mh-surface-alt); padding: 4px 10px; border-radius: var(--mh-radius-sm); letter-spacing: 1px; }

table.mh-table { width: 100%; border-collapse: collapse; }
table.mh-table th, table.mh-table td { padding: 10px 8px; text-align: left; border-bottom: 1px solid var(--mh-border); font-size: .88rem; }
table.mh-table th { color: var(--mh-text-muted); font-weight: 600; }
.mh-pts-plus { color: var(--mh-success); font-weight: 600; }
.mh-pts-minus { color: var(--mh-error); font-weight: 600; }

@media (max-width: 860px) {
  .mh-shop-grid { grid-template-columns: 1fr; }
  .mh-shop-summary { position: static; }
}


/* ——— Services page (/hizmetler) ——— */
.mh-services-page { width: 100%; }
.mh-services-hero.mh-about-hero .mh-about-hero__media,
.mh-services-hero.mh-about-hero .mh-about-hero__media picture,
.mh-services-hero.mh-about-hero .mh-about-hero__media img {
  aspect-ratio: 16 / 9;
}
.mh-breadcrumb--hero {
  margin: 0 0 .65rem;
  font-size: .78rem;
  color: #6b7a72;
}
.mh-breadcrumb--hero a { color: var(--mahfel-dark-green); text-decoration: none; }
.mh-breadcrumb--hero a:hover { color: var(--mahfel-green-deep); }

.mh-services-listing {
  max-width: var(--mh-content-max);
  margin: 0 auto;
  padding: 2.5rem 1.25rem 1.5rem;
}
.mh-services-listing__head {
  max-width: 40rem;
  margin: 0 0 1.75rem;
}
.mh-services-listing__head h2 {
  font-family: var(--mh-display);
  font-size: clamp(1.55rem, 3vw, 2.1rem);
  color: var(--mahfel-text);
  margin: 0 0 .45rem;
  letter-spacing: -.02em;
}
.mh-services-listing__head p {
  margin: 0;
  color: var(--mh-text-muted);
  font-size: .98rem;
  line-height: 1.55;
}

.mh-services-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.35rem;
}

.mh-svc-vcard {
  display: flex;
  flex-direction: column;
  background: var(--mh-surface-card, #fff);
  border: 1px solid rgba(10, 92, 76, .08);
  border-radius: 1.1rem;
  overflow: hidden;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.mh-svc-vcard:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(10, 92, 76, .1);
  border-color: rgba(139, 195, 74, .35);
}
.mh-svc-vcard__media {
  position: relative;
  display: block;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--mahfel-light-green);
}
.mh-svc-vcard__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .45s ease;
}
.mh-svc-vcard:hover .mh-svc-vcard__media img {
  transform: scale(1.04);
}
.mh-svc-vcard__icon {
  position: absolute;
  left: .85rem;
  bottom: .85rem;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: .7rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, .92);
  color: var(--mahfel-dark-green);
  box-shadow: 0 6px 16px rgba(10, 92, 76, .12);
  font-size: 1rem;
}
.mh-svc-vcard__body {
  display: flex;
  flex-direction: column;
  gap: .55rem;
  padding: 1.1rem 1.15rem 1.2rem;
  flex: 1;
}
.mh-svc-vcard__title {
  font-family: var(--mh-display);
  font-size: 1.2rem;
  margin: 0;
  line-height: 1.25;
  color: var(--mahfel-text);
}
.mh-svc-vcard__title a {
  color: inherit;
  text-decoration: none;
}
.mh-svc-vcard__title a:hover { color: var(--mahfel-green-deep); }
.mh-svc-vcard__desc {
  margin: 0;
  color: var(--mh-text-muted);
  font-size: .9rem;
  line-height: 1.5;
  flex: 1;
}
.mh-svc-vcard__btn {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  margin-top: .35rem;
  font-weight: 700;
  font-size: .92rem;
  color: var(--mahfel-dark-green);
  text-decoration: none;
}
.mh-svc-vcard__btn:hover { color: var(--mahfel-green-deep); }
.mh-svc-vcard__btn span {
  transition: transform .2s ease;
}
.mh-svc-vcard:hover .mh-svc-vcard__btn span {
  transform: translateX(3px);
}

.mh-services-cta {
  max-width: var(--mh-content-max);
  margin: 0 auto 3rem;
  padding: 0 1.25rem;
}
.mh-services-cta__inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem 1.6rem;
  border-radius: 1.25rem;
  background:
    radial-gradient(circle at 12% 20%, rgba(139, 195, 74, .22), transparent 42%),
    linear-gradient(135deg, #eef7e3 0%, #f7fbf2 55%, #e8f5d4 100%);
  border: 1px solid rgba(10, 92, 76, .08);
}
.mh-services-cta__copy h2 {
  font-family: var(--mh-display);
  margin: 0 0 .35rem;
  font-size: 1.45rem;
  color: var(--mahfel-text);
}
.mh-services-cta__copy p {
  margin: 0;
  color: var(--mh-text-muted);
  max-width: 36rem;
  line-height: 1.5;
}

/* Service detail */
.mh-service-detail {
  max-width: var(--mh-content-max);
  margin: 0 auto;
  padding: 2rem 1.25rem 3.5rem;
}
.mh-service-detail .mh-breadcrumb { margin-bottom: 1.25rem; }
.mh-service-detail__hero {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: stretch;
  margin-bottom: 2rem;
}
.mh-service-detail__cover {
  border-radius: 1.25rem;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--mahfel-light-green);
}
.mh-service-detail__cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mh-service-detail__summary {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: .7rem;
}
.mh-service-detail__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .78rem;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--mahfel-green-deep);
}
.mh-service-detail__summary h1 {
  font-family: var(--mh-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  line-height: 1.12;
  margin: 0;
  color: var(--mahfel-text);
  letter-spacing: -.02em;
}
.mh-service-detail__lead {
  margin: 0;
  color: var(--mh-text-muted);
  font-size: 1rem;
  line-height: 1.55;
}
.mh-service-detail__facts {
  list-style: none;
  margin: .2rem 0 0;
  padding: 0;
  display: grid;
  gap: .45rem;
}
.mh-service-detail__facts li {
  display: flex;
  align-items: center;
  gap: .55rem;
  color: var(--mahfel-text);
  font-size: .92rem;
}
.mh-service-detail__facts i {
  width: 1.1rem;
  color: var(--mahfel-green);
}
.mh-service-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: .4rem;
}
.mh-service-detail__content h2 {
  font-family: var(--mh-display);
  font-size: 1.35rem;
  margin: 0 0 .85rem;
  color: var(--mahfel-text);
}

.mh-service-detail--empty {
  min-height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mh-service-empty {
  text-align: center;
  max-width: 28rem;
  padding: 2rem 1rem;
}
.mh-service-empty i {
  font-size: 2.4rem;
  color: var(--mahfel-green);
  margin-bottom: .75rem;
}
.mh-service-empty h1 {
  font-family: var(--mh-display);
  margin: 0 0 .5rem;
}
.mh-service-empty p { color: var(--mh-text-muted); }
.mh-service-empty__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  justify-content: center;
  margin-top: 1.25rem;
}

@media (max-width: 900px) {
  .mh-services-grid { grid-template-columns: 1fr; }
  .mh-service-detail__hero { grid-template-columns: 1fr; }
  .mh-service-detail__cover { aspect-ratio: 16 / 10; }
}

@media (max-width: 720px) {
  .mh-services-hero.mh-about-hero .mh-about-hero__media,
  .mh-services-hero.mh-about-hero .mh-about-hero__media picture,
  .mh-services-hero.mh-about-hero .mh-about-hero__media img {
    aspect-ratio: 16 / 10;
  }
  .mh-services-listing { padding-top: 1.75rem; }
  .mh-services-cta__inner { padding: 1.25rem; }
}

/* Service detail rich content */
.mh-prose--service {
  max-width: none;
  width: 100%;
}
.mh-prose--service > p:first-of-type {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--mahfel-text);
}
.mh-svc-pillars {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin: 1.5rem 0 2rem;
}
.mh-svc-pillar {
  background: linear-gradient(180deg, #f7fbf2 0%, #fff 100%);
  border: 1px solid rgba(10, 92, 76, .1);
  border-radius: 1rem;
  padding: 1.1rem 1.15rem 1.2rem;
}
.mh-svc-pillar h3 {
  font-family: var(--mh-display);
  font-size: 1.15rem;
  margin: 0 0 .45rem;
  color: var(--mahfel-dark-green);
}
.mh-svc-pillar p {
  margin: 0;
  font-size: .9rem;
  line-height: 1.5;
  color: var(--mh-text-muted);
}
.mh-svc-steps {
  margin: .75rem 0 1.5rem;
  padding-left: 1.2rem;
}
.mh-svc-steps li {
  margin-bottom: .65rem;
  line-height: 1.55;
}
.mh-svc-faq {
  display: grid;
  gap: .65rem;
  margin: 1rem 0 1.75rem;
}
.mh-svc-faq__item {
  border: 1px solid rgba(10, 92, 76, .12);
  border-radius: .85rem;
  background: #fff;
  padding: .15rem .95rem .85rem;
}
.mh-svc-faq__item summary {
  cursor: pointer;
  font-weight: 700;
  color: var(--mahfel-text);
  padding: .75rem 0;
  list-style: none;
}
.mh-svc-faq__item summary::-webkit-details-marker { display: none; }
.mh-svc-faq__item summary::after {
  content: "+";
  float: right;
  color: var(--mahfel-green-deep);
  font-weight: 700;
}
.mh-svc-faq__item[open] summary::after { content: "–"; }
.mh-svc-faq__item p {
  margin: 0 0 .35rem;
  color: var(--mh-text-muted);
  line-height: 1.55;
  font-size: .95rem;
}
.mh-svc-inline-cta {
  margin-top: 2rem;
  padding: 1.35rem 1.4rem;
  border-radius: 1.1rem;
  background:
    radial-gradient(circle at 10% 20%, rgba(139, 195, 74, .2), transparent 40%),
    linear-gradient(135deg, #eef7e3, #f8fcf3);
  border: 1px solid rgba(10, 92, 76, .1);
}
.mh-svc-inline-cta p { margin: 0 0 .85rem; }
.mh-svc-inline-cta .mh-btn { display: inline-flex; }

@media (max-width: 900px) {
  .mh-svc-pillars { grid-template-columns: 1fr; }
}
