/* =========================================================
   MAKE MY HIKES – TREK PAGE CSS
   Covers: left section, right sidebar, related treks
========================================================= */

:root {
  --yellow: #F5B800;
  --yellow-dark: #D9A200;
  --yellow-light: rgba(245,184,0,0.12);
  --black: #0e0e0e;
  --white: #ffffff;
  --grey: #f4f4f4;
  --text: #333;
  --muted: #666;
  --section-gap: 68px;
}

/* ─── LEFT WRAP ─── */
.mmh-left-wrap,
.mmh-left-wrap * { box-sizing: border-box; }

.mmh-left-wrap {
  --tabs-h: 48px;
  font-family: 'Open Sans', sans-serif;
  color: var(--text);
  width: 100%;
}

.mmh-left-wrap a { text-decoration: none; color: inherit; }
.mmh-left-wrap img { display: block; max-width: 100%; }
.mmh-left-wrap button { cursor: pointer; font-family: inherit; }

/* REVEAL ANIMATIONS */
.mmh-left-wrap .reveal { opacity: 0; transform: translateY(22px); transition: opacity .55s ease, transform .55s ease; }
.mmh-left-wrap .reveal.visible { opacity: 1; transform: none; }
.mmh-left-wrap .d1 { transition-delay: .1s; }
.mmh-left-wrap .d2 { transition-delay: .2s; }
.mmh-left-wrap .d3 { transition-delay: .3s; }
.mmh-left-wrap .d4 { transition-delay: .4s; }

/* SECTION LABELS */
.mmh-left-wrap .section-label { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 2.5px; color: var(--yellow); text-transform: uppercase; display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.mmh-left-wrap .section-label::before { content: '—'; }
.mmh-left-wrap .section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(30px, 4vw, 48px); color: var(--black); letter-spacing: 2px; line-height: 1.05; }
.mmh-left-wrap .section-title span { color: var(--yellow); }

/* SECTION TABS */
.mmh-left-wrap #sectionTabs { display: none; } /* moved to single-trek.php as full-width strip */
.mmh-left-wrap .st-inner { display: flex; align-items: center; height: 100%; overflow-x: auto; scrollbar-width: none; -webkit-overflow-scrolling: touch; }
.mmh-left-wrap .st-inner::-webkit-scrollbar { display: none; }
.mmh-left-wrap .st-btn { flex-shrink: 0; height: 100%; padding: 0 16px; white-space: nowrap; border: none; border-bottom: 2px solid transparent; background: none; font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: .4px; text-transform: uppercase; color: #999; transition: color .2s, border-color .2s; position: relative; top: 1px; }
.mmh-left-wrap .st-btn:hover { color: var(--black); }
.mmh-left-wrap .st-btn.active { color: var(--yellow); border-bottom-color: var(--yellow); }

.mmh-left-wrap .trek-main { width: 100%; }
.mmh-left-wrap .t-sec { margin-bottom: var(--section-gap); scroll-margin-top: 70px; }
.mmh-left-wrap .t-sec-head { margin-bottom: 26px; }

/* ─── OVERVIEW ─── */
.mmh-left-wrap .ov-text p { font-size: 14.5px; line-height: 1.85; color: var(--muted); margin-bottom: 14px; }
.mmh-left-wrap .ov-text p:last-child { margin-bottom: 0; }
.mmh-left-wrap .ov-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; margin-top: 26px; }
.mmh-left-wrap .ov-card { display: flex; align-items: flex-start; gap: 11px; background: var(--grey); border-radius: 11px; padding: 14px; border: 1px solid #eee; transition: border-color .2s; }
.mmh-left-wrap .ov-card:hover { border-color: var(--yellow); }
.mmh-left-wrap .ov-ico { width: 36px; height: 36px; background: var(--yellow); border-radius: 9px; display: flex; align-items: center; justify-content: center; font-size: 14px; color: var(--black); flex-shrink: 0; }
.mmh-left-wrap .ov-txt h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11px; color: var(--black); margin-bottom: 3px; text-transform: uppercase; letter-spacing: .5px; }
.mmh-left-wrap .ov-txt p { font-size: 12.5px; color: var(--muted); margin: 0; }

/* ─── VIDEO ─── */
.mmh-left-wrap .vid-wrap { position: relative; border-radius: 18px; overflow: hidden; aspect-ratio: 16/9; background: var(--black); cursor: pointer; }
.mmh-left-wrap .vid-thumb { position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; transition: transform .4s; }
.mmh-left-wrap .vid-wrap:hover .vid-thumb { transform: scale(1.04); }
.mmh-left-wrap .vid-ov { position: absolute; inset: 0; background: rgba(0,0,0,.42); }
.mmh-left-wrap .vid-play { position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%); width: 76px; height: 76px; border-radius: 50%; background: var(--yellow); display: flex; align-items: center; justify-content: center; font-size: 26px; color: var(--black); animation: mmhPulse 2s ease-in-out infinite; transition: transform .2s; }
.mmh-left-wrap .vid-play i { margin-left: 4px; }
.mmh-left-wrap .vid-wrap:hover .vid-play { transform: translate(-50%,-50%) scale(1.08); }
@keyframes mmhPulse { 0%,100%{box-shadow:0 0 0 0 rgba(245,184,0,0.4);} 50%{box-shadow:0 0 0 20px rgba(245,184,0,0);} }
.mmh-left-wrap .vid-lbl { position: absolute; bottom: 18px; left: 18px; background: rgba(0,0,0,.65); backdrop-filter: blur(6px); color: #fff; font-family: 'Montserrat', sans-serif; font-size: 12px; font-weight: 700; padding: 7px 14px; border-radius: 7px; letter-spacing: .4px; }

/* ─── VIDEO MODAL ─── */
.mmh-left-wrap .vid-modal { position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.94); display: none; align-items: center; justify-content: center; padding: 20px; }
.mmh-left-wrap .vid-modal.open { display: flex; }
.mmh-left-wrap .vm-wrap { position: relative; width: 100%; max-width: 880px; }
.mmh-left-wrap .vm-close { position: absolute; top: -44px; right: 0; background: none; border: none; color: #fff; font-size: 26px; cursor: pointer; }
.mmh-left-wrap .vm-frame { width: 100%; aspect-ratio: 16/9; border-radius: 14px; overflow: hidden; background: #000; }
.mmh-left-wrap .vm-frame iframe { width: 100%; height: 100%; border: none; }

/* ─── HIGHLIGHTS ─── */
.mmh-left-wrap .hl-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 13px; }
.mmh-left-wrap .hl-item { display: flex; align-items: flex-start; gap: 11px; padding: 16px; border-radius: 11px; border: 1.5px solid #eee; background: #fff; transition: all .22s; }
.mmh-left-wrap .hl-item:hover { border-color: var(--yellow); box-shadow: 0 5px 18px rgba(245,184,0,.1); transform: translateY(-2px); }
.mmh-left-wrap .hl-chk { width: 26px; height: 26px; border-radius: 50%; background: var(--yellow-light); border: 1.5px solid rgba(245,184,0,.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin-top: 1px; }
.mmh-left-wrap .hl-chk i { color: var(--yellow); font-size: 10px; }
.mmh-left-wrap .hl-item p { font-size: 13px; color: var(--text); line-height: 1.6; font-weight: 500; margin: 0; }

/* ─── ITINERARY ─── */
.mmh-left-wrap .itin-list { position: relative; }
.mmh-left-wrap .itin-list::before { content: ''; position: absolute; left: 24px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--yellow), transparent); }
.mmh-left-wrap .itin-day { position: relative; padding-left: 62px; margin-bottom: 18px; }
.mmh-left-wrap .itin-dot { position: absolute; left: 14px; top: 20px; width: 22px; height: 22px; border-radius: 50%; background: var(--yellow); border: 3px solid #fff; box-shadow: 0 0 0 2px var(--yellow); z-index: 1; }
.mmh-left-wrap .itin-card { border: 1.5px solid #eee; border-radius: 14px; overflow: hidden; transition: border-color .2s, box-shadow .2s; }
.mmh-left-wrap .itin-card:hover { border-color: rgba(245,184,0,.4); box-shadow: 0 5px 18px rgba(0,0,0,.06); }
.mmh-left-wrap .itin-hdr { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; gap: 14px; cursor: pointer; }
.mmh-left-wrap .itin-dlbl { font-family: 'Bebas Neue', sans-serif; font-size: 13px; color: var(--yellow); letter-spacing: 1.5px; white-space: nowrap; }
.mmh-left-wrap .itin-ttl { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13.5px; color: var(--black); flex: 1; margin-top: 2px; }
.mmh-left-wrap .itin-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 6px; }
.mmh-left-wrap .itin-m { display: flex; align-items: center; gap: 5px; font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 600; color: #888; white-space: nowrap; }
.mmh-left-wrap .itin-m i { color: var(--yellow); font-size: 9px; }
.mmh-left-wrap .itin-tog { width: 28px; height: 28px; border-radius: 50%; background: var(--grey); display: flex; align-items: center; justify-content: center; font-size: 10px; color: #666; flex-shrink: 0; transition: all .22s; }
.mmh-left-wrap .itin-card.open .itin-tog { background: var(--yellow); color: var(--black); }
.mmh-left-wrap .itin-card.open .itin-tog i { transform: rotate(180deg); }
.mmh-left-wrap .itin-body { display: none; padding: 0 18px 18px; border-top: 1px solid #f0f0f0; }
.mmh-left-wrap .itin-card.open .itin-body { display: block; }
.mmh-left-wrap .itin-body p { font-size: 13.5px; line-height: 1.8; color: var(--muted); padding-top: 14px; margin: 0; }
.mmh-left-wrap .itin-body ul { padding-top: 10px; padding-left: 18px; margin: 0; }
.mmh-left-wrap .itin-body ul li { font-size: 13px; color: var(--muted); line-height: 1.7; margin-bottom: 5px; }
.mmh-left-wrap .itin-alt { display: inline-flex; align-items: center; gap: 8px; background: var(--yellow-light); border-radius: 7px; padding: 7px 13px; margin-top: 11px; }
.mmh-left-wrap .itin-alt i { color: var(--yellow); }
.mmh-left-wrap .itin-alt span { font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; color: var(--black); }

/* ─── INCLUSIONS / EXCLUSIONS ─── */
.mmh-left-wrap .ie-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.mmh-left-wrap .ie-col h3 { font-family: 'Montserrat', sans-serif; font-weight: 800; font-size: 13px; color: var(--black); margin-bottom: 14px; display: flex; align-items: center; gap: 8px; }
.mmh-left-wrap .ie-col.inc h3 i { color: #22c55e; }
.mmh-left-wrap .ie-col.exc h3 i { color: #ef4444; }
.mmh-left-wrap .ie-list { list-style: none; display: flex; flex-direction: column; gap: 9px; padding: 0; margin: 0; }
.mmh-left-wrap .ie-list li { display: flex; align-items: flex-start; gap: 9px; font-size: 13px; color: var(--muted); line-height: 1.6; }
.mmh-left-wrap .ie-ic { flex-shrink: 0; margin-top: 3px; font-size: 10px; }
.mmh-left-wrap .inc .ie-ic { color: #22c55e; }
.mmh-left-wrap .exc .ie-ic { color: #ef4444; }

/* ─── CARRY ─── */
.mmh-left-wrap .carry-tabs { display: flex; gap: 7px; flex-wrap: wrap; margin-bottom: 18px; }
.mmh-left-wrap .ctab { padding: 7px 16px; border-radius: 999px; font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; border: 1.5px solid #ddd; background: #fff; color: #777; transition: all .2s; letter-spacing: .4px; text-transform: uppercase; }
.mmh-left-wrap .ctab.active, .mmh-left-wrap .ctab:hover { background: var(--yellow); border-color: var(--yellow); color: var(--black); }
.mmh-left-wrap .carry-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 11px; }
.mmh-left-wrap .carry-item { display: flex; align-items: center; gap: 9px; padding: 11px 13px; border-radius: 9px; border: 1.5px solid #eee; background: #fff; font-size: 12.5px; color: var(--text); font-weight: 500; transition: border-color .2s; }
.mmh-left-wrap .carry-item:hover { border-color: var(--yellow); }
.mmh-left-wrap .carry-item i { color: var(--yellow); font-size: 13px; flex-shrink: 0; }

/* ─── DATES ─── */
.mmh-left-wrap .dates-wrap { display: flex; flex-direction: column; gap: 11px; }
.mmh-left-wrap .date-row { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; padding: 14px 18px; border-radius: 11px; border: 1.5px solid #eee; background: #fff; transition: all .22s; }
.mmh-left-wrap .date-row:hover { border-color: rgba(245,184,0,.4); box-shadow: 0 3px 14px rgba(0,0,0,.05); }
.mmh-left-wrap .date-badge { min-width: 60px; text-align: center; background: var(--yellow-light); border: 1px solid rgba(245,184,0,.25); border-radius: 9px; padding: 7px 9px; }
.mmh-left-wrap .db-m { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; color: var(--yellow); text-transform: uppercase; letter-spacing: 1px; }
.mmh-left-wrap .db-d { font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: var(--black); letter-spacing: 1px; line-height: 1; }
.mmh-left-wrap .date-info { flex: 1; min-width: 130px; }
.mmh-left-wrap .date-info h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 12.5px; color: var(--black); margin-bottom: 2px; }
.mmh-left-wrap .date-info p { font-size: 11.5px; color: #888; margin: 0; }
.mmh-left-wrap .ds { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; padding: 3px 9px; border-radius: 999px; letter-spacing: .4px; text-transform: uppercase; white-space: nowrap; }
.mmh-left-wrap .ds-o { background: rgba(34,197,94,.10); color: #16a34a; border: 1px solid rgba(34,197,94,.2); }
.mmh-left-wrap .ds-f { background: rgba(245,184,0,.12); color: #b45309; border: 1px solid rgba(245,184,0,.28); }
.mmh-left-wrap .ds-s { background: rgba(239,68,68,.10); color: #dc2626; border: 1px solid rgba(239,68,68,.2); }
.mmh-left-wrap .date-price { font-family: 'Bebas Neue', sans-serif; font-size: 21px; color: var(--black); letter-spacing: 1px; white-space: nowrap; }

/* ─── GEAR ─── */
.mmh-left-wrap .gear-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 13px; }
.mmh-left-wrap .gear-card { border-radius: 13px; overflow: hidden; border: 1.5px solid #eee; background: #fff; transition: all .22s; }
.mmh-left-wrap .gear-card:hover { border-color: rgba(245,184,0,.4); box-shadow: 0 7px 22px rgba(0,0,0,.07); transform: translateY(-3px); }
.mmh-left-wrap .gear-img { height: 315px; overflow: hidden; background: var(--grey); }
.mmh-left-wrap .gear-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s; }
.mmh-left-wrap .gear-card:hover .gear-img img { transform: scale(1.06); }
.mmh-left-wrap .gear-info { padding: 11px 13px; }
.mmh-left-wrap .gear-info h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 11.5px; color: var(--black); margin-bottom: 4px; }
.mmh-left-wrap .gear-p { font-family: 'Bebas Neue', sans-serif; font-size: 17px; color: var(--yellow); letter-spacing: 1px; }
.mmh-left-wrap .gear-per { font-family: 'Montserrat', sans-serif; font-size: 10px; color: #999; font-weight: 600; }

/* ─── GALLERY ─── */
.mmh-left-wrap .gal-mosaic { display: grid; grid-template-columns: repeat(4,1fr); grid-template-rows: 175px 175px; gap: 9px; }
.mmh-left-wrap .gm-item { border-radius: 9px; overflow: hidden; position: relative; cursor: pointer; }
.mmh-left-wrap .gm-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.mmh-left-wrap .gm-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.mmh-left-wrap .gm-item:hover img { transform: scale(1.08); }
.mmh-left-wrap .gm-item::after { content: ''; position: absolute; inset: 0; background: rgba(245,184,0,0); transition: .3s; }
.mmh-left-wrap .gm-item:hover::after { background: rgba(245,184,0,.14); }
.mmh-left-wrap .gm-more-ov { position: absolute; inset: 0; background: rgba(0,0,0,.65); border-radius: 9px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 3px; }
.mmh-left-wrap .gm-more-ov span { font-family: 'Bebas Neue', sans-serif; font-size: 26px; color: #fff; letter-spacing: 2px; }
.mmh-left-wrap .gm-more-ov small { font-family: 'Montserrat', sans-serif; font-size: 10px; font-weight: 700; color: var(--yellow); text-transform: uppercase; letter-spacing: 1.5px; }

/* ─── LIGHTBOX ─── */
.mmh-left-wrap .mmh-lightbox { position: fixed; inset: 0; z-index: 10000; background: rgba(0,0,0,.94); display: none; align-items: center; justify-content: center; padding: 28px; }
.mmh-left-wrap .mmh-lightbox.open { display: flex; }
.mmh-left-wrap .mmh-lb-wrap { position: relative; width: min(1100px,100%); height: min(84vh,760px); display: flex; align-items: center; justify-content: center; }
.mmh-left-wrap .mmh-lb-img { max-width: 100%; max-height: 100%; object-fit: contain; border-radius: 14px; box-shadow: 0 18px 55px rgba(0,0,0,.35); }
.mmh-left-wrap .mmh-lb-close, .mmh-left-wrap .mmh-lb-prev, .mmh-left-wrap .mmh-lb-next { position: absolute; border: none; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all .22s ease; }
.mmh-left-wrap .mmh-lb-close { top: -52px; right: 0; width: 42px; height: 42px; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; font-size: 18px; }
.mmh-left-wrap .mmh-lb-close:hover { background: var(--yellow); color: var(--black); }
.mmh-left-wrap .mmh-lb-prev, .mmh-left-wrap .mmh-lb-next { top: 50%; transform: translateY(-50%); width: 52px; height: 52px; border-radius: 50%; background: rgba(255,255,255,.12); color: #fff; font-size: 18px; backdrop-filter: blur(8px); }
.mmh-left-wrap .mmh-lb-prev:hover, .mmh-left-wrap .mmh-lb-next:hover { background: var(--yellow); color: var(--black); }
.mmh-left-wrap .mmh-lb-prev { left: -70px; }
.mmh-left-wrap .mmh-lb-next { right: -70px; }
.mmh-left-wrap .mmh-lb-count { position: absolute; left: 0; bottom: -44px; background: rgba(255,255,255,.12); color: #fff; font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; padding: 8px 14px; border-radius: 999px; }

/* ─── POLICY ─── */
.mmh-left-wrap .ptabs { display: flex; gap: 9px; margin-bottom: 20px; flex-wrap: wrap; }
.mmh-left-wrap .ptab { padding: 9px 18px; border-radius: 999px; border: 1.5px solid #ddd; font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; transition: all .2s; background: #fff; color: #777; text-transform: uppercase; letter-spacing: .4px; }
.mmh-left-wrap .ptab.active { background: var(--black); border-color: var(--black); color: #fff; }
.mmh-left-wrap .pcont { display: none; }
.mmh-left-wrap .pcont.active { display: block; }
.mmh-left-wrap .ptable { width: 100%; border-collapse: collapse; border-radius: 11px; overflow: hidden; font-size: 13px; }
.mmh-left-wrap .ptable th { background: var(--black); color: #fff; font-family: 'Montserrat', sans-serif; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: .4px; padding: 11px 15px; text-align: left; }
.mmh-left-wrap .ptable td { padding: 12px 15px; border-bottom: 1px solid #eee; color: var(--muted); }
.mmh-left-wrap .ptable tr:last-child td { border-bottom: none; }
.mmh-left-wrap .ptable tr:hover td { background: var(--grey); }
.mmh-left-wrap .p-note { background: var(--yellow-light); border: 1px solid rgba(245,184,0,.25); border-radius: 9px; padding: 13px 15px; margin-top: 14px; font-size: 13px; color: var(--black); display: flex; gap: 9px; }
.mmh-left-wrap .p-note i { color: var(--yellow); flex-shrink: 0; margin-top: 2px; }
.mmh-left-wrap .bsteps { display: flex; flex-direction: column; gap: 12px; }
.mmh-left-wrap .bstep { display: flex; align-items: flex-start; gap: 13px; padding: 14px; border: 1.5px solid #eee; border-radius: 11px; }
.mmh-left-wrap .bstep-n { width: 32px; height: 32px; border-radius: 50%; background: var(--yellow); display: flex; align-items: center; justify-content: center; font-family: 'Bebas Neue', sans-serif; font-size: 17px; color: var(--black); flex-shrink: 0; }
.mmh-left-wrap .bstep-t h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 12.5px; color: var(--black); margin-bottom: 3px; }
.mmh-left-wrap .bstep-t p { font-size: 12.5px; color: var(--muted); margin: 0; }

/* ─── FAQ ─── */
.mmh-left-wrap .faq-list { display: flex; flex-direction: column; gap: 9px; }
.mmh-left-wrap .faq-item { border: 1.5px solid #eee; border-radius: 11px; overflow: hidden; transition: border-color .2s; }
.mmh-left-wrap .faq-item.open { border-color: rgba(245,184,0,.4); }
.mmh-left-wrap .faq-q { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px; cursor: pointer; gap: 14px; }
.mmh-left-wrap .faq-q h4 { font-family: 'Montserrat', sans-serif; font-weight: 700; font-size: 13.5px; color: var(--black); line-height: 1.4; margin: 0; }
.mmh-left-wrap .faq-ico { width: 27px; height: 27px; border-radius: 50%; background: var(--grey); display: flex; align-items: center; justify-content: center; font-size: 10px; color: #666; flex-shrink: 0; transition: all .22s; }
.mmh-left-wrap .faq-item.open .faq-ico { background: var(--yellow); color: var(--black); transform: rotate(180deg); }
.mmh-left-wrap .faq-a { display: none; padding: 0 18px 16px; }
.mmh-left-wrap .faq-item.open .faq-a { display: block; }
.mmh-left-wrap .faq-a p { font-size: 13px; color: var(--muted); line-height: 1.8; margin: 0; }

/* ═══════════════════════════════════════════════
   RELATED TREKS SLIDER
═══════════════════════════════════════════════ */
.mmh-related-only, .mmh-related-only * { box-sizing: border-box; }
.mmh-related-only { --yellow: #F5B800; --black: #0e0e0e; --text: #333; width: 100%; max-width: 1400px; margin: 0 auto; font-family: 'Montserrat', sans-serif; overflow: hidden; }
.mmh-related-only .section-label { font-size: 11px; font-weight: 700; letter-spacing: 2.5px; color: var(--yellow); text-transform: uppercase; display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.mmh-related-only .section-label::before { content: '—'; }
.mmh-related-only .section-title { font-family: 'Bebas Neue', sans-serif; font-size: clamp(30px,4vw,48px); color: var(--black); letter-spacing: 2px; line-height: 1.05; margin: 0; }
.mmh-related-only .section-title span { color: var(--yellow); }
.mmh-related-only .t-sec-head { display: flex; align-items: center; justify-content: space-between; gap: 20px; margin-bottom: 22px; }
.mmh-related-only .head-left { display: flex; flex-direction: column; min-width: 0; }
.mmh-related-only .related-nav { display: flex; align-items: center; justify-content: flex-end; gap: 10px; margin: 0; flex-shrink: 0; }
.mmh-related-only .related-btn { width: 42px; height: 42px; border-radius: 50%; border: none; background: #fff; color: var(--black); box-shadow: 0 6px 18px rgba(0,0,0,.10); display: flex; align-items: center; justify-content: center; font-size: 14px; cursor: pointer; transition: all .22s; }
.mmh-related-only .related-btn:hover { background: var(--yellow); transform: translateY(-2px); }
.mmh-related-only .related-btn.disabled { opacity: .4; pointer-events: none; }
.mmh-related-only .related-slider-wrap { position: relative; width: 100%; overflow: hidden; }
.mmh-related-only .related-track { display: flex; gap: 16px; transition: transform .45s ease; will-change: transform; }
.mmh-related-only .rel-slide { min-width: calc((100% - 48px) / 4); max-width: calc((100% - 48px) / 4); flex: 0 0 calc((100% - 48px) / 4); }
.mmh-related-only .rel-card { border-radius: 14px; overflow: hidden; position: relative; text-decoration: none; display: block; transition: transform .3s, box-shadow .3s; }
.mmh-related-only .rel-card:hover { transform: translateY(-5px); box-shadow: 0 18px 40px rgba(0,0,0,.14); }
.mmh-related-only .rel-img { height: 340px; overflow: hidden; position: relative; }
.mmh-related-only .rel-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.mmh-related-only .rel-card:hover .rel-img img { transform: scale(1.07); }
.mmh-related-only .rel-img::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to top,rgba(0,0,0,.85),rgba(0,0,0,.15) 55%,transparent 100%); }
.mmh-related-only .rel-info { position: absolute; bottom: 0; left: 0; right: 0; padding: 16px 15px; z-index: 2; }
.mmh-related-only .rel-region { font-size: 9px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: var(--yellow); margin-bottom: 4px; }
.mmh-related-only .rel-name { font-family: 'Bebas Neue', sans-serif; font-size: 22px; color: #fff; letter-spacing: 1px; line-height: 1; }
.mmh-related-only .rel-meta { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }
.mmh-related-only .rel-meta span { font-size: 10px; font-weight: 600; color: rgba(255,255,255,.78); display: flex; align-items: center; gap: 4px; }
.mmh-related-only .rel-meta i { color: var(--yellow); font-size: 9px; }
.mmh-related-only .related-dots { display: none; justify-content: center; gap: 8px; margin-top: 16px; }
.mmh-related-only .related-dot { width: 8px; height: 8px; border-radius: 50%; background: #d9d9d9; border: none; padding: 0; transition: all .22s; cursor: pointer; }
.mmh-related-only .related-dot.active { width: 24px; border-radius: 999px; background: var(--yellow); }

/* ═══════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .mmh-related-only .rel-slide { min-width: calc((100% - 16px) / 2); max-width: calc((100% - 16px) / 2); flex: 0 0 calc((100% - 16px) / 2); }
  .mmh-related-only .rel-img { height: 220px; }
}

@media (max-width: 767px) {
  .mmh-left-wrap #sectionTabs { margin-bottom: 26px; }
  .mmh-left-wrap .st-btn { padding: 0 14px; font-size: 10px; }
  .mmh-left-wrap .ov-grid,
  .mmh-left-wrap .hl-grid,
  .mmh-left-wrap .ie-grid { grid-template-columns: 1fr; }
  .mmh-left-wrap .carry-grid { grid-template-columns: 1fr 1fr; }
  .mmh-left-wrap .gear-grid { grid-template-columns: 1fr 1fr; }
  .mmh-left-wrap .gal-mosaic { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .mmh-left-wrap .gm-item { height: 115px; }
  .mmh-left-wrap .gm-item:nth-child(1) { grid-column: span 2; height: 155px; grid-row: span 1; }
  .mmh-left-wrap .t-sec { margin-bottom: 54px; scroll-margin-top: 64px; }
  .mmh-left-wrap .mmh-lightbox { padding: 14px; }
  .mmh-left-wrap .mmh-lb-wrap { height: min(78vh,620px); }
  .mmh-left-wrap .mmh-lb-close { top: 70px; width: 38px; height: 38px; font-size: 16px; }
  .mmh-left-wrap .mmh-lb-prev, .mmh-left-wrap .mmh-lb-next { width: 42px; height: 42px; font-size: 14px; top: auto; bottom: -54px; transform: none; }
  .mmh-left-wrap .mmh-lb-prev { left: 50%; margin-left: -48px; }
  .mmh-left-wrap .mmh-lb-next { right: 50%; margin-right: -48px; }
  .mmh-left-wrap .mmh-lb-count { left: 50%; transform: translateX(-50%); bottom: -108px; font-size: 10px; padding: 7px 12px; }
  .mmh-left-wrap .date-row { display: grid; grid-template-columns: 88px 1fr; grid-template-areas: "badge info" "price status"; align-items: center; column-gap: 16px; row-gap: 14px; padding: 16px; }
  .mmh-left-wrap .date-badge { grid-area: badge; min-width: unset; width: 88px; padding: 10px 8px; margin: 0; }
  .mmh-left-wrap .db-d { font-size: 30px; }
  .mmh-left-wrap .date-info { grid-area: info; }
  .mmh-left-wrap .date-price { grid-area: price; align-self: center; justify-self: start; font-size: 28px; line-height: 1; margin: 0; }
  .mmh-left-wrap .ds { grid-area: status; justify-self: end; align-self: center; font-size: 11px; padding: 8px 14px; }
  .mmh-related-only .t-sec-head { flex-direction: column; align-items: flex-start; }
  .mmh-related-only .related-nav { display: none !important; }
  .mmh-related-only .rel-slide { min-width: 100%; max-width: 100%; flex: 0 0 100%; }
  .mmh-related-only .rel-img { height: 320px; }
  .mmh-related-only .rel-name { font-size: 26px; }
  .mmh-related-only .related-dots { display: flex; }
}
