/* =====================================================================
   KOHWAN — My Trip (js/my-trip.js): the floating button, the side panel,
   the "added" note, the Add to My Trip buttons and the Review Booking page.
   One sheet for every page, loaded from partials/head. Prefix .mt-.
   ===================================================================== */
:root {
  --mt-navy: var(--brand-navy, #2e4755);
  --mt-navy-deep: var(--brand-navy-dark, #233845);
  --mt-gold: var(--brand-gold, #BD830D);
  --mt-gold-deep: #9c6b09;
  --mt-paper: #FAF8F3;
  --mt-card: #ffffff;
  --mt-line: #ece6d8;
  --mt-soft: #f4efe4;
  --mt-text: #3d5361;
  --mt-muted: #7c8c95;
  --mt-danger: #b3261e;
  --mt-radius: 16px;
  --mt-ease: cubic-bezier(.22, .61, .36, 1);
  --mt-shadow: 0 24px 60px rgba(35, 56, 69, .28);
}

html.mt-locked, html.mt-locked body { overflow: hidden; }

/* ------------------------------------------------------ shared buttons */
.mt-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  min-height: 50px; padding: 0 22px; border-radius: 12px; border: 0;
  font: inherit; font-weight: 700; font-size: 1rem; letter-spacing: .01em;
  text-decoration: none; cursor: pointer;
  transition: background-color .2s var(--mt-ease), transform .2s var(--mt-ease), box-shadow .2s var(--mt-ease);
}
.mt-btn svg { width: 18px; height: 18px; flex: none; }
.mt-btn--primary { background: var(--mt-gold); color: #fff; box-shadow: 0 10px 24px rgba(189, 131, 13, .32); }
.mt-btn--primary:hover { background: var(--mt-gold-deep); color: #fff; transform: translateY(-1px); }
.mt-btn--navy { background: var(--mt-navy); color: #fff; }
.mt-btn--navy:hover { background: var(--mt-navy-deep); color: #fff; }
.mt-btn--line { background: transparent; color: var(--mt-navy); box-shadow: inset 0 0 0 1.5px var(--mt-navy); }
.mt-btn--line:hover { background: var(--mt-navy); color: #fff; }
.mt-btn--block { display: flex; width: 100%; }
.mt-btn:focus-visible, .mt-link:focus-visible, .mt-iconbtn:focus-visible, .mt-add:focus-visible,
.mt-step button:focus-visible, .mt-line__remove:focus-visible, .mt-launch:focus-visible {
  outline: 3px solid rgba(189, 131, 13, .55); outline-offset: 2px;
}
.mt-btn.is-busy { opacity: .75; pointer-events: none; }

.mt-link {
  background: none; border: 0; padding: 6px 2px; font: inherit; font-size: .9rem; font-weight: 600;
  color: var(--mt-navy); cursor: pointer; text-decoration: underline; text-underline-offset: 3px;
}
.mt-link--danger { color: var(--mt-danger); }
.mt-iconbtn {
  width: 40px; height: 40px; flex: none; display: grid; place-items: center; border-radius: 50%;
  border: 0; background: var(--mt-soft); color: var(--mt-navy); cursor: pointer;
  transition: background-color .2s var(--mt-ease);
}
.mt-iconbtn:hover { background: #ebe3d2; }
.mt-iconbtn svg { width: 20px; height: 20px; }
.mt-eyebrow { margin: 0 0 2px; font-size: .72rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--mt-gold); }

/* ------------------------------------------------ "Add to My Trip" button
   <button class="mt-add" data-trip-add data-mt-toggle …>
     <span class="mt-add__off">+ Add to My Trip</span><span class="mt-add__on">✓ In My Trip</span>
   </button> — the script sets .is-in when the item is in the trip. */
.mt-add {
  position: relative; z-index: 3;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 42px; padding: 0 16px; border-radius: 999px; border: 0;
  background: var(--mt-navy); color: #fff;
  font: inherit; font-size: .9rem; font-weight: 700; line-height: 1; white-space: nowrap;
  cursor: pointer; text-decoration: none;
  transition: background-color .2s var(--mt-ease), color .2s var(--mt-ease), box-shadow .2s var(--mt-ease), transform .2s var(--mt-ease);
}
.mt-add:hover { background: var(--mt-navy-deep); color: #fff; transform: translateY(-1px); }
.mt-add svg { width: 17px; height: 17px; flex: none; }
.mt-add__on { display: none; }
.mt-add.is-in { background: #e9f3ec; color: #1f6b3a; box-shadow: inset 0 0 0 1.5px #9fcfae; }
.mt-add.is-in .mt-add__off { display: none; }
.mt-add.is-in .mt-add__on { display: inline-flex; align-items: center; gap: 8px; }
.mt-add.is-in:hover { background: #fdecea; color: var(--mt-danger); box-shadow: inset 0 0 0 1.5px #f1b5ae; }
.mt-add.is-in:hover .mt-add__on b { display: none; }
.mt-add__on i { display: none; font-style: normal; }
.mt-add.is-in:hover .mt-add__on i { display: inline; }
.mt-add__x { display: none; }
.mt-add--gold { background: var(--mt-gold); }
.mt-add--gold:hover { background: var(--mt-gold-deep); }
.mt-add--line { background: #fff; color: var(--mt-navy); box-shadow: inset 0 0 0 1.5px var(--mt-navy); }
.mt-add--line:hover { background: var(--mt-navy); color: #fff; }
.mt-add--block { display: flex; width: 100%; min-height: 48px; border-radius: 12px; font-size: .98rem; }
.mt-add--sm { min-height: 36px; padding: 0 13px; font-size: .82rem; }
.mt-add.is-added, .is-added > .mt-add { animation: mt-pop .5s var(--mt-ease); }

/* Over a card's photo, above the card's whole-card link. */
.mt-over { position: absolute; z-index: 4; top: 20px; right: 20px; }
.mt-add--float { background: rgba(255, 255, 255, .96); color: var(--mt-navy); box-shadow: 0 6px 18px rgba(20, 33, 41, .22); }
.mt-add--float:hover { background: var(--mt-navy); color: #fff; }
.mt-add--float.is-in { background: #e9f3ec; }
/* Beside a card's own call to action. */
.mt-inline { display: flex; flex-wrap: wrap; gap: 8px; align-items: center; }
/* Activities "best value" cards: stacked under "Discover Now", full width. */
.axp-deal .mt-inline { flex-direction: column; align-items: stretch; gap: 8px; }
.axp-deal .mt-inline .mt-add { width: 100%; min-height: 40px; border-radius: 10px; }
/* Package page: the buy box's main action, above "Send Enquiry". */
.pkd-buy .pkd-buy__trip { margin: 14px 0 10px; }
/* Stay, car and activity pages: under "Reserve" in the booking card. */
.lst-book .lst-trip { margin-top: 10px; min-height: 48px; border-radius: 8px; }
/* Ski pages. */
.skt-row__cta .skt-trip, .skt-hero__cta .skt-trip { min-height: 46px; border-radius: 999px; }
.skd-card__trip { margin: 10px 0 0; }
.skpk-card__trip { margin: 12px 0 4px; }
/* Hotels list: under "See availability", matching its width. */
.stc__side .stc__trip { border-radius: 8px; }
@media (max-width: 900px) { .stc__side { flex-wrap: wrap; } }
@keyframes mt-pop { 0% { transform: scale(1); } 40% { transform: scale(1.06); } 100% { transform: scale(1); } }
@media (hover: none) {
  /* No hover on touch: the added state simply reads "In My Trip ×". */
  .mt-add.is-in:hover { background: #e9f3ec; color: #1f6b3a; box-shadow: inset 0 0 0 1.5px #9fcfae; }
  .mt-add.is-in:hover .mt-add__on b { display: inline; }
  .mt-add.is-in .mt-add__on i, .mt-add.is-in:hover .mt-add__on i { display: none; }
  .mt-add.is-in .mt-add__x { display: block; width: 15px; height: 15px; margin-left: 2px; opacity: .75; }
}

/* ------------------------------------------------------ floating button */
.mt-launch {
  position: fixed; right: 22px; bottom: 96px; z-index: 945;
  display: flex; align-items: center; gap: 12px;
  padding: 9px 20px 9px 9px; border: 0; border-radius: 999px;
  background: var(--mt-navy); color: #fff; box-shadow: var(--mt-shadow);
  font: inherit; cursor: pointer; text-align: left;
  transition: transform .25s var(--mt-ease), background-color .2s var(--mt-ease);
  animation: mt-rise .45s var(--mt-ease);
}
.mt-launch[hidden] { display: none; }
.mt-launch:hover { background: var(--mt-navy-deep); transform: translateY(-2px); }
.mt-launch.is-bump { animation: mt-bump .55s var(--mt-ease); }
.mt-launch__ic { position: relative; width: 44px; height: 44px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--mt-gold); }
.mt-launch__ic svg { width: 22px; height: 22px; }
.mt-launch__ic i {
  position: absolute; top: -4px; right: -6px; min-width: 22px; height: 22px; padding: 0 6px;
  display: grid; place-items: center; border-radius: 999px; background: #fff; color: var(--mt-navy);
  font-style: normal; font-size: .74rem; font-weight: 800; box-shadow: 0 2px 8px rgba(0, 0, 0, .18);
}
.mt-launch__txt { display: flex; flex-direction: column; line-height: 1.15; }
.mt-launch__txt b { font-size: .98rem; font-weight: 700; }
.mt-launch__txt small { font-size: .84rem; font-weight: 600; color: #f3dca8; }
@keyframes mt-rise { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: none; } }
@keyframes mt-bump { 0%, 100% { transform: none; } 35% { transform: scale(1.08); } 65% { transform: scale(.97); } }

/* ------------------------------------------------------------ side panel */
.mt-drawer { position: fixed; inset: 0; z-index: 10050; }
.mt-drawer[hidden] { display: none; }
.mt-drawer__scrim { position: absolute; inset: 0; background: rgba(24, 38, 47, .55); backdrop-filter: blur(2px); opacity: 0; transition: opacity .25s var(--mt-ease); }
.mt-drawer__panel {
  position: absolute; top: 0; right: 0; bottom: 0; width: min(440px, 100%);
  display: flex; flex-direction: column; background: var(--mt-paper); color: var(--mt-text);
  box-shadow: -20px 0 60px rgba(24, 38, 47, .25); outline: none;
  transform: translateX(100%); transition: transform .3s var(--mt-ease);
  padding-top: env(safe-area-inset-top, 0px);
}
.mt-drawer.is-open .mt-drawer__scrim { opacity: 1; }
.mt-drawer.is-open .mt-drawer__panel { transform: none; }
.mt-drawer__head { display: flex; align-items: flex-start; justify-content: space-between; gap: 12px; padding: 22px 22px 16px; border-bottom: 1px solid var(--mt-line); background: #fff; }
.mt-drawer__title { margin: 0; font-size: 1.45rem; font-weight: 800; color: var(--mt-navy); line-height: 1.2; }
.mt-drawer__title span { font-size: .9rem; font-weight: 600; color: var(--mt-muted); }
.mt-drawer__body { flex: 1; overflow-y: auto; overscroll-behavior: contain; padding: 16px 18px; }
.mt-drawer__foot { padding: 16px 22px calc(18px + env(safe-area-inset-bottom, 0px)); border-top: 1px solid var(--mt-line); background: #fff; box-shadow: 0 -10px 30px rgba(35, 56, 69, .06); }
.mt-drawer__foot[hidden] { display: none; }
.mt-drawer__minor { display: flex; justify-content: space-between; gap: 10px; margin-top: 8px; }
.mt-total { display: flex; align-items: baseline; justify-content: space-between; gap: 10px; margin: 0; }
.mt-total span { font-size: .95rem; color: var(--mt-muted); font-weight: 600; }
.mt-total b { font-size: 1.6rem; font-weight: 800; color: var(--mt-navy); letter-spacing: -.01em; }
.mt-note { margin: 2px 0 14px; font-size: .8rem; line-height: 1.45; color: var(--mt-muted); }

/* ------------------------------------------------------------- one line */
.mt-lines { list-style: none; margin: 0; padding: 0; display: grid; gap: 12px; }
.mt-line {
  position: relative; display: grid; grid-template-columns: 76px minmax(0, 1fr); gap: 12px;
  padding: 12px; border-radius: var(--mt-radius); background: #fff; border: 1px solid var(--mt-line);
  transition: opacity .18s var(--mt-ease), transform .18s var(--mt-ease);
}
.mt-line.is-leaving { opacity: 0; transform: translateX(16px); }
.mt-line__img { width: 76px; height: 76px; border-radius: 12px; overflow: hidden; background: var(--mt-soft); display: grid; place-items: center; color: var(--mt-navy); }
.mt-line__img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mt-line__img svg { width: 30px; height: 30px; opacity: .55; }
.mt-line__main { min-width: 0; display: flex; flex-direction: column; gap: 2px; padding-right: 30px; }
.mt-line__kind { font-style: normal; font-size: .68rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--mt-gold); }
.mt-line__name { font-size: .98rem; line-height: 1.3; color: var(--mt-navy); overflow-wrap: anywhere; }
.mt-line__name a { color: inherit; text-decoration: none; }
.mt-line__name a:hover { text-decoration: underline; }
.mt-line__sub { font-size: .8rem; color: var(--mt-muted); line-height: 1.35; }
.mt-line__unit { font-size: .82rem; color: var(--mt-text); font-weight: 600; }
.mt-line__row { display: flex; align-items: center; justify-content: space-between; gap: 10px; margin-top: 8px; }
.mt-line__total { font-size: 1.02rem; color: var(--mt-navy); white-space: nowrap; }
.mt-line__remove {
  position: absolute; top: 8px; right: 8px; display: grid; place-items: center;
  width: 32px; height: 32px; border: 0; border-radius: 50%; background: transparent; color: var(--mt-muted); cursor: pointer;
  transition: background-color .2s var(--mt-ease), color .2s var(--mt-ease);
}
.mt-line__remove svg { width: 18px; height: 18px; }
.mt-line__remove span { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.mt-line__remove:hover { background: #fdecea; color: var(--mt-danger); }
.mt-line.is-pending .mt-line__unit, .mt-line.is-pending .mt-line__total { opacity: .6; }

.mt-step { display: inline-flex; align-items: center; border: 1px solid var(--mt-line); border-radius: 999px; background: var(--mt-paper); }
.mt-step button { width: 32px; height: 32px; display: grid; place-items: center; border: 0; background: none; color: var(--mt-navy); border-radius: 50%; cursor: pointer; }
.mt-step button:hover:not(:disabled) { background: #ece5d6; }
.mt-step button:disabled { opacity: .35; cursor: default; }
.mt-step button svg { width: 15px; height: 15px; }
.mt-step output { min-width: 26px; text-align: center; font-weight: 700; font-size: .92rem; color: var(--mt-navy); }

.mt-empty { text-align: center; padding: 36px 10px; }
.mt-empty[hidden] { display: none; }
.mt-empty__ic { width: 72px; height: 72px; margin: 0 auto 14px; display: grid; place-items: center; border-radius: 50%; background: #fff; color: var(--mt-gold); box-shadow: 0 8px 24px rgba(35, 56, 69, .08); }
.mt-empty__ic svg { width: 34px; height: 34px; }
.mt-empty b { display: block; font-size: 1.15rem; color: var(--mt-navy); }
.mt-empty p { margin: 6px auto 16px; max-width: 30ch; font-size: .9rem; line-height: 1.5; color: var(--mt-muted); }
.mt-empty__links { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px; }
.mt-empty__links a { padding: 8px 14px; border-radius: 999px; background: #fff; border: 1px solid var(--mt-line); color: var(--mt-navy); font-size: .85rem; font-weight: 600; text-decoration: none; }
.mt-empty__links a:hover { border-color: var(--mt-gold); color: var(--mt-gold-deep); }

/* ------------------------------------------------------------- the note */
.mt-toast {
  position: fixed; left: 50%; bottom: 28px; z-index: 10060;
  display: flex; align-items: center; gap: 10px; max-width: calc(100% - 32px);
  padding: 10px 12px 10px 12px; border-radius: 14px; background: var(--mt-navy-deep); color: #fff;
  box-shadow: var(--mt-shadow); font-size: .92rem; font-weight: 600;
  transform: translate(-50%, 20px); opacity: 0; transition: transform .3s var(--mt-ease), opacity .3s var(--mt-ease);
}
.mt-toast[hidden] { display: none; }
.mt-toast.is-in { transform: translate(-50%, 0); opacity: 1; }
.mt-toast > span:not(.mt-toast__ic) { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mt-toast__ic { width: 26px; height: 26px; flex: none; display: grid; place-items: center; border-radius: 50%; background: var(--mt-gold); }
.mt-toast__ic svg { width: 15px; height: 15px; }
.mt-toast__go { flex: none; margin-left: 4px; padding: 7px 12px; border-radius: 9px; border: 0; background: #fff; color: var(--mt-navy); font: inherit; font-size: .84rem; font-weight: 700; cursor: pointer; }

/* ---------------------------------------------------- phones and tablets */
@media (max-width: 760px) {
  .mt-launch { right: 12px; bottom: 84px; padding: 7px 16px 7px 7px; }
  .mt-launch__ic { width: 40px; height: 40px; }
  .mt-drawer__panel { width: 100%; }
  .mt-drawer__head { padding: 18px 16px 14px; }
  .mt-drawer__body { padding: 14px 12px; }
  .mt-drawer__foot { padding: 14px 16px calc(16px + env(safe-area-inset-bottom, 0px)); }
  .mt-line { grid-template-columns: 64px minmax(0, 1fr); gap: 10px; padding: 10px; }
  .mt-line__img { width: 64px; height: 64px; }
  .mt-toast { bottom: 18px; }
}
@media (prefers-reduced-motion: reduce) {
  .mt-launch, .mt-launch.is-bump, .mt-drawer__panel, .mt-drawer__scrim, .mt-toast, .mt-line, .mt-add { animation: none !important; transition: none !important; }
}
@media print { .mt-launch, .mt-drawer, .mt-toast { display: none !important; } }

/* ======================================================= REVIEW BOOKING */
.mtr { background: var(--mt-paper); color: var(--mt-text); padding: calc(var(--header-h, 80px) + 40px) 0 80px; }
.mtr-wrap { width: min(1180px, 100% - 40px); margin: 0 auto; }
.mtr-crumbs { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin: 0 0 14px; font-size: .86rem; color: var(--mt-muted); }
.mtr-crumbs a { color: var(--mt-navy); text-decoration: none; font-weight: 600; }
.mtr-steps { display: flex; flex-wrap: wrap; gap: 8px 22px; margin: 0 0 18px; padding: 0; list-style: none; font-size: .86rem; font-weight: 600; color: var(--mt-muted); }
.mtr-steps li { display: flex; align-items: center; gap: 8px; }
.mtr-steps i { width: 24px; height: 24px; display: grid; place-items: center; border-radius: 50%; background: #e9e2d2; color: var(--mt-navy); font-style: normal; font-size: .78rem; font-weight: 800; }
.mtr-steps .is-on { color: var(--mt-navy); }
.mtr-steps .is-on i { background: var(--mt-gold); color: #fff; }
.mtr-steps .is-done i { background: var(--mt-navy); color: #fff; }
.mtr-title { margin: 0 0 6px; font-size: clamp(1.8rem, 3.2vw, 2.5rem); font-weight: 800; color: var(--mt-navy); line-height: 1.15; }
.mtr-lead { margin: 0 0 28px; max-width: 64ch; font-size: 1.02rem; line-height: 1.6; }
.mtr-grid { display: grid; grid-template-columns: minmax(0, 1fr) 380px; gap: 28px; align-items: start; }
.mtr-card { background: #fff; border: 1px solid var(--mt-line); border-radius: 20px; padding: 22px; box-shadow: 0 10px 30px rgba(35, 56, 69, .05); }
.mtr-card + .mtr-card { margin-top: 20px; }
.mtr-h { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin: 0 0 16px; font-size: 1.2rem; font-weight: 800; color: var(--mt-navy); }
.mtr-h small { font-size: .88rem; font-weight: 600; color: var(--mt-muted); }
.mtr-status { margin: -8px 0 14px; font-size: .82rem; color: var(--mt-muted); }
.mt-line--review { grid-template-columns: 110px minmax(0, 1fr); padding: 14px; }
.mt-line--review .mt-line__img { width: 110px; height: 96px; }
.mtr-more { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 16px; }

.mtr-form { display: grid; gap: 14px; }
.mtr-two { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.mtr-field { display: grid; gap: 6px; margin: 0; }
.mtr-field label { font-size: .84rem; font-weight: 700; color: var(--mt-navy); }
.mtr-field label span { color: var(--mt-danger); }
.mtr-field input, .mtr-field textarea {
  width: 100%; min-height: 48px; padding: 11px 14px; border-radius: 12px; border: 1.5px solid #ddd5c4; background: #fff;
  font: inherit; font-size: 16px; color: var(--mt-navy); transition: border-color .2s var(--mt-ease), box-shadow .2s var(--mt-ease);
}
.mtr-field textarea { min-height: 96px; resize: vertical; }
.mtr-field input:focus, .mtr-field textarea:focus { outline: none; border-color: var(--mt-gold); box-shadow: 0 0 0 4px rgba(189, 131, 13, .15); }
.mtr-err { margin: 0 0 16px; padding: 12px 16px; border-radius: 12px; background: #fdecea; color: #8c1d18; font-size: .9rem; }
.mtr-err ul { margin: 0; padding-left: 18px; }

.mtr-side { position: sticky; top: calc(var(--header-h, 80px) + 20px); }
.mtr-sum-list { list-style: none; margin: 0 0 14px; padding: 0 0 14px; border-bottom: 1px dashed #ddd5c4; display: grid; gap: 10px; }
.mtr-sum-list li { display: flex; justify-content: space-between; gap: 12px; font-size: .9rem; line-height: 1.35; }
.mtr-sum-list li span { min-width: 0; }
.mtr-sum-list li i { font-style: normal; color: var(--mt-muted); }
.mtr-sum-list li b { white-space: nowrap; color: var(--mt-navy); }
.mtr-grand { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; margin: 0; }
.mtr-grand span { font-weight: 700; color: var(--mt-navy); }
.mtr-grand b { font-size: 1.9rem; font-weight: 800; color: var(--mt-navy); letter-spacing: -.01em; }
.mtr-quoted { margin: 4px 0 0; font-size: .84rem; font-weight: 600; color: var(--mt-gold-deep); text-align: right; }
.mtr-quoted[hidden] { display: none; }
.mtr-trust { list-style: none; margin: 18px 0 0; padding: 0; display: grid; gap: 9px; font-size: .85rem; line-height: 1.4; }
.mtr-trust li { display: flex; gap: 9px; align-items: flex-start; }
.mtr-trust svg { width: 17px; height: 17px; flex: none; margin-top: 1px; color: #1f8a4c; }
.mtr-empty { text-align: center; padding: 60px 20px; }
.mtr-empty[hidden] { display: none; }

/* the confirmation */
.mtr-done { max-width: 820px; margin: 0 auto; }
.mtr-done__tick { width: 76px; height: 76px; margin: 0 auto 16px; display: grid; place-items: center; border-radius: 50%; background: #e6f4ea; color: #1f8a4c; }
.mtr-done__tick svg { width: 38px; height: 38px; }
.mtr-done h1 { text-align: center; }
.mtr-done .mtr-lead { margin-left: auto; margin-right: auto; text-align: center; }
.mtr-ref { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 26px; margin: 0 0 22px; font-size: .95rem; }
.mtr-ref b { color: var(--mt-navy); }
.mtr-table { width: 100%; border-collapse: collapse; font-size: .92rem; }
.mtr-table th, .mtr-table td { padding: 11px 8px; border-bottom: 1px solid var(--mt-line); text-align: left; vertical-align: top; }
.mtr-table th { font-size: .74rem; letter-spacing: .08em; text-transform: uppercase; color: var(--mt-muted); }
.mtr-table td:last-child, .mtr-table th:last-child { text-align: right; white-space: nowrap; }
.mtr-table tfoot td { border-bottom: 0; font-weight: 800; color: var(--mt-navy); font-size: 1.05rem; }
.mtr-table small { display: block; color: var(--mt-muted); }
.mtr-actions { display: flex; flex-wrap: wrap; justify-content: center; gap: 12px; margin-top: 26px; }

@media (max-width: 1024px) {
  .mtr-grid { grid-template-columns: 1fr; }
  .mtr-side { position: static; }
}
@media (max-width: 600px) {
  .mtr { padding-top: calc(var(--header-h, 70px) + 24px); }
  .mtr-wrap { width: calc(100% - 32px); }
  .mtr-card { padding: 16px; border-radius: 16px; }
  .mtr-two { grid-template-columns: 1fr; }
  .mt-line--review { grid-template-columns: 76px minmax(0, 1fr); padding: 10px; }
  .mt-line--review .mt-line__img { width: 76px; height: 76px; }
  .mtr-table-wrap { overflow-x: auto; }
}
