/* =========================================================================
   BRAND FONT — "TAN Tangkiwood"
   Applied to ALL text on this page. It's a paid font (TanType, ~$15) so it
   can't be bundled here — I don't have a license to redistribute it, and
   it isn't on free font CDNs like Google Fonts.
   If you own a license:
     1. Download the webfont files (.woff2 / .woff) from your TanType account
     2. Create a "fonts" folder next to this file
     3. Put the font files in it, e.g. fonts/TAN-Tangkiwood.woff2
     4. Uncomment the @font-face rule below
   Until then, every element falls back to Fraunces (a free bold serif)
   so the page still looks intentional in the meantime.
   ========================================================================= */
@font-face {
  font-family: 'TAN Tangkiwood';
  src: url('fonts/TAN-Tangkiwood.woff2') format('woff2'),
       url('fonts/TAN-Tangkiwood.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Libre Baskerville';
  src: url('fonts/LibreBaskerville-VariableFont_wght.ttf') format('truetype');
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Libre Baskerville';
  src: url('fonts/LibreBaskerville-Italic-VariableFont_wght.ttf') format('truetype');
  font-weight: 300 900;
  font-style: italic;
  font-display: swap;
}

:root{
  --font-brand:'Libre Baskerville', serif;
  --font-ui:'Libre Baskerville', serif;
  --forest:#1e3a3d;
  --forest-dark:#132728;
  --cream:#f4ebd0;
  --gold:#d9a76a;
  --rust:#b97d47;
  --ink:#22201b;
  --line: rgba(30,58,61,0.16);
  --line-light: rgba(244,235,208,0.22);
}

*{ box-sizing:border-box; margin:0; padding:0; }

html{ scroll-behavior:smooth; }

body{
  background:var(--cream);
  color:var(--ink);
  font-family:var(--font-brand);
  line-height:1.55;
  -webkit-font-smoothing:antialiased;
}

img{ max-width:100%; display:block; }

a{ color:inherit; }

.wrap{
  max-width:1080px;
  margin:0 auto;
  padding:0 28px;
}

.eyebrow{
  font-family:var(--font-brand);
  font-weight:600;
  font-size:25px;
  letter-spacing:0.22em;
  text-transform:uppercase;
}

h1, h2, h3{
  font-family:var(--font-brand);
  font-weight:600;
  letter-spacing:-0.01em;
}

/* ===== Skip link / focus ===== */
a:focus-visible, button:focus-visible{
  outline:2px solid var(--gold);
  outline-offset:3px;
  border-radius:2px;
}

@media (prefers-reduced-motion: reduce){
  *{ animation-duration:0.001ms !important; animation-iteration-count:1 !important; transition-duration:0.001ms !important; scroll-behavior:auto !important; }
}

/* ===== HERO ===== */
.hero{
  background: linear-gradient(rgba(19, 39, 40, 0.82), rgba(19, 39, 40, 0.94)), url('assets/kitchen_image.png');
  background-size: cover;
  background-position: center;
  color:var(--cream);
  position:relative;
  overflow:hidden;
  padding:64px 0 96px;
}

.hero::before{
  /* subtle grain / texture using layered radial gradients */
  content:"";
  position:absolute; inset:0;
  background:
    radial-gradient(circle at 12% 18%, rgba(217,167,106,0.16), transparent 40%),
    radial-gradient(circle at 88% 78%, rgba(217,167,106,0.12), transparent 45%);
  pointer-events:none;
}

.hero-inner{
  position:relative;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.hero .eyebrow{ color:var(--gold); margin-bottom:22px; }

.wordmark{
  line-height:0;
  max-width:620px;
  width:100%;
}
.wordmark-img{
  width:100%;
  height:auto;
}

.hero-sub{
  margin-top:26px;
  max-width:480px;
  font-size:15px;
  color:rgba(244,235,208,0.82);
}

.cta-row{
  margin-top:38px;
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:center;
}

.btn{
  display:inline-flex;
  align-items:center;
  gap:9px;
  font-family:var(--font-ui);
  font-weight:500;
  font-size:15px;
  padding:14px 26px;
  border-radius:100px;
  text-decoration:none;
  border:1.5px solid transparent;
  transition:transform 0.15s ease, background 0.15s ease, border-color .15s ease;
  cursor:pointer;
}
.btn:hover{ transform:translateY(-1px); }

.btn-gold{
  background:var(--gold);
  color:var(--forest-dark);
}
.btn-gold:hover{ background:#e5b783; }

.btn-outline{
  background:transparent;
  color:var(--cream);
  border-color:var(--line-light);
}
.btn-outline:hover{ border-color:var(--gold); color:var(--gold); }

.btn svg{ width:17px; height:17px; flex-shrink:0; }

/* order strip */
.order-note{
  margin-top:34px;
  font-size:13px;
  color:rgba(244,235,208,0.68);
  letter-spacing:0.02em;
}
.order-note strong{ color:var(--gold); font-weight:600; }

/* signature: rotating stamp badge */
.stamp{
  position:absolute;
  top:40px;
  right:36px;
  width:118px;
  height:118px;
}
.stamp .ring{
  animation: spin 26s linear infinite;
  transform-origin:59px 59px;
}
@keyframes spin{ to{ transform:rotate(360deg); } }
.stamp-core{
  position:absolute;
  top:50%; left:50%;
  transform:translate(-50%,-50%);
  width:46px; height:46px;
  border-radius:50%;
  border:1.5px solid var(--gold);
}

@media (max-width:720px){
  .stamp{ display:none; }
}

/* ===== SECTION HEADERS ===== */
.section{ padding:88px 0; }
.section-head{
  text-align:center;
  max-width:520px;
  margin:0 auto 56px;
}
.section-head .eyebrow{ color:var(--rust); margin-bottom:14px; }
.section-head h2{
  font-size:clamp(32px, 5vw, 44px);
  color:var(--forest);
}
.section-head p{
  margin-top:14px;
  color:rgba(34,32,27,0.65);
  font-size:15.5px;
}

/* ===== PDF Link button ===== */
.menu-pdf-download {
  margin-top: 18px;
}
.pdf-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13.5px;
  font-weight: 600;
  color: var(--forest);
  text-decoration: none;
  border: 1px solid var(--line);
  padding: 8px 18px;
  border-radius: 100px;
  background: rgba(30, 58, 61, 0.03);
  transition: all 0.2s ease;
}
.pdf-link-btn:hover {
  background: var(--forest);
  color: var(--cream);
  border-color: var(--forest);
}
.pdf-link-btn svg {
  flex-shrink: 0;
}

/* ===== NEW MENU GRID & CARDS ===== */
.menu-container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  width: 100%;
  max-width: none;
  margin: 0 auto;
}
.menu-category {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.category-title {
  font-family: var(--font-brand);
  font-size: 20px;
  color: var(--rust);
  border-bottom: 2px solid var(--line);
  padding-bottom: 8px;
  margin-bottom: 6px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.menu-grid {
  display: flex;
  flex-wrap: nowrap;
  justify-content: flex-start;
  gap: clamp(16px, 2.5vw, 40px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  padding: 2px;
}
.menu-grid::-webkit-scrollbar { display: none; }
.menu-carousel { position: relative; }
.menu-carousel-control {
  position: absolute;
  top: 50%;
  z-index: 4;
  width: 36px;
  height: 36px;
  border: 0;
  border-radius: 50%;
  background: var(--forest);
  color: var(--cream);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(19, 39, 40, 0.22);
  transform: translateY(-50%);
}
.menu-carousel-control--prev { left: -18px; }
.menu-carousel-control--next { right: -18px; }
@media (min-width: 1100px) {
  .menu-carousel-control--prev { left: -72px; }
  .menu-carousel-control--next { right: -72px; }
}
@media (max-width: 768px) {
  .menu-grid {
    flex-wrap: wrap;
    justify-content: flex-start;
    overflow: visible;
    scroll-snap-type: none;
  }
  .menu-item-card {
    width: 100%;
    flex-basis: 100%;
    height: auto;
    min-height: 200px;
    aspect-ratio: 1 / 1;
  }
  .menu-item-img {
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    bottom: auto;
  }
  .menu-item-details {
    max-width: 68%;
  }
  .menu-carousel-control { display: none; }
}
@media (min-width: 769px) {
  /* Reserve the hover height so the following category never shifts down. */
  .menu-category { min-height: 500px; }
}
.menu-item-card {
  position: relative;
  flex: 0 0 300px;
  width: 300px;
  height: 300px;
  padding: 24px;
  background: #ffffff;
  border: none;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  scroll-snap-align: start;
  transition: height 0.22s ease, transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
  box-shadow: 0 2px 8px rgba(30, 58, 61, 0.06);
}
.menu-item-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  /* The image remains visible at the text edge and reaches full strength on the right. */
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.8) 0%, rgba(255, 255, 255, 0.58) 42%, rgba(255, 255, 255, 0.2) 72%, rgba(255, 255, 255, 0) 100%);
}
.menu-item-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(30, 58, 61, 0.1);
}
@media (hover: hover) and (min-width: 769px) {
  .menu-item-card:hover {
    height: 440px;
  }
  .menu-item-card:hover .menu-item-desc {
    display: block;
    -webkit-line-clamp: unset;
    line-clamp: unset;
    overflow: visible;
    font-size: 13.5px;
    line-height: 1.4;
  }
}
.menu-item-card--selected {
  background: #fbf9f4;
}
.menu-item-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 0;
  object-fit: cover;
  object-position: right center;
  border: none;
  z-index: 0;
}
.menu-item-details {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-self: stretch;
  max-width: 60%;
  min-width: 0;
  z-index: 2;
}
.menu-item-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.menu-item-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
}
.menu-item-name {
  font-family: var(--font-ui);
  font-size: 18px;
  color: var(--forest);
  line-height: 1.2;
  font-weight: 700;
}
.menu-item-tag {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 3;
  font-size: 8.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  padding: 2px 6px;
  border-radius: 3px;
  flex-shrink: 0;
}
.tag-sweet {
  background: rgba(185, 125, 71, 0.08);
  color: var(--rust);
}
.tag-savoury {
  background: rgba(30, 58, 61, 0.08);
  color: var(--forest);
}
.tag-special {
  background: rgba(217, 167, 106, 0.2);
  color: var(--rust);
}
.menu-item-desc {
  font-family: var(--font-ui);
  font-size: 14.5px;
  color: rgba(34, 32, 27, 0.82);
  line-height: 1.5;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.menu-item-card--expanded .menu-item-desc {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
}
.menu-item-read-more {
  align-self: flex-start;
  margin-top: 8px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: var(--forest);
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.35;
  cursor: pointer;
}
@media (min-width: 769px) {
  .menu-item-read-more { display: none; }
}

.menu-item-price {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 700;
  color: var(--forest);
  margin-top: 12px;
}

/* Counter Controls */
.menu-item-action {
  position: absolute;
  right: 24px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
  padding: 4px 6px;
  background: #fff;
  border-radius: 999px;
  box-shadow: 0 7px 18px rgba(19, 39, 40, 0.2);
  z-index: 3;
}
.counter-btn {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  border: 1.5px solid var(--forest);
  background: #fff;
  color: var(--forest);
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  user-select: none;
  transition: all 0.15s ease;
  padding: 0;
  line-height: 1;
}
.counter-btn:hover:not(:disabled) {
  background: var(--forest);
  color: var(--cream);
}
.counter-btn:disabled {
  border-color: rgba(30, 58, 61, 0.15);
  color: rgba(30, 58, 61, 0.15);
  cursor: not-allowed;
}
.item-count {
  font-size: 14px;
  font-weight: 600;
  min-width: 14px;
  text-align: center;
  color: var(--forest);
}

@media (max-width: 768px) {
  .menu-item-card--expanded {
    flex-basis: 100%;
    width: 100%;
    height: auto;
    min-height: 400px;
  }
}

/* ===== FLOATING ORDER BUILDER DRAWER ===== */
.order-builder {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: min(460px, calc(100vw - 48px));
  background: rgba(19, 39, 40, 0.96);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(244, 235, 208, 0.15);
  border-radius: 16px;
  color: var(--cream);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
  z-index: 100;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.3s ease;
  transform: translateY(120%);
  opacity: 0;
  pointer-events: none;
}
.order-builder--visible {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.order-builder-header {
  padding: 16px 20px;
  background: rgba(30, 58, 61, 0.4);
  border-bottom: 1px solid rgba(244, 235, 208, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
.order-builder-title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--gold);
}
.order-builder-badge {
  background: var(--gold);
  color: var(--forest-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 100px;
}
.order-builder-close {
  background: transparent;
  border: none;
  color: rgba(244, 235, 208, 0.6);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.15s ease;
  padding: 4px;
}
.order-builder-close:hover {
  color: var(--gold);
}
.order-builder-close svg {
  transition: transform 0.3s ease;
}
.order-builder-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-height: 520px;
  overflow-y: auto;
}
.order-builder-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.order-builder-items li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  border-bottom: 1px solid rgba(244, 235, 208, 0.08);
  padding-bottom: 8px;
}
.order-builder-items li:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.item-action-qty {
  display: flex;
  align-items: center;
  gap: 10px;
}
.qty-adjust-btn {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  border: 1px solid rgba(244, 235, 208, 0.3);
  background: transparent;
  color: var(--cream);
  font-family: var(--font-ui);
  font-size: 15px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
  padding: 0;
  line-height: 1;
}
.qty-adjust-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--forest-dark);
}
.qty-val {
  font-weight: 600;
  min-width: 14px;
  text-align: center;
}
.order-builder-preview {
  background: rgba(0, 0, 0, 0.15);
  border-radius: 8px;
  padding: 12px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.preview-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.preview-label {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(244, 235, 208, 0.5);
}
.copy-order-btn {
  border: 1px solid rgba(244, 235, 208, 0.35);
  border-radius: 999px;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-ui);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  padding: 6px 10px;
  cursor: pointer;
}
.copy-order-btn:hover { border-color: var(--gold); color: var(--gold); }
.preview-text {
  width: 100%;
  min-height: 108px;
  resize: vertical;
  border: 1px solid transparent;
  border-radius: 5px;
  background: transparent;
  font-size: 12.5px;
  color: rgba(244, 235, 208, 0.85);
  font-style: italic;
  white-space: pre-wrap;
  word-break: break-word;
  line-height: 1.4;
  font-family: var(--font-ui);
  outline: none;
}
.preview-text:focus { border-color: rgba(217, 167, 106, 0.75); }
.cooking-instructions {
  border: 1px solid rgba(244, 235, 208, 0.16);
  border-radius: 8px;
  padding: 10px 12px;
  color: rgba(244, 235, 208, 0.82);
}
.cooking-instructions label {
  display: block;
  color: var(--gold);
  font-size: 13px;
  font-weight: 700;
}
.cooking-instructions label span {
  color: rgba(244, 235, 208, 0.55);
  font-weight: 400;
}
.cooking-instructions textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(244, 235, 208, 0.25);
  border-radius: 0;
  background: transparent;
  color: var(--cream);
  font-family: var(--font-ui);
  font-size: 12px;
  line-height: 1.5;
  resize: vertical;
  outline: none;
}
.cooking-instructions textarea:focus {
  border-bottom-color: var(--gold);
}
.cooking-instructions textarea::placeholder {
  color: rgba(244, 235, 208, 0.42);
}
.order-builder-actions {
  display: flex;
  flex-direction: column;
  margin-top: 4px;
}
.order-builder-actions .btn {
  width: 100%;
  justify-content: center;
}

/* Minimized State */
.order-builder--minimized {
  transform: translateY(calc(100% - 54px)); /* header height visible */
}
.order-builder--minimized .order-builder-close svg {
  transform: rotate(180deg);
}

/* Page Entry Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.hero-inner > * {
  animation: fadeInUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) both;
}
.hero-inner .eyebrow { animation-delay: 0.1s; }
.hero-inner .wordmark { animation-delay: 0.25s; }
.hero-inner .hero-sub { animation-delay: 0.4s; }
.hero-inner .cta-row { animation-delay: 0.55s; }
.hero-inner .order-note { animation-delay: 0.7s; }

/* ===== POP-UPS ===== */
.popups{
  background:var(--forest);
  color:var(--cream);
}
.popups .section-head .eyebrow{ color:var(--gold); }
.popups .section-head h2{ color:var(--cream); }
.popups .section-head p{ color:rgba(244,235,208,0.68); }

.popup-featured{
  background:rgba(244,235,208,0.06);
  border:1px solid var(--line-light);
  border-radius:18px;
  padding:32px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  flex-wrap:wrap;
  margin-bottom:18px;
}
.popup-tag{
  font-size:11.5px;
  font-weight:700;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:var(--forest-dark);
  background:var(--gold);
  padding:5px 12px;
  border-radius:100px;
  display:inline-block;
  margin-bottom:14px;
}
.popup-featured h3{
  font-size:26px;
  color:var(--cream);
  font-weight:600;
}
.popup-meta{
  margin-top:8px;
  font-size:14.5px;
  color:rgba(244,235,208,0.7);
}
.popup-featured .btn{ flex-shrink:0; }

.popup-list{
  display:flex;
  flex-direction:column;
}
.popup-row{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:18px 6px;
  border-bottom:1px solid var(--line-light);
  flex-wrap:wrap;
}
.popup-row:last-child{ border-bottom:none; }
.popup-row-loc{
  font-family:var(--font-brand);
  font-size:17px;
  font-weight:500;
  color:var(--cream);
}
.popup-row-date{
  font-size:13.5px;
  color:rgba(244,235,208,0.6);
  margin-top:3px;
}
.popup-row a{
  font-size:13px;
  font-weight:600;
  color:var(--gold);
  text-decoration:none;
  border-bottom:1px solid rgba(217,167,106,0.4);
  padding-bottom:2px;
  white-space:nowrap;
}
.popup-row a:hover{ border-color:var(--gold); }

#popup-empty{
  display:none;
  text-align:center;
  color:rgba(244,235,208,0.55);
  padding:24px 0;
  font-size:14.5px;
}

/* ===== FOOTER ===== */
footer{
  background:var(--forest-dark);
  color:rgba(244,235,208,0.7);
  padding:44px 0 100px;
  text-align:center;
  font-size:13.5px;
}
.footer-brand{
  width:180px;
  height:auto;
  margin:0 auto 18px;
}
.footer-links{
  display:flex;
  gap:22px;
  justify-content:center;
  margin-bottom:18px;
  flex-wrap:wrap;
}
.footer-links a{ text-decoration:none; color:rgba(244,235,208,0.85); font-weight:500; }
.footer-links a:hover{ color:var(--gold); }

/* ===== STICKY MOBILE ORDER BAR ===== */
.sticky-bar{
  position:fixed;
  bottom:0; left:0; right:0;
  background:rgba(19, 39, 40, 0.95);
  backdrop-filter:blur(12px);
  -webkit-backdrop-filter:blur(12px);
  border-top:1px solid rgba(244, 235, 208, 0.15);
  padding:10px 14px;
  display:none;
  gap:10px;
  z-index:50;
}
.sticky-bar .btn{
  flex:1;
  justify-content:center;
  padding:12px 14px;
  font-size:14px;
}
@media (max-width:720px) {
  .sticky-bar { display:flex; }
  footer { padding-bottom:104px; }
  .order-builder {
    left:0; right:0; width:100%;
    bottom:0; border-radius:16px 16px 0 0;
    border-left:none; border-right:none; border-bottom:none;
  }
  .order-builder--visible {
    transform:translateY(-62px); /* sits above the sticky-bar */
  }
  .order-builder--minimized {
    transform:translateY(calc(100% - 54px - 62px));
  }
}
