:root {
  --jc-red: #d71920;
  --jc-red-dark: #a90f14;
  --jc-ink: #171717;
  --jc-muted: #6b6b6b;
  --jc-cream: #fff8ef;
  --jc-surface: #ffffff;
  --jc-line: #ece6df;
  --jc-soft: #f7f4f0;
  --jc-success: #16834a;
  --jc-warning: #b7791f;
  --jc-radius-sm: 12px;
  --jc-radius: 20px;
  --jc-radius-lg: 30px;
  --jc-shadow: 0 20px 60px rgba(38, 25, 18, 0.10);
  --jc-shadow-sm: 0 8px 28px rgba(38, 25, 18, 0.08);
}

body.jc-customer-site {
  background: var(--jc-surface);
  color: var(--jc-ink);
}

body.jc-customer-site a { color: inherit; }
body.jc-customer-site .section { padding: 72px 0; }
body.jc-customer-site .section-padding { padding: 72px 0; }

.jc-site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(0,0,0,.06);
}

.jc-nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.jc-nav-left, .jc-nav-actions, .jc-desktop-nav {
  display: flex;
  align-items: center;
}

.jc-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none !important;
  flex: 0 0 auto;
}

.jc-brand img { max-height: 48px; max-width: 170px; width: auto; }
.jc-brand-mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: inline-grid;
  place-items: center;
  background: var(--jc-red);
  color: #fff;
  font-weight: 800;
  letter-spacing: -.04em;
}
.jc-brand-text { font-weight: 800; font-size: 20px; color: var(--jc-ink); }

.jc-desktop-nav { gap: 24px; margin-left: auto; }
.jc-desktop-nav a {
  position: relative;
  color: #3e3a37 !important;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none !important;
  padding: 28px 0;
}
.jc-desktop-nav a::after {
  content: '';
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 18px;
  height: 2px;
  background: var(--jc-red);
  transition: .2s ease;
}
.jc-desktop-nav a:hover::after, .jc-desktop-nav a.active::after { right: 0; }
.jc-desktop-nav a.active { color: var(--jc-red) !important; }

.jc-nav-actions { gap: 10px; }
.jc-icon-button, .jc-cart-button, .jc-location-pill, .jc-account-button, .jc-mobile-location, .jc-text-link {
  border: 0;
  font: inherit;
  cursor: pointer;
}

.jc-icon-button {
  width: 42px;
  height: 42px;
  border-radius: 13px;
  display: inline-grid;
  place-items: center;
  color: var(--jc-ink);
  background: var(--jc-soft);
}

.jc-location-pill {
  min-width: 208px;
  max-width: 260px;
  display: grid;
  grid-template-columns: 36px minmax(0,1fr) 16px;
  align-items: center;
  gap: 9px;
  text-align: left;
  background: var(--jc-cream);
  border-radius: 16px;
  padding: 8px 12px 8px 9px;
}
.jc-location-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--jc-red);
  background: #fff;
}
.jc-location-copy { min-width: 0; display: flex; flex-direction: column; line-height: 1.15; }
.jc-location-copy small { color: var(--jc-muted); font-size: 10px; text-transform: uppercase; letter-spacing: .05em; }
.jc-location-copy strong { margin-top: 3px; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.jc-location-chevron { color: #8f8983; font-size: 10px; }

.jc-login-link, .jc-account-button {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border-radius: 13px;
  background: transparent;
  color: var(--jc-ink) !important;
  font-weight: 650;
  text-decoration: none !important;
}

.jc-cart-button {
  position: relative;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 14px;
  color: #fff;
  background: var(--jc-red);
  font-weight: 700;
}
.jc-cart-button:hover { background: var(--jc-red-dark); }
.jc-cart-button .cart-item-count {
  min-width: 21px;
  height: 21px;
  display: grid;
  place-items: center;
  border-radius: 99px;
  background: #fff;
  color: var(--jc-red);
  font-size: 11px;
}

.jc-nav-dropdown { position: relative; }
.jc-nav-dropdown-menu {
  position: absolute;
  right: 0;
  top: calc(100% + 10px);
  min-width: 160px;
  display: none;
  padding: 8px;
  border: 1px solid var(--jc-line);
  border-radius: 14px;
  background: #fff;
  box-shadow: var(--jc-shadow-sm);
}
.jc-nav-dropdown:hover .jc-nav-dropdown-menu,
.jc-nav-dropdown:focus-within .jc-nav-dropdown-menu { display: block; }
.jc-nav-dropdown-menu a { display: block; padding: 9px 10px; border-radius: 9px; text-decoration: none !important; font-size: 13px; }
.jc-nav-dropdown-menu a:hover, .jc-nav-dropdown-menu a.active { background: var(--jc-soft); color: var(--jc-red) !important; }

.jc-menu-button { display: none; }

.jc-mobile-nav {
  width: min(86vw, 360px);
  background: #fff;
  padding: 0;
}
.jc-mobile-nav-head { min-height: 76px; display: flex; align-items: center; justify-content: space-between; padding: 14px 18px; border-bottom: 1px solid var(--jc-line); }
.jc-mobile-links { display: flex; flex-direction: column; padding: 14px; }
.jc-mobile-links a { padding: 13px 12px; border-radius: 12px; font-weight: 650; text-decoration: none !important; }
.jc-mobile-links a.active { background: var(--jc-cream); color: var(--jc-red) !important; }
.jc-mobile-location { width: calc(100% - 28px); margin: 0 14px 16px; display: grid; grid-template-columns: 38px 1fr 14px; gap: 10px; align-items: center; text-align: left; border-radius: 14px; padding: 10px; background: var(--jc-soft); }
.jc-mobile-location-icon { width: 38px; height: 38px; border-radius: 12px; display: grid; place-items: center; background: #fff; color: var(--jc-red); }
.jc-mobile-location span:nth-child(2) { display: flex; flex-direction: column; min-width: 0; }
.jc-mobile-location small { color: var(--jc-muted); }
.jc-mobile-location strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.jc-mobile-account { padding: 16px 26px 30px; border-top: 1px solid var(--jc-line); display: flex; flex-direction: column; gap: 10px; }
.jc-mobile-account a { text-decoration: none !important; font-weight: 650; }
.jc-mobile-account-name { font-weight: 800; }

.jc-hero {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  display: flex;
  align-items: center;
  padding: 82px 0;
  background:
    radial-gradient(circle at 84% 25%, rgba(215,25,32,.14), transparent 25%),
    radial-gradient(circle at 20% 90%, rgba(255,183,77,.18), transparent 28%),
    var(--jc-cream);
}
.jc-hero.has-image::before {
  content: '';
  position: absolute;
  inset: 0 0 0 50%;
  background-image: linear-gradient(90deg, var(--jc-cream) 0%, rgba(255,248,239,.20) 60%), var(--jc-hero-image);
  background-size: cover;
  background-position: center;
  opacity: .92;
}
.jc-hero-grid { position: relative; z-index: 1; display: grid; grid-template-columns: minmax(0,1.25fr) minmax(320px,.75fr); align-items: center; gap: 70px; }
.jc-hero-copy { max-width: 700px; }
.jc-eyebrow { display: inline-flex; align-items: center; gap: 8px; color: var(--jc-red); font-size: 13px; line-height: 1; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.jc-hero h1 { margin: 15px 0 20px; font-size: clamp(44px, 5vw, 76px); line-height: .98; letter-spacing: -.045em; color: var(--jc-ink); font-weight: 800; }
.jc-hero-copy > p { max-width: 610px; margin: 0; color: #57504a; font-size: 19px; line-height: 1.65; }
.jc-hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.jc-btn { min-height: 50px; display: inline-flex; align-items: center; justify-content: center; gap: 9px; padding: 0 20px; border-radius: 14px; border: 1px solid transparent; font-weight: 750; text-decoration: none !important; cursor: pointer; }
.jc-btn-primary { color: #fff !important; background: var(--jc-red); }
.jc-btn-primary:hover { color: #fff !important; background: var(--jc-red-dark); }
.jc-btn-secondary { color: var(--jc-ink) !important; background: #fff; border-color: var(--jc-line); }
.jc-fulfilment-note { display: flex; flex-wrap: wrap; gap: 17px; margin-top: 26px; color: #5e5650; font-size: 13px; font-weight: 650; }
.jc-fulfilment-note i { color: var(--jc-success); margin-right: 5px; }

.jc-hero-card { justify-self: end; width: min(100%, 420px); padding: 32px; border-radius: var(--jc-radius-lg); background: rgba(255,255,255,.94); box-shadow: var(--jc-shadow); border: 1px solid rgba(255,255,255,.8); }
.jc-hero-card-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 18px; margin-bottom: 24px; background: var(--jc-red); color: #fff; font-size: 22px; }
.jc-hero-card h2 { margin: 10px 0 12px; font-size: 32px; line-height: 1.1; font-weight: 800; letter-spacing: -.03em; }
.jc-hero-card p { color: var(--jc-muted); line-height: 1.6; }
.jc-text-link { padding: 0; background: transparent; color: var(--jc-red); font-weight: 800; }
.jc-text-link i { margin-left: 7px; }

@media (max-width: 1199px) {
  .jc-location-pill { min-width: 0; width: 46px; grid-template-columns: 1fr; padding: 5px; }
  .jc-location-copy, .jc-location-chevron { display: none; }
  .jc-location-icon { width: 36px; }
  .jc-desktop-nav { gap: 16px; }
  .jc-hero-grid { gap: 36px; }
}

@media (max-width: 991px) {
  .jc-desktop-nav, .jc-language-button, .jc-login-link span, .jc-account-button span, .jc-account-button .fa-chevron-down { display: none; }
  .jc-menu-button { display: inline-grid; }
  .jc-nav-wrap { min-height: 70px; }
  .jc-hero { min-height: auto; padding: 58px 0 64px; }
  .jc-hero-grid { grid-template-columns: 1fr; }
  .jc-hero-card { justify-self: start; width: 100%; max-width: 620px; }
  .jc-hero.has-image::before { inset: 0; opacity: .12; }
}

@media (max-width: 575px) {
  .jc-site-header .container { padding-left: 14px; padding-right: 14px; }
  .jc-brand-text { display: none; }
  .jc-brand img { max-width: 115px; max-height: 40px; }
  .jc-cart-label { display: none; }
  .jc-cart-button { width: 44px; padding: 0; justify-content: center; }
  .jc-cart-button .cart-item-count { position: absolute; right: -5px; top: -5px; border: 2px solid #fff; }
  .jc-account-button, .jc-login-link { width: 42px; padding: 0; justify-content: center; }
  .jc-nav-actions { gap: 6px; }
  .jc-hero h1 { font-size: 46px; }
  .jc-hero-copy > p { font-size: 16px; }
  .jc-hero-actions { flex-direction: column; }
  .jc-hero-actions .jc-btn { width: 100%; }
  .jc-hero-card { padding: 24px; }
  .jc-hero-card h2 { font-size: 27px; }
}

.jc-benefits { border-bottom: 1px solid var(--jc-line); background: #fff; }
.jc-benefit-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.jc-benefit-item { min-height: 118px; display: flex; align-items: center; gap: 15px; padding: 24px 26px; border-right: 1px solid var(--jc-line); }
.jc-benefit-item:last-child { border-right: 0; }
.jc-benefit-icon { width: 46px; height: 46px; flex: 0 0 46px; display: grid; place-items: center; border-radius: 14px; background: var(--jc-cream); color: var(--jc-red); }
.jc-benefit-item div { display: flex; flex-direction: column; gap: 3px; }
.jc-benefit-item strong { font-size: 15px; }
.jc-benefit-item span:last-child { color: var(--jc-muted); font-size: 12px; }

.jc-home-story { padding: 88px 0; background: #fff; }
.jc-story-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 70px; align-items: center; }
.jc-story-visual { min-height: 520px; border-radius: var(--jc-radius-lg); background: var(--jc-cream); background-size: cover; background-position: center; overflow: hidden; box-shadow: var(--jc-shadow-sm); }
.jc-story-visual-fallback { height: 100%; min-height: 520px; display: flex; flex-direction: column; justify-content: flex-end; padding: 48px; background: radial-gradient(circle at 70% 25%, rgba(215,25,32,.18), transparent 25%), linear-gradient(145deg,#fff7eb,#f4e8d7); }
.jc-story-visual-fallback span { width: 80px; height: 80px; display: grid; place-items: center; border-radius: 26px; background: var(--jc-red); color: #fff; font-size: 30px; font-weight: 850; }
.jc-story-visual-fallback strong { margin-top: 28px; font-size: clamp(36px,4vw,56px); line-height: 1; letter-spacing: -.04em; }
.jc-story-copy h2, .jc-section-heading h2, .jc-map-copy h2 { margin: 12px 0 17px; font-size: clamp(34px,4vw,54px); line-height: 1.05; letter-spacing: -.04em; font-weight: 800; color: var(--jc-ink); }
.jc-story-copy p { color: var(--jc-muted); font-size: 17px; line-height: 1.75; max-width: 620px; }
.jc-story-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }

.jc-featured-section { padding: 88px 0; background: var(--jc-soft); }
.jc-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 28px; margin-bottom: 34px; }
.jc-section-heading h2 { margin-bottom: 9px; }
.jc-section-heading p { margin: 0; color: var(--jc-muted); }
.jc-featured-grid { display: grid; grid-template-columns: repeat(3, minmax(0,1fr)); gap: 22px; }
.jc-food-card { overflow: hidden; border: 1px solid var(--jc-line); border-radius: var(--jc-radius); background: #fff; box-shadow: 0 4px 18px rgba(38,25,18,.04); }
.jc-food-card-media { display: block; aspect-ratio: 4/3; background: var(--jc-cream); overflow: hidden; }
.jc-food-card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.jc-food-card:hover .jc-food-card-media img { transform: scale(1.035); }
.jc-food-placeholder { width: 100%; height: 100%; display: grid; place-items: center; color: var(--jc-red); font-size: 40px; }
.jc-food-card-body { padding: 20px; }
.jc-food-card-title-row { display: flex; gap: 16px; justify-content: space-between; align-items: flex-start; }
.jc-food-card-title-row h3 { margin: 0; font-size: 20px; line-height: 1.25; }
.jc-food-card-title-row strong { color: var(--jc-red); white-space: nowrap; }
.jc-food-card-body p { margin: 11px 0 17px; color: var(--jc-muted); line-height: 1.55; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.jc-food-card-action { display: flex; justify-content: space-between; align-items: center; font-weight: 800; color: var(--jc-ink) !important; text-decoration: none !important; }
.jc-food-card-action i { width: 32px; height: 32px; display: grid; place-items: center; border-radius: 10px; background: var(--jc-red); color: #fff; }

.jc-menu-empty { display: grid; grid-template-columns: 64px minmax(0,1fr) auto; align-items: center; gap: 22px; padding: 28px; border-radius: var(--jc-radius); border: 1px dashed #dfd5ca; background: #fff; }
.jc-menu-empty-icon { width: 64px; height: 64px; display: grid; place-items: center; border-radius: 20px; background: var(--jc-cream); color: var(--jc-red); font-size: 22px; }
.jc-menu-empty h3 { margin: 0 0 6px; font-size: 22px; }
.jc-menu-empty p { margin: 0; color: var(--jc-muted); }

.jc-gallery-section { padding: 88px 0; background: #fff; }
.jc-gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; }
.jc-gallery-item { display: block; aspect-ratio: 1.2; overflow: hidden; border-radius: 18px; background: var(--jc-soft); }
.jc-gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.jc-gallery-item:hover img { transform: scale(1.04); }

.jc-map-section { padding: 0 0 88px; background: #fff; }
.jc-map-card { display: grid; grid-template-columns: .72fr 1.28fr; overflow: hidden; border-radius: var(--jc-radius-lg); background: var(--jc-ink); color: #fff; }
.jc-map-copy { padding: 48px; align-self: center; }
.jc-map-copy h2 { color: #fff; }
.jc-map-copy p { color: #c9c4c0; line-height: 1.65; margin-bottom: 24px; }
.jc-map-frame iframe { display: block; border: 0; min-height: 100%; }

.jc-footer { padding: 66px 0 0; background: #151515; color: #fff; }
.jc-footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3,.72fr); gap: 54px; padding-bottom: 52px; }
.jc-footer .jc-brand-text { color: #fff; }
.jc-footer .jc-brand img { max-height: 52px; }
.jc-footer-brand p { max-width: 360px; margin: 20px 0; color: #aaa29c; line-height: 1.7; }
.jc-footer-socials { display: flex; gap: 9px; }
.jc-footer-socials a { width: 38px; height: 38px; display: grid; place-items: center; border-radius: 12px; background: #242424; color: #fff !important; text-decoration: none !important; }
.jc-footer-column { display: flex; flex-direction: column; align-items: flex-start; gap: 10px; }
.jc-footer-column h3 { color: #fff; font-size: 15px; margin: 3px 0 10px; }
.jc-footer-column a, .jc-footer-link-button { padding: 0; border: 0; background: transparent; color: #aaa29c !important; text-decoration: none !important; font: inherit; cursor: pointer; font-size: 13px; }
.jc-footer-column a:hover, .jc-footer-link-button:hover { color: #fff !important; }
.jc-footer-bottom { min-height: 72px; display: flex; align-items: center; justify-content: space-between; gap: 20px; border-top: 1px solid #2b2b2b; color: #837c77; font-size: 12px; }
.jc-footer-bottom p { margin: 0; }

@media (max-width: 991px) {
  .jc-benefit-grid { grid-template-columns: 1fr; }
  .jc-benefit-item { border-right: 0; border-bottom: 1px solid var(--jc-line); min-height: 96px; }
  .jc-benefit-item:last-child { border-bottom: 0; }
  .jc-story-grid, .jc-map-card { grid-template-columns: 1fr; }
  .jc-story-visual, .jc-story-visual-fallback { min-height: 420px; }
  .jc-featured-grid { grid-template-columns: repeat(2,1fr); }
  .jc-footer-grid { grid-template-columns: 1.4fr 1fr 1fr; }
  .jc-footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 767px) {
  .jc-home-story, .jc-featured-section, .jc-gallery-section { padding: 64px 0; }
  .jc-story-grid { gap: 38px; }
  .jc-story-visual, .jc-story-visual-fallback { min-height: 330px; }
  .jc-section-heading { align-items: flex-start; flex-direction: column; gap: 10px; }
  .jc-featured-grid, .jc-gallery-grid { grid-template-columns: 1fr; }
  .jc-menu-empty { grid-template-columns: 52px 1fr; }
  .jc-menu-empty-icon { width: 52px; height: 52px; border-radius: 16px; }
  .jc-menu-empty .jc-btn { grid-column: 1 / -1; width: 100%; }
  .jc-map-copy { padding: 34px 26px; }
  .jc-map-frame iframe { height: 320px; }
  .jc-footer-grid { grid-template-columns: 1fr 1fr; gap: 36px 22px; }
  .jc-footer-brand { grid-column: 1 / -1; }
  .jc-footer-bottom { flex-direction: column; align-items: flex-start; justify-content: center; padding: 20px 0; }
}

/* Hosted acceptance hotfix: override Doorsoft's legacy #outletSelectModal 450x243 fixed sizing. */
#outletSelectModal.jc-location-modal .modal-dialog {
  width: calc(100% - 32px);
  max-width: 900px;
  height: auto;
  margin: 16px auto;
}
#outletSelectModal.jc-location-modal .modal-content {
  height: auto;
  max-height: calc(100vh - 32px);
  max-height: calc(100dvh - 32px);
  display: flex;
  flex-direction: column;
  border: 0;
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 34px 100px rgba(20,13,10,.24);
}
#outletSelectModal.jc-location-modal .jc-location-panel-head { flex: 0 0 auto; }
#outletSelectModal.jc-location-modal .jc-location-panel-body {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.jc-location-panel-head { position: relative; padding: 34px 38px 27px; background: var(--jc-cream); border-bottom: 1px solid var(--jc-line); }
.jc-location-panel-head h2 { margin: 10px 44px 8px 0; font-size: 34px; line-height: 1.08; letter-spacing: -.035em; font-weight: 800; color: var(--jc-ink); }
.jc-location-panel-head p { max-width: 650px; margin: 0; color: var(--jc-muted); line-height: 1.6; }
.jc-location-close { position: absolute; top: 22px; right: 22px; width: 40px; height: 40px; display: grid; place-items: center; border: 0; border-radius: 12px; background: #fff; color: var(--jc-ink); cursor: pointer; }
.jc-location-panel-body { padding: 30px 38px 38px; }
.jc-location-panel-body .alert { border: 0; border-radius: 12px; font-size: 13px; }

.jc-fulfilment-switch { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 28px; }
.jc-fulfilment-option { margin: 0; cursor: pointer; }
.jc-fulfilment-option input { position: absolute; opacity: 0; pointer-events: none; }
.jc-fulfilment-option > span { min-height: 84px; display: grid; grid-template-columns: 42px 1fr; grid-template-rows: auto auto; column-gap: 12px; align-items: center; padding: 15px; border: 1px solid var(--jc-line); border-radius: 16px; background: #fff; transition: .18s ease; }
.jc-fulfilment-option > span > i { grid-row: 1 / 3; width: 42px; height: 42px; display: grid; place-items: center; border-radius: 13px; background: var(--jc-soft); color: var(--jc-red); }
.jc-fulfilment-option strong { align-self: end; font-size: 15px; }
.jc-fulfilment-option small { align-self: start; color: var(--jc-muted); font-size: 12px; }
.jc-fulfilment-option input:checked + span { border-color: rgba(215,25,32,.42); background: #fff7f7; box-shadow: inset 0 0 0 1px rgba(215,25,32,.18); }
.jc-fulfilment-option input:checked + span > i { background: var(--jc-red); color: #fff; }

.jc-location-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.jc-field { display: flex; flex-direction: column; gap: 7px; }
.jc-field-wide { grid-column: 1 / -1; }
.jc-field label { margin: 0; font-size: 12px; font-weight: 750; color: #4d4742; }
.jc-field label small { margin-left: 5px; color: #918981; font-weight: 500; }
.jc-field .form-control { height: 50px; border: 1px solid #ded7d0; border-radius: 13px; background: #fff; color: var(--jc-ink); padding: 0 13px; box-shadow: none; }
.jc-field .form-control:focus { border-color: rgba(215,25,32,.55); box-shadow: 0 0 0 3px rgba(215,25,32,.08); }
.jc-find-outlets-button {
  width: 100%;
  min-height: 54px;
  margin-top: 20px;
  font-size: 15px;
  font-weight: 800;
  box-shadow: 0 12px 24px rgba(215,25,32,.18);
}
.jc-find-outlets-button:focus { outline: 0; box-shadow: 0 0 0 4px rgba(215,25,32,.16), 0 12px 24px rgba(215,25,32,.18); }
.jc-find-outlets-button[disabled] { opacity: .72; cursor: wait; }


.jc-outlet-results-wrap { margin-top: 30px; padding-top: 26px; border-top: 1px solid var(--jc-line); }
.jc-results-heading { display: flex; justify-content: space-between; align-items: baseline; gap: 18px; margin-bottom: 15px; }
.jc-results-heading strong { font-size: 15px; }
.jc-results-heading span { color: var(--jc-muted); font-size: 11px; text-align: right; }
.jc-routing-placeholder, .jc-routing-empty { min-height: 90px; display: flex; align-items: center; gap: 14px; padding: 20px; border-radius: 15px; background: var(--jc-soft); color: var(--jc-muted); }
.jc-routing-placeholder i, .jc-routing-empty > i { width: 42px; height: 42px; flex: 0 0 42px; display: grid; place-items: center; border-radius: 12px; background: #fff; color: var(--jc-red); }
.jc-routing-placeholder p, .jc-routing-empty p { margin: 0; }
.jc-routing-empty strong { display: block; color: var(--jc-ink); margin-bottom: 3px; }

.jc-outlet-card { display: grid; grid-template-columns: minmax(0,1fr) auto; gap: 24px; align-items: center; padding: 20px; margin-bottom: 12px; border: 1px solid var(--jc-line); border-radius: 18px; background: #fff; }
.jc-outlet-card:last-child { margin-bottom: 0; }
.jc-outlet-card-main { min-width: 0; display: flex; gap: 14px; }
.jc-outlet-card-icon { width: 48px; height: 48px; flex: 0 0 48px; display: grid; place-items: center; border-radius: 15px; background: var(--jc-cream); color: var(--jc-red); }
.jc-outlet-card-copy { min-width: 0; }
.jc-outlet-title-row { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.jc-outlet-title-row h3 { margin: 0; font-size: 18px; line-height: 1.25; }
.jc-status-badge { display: inline-flex; align-items: center; min-height: 24px; padding: 0 9px; border-radius: 99px; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.jc-status-badge.is-open { background: #e8f7ef; color: var(--jc-success); }
.jc-status-badge.is-later { background: #f7efe2; color: var(--jc-warning); }
.jc-outlet-address, .jc-outlet-message { margin: 6px 0 0; color: var(--jc-muted); font-size: 12px; line-height: 1.5; }
.jc-outlet-message { color: #4c4641; }
.jc-outlet-meta { display: flex; flex-wrap: wrap; gap: 8px 14px; margin-top: 10px; color: #635c56; font-size: 11px; }
.jc-outlet-meta span { display: inline-flex; align-items: center; gap: 5px; }
.jc-outlet-meta i { color: var(--jc-red); }
.jc-outlet-card-action .jc-btn { min-width: 145px; }
.jc-btn-disabled { color: #9a938d; background: #eeeae6; cursor: not-allowed; }

@media (max-width: 767px) {
  #outletSelectModal.jc-location-modal .modal-dialog { width: calc(100% - 24px); margin: 12px auto; }
  #outletSelectModal.jc-location-modal .modal-content { max-height: calc(100vh - 24px); max-height: calc(100dvh - 24px); }
  .jc-location-panel-head { padding: 28px 22px 22px; }
  .jc-location-panel-head h2 { font-size: 28px; }
  .jc-location-panel-body { padding: 22px; }
  .jc-fulfilment-switch, .jc-location-fields { grid-template-columns: 1fr; }
  .jc-field-wide { grid-column: auto; }
  .jc-results-heading { flex-direction: column; gap: 3px; }
  .jc-results-heading span { text-align: left; }
  .jc-outlet-card { grid-template-columns: 1fr; gap: 16px; }
  .jc-outlet-card-action .jc-btn { width: 100%; }
}

/* Phase 2: menu discovery */
.jc-menu-page { background: #fff; color: var(--jc-ink); }
.jc-menu-context-section { padding: 22px 0 0; background: #fff; }
.jc-menu-context { display: grid; grid-template-columns: 50px minmax(0,1fr) auto; gap: 16px; align-items: center; padding: 18px 20px; border: 1px solid var(--jc-line); border-radius: 18px; background: var(--jc-soft); }
.jc-menu-context-icon { width: 50px; height: 50px; display: grid; place-items: center; border-radius: 15px; background: #fff; color: var(--jc-red); font-size: 18px; }
.jc-menu-context-copy { min-width: 0; }
.jc-menu-context-copy .jc-eyebrow { font-size: 10px; }
.jc-menu-context-title { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; margin-top: 6px; }
.jc-menu-context-title strong { font-size: 17px; }
.jc-menu-context-title > span:last-child { color: var(--jc-muted); font-size: 13px; font-weight: 700; }
.jc-status-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--jc-success); }
.jc-menu-context.is-later .jc-status-dot { background: var(--jc-warning); }
.jc-menu-context-copy p { margin: 5px 0 0; color: var(--jc-muted); font-size: 12px; line-height: 1.5; }
.jc-menu-context-action { min-height: 44px; display: inline-flex; align-items: center; gap: 8px; padding: 0 14px; border: 1px solid var(--jc-line); border-radius: 12px; background: #fff; color: var(--jc-ink); font-weight: 750; cursor: pointer; }
.jc-menu-context-action i { color: var(--jc-red); }

.jc-menu-discovery { padding: 64px 0 34px; }
.jc-menu-heading-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(300px,430px); gap: 56px; align-items: end; }
.jc-menu-heading-grid h1 { margin: 10px 0 12px; font-size: clamp(40px,5vw,64px); line-height: 1; letter-spacing: -.045em; font-weight: 850; }
.jc-menu-heading-grid > div:first-child > p { max-width: 620px; margin: 0; color: var(--jc-muted); font-size: 16px; }
.jc-menu-search-wrap { display: flex; flex-direction: column; gap: 7px; }
.jc-menu-search-wrap > label { margin: 0; color: #57504a; font-size: 12px; font-weight: 750; }
.jc-menu-search-box { position: relative; display: flex; align-items: center; }
.jc-menu-search-box > i { position: absolute; left: 16px; color: var(--jc-muted); pointer-events: none; }
.jc-menu-search-box input { width: 100%; height: 54px; padding: 0 48px 0 44px; border: 1px solid var(--jc-line); border-radius: 15px; background: #fff; color: var(--jc-ink); outline: 0; box-shadow: var(--jc-shadow-sm); }
.jc-menu-search-box input:focus { border-color: rgba(215,25,32,.5); box-shadow: 0 0 0 3px rgba(215,25,32,.07); }
#jc-menu-search-clear { position: absolute; right: 9px; width: 36px; height: 36px; display: grid; place-items: center; border: 0; border-radius: 10px; background: transparent; color: var(--jc-muted); opacity: 0; pointer-events: none; cursor: pointer; }
#jc-menu-search-clear.is-visible { opacity: 1; pointer-events: auto; }
#jc-menu-result-count { color: var(--jc-muted); font-size: 11px; }

.jc-menu-category-section { position: sticky; top: 70px; z-index: 20; padding: 12px 0; border-top: 1px solid var(--jc-line); border-bottom: 1px solid var(--jc-line); background: rgba(255,255,255,.96); backdrop-filter: blur(12px); }
.jc-menu-category-rail { display: flex; gap: 10px; overflow-x: auto; padding: 2px 0; scrollbar-width: none; }
.jc-menu-category-rail::-webkit-scrollbar { display: none; }
.jc-menu-category-chip { flex: 0 0 auto; min-height: 56px; display: grid; grid-template-columns: 38px auto; gap: 10px; align-items: center; padding: 8px 14px 8px 9px; border: 1px solid var(--jc-line); border-radius: 14px; background: #fff; color: var(--jc-ink) !important; text-decoration: none !important; transition: .18s ease; }
.jc-menu-category-chip:hover, .jc-menu-category-chip.active { border-color: rgba(215,25,32,.3); background: #fff5f5; }
.jc-menu-category-icon, .jc-menu-category-thumb { width: 38px; height: 38px; display: grid; place-items: center; overflow: hidden; border-radius: 11px; background: var(--jc-cream); color: var(--jc-red); }
.jc-menu-category-thumb img { width: 100%; height: 100%; object-fit: cover; }
.jc-menu-category-chip > span:last-child { display: flex; flex-direction: column; gap: 1px; }
.jc-menu-category-chip strong { font-size: 12px; line-height: 1.2; }
.jc-menu-category-chip small { color: var(--jc-muted); font-size: 9px; }

.jc-menu-products-section { padding: 56px 0 88px; min-height: 520px; background: var(--jc-soft); }
.jc-menu-products-heading { display: flex; justify-content: space-between; align-items: end; gap: 24px; margin-bottom: 28px; }
.jc-menu-products-heading h2 { margin: 8px 0 0; font-size: clamp(30px,4vw,44px); font-weight: 850; letter-spacing: -.035em; }
.jc-menu-grid { margin-left: -10px; margin-right: -10px; }
.jc-menu-grid > [class*="col-"] { padding-left: 10px; padding-right: 10px; }
.jc-menu-product-card { height: 100%; display: flex; flex-direction: column; overflow: hidden; border: 1px solid var(--jc-line); border-radius: 20px; background: #fff; box-shadow: 0 5px 20px rgba(38,25,18,.045); transition: transform .2s ease, box-shadow .2s ease; }
.jc-menu-product-card:hover { transform: translateY(-3px); box-shadow: var(--jc-shadow-sm); }
.jc-menu-product-media { position: relative; display: block; aspect-ratio: 1.1; overflow: hidden; background: var(--jc-cream); }
.jc-menu-product-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.jc-menu-product-card:hover .jc-menu-product-media img { transform: scale(1.035); }
.jc-menu-rating { position: absolute; top: 12px; right: 12px; min-height: 28px; display: inline-flex; align-items: center; gap: 5px; padding: 0 9px; border-radius: 99px; background: rgba(255,255,255,.93); color: var(--jc-ink); font-size: 10px; font-weight: 800; box-shadow: 0 5px 18px rgba(0,0,0,.09); }
.jc-menu-rating i { color: #f2a93b; }
.jc-menu-product-body { flex: 1; display: flex; flex-direction: column; padding: 17px; }
.jc-menu-product-copy { flex: 1; }
.jc-menu-product-copy h3 { margin: 0; font-size: 18px; line-height: 1.25; font-weight: 800; }
.jc-menu-product-copy h3 a { color: var(--jc-ink) !important; text-decoration: none !important; }
.jc-menu-product-copy p { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; min-height: 38px; margin: 7px 0 0; color: var(--jc-muted); font-size: 11px; line-height: 1.55; }
.jc-menu-product-footer { display: flex; justify-content: space-between; align-items: center; gap: 12px; margin-top: 16px; }
.jc-menu-product-footer > strong { color: var(--jc-red); font-size: 16px; font-weight: 850; }
.jc-menu-add-button { min-height: 38px; display: inline-flex; align-items: center; justify-content: center; gap: 6px; padding: 0 13px; border-radius: 11px; background: var(--jc-red); color: #fff !important; font-size: 11px; font-weight: 800; text-decoration: none !important; }
.jc-menu-add-button:hover { background: var(--jc-red-dark); color: #fff !important; }
.jc-menu-search-empty { display: grid; grid-template-columns: 58px minmax(0,1fr) auto; gap: 16px; align-items: center; max-width: 760px; margin: 30px auto 0; padding: 24px; border: 1px dashed #d8cec5; border-radius: 18px; background: #fff; }
.jc-menu-search-empty[hidden] { display: none !important; }
.jc-menu-search-empty .jc-menu-empty-icon { width: 58px; height: 58px; display: grid; place-items: center; border-radius: 17px; background: var(--jc-cream); color: var(--jc-red); }
.jc-menu-search-empty strong { font-size: 16px; }
.jc-menu-search-empty p { margin: 3px 0 0; color: var(--jc-muted); font-size: 12px; }

@media (max-width: 991px) {
  .jc-menu-heading-grid { grid-template-columns: 1fr; gap: 30px; }
  .jc-menu-search-wrap { max-width: 620px; }
}

@media (max-width: 767px) {
  .jc-menu-context-section { padding-top: 12px; }
  .jc-menu-context { grid-template-columns: 42px minmax(0,1fr); padding: 14px; }
  .jc-menu-context-icon { width: 42px; height: 42px; border-radius: 12px; }
  .jc-menu-context-action { grid-column: 1 / -1; width: 100%; justify-content: center; }
  .jc-menu-discovery { padding: 44px 0 24px; }
  .jc-menu-heading-grid h1 { font-size: 42px; }
  .jc-menu-category-section { top: 69px; }
  .jc-menu-products-section { padding: 42px 0 68px; }
  .jc-menu-products-heading { align-items: flex-start; flex-direction: column; gap: 8px; }
  .jc-menu-search-empty { grid-template-columns: 52px 1fr; }
  .jc-menu-search-empty .jc-btn { grid-column: 1 / -1; width: 100%; }
}

@media (max-width: 575px) {
  .jc-menu-grid > [class*="col-"] { padding-left: 7px; padding-right: 7px; }
  .jc-menu-grid { margin-left: -7px; margin-right: -7px; }
  .jc-menu-product-card { border-radius: 17px; }
  .jc-menu-product-body { padding: 14px; }
  .jc-menu-product-copy h3 { font-size: 16px; }
  .jc-menu-product-copy p { min-height: 34px; font-size: 10px; }
}

/* Phase 2: product customizer */
.jc-product-page { background: #fff; }
.jc-product-section { padding: 34px 0 84px; }
.jc-product-back { min-height: 42px; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 22px; color: var(--jc-muted) !important; font-size: 12px; font-weight: 750; text-decoration: none !important; }
.jc-product-back:hover { color: var(--jc-red) !important; }
.jc-product-grid { display: grid; grid-template-columns: minmax(0,.95fr) minmax(420px,1.05fr); gap: 62px; align-items: start; }
.jc-product-media-panel { position: sticky; top: 96px; }
.jc-product-image-wrap { overflow: hidden; aspect-ratio: 1 / 1; border-radius: 28px; background: var(--jc-cream); box-shadow: var(--jc-shadow-sm); }
.jc-product-image-wrap img { width: 100%; height: 100%; object-fit: cover; }
.jc-product-serving-card { display: grid; grid-template-columns: 42px minmax(0,1fr) auto; gap: 12px; align-items: center; margin-top: 14px; padding: 14px 16px; border: 1px solid var(--jc-line); border-radius: 16px; background: var(--jc-soft); }
.jc-product-serving-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: #fff; color: var(--jc-red); }
.jc-product-serving-card div { min-width: 0; display: flex; flex-direction: column; }
.jc-product-serving-card small { color: var(--jc-muted); font-size: 10px; }
.jc-product-serving-card strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 13px; }
.jc-product-serving-card .jc-text-link { font-size: 11px; }

.jc-product-customizer { min-width: 0; }
.jc-product-heading { padding-bottom: 26px; border-bottom: 1px solid var(--jc-line); }
.jc-product-heading h1 { margin: 10px 0 13px; font-size: clamp(38px,4.5vw,60px); line-height: 1; letter-spacing: -.045em; font-weight: 850; }
.jc-product-heading > p { max-width: 650px; margin: 0; color: var(--jc-muted); font-size: 15px; line-height: 1.7; }
.jc-product-price-row { display: flex; align-items: baseline; gap: 9px; margin-top: 20px; }
.jc-product-price-row > span { color: var(--jc-muted); font-size: 11px; }
.jc-product-price-row .product-price { margin: 0; color: var(--jc-red); font-size: 26px; line-height: 1; font-weight: 850; }

.jc-product-option-block { margin-top: 20px; padding: 20px; border: 1px solid var(--jc-line); border-radius: 18px; background: #fff; }
.jc-product-option-heading { display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; margin-bottom: 14px; }
.jc-product-option-heading > div { display: flex; align-items: center; gap: 8px; flex-wrap: wrap; }
.jc-product-option-heading strong { font-size: 15px; }
.jc-product-option-heading span { min-height: 22px; display: inline-flex; align-items: center; padding: 0 8px; border-radius: 99px; background: var(--jc-soft); color: var(--jc-muted); font-size: 9px; font-weight: 800; text-transform: uppercase; letter-spacing: .04em; }
.jc-product-option-heading small { color: var(--jc-muted); font-size: 10px; }
.jc-product-select-label { display: block; margin: 0 0 6px; color: var(--jc-muted); font-size: 10px; font-weight: 700; }
.jc-product-option-block .form-control { min-height: 50px; border: 1px solid #ded7d0; border-radius: 13px; box-shadow: none; }
.jc-product-option-block .form-control:focus { border-color: rgba(215,25,32,.5); box-shadow: 0 0 0 3px rgba(215,25,32,.07); }

.jc-modifier-list { display: flex; flex-direction: column; gap: 9px; }
.jc-modifier-row { min-height: 58px; display: flex; align-items: center; justify-content: space-between; gap: 15px; padding: 10px 12px; border: 1px solid var(--jc-line); border-radius: 13px; background: var(--jc-soft); cursor: pointer; transition: .16s ease; }
.jc-modifier-row:hover { border-color: rgba(215,25,32,.25); background: #fff9f9; }
.jc-modifier-choice { flex: 1; min-width: 0; padding-left: 0; }
.jc-modifier-choice .custom-control-input { position: absolute; opacity: 0; }
.jc-modifier-choice .custom-control-label { width: 100%; display: flex; align-items: center; gap: 10px; padding-left: 0; margin: 0; color: var(--jc-ink); font-size: 12px; font-weight: 750; cursor: pointer; }
.jc-modifier-choice .custom-control-label::before, .jc-modifier-choice .custom-control-label::after { display: none !important; }
.jc-modifier-check { width: 28px; height: 28px; flex: 0 0 28px; display: grid; place-items: center; border: 1px solid #d8d0c9; border-radius: 9px; background: #fff; color: transparent; font-size: 10px; }
.jc-modifier-choice .custom-control-input:checked + .custom-control-label .jc-modifier-check { border-color: var(--jc-red); background: var(--jc-red); color: #fff; }
.jc-modifier-row > strong { color: var(--jc-red); font-size: 11px; white-space: nowrap; }
.jc-product-note { min-height: 96px !important; padding: 12px 14px; resize: vertical; }

.jc-product-order-form { margin-top: 0; }
.jc-product-purchase-panel { display: grid; grid-template-columns: auto minmax(0,1fr); gap: 18px; align-items: end; margin-top: 20px; padding: 18px 20px; border-radius: 18px; background: var(--jc-soft); }
.jc-product-quantity-group, .jc-product-total-group { display: flex; flex-direction: column; gap: 7px; }
.jc-product-quantity-group label, .jc-product-total-group > span { margin: 0; color: var(--jc-muted); font-size: 10px; font-weight: 750; text-transform: uppercase; letter-spacing: .04em; }
.jc-quantity-stepper { height: 46px; display: grid; grid-template-columns: 44px 48px 44px; align-items: center; overflow: hidden; border: 1px solid var(--jc-line); border-radius: 13px; background: #fff; }
.jc-quantity-stepper .call_qty { width: 44px; height: 44px; display: grid; place-items: center; color: var(--jc-ink); cursor: pointer; }
.jc-quantity-stepper input { width: 48px; height: 44px; border: 0; background: transparent; text-align: center; font-weight: 800; outline: 0; }
.jc-product-total-group { align-items: flex-end; justify-self: end; }
.jc-product-total-group strong { color: var(--jc-ink); font-size: 24px; line-height: 1; font-weight: 850; }
.jc-product-add-button { width: 100%; min-height: 58px; justify-content: flex-start; margin-top: 14px; padding: 0 20px; border: 0; }
.jc-product-add-button > span { flex: 1; text-align: left; }
.jc-product-add-button > strong { font-size: 13px; }
.jc-product-post-add-actions { display: flex; gap: 10px; margin-top: 10px; }
.jc-product-post-add-actions .jc-btn { flex: 1; }
.jc-product-calories { display: inline-flex; align-items: center; gap: 8px; margin-top: 18px; color: var(--jc-muted); font-size: 11px; }
.jc-product-calories i { color: #e98b33; }

.jc-related-products { padding: 74px 0 88px; background: var(--jc-soft); }
.jc-related-heading { display: flex; align-items: end; justify-content: space-between; gap: 20px; margin-bottom: 28px; }
.jc-related-heading h2 { margin: 8px 0 0; font-size: clamp(30px,4vw,44px); letter-spacing: -.035em; font-weight: 850; }
.jc-related-card { height: 100%; overflow: hidden; border: 1px solid var(--jc-line); border-radius: 18px; background: #fff; }
.jc-related-media { display: block; aspect-ratio: 1.25; overflow: hidden; background: var(--jc-cream); }
.jc-related-media img { width: 100%; height: 100%; object-fit: cover; }
.jc-related-body { padding: 14px; }
.jc-related-rating { color: var(--jc-muted); font-size: 10px; }
.jc-related-rating i { color: #f2a93b; }
.jc-related-body h3 { margin: 6px 0 12px; font-size: 16px; line-height: 1.25; }
.jc-related-body h3 a { color: var(--jc-ink) !important; text-decoration: none !important; }
.jc-related-footer { display: flex; justify-content: space-between; align-items: center; gap: 10px; }
.jc-related-footer > strong { color: var(--jc-red); font-size: 14px; }

@media (max-width: 991px) {
  .jc-product-grid { grid-template-columns: 1fr; gap: 34px; }
  .jc-product-media-panel { position: static; }
  .jc-product-image-wrap { max-height: 650px; }
}

@media (max-width: 767px) {
  .jc-product-section { padding: 20px 0 60px; }
  .jc-product-heading h1 { font-size: 42px; }
  .jc-product-serving-card { grid-template-columns: 38px minmax(0,1fr) auto; }
  .jc-product-serving-icon { width: 38px; height: 38px; }
  .jc-product-option-block { padding: 16px; border-radius: 15px; }
  .jc-product-purchase-panel { padding: 15px; }
  .jc-product-add-button { position: sticky; bottom: 10px; z-index: 12; box-shadow: 0 12px 30px rgba(120,20,25,.24); }
  .jc-related-heading { align-items: flex-start; flex-direction: column; gap: 8px; }
}

@media (max-width: 480px) {
  .jc-product-serving-card { grid-template-columns: 38px 1fr; }
  .jc-product-serving-card .jc-text-link { grid-column: 1 / -1; text-align: left; }
  .jc-product-purchase-panel { grid-template-columns: 1fr 1fr; }
  .jc-product-total-group { align-items: flex-end; }
  .jc-product-post-add-actions { flex-direction: column; }
}

/* Phase 2: cart drawer */
.jc-cart-drawer .cart-sidebar { width: min(100vw, 500px); max-width: 500px; display: flex; flex-direction: column; background: #fff; }
.jc-cart-drawer .jc-cart-header { min-height: 88px; display: flex; align-items: center; justify-content: space-between; padding: 18px 22px; border-bottom: 1px solid var(--jc-line); background: #fff; }
.jc-cart-header h3 { margin: 5px 0 0; font-size: 25px; line-height: 1; font-weight: 850; letter-spacing: -.03em; }
.jc-cart-header .jc-eyebrow { font-size: 9px; }
.jc-cart-close { width: 42px; height: 42px; display: grid; place-items: center; border: 1px solid var(--jc-line); border-radius: 12px; background: var(--jc-soft); color: var(--jc-ink); cursor: pointer; }
.jc-cart-context { display: grid; grid-template-columns: 40px minmax(0,1fr) auto; gap: 10px; align-items: center; margin: 14px 18px 0; padding: 11px 12px; border-radius: 14px; background: var(--jc-soft); }
.jc-cart-context-icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 11px; background: #fff; color: var(--jc-red); }
.jc-cart-context > div { min-width: 0; display: flex; flex-direction: column; }
.jc-cart-context small { color: var(--jc-muted); font-size: 9px; }
.jc-cart-context strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 12px; }
.jc-cart-context .jc-text-link { font-size: 10px; }
.jc-cart-drawer .jc-cart-body { flex: 1; min-height: 0; display: flex; flex-direction: column; padding: 0; }
.jc-cart-items { flex: 1; min-height: 120px; overflow-y: auto; padding: 16px 18px 8px; }
.jc-cart-items:empty { display: none; }
.jc-cart-empty-hint { flex: 1; min-height: 270px; display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 34px; text-align: center; }
.jc-cart-items:not(:empty) + .jc-cart-empty-hint { display: none; }
.jc-cart-empty-hint[aria-hidden="true"] { display: none !important; }
.jc-cart-empty-hint[aria-hidden="false"] { display: flex; }
.jc-cart-items.jc-native-cart-scroll { flex: 1 1 auto; min-height: 0; height: auto !important; width: auto !important; overflow-x: hidden !important; overflow-y: auto !important; }
/* Fallback while legacy main.js has already wrapped the cart before the Phase 1 bridge runs. */
.jc-cart-body > .slimScrollDiv { flex: 1 1 auto !important; min-height: 0 !important; height: auto !important; width: auto !important; overflow: visible !important; }
.jc-cart-body > .slimScrollDiv > .jc-cart-items { height: 100% !important; width: auto !important; overflow-x: hidden !important; overflow-y: auto !important; }
.jc-cart-body > .slimScrollDiv > .slimScrollBar,
.jc-cart-body > .slimScrollDiv > .slimScrollRail { display: none !important; }
.jc-cart-empty-hint > span { width: 68px; height: 68px; display: grid; place-items: center; margin-bottom: 16px; border-radius: 21px; background: var(--jc-cream); color: var(--jc-red); font-size: 24px; }
.jc-cart-empty-hint strong { font-size: 18px; }
.jc-cart-empty-hint p { max-width: 280px; margin: 6px 0 0; color: var(--jc-muted); font-size: 12px; line-height: 1.6; }

.jc-cart-line, .jc-cart-items .sidebar-cart-card { position: relative; margin: 0 0 11px; padding: 13px; border: 1px solid var(--jc-line); border-radius: 16px; background: #fff; box-shadow: 0 3px 12px rgba(38,25,18,.03); }
.jc-cart-line-main { display: grid; grid-template-columns: 80px minmax(0,1fr); gap: 12px; }
.jc-cart-line-image { width: 80px !important; height: 80px !important; object-fit: cover; border-radius: 13px; background: var(--jc-cream); }
.jc-cart-line-copy { min-width: 0; }
.jc-cart-line-title-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 9px; }
.jc-cart-line-title-row h3, .jc-cart-line .card-title { margin: 1px 0 0; color: var(--jc-ink); font-size: 14px; line-height: 1.3; font-weight: 800; }
.jc-cart-remove { width: 32px; height: 32px; flex: 0 0 32px; display: grid; place-items: center; border: 0; border-radius: 9px; background: #fff3f3; color: var(--jc-red); cursor: pointer; }
.jc-cart-line .sidebar-cart-card-meta ul { display: flex; flex-wrap: wrap; gap: 4px 7px; margin: 7px 0 0; padding: 0; list-style: none; }
.jc-cart-modifier { margin: 0; color: var(--jc-muted); font-size: 9px; line-height: 1.4; }
.jc-cart-note { margin: 7px 0 0; color: var(--jc-muted); font-size: 9px; line-height: 1.5; }
.jc-cart-note strong { color: #5b534d; }
.jc-cart-line-controls { display: grid; grid-template-columns: minmax(0,1fr) auto auto; gap: 9px; align-items: center; margin-top: 11px; }
.jc-cart-unit-price { color: var(--jc-muted); font-size: 9px; }
.jc-cart-quantity { height: 34px; display: grid; grid-template-columns: 32px 34px 32px; align-items: center; overflow: hidden; border: 1px solid var(--jc-line); border-radius: 10px; background: var(--jc-soft); }
.jc-cart-quantity button { width: 32px; height: 32px; display: grid; place-items: center; border: 0; background: transparent; color: var(--jc-ink); font-size: 9px; cursor: pointer; }
.jc-cart-quantity .cart_qty { width: 34px; height: 32px; border: 0; background: #fff; text-align: center; font-size: 11px; font-weight: 800; outline: 0; }
.jc-cart-line-total { color: var(--jc-ink); font-size: 12px; font-weight: 850; white-space: nowrap; }

.jc-cart-summary { flex: 0 0 auto; padding: 17px 20px 22px; border-top: 1px solid var(--jc-line); background: #fff; box-shadow: 0 -8px 30px rgba(38,25,18,.04); }
.jc-cart-summary .order_summary { display: block; }
.jc-cart-summary-heading { display: flex; justify-content: space-between; align-items: baseline; gap: 12px; margin-bottom: 12px; }
.jc-cart-summary-heading h4 { margin: 0; font-size: 14px; font-weight: 850; }
.jc-cart-summary-heading span { color: var(--jc-muted); font-size: 9px; }
.jc-cart-summary-lines { display: flex; flex-direction: column; gap: 8px; padding: 0 0 12px; }
.jc-cart-summary-lines > div { display: flex; justify-content: space-between; align-items: center; gap: 15px; color: var(--jc-muted); font-size: 11px; }
.jc-cart-summary-lines strong { color: #59524c; font-size: 11px; font-weight: 750; }
.jc-cart-total-row { display: flex; justify-content: space-between; align-items: center; gap: 15px; padding: 13px 0 0; border-top: 1px solid var(--jc-line); }
.jc-cart-total-row span { font-size: 13px; font-weight: 800; }
.jc-cart-total-row strong { color: var(--jc-red); font-size: 20px; font-weight: 900; }
.jc-cart-checkout-button { width: 100%; min-height: 54px; margin-top: 15px; }
.jc-cart-checkout-button span { flex: 1; text-align: left; }
.jc-cart-continue { min-height: 38px; display: flex; align-items: center; justify-content: center; gap: 7px; margin-top: 7px; color: var(--jc-muted) !important; font-size: 10px; font-weight: 750; text-decoration: none !important; }

.jc-checkout-line { padding: 13px 0; border-bottom: 1px solid var(--jc-line); }
.jc-checkout-line:last-child { border-bottom: 0; }
.jc-checkout-line-inner { display: grid !important; grid-template-columns: 54px minmax(0,1fr) auto; gap: 11px; align-items: start; }
.jc-checkout-line-inner > img { width: 54px !important; height: 54px !important; object-fit: cover; border-radius: 11px; background: var(--jc-cream); }
.jc-checkout-line-copy { min-width: 0; }
.jc-checkout-line-heading { display: flex; gap: 7px; align-items: baseline; }
.jc-checkout-line-heading h4 { margin: 0; color: var(--jc-ink); font-size: 12px; line-height: 1.3; font-weight: 800; }
.jc-checkout-line-heading > span { color: var(--jc-muted); font-size: 9px; font-weight: 750; }
.jc-checkout-line-copy ul { margin: 5px 0 0; padding: 0; list-style: none; }
.jc-checkout-modifier { display: flex !important; justify-content: space-between; gap: 8px; color: var(--jc-muted); font-size: 8px; }
.jc-checkout-line-copy .note { margin: 5px 0 0; color: var(--jc-muted); font-size: 8px; line-height: 1.45; }
.jc-checkout-line .price { margin: 0; color: var(--jc-ink); font-size: 11px; font-weight: 850; white-space: nowrap; }

@media (max-width: 575px) {
  .jc-cart-drawer .cart-sidebar { max-width: 100vw; }
  .jc-cart-drawer .jc-cart-header { min-height: 76px; padding: 15px 16px; }
  .jc-cart-context { margin: 10px 14px 0; }
  .jc-cart-items { padding: 13px 14px 7px; }
  .jc-cart-summary { padding: 15px 16px 18px; }
  .jc-cart-line-main { grid-template-columns: 68px minmax(0,1fr); }
  .jc-cart-line-image { width: 68px !important; height: 68px !important; }
  .jc-cart-line-controls { grid-template-columns: 1fr auto; }
  .jc-cart-unit-price { grid-column: 1 / -1; }
}

/* Phase 2: checkout */
.jc-checkout-page { min-height: 70vh; background: var(--jc-soft); }
.jc-checkout-heading-section { padding: 26px 0 30px; border-bottom: 1px solid var(--jc-line); background: #fff; }
.jc-checkout-back { min-height: 38px; display: inline-flex; align-items: center; gap: 8px; margin-bottom: 18px; color: var(--jc-muted) !important; font-size: 11px; font-weight: 750; text-decoration: none !important; }
.jc-checkout-back:hover { color: var(--jc-red) !important; }
.jc-checkout-heading { display: flex; align-items: flex-end; justify-content: space-between; gap: 36px; }
.jc-checkout-heading h1 { margin: 8px 0 6px; font-size: clamp(38px,5vw,58px); line-height: .98; letter-spacing: -.045em; font-weight: 850; }
.jc-checkout-heading > div:first-child > p { max-width: 620px; margin: 0; color: var(--jc-muted); font-size: 13px; line-height: 1.6; }
.jc-checkout-heading-context { min-width: 310px; display: grid; grid-template-columns: 42px minmax(0,1fr) auto; gap: 11px; align-items: center; padding: 13px 14px; border: 1px solid var(--jc-line); border-radius: 16px; background: var(--jc-soft); }
.jc-checkout-heading-context > span { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 12px; background: #fff; color: var(--jc-red); }
.jc-checkout-heading-context > div { min-width: 0; display: flex; flex-direction: column; }
.jc-checkout-heading-context small { color: var(--jc-muted); font-size: 9px; }
.jc-checkout-heading-context strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 12px; }
.jc-checkout-heading-context .jc-text-link { font-size: 10px; }

.jc-checkout-content-section { padding: 38px 0 88px; }
.jc-checkout-alert { display: flex; align-items: center; gap: 10px; margin-bottom: 18px; padding: 13px 15px; border: 1px solid #f1b7b7; border-radius: 13px; background: #fff1f1; color: #a62d34; font-size: 12px; font-weight: 750; }
.jc-checkout-grid { display: grid; grid-template-columns: minmax(0,1fr) minmax(330px,420px); gap: 28px; align-items: start; }
.jc-checkout-main { display: flex; flex-direction: column; gap: 16px; }
.jc-checkout-card { padding: 23px; border: 1px solid var(--jc-line); border-radius: 20px; background: #fff; box-shadow: 0 4px 18px rgba(38,25,18,.03); }
.jc-checkout-card-heading { display: grid; grid-template-columns: 34px minmax(0,1fr); gap: 12px; align-items: start; margin-bottom: 20px; }
.jc-checkout-step { width: 34px; height: 34px; display: grid; place-items: center; border-radius: 10px; background: var(--jc-cream); color: var(--jc-red); font-size: 11px; font-weight: 900; }
.jc-checkout-card-heading h2 { margin: 1px 0 4px; font-size: 18px; font-weight: 850; letter-spacing: -.02em; }
.jc-checkout-card-heading p { margin: 0; color: var(--jc-muted); font-size: 10px; line-height: 1.55; }
.jc-checkout-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.jc-checkout-page .jc-field { margin: 0; }
.jc-checkout-page .jc-field-full { grid-column: 1 / -1; }
.jc-checkout-page .jc-field label { display: block; margin-bottom: 7px; color: #4f4741; font-size: 10px; font-weight: 800; }
.jc-checkout-page .form-control { min-height: 48px; padding: 11px 13px; border: 1px solid #ded7d0; border-radius: 12px; background: #fff; color: var(--jc-ink); font-size: 12px; box-shadow: none; }
.jc-checkout-page .form-control:focus { border-color: rgba(163,24,33,.55); box-shadow: 0 0 0 3px rgba(163,24,33,.08); }
.jc-field-help { display: flex; align-items: center; gap: 5px; margin-top: 7px; color: var(--jc-muted); font-size: 9px; line-height: 1.5; }

.jc-checkout-outlet-card { display: grid; grid-template-columns: 44px minmax(0,1fr) auto; gap: 11px; align-items: center; margin-bottom: 18px; padding: 13px; border-radius: 15px; background: var(--jc-soft); }
.jc-checkout-outlet-icon { width: 44px; height: 44px; display: grid; place-items: center; border-radius: 12px; background: #fff; color: var(--jc-red); }
.jc-checkout-outlet-card > div { min-width: 0; display: flex; flex-direction: column; }
.jc-checkout-outlet-card small { color: var(--jc-muted); font-size: 9px; }
.jc-checkout-outlet-card strong { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; font-size: 12px; }
.jc-checkout-outlet-card .jc-btn { min-height: 38px; padding: 0 13px; font-size: 9px; }

.jc-schedule-section { margin: 0 0 14px; }
.jc-schedule-toggle { position: relative; display: grid; grid-template-columns: minmax(0,1fr) 44px; gap: 12px; align-items: center; margin: 0; padding: 13px 14px; border: 1px solid var(--jc-line); border-radius: 14px; cursor: pointer; }
.jc-schedule-toggle > span { display: flex; flex-direction: column; }
.jc-schedule-toggle strong { font-size: 11px; }
.jc-schedule-toggle small { margin-top: 2px; color: var(--jc-muted); font-size: 9px; }
.jc-schedule-toggle input { position: absolute; opacity: 0; pointer-events: none; }
.jc-schedule-toggle i { position: relative; width: 42px; height: 24px; border-radius: 99px; background: #ddd5ce; transition: .2s ease; }
.jc-schedule-toggle i::after { content: ""; position: absolute; width: 18px; height: 18px; left: 3px; top: 3px; border-radius: 50%; background: #fff; box-shadow: 0 1px 5px rgba(0,0,0,.12); transition: .2s ease; }
.jc-schedule-toggle input:checked + i { background: var(--jc-red); }
.jc-schedule-toggle input:checked + i::after { transform: translateX(18px); }
.jc-schedule-datetime { margin-top: 10px; }
.jc-asap-note { display: grid; grid-template-columns: 40px minmax(0,1fr); gap: 10px; align-items: center; padding: 11px 13px; border-radius: 13px; background: var(--jc-soft); }
.jc-asap-note > span { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 11px; background: #fff; color: #e98b33; }
.jc-asap-note > div { display: flex; flex-direction: column; }
.jc-asap-note strong { font-size: 10px; }
.jc-asap-note small { margin-top: 2px; color: var(--jc-muted); font-size: 9px; line-height: 1.5; }

.jc-payment-methods { display: grid; gap: 9px; }
.jc-payment-option { position: relative; display: grid; grid-template-columns: 42px minmax(0,1fr) 28px; gap: 11px; align-items: center; margin: 0; padding: 12px 13px; border: 1px solid var(--jc-line); border-radius: 14px; background: #fff; cursor: pointer; transition: .18s ease; }
.jc-payment-option:hover { border-color: #cfc3ba; background: var(--jc-soft); }
.jc-payment-option:has(input:checked) { border-color: rgba(163,24,33,.45); background: #fff8f7; box-shadow: 0 0 0 2px rgba(163,24,33,.05); }
.jc-payment-option input { position: absolute; opacity: 0; pointer-events: none; }
.jc-payment-icon { width: 42px; height: 42px; display: grid; place-items: center; border-radius: 11px; background: var(--jc-soft); color: var(--jc-red); }
.jc-payment-copy { min-width: 0; display: flex; flex-direction: column; }
.jc-payment-copy strong { font-size: 11px; }
.jc-payment-copy small { margin-top: 2px; color: var(--jc-muted); font-size: 9px; line-height: 1.45; }
.jc-payment-check { width: 24px; height: 24px; display: grid; place-items: center; border: 1px solid var(--jc-line); border-radius: 50%; color: transparent; font-size: 8px; }
.jc-payment-option:has(input:checked) .jc-payment-check { border-color: var(--jc-red); background: var(--jc-red); color: #fff; }

.jc-checkout-summary { position: sticky; top: 92px; overflow: hidden; padding: 21px; border: 1px solid var(--jc-line); border-radius: 20px; background: #fff; box-shadow: var(--jc-shadow-sm); }
.jc-checkout-summary-heading { display: flex; justify-content: space-between; align-items: flex-end; gap: 15px; padding-bottom: 15px; border-bottom: 1px solid var(--jc-line); }
.jc-checkout-summary-heading h2 { margin: 5px 0 0; font-size: 20px; font-weight: 850; letter-spacing: -.025em; }
.jc-checkout-summary-heading .jc-text-link { font-size: 9px; }
.jc-checkout-summary-items { min-height: 70px; max-height: 360px; overflow-y: auto; padding: 2px 0; }
.jc-checkout-totals { padding-top: 12px; border-top: 1px solid var(--jc-line); }
.jc-checkout-totals > div { display: flex; justify-content: space-between; align-items: baseline; gap: 14px; padding: 6px 0; color: var(--jc-muted); font-size: 10px; }
.jc-checkout-totals > div strong { color: #4f4741; font-size: 11px; font-weight: 750; }
.jc-checkout-totals .jc-checkout-grand-total-row { margin-top: 5px; padding-top: 13px; border-top: 1px solid var(--jc-line); color: var(--jc-ink); font-size: 13px; font-weight: 850; }
.jc-checkout-totals .jc-checkout-grand-total-row strong { color: var(--jc-red); font-size: 21px; font-weight: 900; }
.jc-checkout-place-order { width: 100%; min-height: 54px; margin-top: 16px; }
.jc-checkout-place-order span { flex: 1; text-align: left; }
.jc-checkout-submit-note { display: flex; align-items: center; justify-content: center; gap: 5px; margin: 9px 0 0; color: var(--jc-muted); font-size: 8px; text-align: center; }

@media (max-width: 991px) {
  .jc-checkout-heading { align-items: flex-start; flex-direction: column; }
  .jc-checkout-heading-context { width: 100%; min-width: 0; }
  .jc-checkout-grid { grid-template-columns: 1fr; }
  .jc-checkout-summary { position: static; }
  .jc-checkout-summary-items { max-height: none; }
}

@media (max-width: 575px) {
  .jc-checkout-heading-section { padding: 18px 0 24px; }
  .jc-checkout-heading h1 { font-size: 42px; }
  .jc-checkout-heading-context { grid-template-columns: 38px minmax(0,1fr); }
  .jc-checkout-heading-context > span { width: 38px; height: 38px; }
  .jc-checkout-heading-context .jc-text-link { grid-column: 1 / -1; text-align: left; }
  .jc-checkout-content-section { padding: 24px 0 66px; }
  .jc-checkout-card { padding: 17px; border-radius: 17px; }
  .jc-checkout-fields { grid-template-columns: 1fr; }
  .jc-checkout-page .jc-field-full { grid-column: auto; }
  .jc-checkout-outlet-card { grid-template-columns: 40px minmax(0,1fr); }
  .jc-checkout-outlet-icon { width: 40px; height: 40px; }
  .jc-checkout-outlet-card .jc-btn { grid-column: 1 / -1; width: 100%; }
  .jc-checkout-summary { padding: 17px; border-radius: 17px; }
}

/* Hosted acceptance v1.3: customer typography accessibility floor */
:root {
  --jc-readable-xs: 13px;
  --jc-readable-sm: 14px;
  --jc-readable-md: 15px;
}

/* Header, location and account context */
.jc-location-copy small,
.jc-location-chevron,
.jc-nav-dropdown-trigger,
.jc-results-heading span,
.jc-status-badge {
  font-size: var(--jc-readable-xs);
  line-height: 1.45;
}
.jc-location-copy strong,
.jc-nav-dropdown-menu a,
.jc-fulfilment-note,
.jc-field label,
.jc-fulfilment-option small,
.jc-outlet-address,
.jc-outlet-message,
.jc-outlet-meta {
  font-size: var(--jc-readable-sm);
  line-height: 1.55;
}

/* Home/menu catalogue readability */
.jc-benefit-item span:last-child,
.jc-menu-context-title > span:last-child,
.jc-menu-context-copy p,
.jc-menu-search-wrap > label,
#jc-menu-result-count,
.jc-menu-category-chip strong,
.jc-menu-category-chip small,
.jc-menu-rating,
.jc-menu-product-copy p,
.jc-menu-search-empty p {
  font-size: var(--jc-readable-sm);
  line-height: 1.55;
}
.jc-menu-context-copy .jc-eyebrow { font-size: var(--jc-readable-xs); }
.jc-menu-add-button { font-size: var(--jc-readable-sm); }

/* Product detail and modifier readability */
.jc-product-back,
.jc-product-serving-card small,
.jc-product-serving-card strong,
.jc-product-serving-card .jc-text-link,
.jc-product-price-row > span,
.jc-product-option-heading span,
.jc-product-option-heading small,
.jc-product-select-label,
.jc-modifier-choice .custom-control-label,
.jc-modifier-row > strong,
.jc-product-quantity-group label,
.jc-product-total-group > span,
.jc-product-calories,
.jc-related-rating {
  font-size: var(--jc-readable-sm);
  line-height: 1.5;
}
.jc-product-add-button > strong { font-size: var(--jc-readable-md); }

/* Cart drawer readability */
.jc-cart-header .jc-eyebrow,
.jc-cart-context small,
.jc-cart-context .jc-text-link,
.jc-cart-modifier,
.jc-cart-note,
.jc-cart-unit-price,
.jc-cart-summary-heading span {
  font-size: var(--jc-readable-xs);
  line-height: 1.5;
}
.jc-cart-context strong,
.jc-cart-empty-hint p,
.jc-cart-quantity button,
.jc-cart-quantity .cart_qty,
.jc-cart-line-total,
.jc-cart-summary-lines > div,
.jc-cart-summary-lines strong,
.jc-cart-total-row span,
.jc-cart-continue {
  font-size: var(--jc-readable-sm);
  line-height: 1.5;
}

/* Checkout readability: labels, helper text, line items and totals */
.jc-checkout-back,
.jc-checkout-heading > div:first-child > p,
.jc-checkout-heading-context small,
.jc-checkout-heading-context strong,
.jc-checkout-heading-context .jc-text-link,
.jc-checkout-alert,
.jc-checkout-step,
.jc-checkout-card-heading p,
.jc-checkout-page .jc-field label,
.jc-field-help,
.jc-checkout-outlet-card small,
.jc-checkout-outlet-card strong,
.jc-checkout-outlet-card .jc-btn,
.jc-schedule-toggle strong,
.jc-schedule-toggle small,
.jc-asap-note strong,
.jc-asap-note small,
.jc-payment-copy strong,
.jc-payment-copy small,
.jc-checkout-summary-heading .jc-text-link,
.jc-checkout-totals > div,
.jc-checkout-totals > div strong,
.jc-checkout-submit-note,
.jc-checkout-line-heading h4,
.jc-checkout-line-heading > span,
.jc-checkout-modifier,
.jc-checkout-line-copy .note,
.jc-checkout-line .price {
  font-size: var(--jc-readable-sm);
  line-height: 1.55;
}
.jc-checkout-page .form-control {
  font-size: var(--jc-readable-md);
  line-height: 1.45;
}
.jc-checkout-totals .jc-checkout-grand-total-row { font-size: var(--jc-readable-md); }

/* Login, registration and password-recovery pages */
.login_page .auth-form label,
.login_page .auth-form .form-control,
.login_page .auth-form .btn-custom,
.login_page .auth-form .ct-social-login {
  font-size: var(--jc-readable-md);
  line-height: 1.45;
}
.login_page .auth-form .subtitle,
.login_page .auth-form .forgot_password_text,
.login_page .auth-form .register_text,
.login_page .auth-form .auth-seperator span,
.login_page .auth-form .red_error,
.login_page .auth-form .green_error,
.login_page .auth-form .error_txt {
  font-size: var(--jc-readable-sm);
  line-height: 1.55;
}

/* Footer links and supporting text */
.jc-footer-brand p,
.jc-footer-column a,
.jc-footer-link-button {
  font-size: var(--jc-readable-sm);
  line-height: 1.6;
}
.jc-footer-bottom {
  font-size: var(--jc-readable-xs);
  line-height: 1.55;
}

@media (max-width: 575px) {
  .jc-menu-product-copy p { min-height: 42px; font-size: var(--jc-readable-sm); }
  .jc-checkout-page .form-control,
  .login_page .auth-form .form-control { font-size: 16px; }
}
