/* ─────────────────────────────────────────────
   Cardápio público — estilos dos componentes
   (portados dos componentes Vue scoped).
   Depende dos tokens de main.css.
   ───────────────────────────────────────────── */

.page { min-height: 100vh; display: flex; flex-direction: column; }
main { flex: 1; }

/* ─── Header ─────────────────────────────────── */
.hdr {
  position: relative;
  z-index: 40;
  background: color-mix(in oklab, var(--c-cream) 88%, transparent);
  border-bottom: 1px solid var(--c-rule);
  overflow: visible;
}
.hdr-row {
  display: flex; align-items: center; justify-content: space-between;
  gap: 18px; height: 72px; position: relative;
}
.brand { display: inline-flex; align-items: center; position: relative; align-self: stretch; }
.brand-logo { display: block; position: relative; z-index: 2; }
.brand-logo img {
  display: block; height: 128px; width: auto; margin-top: 56px;
  filter: drop-shadow(0 10px 18px rgba(74, 12, 12, .25));
  transition: transform .25s cubic-bezier(.2,.7,.2,1);
}
.brand:hover .brand-logo img { transform: translateY(-2px) rotate(-1deg); }
.hdr-meta { display: flex; align-items: center; gap: 18px; position: relative; z-index: 1; }
.status {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: .82rem; font-weight: 600; color: var(--c-forest-deep);
}
.status.closed { color: #8a3232; }
@media (max-width: 640px) {
  .hdr-row { height: 64px; }
  .brand-logo img { height: 84px; margin-top: 24px; }
  .status {
    font-size: .72rem; padding: 4px 10px; border-radius: var(--radius-pill);
    background: color-mix(in oklab, var(--c-paper) 70%, transparent);
    border: 1px solid var(--c-rule);
  }
}
@media (max-width: 380px) {
  .brand-logo img { height: 72px; margin-top: 18px; }
}

/* ─── Hero ───────────────────────────────────── */
.hero {
  position: relative;
  padding: clamp(36px, 7vw, 96px) 0 clamp(60px, 10vw, 140px);
  background:
    radial-gradient(80% 60% at 80% 0%, rgba(242, 184, 75, .25), transparent 60%),
    radial-gradient(60% 40% at 0% 100%, rgba(31, 77, 43, .18), transparent 60%),
    linear-gradient(180deg, var(--c-cream), color-mix(in oklab, var(--c-cream) 70%, var(--c-paper)));
  overflow: hidden;
}
.hero::after {
  content: ''; position: absolute; inset: -2px;
  background-image: var(--grain-url); opacity: .18; mix-blend-mode: multiply; pointer-events: none;
}
.hero-grid { display: flex; justify-content: center; }
.hero-copy { position: relative; z-index: 1; text-align: center; max-width: 760px; }
.hero-copy .hero-lede { margin-inline: auto; }
.hero-copy .hero-actions, .hero-copy .hero-pills { justify-content: center; }
.hero-title {
  margin-top: 16px; font-size: clamp(2.4rem, 6.4vw, 5rem); line-height: .96;
  font-variation-settings: "opsz" 144, "SOFT" 30, "WONK" 1;
}
.hero-title em {
  font-style: italic; color: var(--c-wine);
  font-variation-settings: "opsz" 144, "SOFT" 100, "WONK" 1;
}
.under-gold {
  background: linear-gradient(transparent 64%, var(--c-gold) 64%, var(--c-gold) 92%, transparent 92%);
  padding: 0 .1em;
}
.hero-lede { margin-top: 18px; max-width: 46ch; color: var(--c-ink-muted); font-size: clamp(1rem, 1.4vw, 1.1rem); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 26px; }
.hero-pills { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; }
.hero-divider { position: absolute; left: 0; right: 0; bottom: -1px; width: 100%; height: 60px; }

/* ─── Destaques (strip) ──────────────────────── */
.strip { padding: 60px 0 20px; background: var(--c-paper); position: relative; }
.strip::before, .strip::after {
  content: ''; position: absolute; left: 0; right: 0; height: 24px; background: var(--c-paper);
  background-image: radial-gradient(circle at 12px 0, transparent 12px, var(--c-paper) 12px);
  background-size: 24px 24px;
}
.strip::before { top: -1px; transform: scaleY(-1); }
.strip::after { bottom: -1px; }
.strip .head { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; margin-bottom: 18px; }
.strip .head h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
.rail-nav { display: none; gap: 8px; }
.rail-arrow {
  width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%;
  background: var(--c-cream); color: var(--c-wine); border: 1px solid var(--c-rule);
  box-shadow: var(--shadow-soft); cursor: pointer;
  transition: background .15s, transform .12s, color .15s, opacity .2s;
}
.rail-arrow:hover:not(:disabled) { background: var(--c-wine); color: var(--c-cream); transform: translateY(-2px); }
.rail-arrow:disabled { opacity: .3; cursor: not-allowed; }
@media (min-width: 720px) { .rail-nav { display: inline-flex; } }
.rail {
  display: flex; gap: 12px; overflow-x: auto; overflow-y: hidden;
  padding: 10px 6px 14px; margin: -10px -6px -14px;
  scroll-snap-type: x proximity; scroll-padding-inline: 6px;
}
.chip {
  display: inline-flex; align-items: center; gap: 10px; padding: 10px 10px 10px 12px;
  background: var(--c-cream); border-radius: var(--radius-pill); border: 1px solid var(--c-rule);
  box-shadow: var(--shadow-soft); transition: transform .15s, border-color .2s, box-shadow .2s;
  scroll-snap-align: start; flex-shrink: 0;
}
.chip:hover { transform: translateY(-2px); }
.chip.active { border-color: var(--c-wine); box-shadow: 0 0 0 3px rgba(139, 30, 30, .12), var(--shadow-soft); }
.dot { width: 26px; height: 26px; border-radius: 50%; box-shadow: inset 0 -4px 6px rgba(0,0,0,.2); flex-shrink: 0; }
.chip-body { display: flex; flex-direction: column; line-height: 1.15; gap: 2px; padding-right: 4px; }
.chip-name { font-weight: 600; font-size: .9rem; white-space: nowrap; }
.chip-prices { display: inline-flex; align-items: baseline; gap: 8px; }
.chip-old { font-size: .76rem; color: var(--c-ink-muted); text-decoration: line-through; }
.chip-price { font-family: var(--font-display); font-style: italic; color: var(--c-wine); font-weight: 600; font-size: 1rem; }
.chip-actions { display: inline-flex; align-items: center; flex-shrink: 0; }
.add-btn {
  width: 32px; height: 32px; display: grid; place-items: center; border-radius: 50%;
  background: var(--c-wine); color: var(--c-cream); transition: background .15s, transform .12s; cursor: pointer; flex-shrink: 0;
}
.add-btn:hover { background: var(--c-wine-deep); transform: scale(1.06); }
/* Stepper menor dentro dos chips */
.chip .stepper { padding: 2px; }
.chip .step-btn { width: 26px; height: 26px; }
.chip .step-count { min-width: 20px; font-size: .95rem; }

/* ─── Abas ───────────────────────────────────── */
.tabs {
  position: sticky; top: 0; z-index: 30;
  background: color-mix(in oklab, var(--c-cream) 92%, transparent);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--c-rule);
}
.tabs-track {
  display: flex; gap: 8px; overflow-x: auto; padding: 14px clamp(16px, 4vw, 32px);
  max-width: 1180px; margin: 0 auto; scroll-snap-type: x proximity;
}
.tab {
  display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px;
  border-radius: var(--radius-pill); border: 1.5px solid var(--c-rule); background: transparent;
  color: var(--c-ink); font-size: .9rem; font-weight: 600; white-space: nowrap;
  transition: background .2s, color .2s, border-color .2s, transform .15s; scroll-snap-align: start;
}
.tab .emoji { font-size: 1rem; }
.tab:hover { border-color: var(--c-wine); color: var(--c-wine); }
.tab.active { background: var(--c-wine); border-color: var(--c-wine); color: var(--c-cream); }
@media (max-width: 640px) { .tabs-track { padding-block: 12px; } }

/* ─── Busca ──────────────────────────────────── */
.search { padding: 24px 0 0; }
.field-wrap {
  display: flex; align-items: center; gap: 10px; background: var(--c-cream);
  border: 1.5px solid var(--c-rule); border-radius: var(--radius-pill); padding: 10px 16px;
  box-shadow: var(--shadow-soft);
}
.field-wrap:focus-within { border-color: var(--c-wine); box-shadow: 0 0 0 4px rgba(139,30,30,.12); }
.field-wrap .ico { color: var(--c-wood); flex-shrink: 0; }
.field-wrap input { flex: 1; border: 0; background: transparent; outline: none; font-size: 1rem; min-width: 0; }
.field-wrap input::placeholder { color: var(--c-ink-muted); font-style: italic; }
.field-wrap .clear {
  background: var(--c-paper); width: 24px; height: 24px; border-radius: 50%;
  font-size: .75rem; color: var(--c-wood); flex-shrink: 0;
}
.empty { margin-top: 60px; }

/* ─── Seção de categoria ─────────────────────── */
.cat { padding-top: 30px; scroll-margin-top: 140px; }
.cat-head { display: flex; align-items: flex-end; justify-content: space-between; gap: 18px; margin-bottom: 24px; flex-wrap: wrap; }
.cat-head h2 { margin-top: 6px; font-size: clamp(1.8rem, 3.6vw, 2.6rem); font-variation-settings: "opsz" 144, "SOFT" 60, "WONK" 1; }
.cat-desc { margin-top: 6px; max-width: 58ch; color: var(--c-ink-muted); font-style: italic; font-family: var(--font-display); }
.count { font-family: var(--font-display); font-style: italic; color: var(--c-wood); font-size: 1rem; }
.grid { display: grid; gap: 16px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
@media (max-width: 860px) { .grid { grid-template-columns: 1fr; } }
@media (max-width: 420px) { .grid { gap: 12px; } }

/* ─── Card de produto ────────────────────────── */
.prod {
  display: grid; grid-template-columns: minmax(0, 1fr) clamp(116px, 31%, 164px); grid-template-areas: "body media";
  min-height: 132px; background: var(--c-cream);
  border: 1px solid var(--c-rule); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-card); transition: transform .25s ease, box-shadow .25s ease, border-color .2s;
}
.prod:hover { transform: translateY(-3px); box-shadow: var(--shadow-deep); border-color: color-mix(in oklab, var(--c-wine) 30%, var(--c-rule)); }
.prod.unavailable { opacity: .7; filter: grayscale(.4); }
.prod.special { border-color: var(--c-gold); box-shadow: 0 0 0 3px rgba(242, 184, 75, .18), var(--shadow-card); }
.prod-media {
  grid-area: media; position: relative; min-height: 100%; display: grid; place-items: center;
  align-self: stretch; overflow: hidden; border-left: 1px solid color-mix(in oklab, var(--c-rule) 70%, transparent);
}
.prod-media::after {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(60% 60% at 30% 30%, rgba(255,255,255,.32), transparent 60%), var(--grain-url);
  background-size: cover, 160px 160px; mix-blend-mode: overlay; opacity: .55; pointer-events: none;
}
.prod-media img { width: 100%; height: 100%; object-fit: cover; }
.initials { font-family: var(--font-display); font-weight: 700; font-style: italic; font-size: clamp(2.2rem, 4vw, 3.4rem); color: rgba(255, 248, 236, .85); text-shadow: 0 4px 12px rgba(0,0,0,.3); }
.badge { position: absolute; right: 8px; bottom: 8px; max-width: calc(100% - 16px); padding: 5px 9px; border-radius: var(--radius-pill); font-size: .62rem; letter-spacing: .08em; text-transform: uppercase; font-weight: 700; text-align: center; }
.badge-gold { background: var(--c-gold); color: var(--c-wine-ink); }
.badge-wine { background: var(--c-wine); color: var(--c-cream); }
.badge-paper { background: var(--c-cream); color: var(--c-wood); border: 1px solid var(--c-rule); }
.prod-body { grid-area: body; min-width: 0; padding: 11px 14px 10px; display: flex; flex-direction: column; gap: 4px; }
.prod-head h3 { font-family: var(--font-display); font-size: 1.08rem; line-height: 1.04; color: var(--c-wine-ink); margin: 0 0 3px; }
.desc { margin: 0; font-size: .86rem; color: var(--c-ink-muted); line-height: 1.14; display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.prod-foot { margin-top: 2px; display: flex; align-items: center; justify-content: space-between; gap: 5px; flex-wrap: wrap; }
.prices { display: flex; flex-direction: column; line-height: 1; gap: 3px; min-width: max-content; }
.old-price { font-size: .75rem; color: var(--c-ink-muted); text-decoration: line-through; }
.price { font-family: var(--font-display); font-style: italic; font-size: 1.24rem; color: var(--c-wine); font-weight: 700; }
.actions { display: flex; align-items: center; gap: 8px; flex: 1 1 auto; flex-wrap: wrap; justify-content: flex-end; min-width: 0; }
.btn-add-text { display: inline-flex; align-items: center; justify-content: center; padding: 8px 15px; border-radius: var(--radius-pill); background: var(--c-wine); color: var(--c-cream); border: 0; font-weight: 700; font-size: .82rem; cursor: pointer; transition: background .2s, transform .15s; }
.btn-add-text:hover { background: var(--c-wine-deep); transform: translateY(-1px); }
.btn-order { display: inline-flex; align-items: center; justify-content: center; padding: 8px 14px; border-radius: var(--radius-pill); background: var(--c-wine); color: var(--c-cream); font-weight: 700; font-size: .82rem; transition: background .2s; }
.btn-order:hover { background: var(--c-wine-deep); }
.unavail-pill { font-size: .75rem; padding: 6px 12px; border-radius: var(--radius-pill); background: var(--c-paper); color: var(--c-wood); border: 1px dashed var(--c-rule); }
.prod-combo-panel { grid-column: 1 / -1; }
.combo-prod.combo-open { border-color: color-mix(in oklab, var(--c-wine) 42%, var(--c-rule)); box-shadow: var(--shadow-deep); }
.combo-prod.combo-selected { border-color: color-mix(in oklab, var(--c-forest) 38%, var(--c-rule)); }
.combo-panel {
  grid-column: 1 / -1;
  padding: 0 14px 14px;
  border-top: 1px dashed var(--c-rule);
  background: color-mix(in oklab, var(--c-cream) 84%, var(--c-paper));
}
.combo-choice { padding: 12px 0; border-bottom: 1px solid color-mix(in oklab, var(--c-rule) 70%, transparent); }
.combo-choice:last-of-type { border-bottom: 0; }
.combo-choice-head { display: flex; justify-content: space-between; gap: 12px; align-items: baseline; margin-bottom: 8px; }
.combo-choice-head strong { font-size: .9rem; color: var(--c-wine-ink); }
.combo-choice-head span { font-size: .75rem; color: var(--c-wood); font-weight: 700; }
.combo-choice.complete .combo-choice-head span { color: var(--c-forest-deep); }
.combo-options { display: grid; gap: 8px; }
.combo-option {
  display: flex; align-items: center; justify-content: space-between; gap: 10px;
  padding: 8px 10px; border: 1px solid var(--c-rule); border-radius: var(--radius-md);
  background: var(--c-cream);
}
.combo-option.selected { border-color: color-mix(in oklab, var(--c-forest) 40%, var(--c-rule)); background: rgba(31, 77, 43, .06); }
.combo-option > span { min-width: 0; font-size: .88rem; font-weight: 600; color: var(--c-ink); }
.combo-option-step { display: inline-flex; align-items: center; gap: 2px; flex-shrink: 0; }
.combo-panel-foot { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 12px; }
.combo-status { font-size: .78rem; color: var(--c-ink-muted); }
.js-combo-add:disabled { opacity: .45; cursor: not-allowed; transform: none; }
.btn-edit-combo { background: var(--c-forest); }
.btn-edit-combo:hover { background: var(--c-forest-deep); }

/* Stepper (compartilhado por card e chip) */
.stepper {
  display: inline-flex; align-items: center; gap: 2px; padding: 3px;
  background: var(--c-paper); border: 1px solid var(--c-rule); border-radius: var(--radius-pill);
  box-shadow: inset 0 1px 0 rgba(255, 248, 236, .6); animation: stepperIn .2s ease-out;
}
@keyframes stepperIn { from { opacity: 0; transform: scale(.85); } to { opacity: 1; transform: none; } }
.step-btn { width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; color: var(--c-wine); background: transparent; transition: background .15s, color .15s, transform .12s; cursor: pointer; }
.step-btn:hover { background: var(--c-cream); }
.step-btn:active { transform: scale(.92); }
.step-btn.primary { background: var(--c-wine); color: var(--c-cream); }
.step-btn.primary:hover { background: var(--c-wine-deep); }
.step-count { min-width: 22px; text-align: center; font-family: var(--font-display); font-style: italic; font-weight: 700; color: var(--c-wine-ink); font-size: 1rem; font-variant-numeric: tabular-nums; }

@media (max-width: 560px) {
  .prices { flex-direction: row; align-items: baseline; gap: 10px; }
  .actions { justify-content: flex-start; width: 100%; }
  .btn-order { flex: 1 1 110px; text-align: center; padding: 10px; }
  .combo-panel-foot { align-items: stretch; flex-direction: column; }
  .combo-panel-foot .btn-add-text { width: 100%; }
}
@media (max-width: 420px) {
  .prod {
    grid-template-columns: minmax(0, 1fr) clamp(92px, 31vw, 118px);
    min-height: 132px;
  }
  .prod-body { padding: 9px 9px 9px 11px; gap: 4px; }
  .prod-head h3 { font-size: .96rem; line-height: 1.03; margin: 0 0 3px; }
  .desc { font-size: .78rem; line-height: 1.12; -webkit-line-clamp: 2; line-clamp: 2; }
  .price { font-size: 1.04rem; }
  .prod-foot { gap: 5px; }
  .btn-add-text { padding: 8px 10px; }
  .stepper { padding: 2px; }
  .step-btn { width: 26px; height: 26px; }
  .step-count { min-width: 20px; font-size: .95rem; }
  .badge { right: 6px; bottom: 6px; padding: 4px 7px; font-size: .56rem; }
  .initials { font-size: 2.6rem; }
  .combo-panel { padding-inline: 11px; padding-bottom: 11px; }
  .combo-choice { padding-block: 10px; }
  .combo-option { padding: 7px 8px; }
}
@media (max-width: 360px) {
  .prod {
    grid-template-columns: minmax(0, 1fr) 86px;
  }
  .prod-body { padding: 12px 10px 11px 12px; }
  .desc { font-size: .8rem; }
  .btn-add-text,
  .btn-order {
    padding-inline: 10px;
    font-size: .8rem;
  }
}

/* ─── Informações da loja ────────────────────── */
.info { padding: 80px 0 120px; background: linear-gradient(180deg, transparent, var(--c-paper)); scroll-margin-top: 140px; }
.info-grid { display: grid; gap: 20px; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.info-card { padding: 26px; display: flex; flex-direction: column; gap: 12px; }
.info-card h3 { font-size: 1.4rem; }
.hours { list-style: none; margin: 8px 0 0; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.hours li { display: flex; justify-content: space-between; border-bottom: 1px dashed var(--c-rule); padding-bottom: 6px; font-size: .92rem; }
.hours li strong { font-family: var(--font-display); font-style: italic; color: var(--c-wine-ink); }
.address { font-size: 1rem; color: var(--c-ink-muted); }
.link { color: var(--c-wine); font-weight: 600; font-size: .9rem; }
.meta-row { display: flex; gap: 24px; margin-top: 12px; }
.meta-row strong { font-family: var(--font-display); font-style: italic; font-size: 1.4rem; color: var(--c-wine); }
.pays { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 6px; }
.pays li { padding: 6px 12px; border-radius: var(--radius-pill); background: var(--c-paper); border: 1px solid var(--c-rule); font-size: .82rem; font-weight: 600; }
.lede { color: var(--c-ink-muted); font-size: .88rem; margin-top: 8px; }

/* ─── Footer ─────────────────────────────────── */
.ft { padding: 56px 0 calc(136px + env(safe-area-inset-bottom)); background: var(--c-wine-ink); color: color-mix(in oklab, var(--c-cream) 85%, transparent); }
.ft-grid { display: grid; gap: clamp(32px, 5vw, 64px); grid-template-columns: minmax(220px, 1.2fr) 1fr; align-items: flex-start; }
@media (max-width: 720px) { .ft-grid { grid-template-columns: 1fr; } }
.ft-brand-col { display: flex; flex-direction: column; gap: 12px; align-items: flex-start; }
.ft-logo { display: inline-block; max-width: 200px; }
.ft-logo img { display: block; max-height: 130px; width: auto; object-fit: contain; filter: drop-shadow(0 8px 18px rgba(0, 0, 0, .35)); }
.ft-name { font-family: var(--font-display); font-style: italic; font-size: 1.45rem; color: var(--c-gold); margin-top: 4px; }
.ft-desc { color: rgba(255, 248, 236, .7); font-size: .92rem; line-height: 1.55; max-width: 38ch; }
.ft-links h4 { font-family: var(--font-display); font-size: 1rem; color: var(--c-gold); letter-spacing: .04em; margin-bottom: 14px; font-style: italic; }
.ft-links ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 8px; grid-template-columns: repeat(2, minmax(0, 1fr)); }
.ft-links a { display: inline-flex; align-items: center; gap: 8px; padding: 6px 0; color: rgba(255, 248, 236, .8); font-size: .92rem; transition: color .15s; }
.ft-links a:hover { color: var(--c-gold); }
.ft-links .emoji { font-size: 1rem; }
.ft-bottom { margin-top: 40px; padding-top: 20px; border-top: 1px solid rgba(255, 248, 236, .08); }
.ft-meta { font-size: .78rem; opacity: .6; }

/* ─── FAB WhatsApp ───────────────────────────── */
.fab {
  position: fixed; left: 16px; right: 16px; bottom: calc(16px + env(safe-area-inset-bottom));
  z-index: 50; display: flex; align-items: center; gap: 14px; padding: 12px 18px 12px 12px;
  border-radius: var(--radius-pill); background: var(--c-whatsapp); color: #ffffff;
  box-shadow: 0 18px 40px -16px rgba(18, 140, 126, .7), 0 0 0 6px rgba(37, 211, 102, .18);
  transition: transform .2s, background .2s;
}
.fab:hover { transform: translateY(-2px); background: var(--c-whatsapp-deep); }
.fab.has { background: var(--c-whatsapp-deep); box-shadow: 0 18px 40px -16px rgba(18, 140, 126, .8), 0 0 0 6px rgba(37, 211, 102, .25); }
.fab.has:hover { filter: brightness(.92); }
.fab-icon { width: 40px; height: 40px; display: grid; place-items: center; border-radius: 50%; background: rgba(255, 248, 236, .14); color: var(--c-cream); }
.fab-body { display: flex; flex-direction: column; line-height: 1.15; flex: 1; }
.fab-title { font-weight: 700; font-size: .98rem; }
.fab-sub { font-size: .78rem; opacity: .82; }
.fab-arrow { font-family: var(--font-display); font-size: 1.2rem; opacity: .9; }
@media (min-width: 720px) { .fab { left: auto; right: 24px; bottom: 24px; min-width: 320px; } }
@media (max-width: 420px) {
  .page { padding-bottom: calc(88px + env(safe-area-inset-bottom)); }
  .fab {
    left: 12px;
    right: 12px;
    bottom: calc(10px + env(safe-area-inset-bottom));
    padding: 10px 14px 10px 10px;
    gap: 10px;
  }
  .fab-icon { width: 36px; height: 36px; }
  .fab-title { font-size: .9rem; }
  .fab-sub { font-size: .72rem; }
}
