/** Shopify CDN: Minification failed

Line 18:15 Unexpected "*"
Line 18:67 Unterminated string token

**/
/*
  Minimal + Trust ("MT-1") modal layout
  Used by: modal-global-events.liquid, modal-large-events.liquid
  Pattern: left trust panel (reply badge, Google rating, next steps)
           + right minimal form (4 labeled fields + optional note).

  Built entirely on theme tokens from kraft-style.css:
  - Colors: --orange, --orange-dark, --yellow, --dark-color, --dark-color-60,
    --light-dark-color, --light-color, --light-gray-1, --dark-gray-4,
    --white-color, --template-yellow-* (warm tint family)
  - Type: --font-secondary (Playfair) for the quote, --step-*/--small-size
    scale, --fw* weights; labels use the theme's .form-label class.
  - Buttons/inputs/success states: base .form-control, .form-select,
    .kraft-modal-submit-btn, .kraft-modal-footer + modal-form-handler.js.
*/

.kraft-modal--mt .kraft-modal-box {
  max-width: 840px;
  padding: 0;
  overflow: hidden;
}

.kraft-modal--mt .kraft-modal-inner {
  display: block;
  grid-template-columns: 1fr;
  padding: 0;
}

.kraft-mt-wrap {
  display: flex;
  align-items: stretch;
}

/* ---------- Left trust panel ---------- */
.kraft-mt-panel {
  width: 46%;
  flex: none;
  background: var(--cg-paper-warm, #f2f0ed);
  padding: 32px 30px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.kraft-mt-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  width: fit-content;
  background: var(--cg-accent-wash-mid, rgba(249, 77, 0, 0.16));
  border: none;
  border-radius: 999px;
  padding: 8px 14px;
  font-size: var(--caption-size, 11px);
  font-weight: var(--fw-extrabold, 800);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--orange-dark, #e84900);
}

.kraft-mt-badge svg {
  flex: none;
}

.kraft-mt-rating {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.kraft-mt-stars {
  color: var(--yellow, #f2b705);
  letter-spacing: 2px;
  font-size: var(--step-0, 16px);
}

.kraft-mt-rating span:last-child {
  font-size: var(--small-size, 13px);
  line-height: var(--small-line, 1.45);
  color: var(--dark-color-60, rgba(30, 36, 32, 0.6));
}

.kraft-mt-quote {
  font-family: var(--font-secondary, serif);
  font-size: var(--step-1, 19px);
  line-height: 1.45;
  color: var(--dark-color, #1e2420);
  margin: 0;
}

.kraft-mt-quote-author {
  font-size: var(--small-size, 13px);
  color: var(--dark-color-60, rgba(30, 36, 32, 0.6));
  margin: 6px 0 0;
}

.kraft-mt-trustline {
  font-size: var(--small-size, 13px);
  line-height: var(--small-line, 1.45);
  color: var(--dark-color-60, rgba(30, 36, 32, 0.6));
  margin: 0;
}

.kraft-mt-steps {
  list-style: none;
  counter-reset: kraft-mt-step;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: auto 0 0;
  padding: 0;
}

.kraft-mt-steps li {
  counter-increment: kraft-mt-step;
  display: flex;
  gap: 11px;
  align-items: flex-start;
  font-size: var(--small-size, 13px);
  line-height: var(--small-line, 1.45);
  color: var(--light-dark-color, #3d3d47);
}

.kraft-mt-steps li::before {
  content: counter(kraft-mt-step);
  flex: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--white-color, #fff);
  border: 1px solid var(--cg-border, rgba(0, 0, 0, 0.09));
  font-size: var(--caption-size, 11px);
  font-weight: var(--fw700, 700);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange, #f94d00);
}

.kraft-mt-steps li b {
  color: var(--dark-color, #1e2420);
  font-weight: var(--fw600, 600);
}

/* ---------- Right form column ---------- */
.kraft-modal--mt .kraft-modal-form {
  flex: 1;
  min-width: 0;
  padding: 28px 32px;
}

.kraft-mt-field {
  margin-bottom: 14px;
}

.kraft-mt-optional {
  color: var(--dark-gray-4, #858585);
  font-weight: var(--fw400, 400);
}

.kraft-mt-row2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.kraft-mt-addnote {
  background: none;
  border: none;
  font-family: var(--font-primary, inherit);
  font-size: var(--small-size, 13px);
  font-weight: var(--fw600, 600);
  color: var(--orange-dark, #e84900);
  cursor: pointer;
  padding: 2px 0;
  margin: 0 0 14px;
  transition: var(--transition, all 0.3s ease);
}

.kraft-mt-addnote:hover {
  text-decoration: underline;
}

.kraft-mt-note {
  display: none;
}

.kraft-mt-note.is-open {
  display: block;
}

/* ---------- Primary CTA — the theme's own jx-btn pattern ----------
   Markup (identical to hero buttons / cohort wizard, arrow INSIDE):
   <div class="jx-btn jx-btn--black jx-btn--medium kraft-modal-submit-wrap">
     <button type="submit" class="kraft-modal-submit-btn">
       <span>…</span><div class="jx-btn-arrow"><svg…></div>
     </button>
   </div>
   kraft-style.css already styles .jx-btn button + .jx-btn-arrow (white
   circle, hover flood + rotate). Only width/label layout is adjusted here. */
/* (Submit-wrap button rules now live in kraft-style.css so every modal —
   including legacy snippets that don't load this file — shares them.) */

.kraft-mt-micro {
  font-size: var(--small-size, 13px);
  color: var(--dark-gray-4, #858585);
  text-align: center;
  margin: 12px 0 0;
}

/* ---------- Location contact modal — MT restyle ---------- */
.kraft-modal--location .kraft-modal-box {
  padding: 0;
  overflow: hidden;
}

.kraft-modal--location .kraft-modal-inner {
  gap: 0;
  padding: 0;
}

.kraft-modal--location .kraft-modal-location-info {
  background: var(--cg-paper-warm, #f2f0ed);
  border-radius: 0;
  justify-content: flex-start;
}

.kraft-modal--location .kraft-modal-location-info-inner {
  gap: 16px;
}

.kraft-modal--location .kraft-modal-location-name {
  font-size: var(--step-2, 23px);
  font-weight: var(--fw600, 600);
  color: var(--dark-color, #1e2420);
  margin-bottom: 0;
}

.kraft-mt-locrating {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: -6px 0 2px;
}

.kraft-mt-locrating .kraft-mt-stars {
  font-size: var(--small-size, 13px);
}

.kraft-mt-locrating span:last-child {
  font-size: var(--small-size, 13px);
  color: var(--dark-color-60, rgba(30, 36, 32, 0.6));
}

.kraft-modal--location .kraft-modal-location-label {
  font-size: var(--small-size, 13px);
  font-weight: var(--fw600, 600);
  color: var(--dark-color-60, rgba(30, 36, 32, 0.6));
  text-transform: none;
  letter-spacing: 0;
  margin-bottom: 2px;
}

.kraft-modal--location .kraft-modal-location-value {
  font-size: var(--step-0, 16px);
  color: var(--dark-color, #1e2420);
}

.kraft-modal--location .kraft-modal-location-hours-item {
  background: var(--white-color, #fff);
  border: 1px solid var(--cg-border-soft, rgba(0, 0, 0, 0.06));
  border-radius: 10px;
  padding: 12px;
  gap: 3px;
}

.kraft-modal--location .kraft-modal-location-hours-type {
  font-size: var(--caption-size, 11px);
  color: var(--dark-color-60, rgba(30, 36, 32, 0.6));
}

.kraft-modal--location .kraft-modal-location-hours-time {
  font-size: var(--step-0, 16px);
  font-weight: var(--fw600, 600);
  color: var(--dark-color, #1e2420);
}

.kraft-modal--location .kraft-modal-form {
  padding: 28px 32px;
}

/* ---------- Step-by-step booking modal (kraft-global-modal) ----------
   Same pattern as the cohort/host wizards: progress bar, "Step x of y",
   two short steps, jx-btn Continue. Everything else is base theme classes. */
.kraft-modal--steps .kraft-modal-box {
  max-width: 560px;
}

.kraft-modal--steps .kraft-modal-inner {
  display: block;
  grid-template-columns: 1fr;
}

.kraft-steps-progress {
  height: 4px;
  background: var(--light-gray-2, #e7e7e7);
  border-radius: 2px;
  overflow: hidden;
}

.kraft-steps-bar {
  height: 100%;
  width: 50%;
  background: var(--orange, #f94d00);
  transition: width 0.3s ease;
}

.kraft-steps-count {
  font-size: var(--small-size, 13px);
  color: var(--dark-gray-4, #858585);
  margin: 6px 0 18px;
}

.kraft-step[hidden] {
  display: none;
}

.kraft-steps-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
}

.kraft-steps-nav .kraft-modal-submit-wrap {
  width: auto;
  flex: 1;
}

.kraft-steps-back {
  background: none;
  border: none;
  font-family: var(--font-primary);
  font-size: var(--size14, 14px);
  color: var(--dark-color-60, rgba(30, 36, 32, 0.6));
  cursor: pointer;
  padding: 8px 4px;
}

.kraft-steps-back:hover {
  color: var(--dark-color, #1e2420);
}

.kraft-steps-back[hidden],
.kraft-steps-nav [data-steps-submit][hidden],
.kraft-steps-nav [data-steps-next-wrap][hidden] {
  display: none;
}

/* ---------- Hero design language (cg-hero / corporate-gifts.css) ----------
   Warm paper, ink text, soft alpha borders, orange washes, extrabold
   uppercase labels — same vocabulary as the new hero sections. */
.kraft-modal--mt .kraft-modal-box,
.kraft-modal--steps .kraft-modal-box,
.kraft-modal--location .kraft-modal-box {
  border-radius: 20px;
  background: var(--cg-paper, var(--white-color, #fff));
}

.kraft-modal--mt .kraft-modal-title,
.kraft-modal--steps .kraft-modal-title,
.kraft-modal .kraft-modal-location-name {
  font-weight: var(--fw600, 600);
  letter-spacing: -0.01em;
  color: var(--cg-ink, #1f1f1f);
}

.kraft-mt-eyebrow {
  display: inline-block;
  background: var(--cg-accent-wash, rgba(249, 77, 0, 0.08));
  color: var(--orange-dark, #e84900);
  font-size: var(--caption-size, 11px);
  font-weight: var(--fw-extrabold, 800);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 999px;
  padding: 5px 12px;
  margin-bottom: 8px;
}

.kraft-modal .form-label {
  font-size: 12px;
  font-weight: var(--fw-extrabold, 800);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--cg-ink-soft, rgba(31, 31, 31, 0.66));
  margin-bottom: 6px;
}

.kraft-modal .form-label .kraft-mt-optional {
  text-transform: none;
  letter-spacing: 0;
  font-size: var(--small-size, 13px);
}

.kraft-modal--mt .form-control,
.kraft-modal--mt .form-select,
.kraft-modal--steps .form-control,
.kraft-modal--steps .form-select,
.kraft-modal--location .form-control,
.kraft-modal--location .form-select {
  border: 1px solid var(--cg-border, rgba(0, 0, 0, 0.09));
  border-radius: var(--cg-r-input, 10px);
  background: var(--white-color, #fff);
}

.kraft-modal--mt .form-control:focus,
.kraft-modal--mt .form-select:focus,
.kraft-modal--steps .form-control:focus,
.kraft-modal--steps .form-select:focus,
.kraft-modal--location .form-control:focus,
.kraft-modal--location .form-select:focus {
  border-color: var(--orange, #f94d00);
  box-shadow: 0 0 0 3px var(--cg-accent-wash, rgba(249, 77, 0, 0.08));
  outline: none;
}

.kraft-mt-micro,
.kraft-mt-trustline {
  color: var(--cg-ink-faint, rgba(31, 31, 31, 0.44));
}

/* ---------- Responsive ---------- */
@media (max-width: 760px) {
  .kraft-mt-wrap {
    flex-direction: column;
  }

  .kraft-mt-panel {
    width: 100%;
    order: 2;
    padding: 24px 22px;
    gap: 14px;
  }

  .kraft-modal--mt .kraft-modal-form {
    order: 1;
    padding: 22px 20px;
  }

  .kraft-mt-row2 {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .kraft-mt-row2 > .kraft-mt-field {
    margin-bottom: 14px;
  }
}
