﻿
/* ============================================================
   AÃ‡OUGUE GARROTÃƒO â€” style.css
   Para alterar cores/fontes globais, edite as variÃ¡veis abaixo
   ============================================================ */
 
:root {
  --red:     #C0392B;
  --red2:    #E74C3C;
  --dark:    #1A1008;
  --cream:   #FDF6EE;
  --gray:    #6B6259;
  --lgray:   #F2EBE3;
  --border:  #E5D9CE;
  --gold:    #D4A017;
  --green:   #27AE60;
  --nav-h:   68px;
  --tab-h:   54px;
}
 
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', sans-serif; background: var(--cream); color: var(--dark); font-size: 15px; }
 
/* â”€â”€ HEADER â”€â”€ */
header {
  background: var(--dark);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.hinner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  padding: 0 14px;
  gap: 10px;
}
.logo-wrap { display: flex; align-items: center; gap: 10px; text-decoration: none; flex-shrink: 0; }
.logo-wrap img { height: 54px; width: auto; }
.logo-text { display: none; }
@media (min-width: 500px) {
  .logo-text { display: block; }
  .logo-text b { font-family: 'Playfair Display', serif; font-size: 21px; font-weight: 900; color: #fff; display: block; line-height: 1.1; }
  .logo-text small { font-size: 11px; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; }
}
 
/* Search */
.search-wrap { flex: 1; max-width: 320px; position: relative; }
.search-wrap input {
  width: 100%;
  background: #2A2018;
  border: 1px solid #3A3028;
  border-radius: 10px;
  padding: 9px 12px 9px 36px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  color: #fff;
  outline: none;
  transition: border .2s;
}
.search-wrap input::placeholder { color: #6A5A50; }
.search-wrap input:focus { border-color: var(--red); }
.si { position: absolute; left: 10px; top: 50%; transform: translateY(-50%); color: #6A5A50; font-size: 15px; }
 
/* HorÃ¡rio */
.horario-box { display: none; text-align: right; flex-shrink: 0; }
@media (min-width: 640px) { .horario-box { display: block; } }
.horario-box span { font-size: 11px; color: #B0A090; display: block; line-height: 1.6; }
.ho { color: var(--gold) !important; font-weight: 700 !important; }
.status-open   { color: #4CD964 !important; font-weight: 800 !important; }
.status-closed { color: #FF453A !important; font-weight: 800 !important; }
 
/* Cart button */
.cart-btn {
  background: var(--red);
  border: none;
  color: #fff;
  border-radius: 10px;
  padding: 10px 16px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 700;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: background .2s;
  white-space: nowrap;
  flex-shrink: 0;
}
.cart-btn:hover { background: var(--red2); }
.cart-count {
  background: var(--gold);
  color: #1A1008;
  font-size: 12px;
  font-weight: 800;
  border-radius: 999px;
  padding: 2px 7px;
  min-width: 22px;
  text-align: center;
}
 
/* â”€â”€ PESO AVISO â”€â”€ */
.peso-bar {
  background: linear-gradient(90deg, #1A1008, #2D1810);
  border-bottom: 2px solid var(--gold);
  padding: 9px 14px;
  text-align: center;
}
.peso-bar p { color: #FDF6EE; font-size: 13px; font-weight: 600; }
.peso-bar strong { color: var(--gold); }
 
/* â”€â”€ NAV â”€â”€ */
.nav-wrap {
  background: var(--red);
  overflow-x: auto;
  scrollbar-width: none;
  position: sticky;
  top: var(--nav-h);
  z-index: 90;
  box-shadow: 0 2px 8px rgba(0,0,0,.2);
}
.nav-wrap::-webkit-scrollbar { display: none; }
 
.nav-inner { 
  max-width: 1280px; 
  margin: 0 auto; 
  display: flex; 
  padding: 0 6px; 
}
  
.nav-inner a {
  color: rgba(255,255,255,.85);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  padding: 0 16px;
  height: var(--tab-h);
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: all .15s;
  border-bottom: 3px solid transparent;
  letter-spacing: .3px;
}
.nav-inner a:hover,
.nav-inner a.active { color: #fff; background: rgba(0,0,0,.15); border-bottom-color: var(--gold); }
 
/* â”€â”€ HERO â”€â”€ */
.hero {
  background: linear-gradient(130deg, #1A1008 50%, #96281B);
  padding: 38px 14px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../img/hero-pattern.svg');
  opacity: .04;
}
.hero-inner { max-width: 580px; margin: 0 auto; position: relative; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: var(--gold);
  color: #1A1008;
  font-size: 11px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 5vw, 42px);
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 8px;
}
.hero h1 em { color: #E8805A; font-style: normal; }
.hero p { color: #C0B8AF; font-size: 13px; margin-bottom: 16px; }
.hero-chips { display: flex; align-items: center; justify-content: center; gap: 10px; flex-wrap: wrap; }
.hchip {
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 8px;
  padding: 8px 14px;
  text-align: center;
}
.hchip span { display: block; font-size: 10px; color: #B0A090; text-transform: uppercase; letter-spacing: .8px; }
.hchip strong { font-size: 13px; color: #fff; }
 
/* â”€â”€ MOBILE FILTER â”€â”€ */
.mobile-filter {
  display: flex;
  overflow-x: auto;
  gap: 8px;
  padding: 12px 12px 6px;
  scrollbar-width: none;
}
.mobile-filter::-webkit-scrollbar { display: none; }
@media (min-width: 768px) { .mobile-filter { display: none; } }
.mfbtn {
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 22px;
  padding: 7px 16px;
  font-size: 13px;
  font-weight: 700;
  color: var(--gray);
  white-space: nowrap;
  cursor: pointer;
  transition: all .15s;
  flex-shrink: 0;
  min-height: 40px;
}
.mfbtn:hover, .mfbtn.active { background: var(--red); border-color: var(--red); color: #fff; }
 
/* â”€â”€ MAIN â”€â”€ */
main { max-width: 1280px; margin: 0 auto; padding: 20px 11px 120px; }
 
/* Search Panel */
#searchPanel { margin-bottom: 20px; }
.search-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,.4); z-index: 50; }
.search-overlay.show { display: block; }
.search-results-box {
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
  position: relative;
  z-index: 51;
}
.sr-hdr { display: flex; align-items: center; justify-content: space-between; margin-bottom: 12px; }
.sr-title { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; }
.sr-close {
  background: var(--lgray);
  border: none;
  width: 34px;
  height: 34px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sr-close:hover { background: var(--border); }
.search-empty { text-align: center; padding: 32px; color: var(--gray); font-size: 14px; }
 
/* â”€â”€ SECTION â”€â”€ */
.section { margin-bottom: 40px; scroll-margin-top: 130px; }
.sechdr { display: flex; align-items: center; gap: 9px; margin-bottom: 14px; padding-bottom: 10px; border-bottom: 2px solid var(--border); }
.secicon { font-size: 22px; flex-shrink: 0; }
.sectitles { flex: 1; }
.sectitle { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: var(--dark); }
.secsub { font-size: 11px; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase; color: var(--gray); margin-top: 1px; }
.sectag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  color: var(--red);
  background: #FDECEA;
  border: 1px solid #FACAC4;
  padding: 4px 10px;
  border-radius: 999px;
  white-space: nowrap;
  flex-shrink: 0;
}
.subsec { margin-bottom: 24px; }
.substitle {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 12px;
  padding-left: 10px;
  border-left: 3px solid var(--red);
}
 
/* â”€â”€ PRODUCT GRID â”€â”€ */
.pgrid { display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 10px; }
@media (max-width: 480px) { .pgrid { grid-template-columns: repeat(2, 1fr); gap: 8px; } }
 
/* â”€â”€ CARD â”€â”€ */
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 13px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: box-shadow .25s, transform .25s;
}
.card:hover { box-shadow: 0 8px 24px rgba(0,0,0,.11); transform: translateY(-2px); }
.card:hover .cimg img { transform: scale(1.05); }
 
.cimg { width: 100%; aspect-ratio: 1; position: relative; background: #fff; overflow: hidden; }
.cimg img { width: 100%; height: 100%; object-fit: contain; display: block; transition: transform .3s ease; padding: 6px; }
.cimg .ph { display: flex; flex-direction: column; align-items: center; justify-content: center; width: 100%; height: 100%; gap: 3px; color: #C0B0A0; font-size: 30px; }
.cimg .ph span { font-size: 10px; color: #C0B0A0; }
 
.promo-badge { position: absolute; top: 6px; left: 6px; background: var(--red); color: #fff; font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: 999px; }
.peca-badge  { position: absolute; top: 6px; right: 6px; background: var(--gold); color: #1A1008; font-size: 10px; font-weight: 800; padding: 3px 8px; border-radius: 999px; }
 
.cbody { padding: 10px 11px; flex: 1; display: flex; flex-direction: column; gap: 3px; }
.cbrand { font-size: 10px; color: var(--gray); text-transform: uppercase; letter-spacing: .8px; }
.cname  { font-size: 13px; font-weight: 700; color: var(--dark); line-height: 1.3; }
.cprice { font-size: 15px; font-weight: 700; color: var(--red); margin-top: 3px; }
.cprice small { font-size: 10px; font-weight: 400; color: var(--gray); }
.cnote  { font-size: 10px; color: var(--gray); margin-top: 2px; font-style: italic; }
 
.cselectors { padding: 0 10px 6px; display: flex; flex-direction: column; gap: 6px; }
.csel-label { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: .8px; color: var(--gray); margin-bottom: 2px; }
.csel {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 6px 8px;
  font-size: 12px;
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
  background: var(--cream);
  outline: none;
  cursor: pointer;
}
.csel:focus { border-color: var(--red); }
.csel.err   { border-color: var(--red) !important; background: #FDECEA !important; }
 
.cfooter { padding: 0 10px 10px; }
.add-btn {
  width: 100%;
  background: var(--red);
  color: #fff;
  border: none;
  border-radius: 9px;
  padding: 10px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  transition: background .15s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.add-btn:hover  { background: var(--red2); }
.add-btn.added  { background: var(--green); }
 
/* â”€â”€ DRAWER â”€â”€ */
.overlay { position: fixed; inset: 0; background: rgba(0,0,0,.55); z-index: 200; opacity: 0; pointer-events: none; transition: opacity .25s; }
.overlay.open { opacity: 1; pointer-events: all; }
.drawer {
  position: fixed;
  top: 0; right: 0;
  width: min(460px, 100vw);
  height: 100dvh;
  background: #fff;
  z-index: 201;
  transform: translateX(100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  display: flex;
  flex-direction: column;
  box-shadow: -8px 0 40px rgba(0,0,0,.18);
  overflow: hidden;
  /* CORREÃ‡ÃƒO: impede scroll do body ao rolar o drawer */
  overscroll-behavior: contain;
}
.drawer.open { transform: translateX(0); }
 
/* CORREÃ‡ÃƒO CRÃTICA: impede que o body role quando drawer estÃ¡ aberto */
body.drawer-open {
  overflow: hidden;
  position: fixed;
  left: 0;
  width: 100%;
}
 
.drwhdr { display: flex; align-items: center; justify-content: space-between; padding: 16px 18px 12px; border-bottom: 1px solid var(--border); flex-shrink: 0; }
.drwhdr h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; }
.closebtn { background: var(--lgray); border: none; width: 36px; height: 36px; border-radius: 8px; cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; }
.closebtn:hover { background: var(--border); }
 
.drw-aviso {
  margin: 10px 16px 0;
  background: linear-gradient(135deg, #FEF9E7, #FDEBD0);
  border: 1.5px solid var(--gold);
  border-radius: 10px;
  padding: 10px 14px;
  text-align: center;
  flex-shrink: 0;
}
.drw-aviso p  { font-size: 11px; color: #7D5A08; font-weight: 700; line-height: 1.5; }
.drw-aviso strong { color: #B7770D; }
 
/* CORREÃ‡ÃƒO: scroll isolado nos itens do carrinho */
.drwitems { 
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto; 
  padding: 10px 16px; 
  display: flex; 
  flex-direction: column; 
  gap: 8px;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}
.drwempty { text-align: center; padding: 40px 14px; color: var(--gray); }
.drwempty .ei { font-size: 48px; margin-bottom: 12px; }
.drwempty p { font-size: 14px; }
.drawer-actions {
  padding: 12px 16px 14px;
  border-top: 1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.94), #fff 24%);
  backdrop-filter: blur(10px);
  flex-shrink: 0;
  position: sticky;
  bottom: 0;
  z-index: 3;
}
.advance-btn {
  width: 100%;
  background: linear-gradient(135deg, #25D366, #1DA851);
  color: #fff;
  border: none;
  border-radius: 11px;
  padding: 15px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  transition: all .2s;
  box-shadow: 0 4px 14px rgba(37,211,102,.35);
}
.advance-btn:disabled {
  background: #ccc;
  box-shadow: none;
  cursor: not-allowed;
}
.checkout-panel[hidden] { display: none !important; }
 
.drwitem { background: var(--cream); border-radius: 10px; padding: 10px 12px; display: flex; align-items: flex-start; gap: 9px; }
.drwitem-info { flex: 1; min-width: 0; }
.drwitem-cat    { font-size: 11px; text-transform: uppercase; letter-spacing: .8px; color: var(--gray); }
.drwitem-name   { font-size: 15px; font-weight: 700; color: var(--dark); line-height: 1.35; }
.drwitem-detail { font-size: 13px; color: var(--red); font-weight: 600; margin-top: 2px; }
.drwitem-note   { font-size: 11px; color: var(--gray); font-style: italic; }
 
.drwitem-edit { display: flex; flex-direction: column; gap: 4px; align-items: flex-end; flex-shrink: 0; }
.drwitem-sel {
  border: 1px solid var(--border);
  border-radius: 7px;
  padding: 4px 6px;
  font-size: 11px;
  font-family: 'DM Sans', sans-serif;
  color: var(--dark);
  background: #fff;
  cursor: pointer;
  outline: none;
  width: 85px;
}
.drwitem-sel:focus { border-color: var(--red); }
.drwitem-btns { display: flex; align-items: center; gap: 5px; margin-top: 3px; }
.qbtn { background: #fff; border: 1.5px solid var(--border); width: 30px; height: 30px; border-radius: 7px; cursor: pointer; font-size: 16px; display: flex; align-items: center; justify-content: center; font-weight: 700; transition: background .1s; }
.qbtn:hover { background: var(--lgray); border-color: var(--red); color: var(--red); }
.qnum { font-size: 16px; font-weight: 700; min-width: 24px; text-align: center; }
.rmbtn { background: none; border: none; color: #C0B0A8; cursor: pointer; font-size: 16px; padding: 4px; }
.rmbtn:hover { color: var(--red); }
 
/* â”€â”€ CHECKOUT â”€â”€ */
.checkout {
  padding: 12px 18px 14px;
  border-top: 1px solid var(--border);
  flex-shrink: 0;
  overflow: visible;
  background: linear-gradient(180deg, rgba(255,255,255,.96), #fff 22%);
  backdrop-filter: blur(10px);
  position: sticky;
  bottom: 0;
  z-index: 3;
  padding-bottom: calc(18px + env(safe-area-inset-bottom, 0px));
}
.checkout h4 { font-size: 13px; font-weight: 800; color: var(--dark); margin-bottom: 10px; }
.frow { display: grid; grid-template-columns: 1fr 1fr; gap: 7px; margin-bottom: 7px; }
.frow.full { grid-template-columns: 1fr; }
.finput, .fselect {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--dark);
  background: var(--cream);
  outline: none;
  text-align: center;
}
.finput:focus, .fselect:focus { border-color: var(--red); }
.obsfield {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 9px 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  color: var(--dark);
  resize: none;
  height: 72px;
  background: var(--cream);
  outline: none;
  margin-top: 5px;
}
.obsfield:focus { border-color: var(--red); }
.itemscount { font-size: 12px; color: var(--gray); text-align: right; margin-bottom: 6px; }
.wppbtn {
  width: 100%;
  background: linear-gradient(135deg, #25D366, #1DA851);
  color: #fff;
  border: none;
  border-radius: 11px;
  padding: 15px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all .2s;
  box-shadow: 0 4px 14px rgba(37,211,102,.35);
  margin-top: 8px;
  min-height: 56px;
}
.wppbtn:hover     { background: linear-gradient(135deg, #1ebe5d, #178A43); transform: translateY(-1px); }
.wppbtn:disabled  { background: #ccc; box-shadow: none; cursor: not-allowed; transform: none; }
 
/* â”€â”€ FOOTER â”€â”€ */
footer { background: var(--dark); padding: 24px 14px; }
.footer-inner { max-width: 1280px; margin: 0 auto; }
.ftop { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
@media (min-width: 640px) { .ftop { grid-template-columns: 1fr 1fr 1fr; } }
.fcol h5 { font-size: 11px; font-weight: 800; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.fcol p, .fcol a { font-size: 12px; color: #8A7E74; line-height: 1.9; text-decoration: none; display: block; }
.fcol a:hover { color: var(--gold); }
.fdiv { border: none; border-top: 1px solid #2A2018; margin: 14px 0; }
.fbot { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.fcopy { font-size: 11px; color: #5A5048; }
.fnectar {
  background: linear-gradient(135deg, #1A1008, #2D1810);
  border: 1px solid var(--gold);
  border-radius: 10px;
  padding: 10px 14px;
  text-align: center;
  grid-column: 1 / -1;
}
.fnectar p      { font-size: 11px; color: #fdfdfd; margin-bottom: 2px; }
.fnectar strong { font-size: 14px; color: var(--gold); font-family: 'Playfair Display', serif; }
.fnectar small  { font-size: 11px; color: #6A5A50; display: block; margin-top: 2px; }
.fnectar a      { font-size: 12px; color: rgb(254, 254, 255); text-decoration: none; font-weight: 700; display: inline-block; margin-top: 3px; }
.fnectar em     { font-size: 11px; color: var(--gold); font-style: normal; display: block; margin-top: 4px; }
 
/* ============================================================
   ESTILOS RESPONSIVOS (MOBILE FIRST / ADAPTATIVO)
   ============================================================ */
 
@media (max-width: 768px) {
 
  body { font-size: 16px; }

  .search-wrap input {
    font-size: 15px;
    padding: 10px 12px 10px 38px;
  }

  .cart-btn {
    font-size: 15px;
    padding: 11px 16px;
  }

  .cart-count { font-size: 13px; }

  .peso-bar p { font-size: 14px; }

  .hero p { font-size: 14px; }
 
  .csel {
    height: 50px;
    font-size: 16px;
    padding: 0 12px;
    border-radius: 9px;
  }
 
  .cselectors {
    padding: 10px;
    gap: 10px;
  }
 
  .add-btn {
    height: 52px;
    font-size: 16px;
  }
 
  .cbrand { font-size: 11px; }
  .cname { font-size: 15px; }
  .cprice { font-size: 17px; }
  .cnote { font-size: 11px; }
  .csel-label { font-size: 11px; }
 
  /* â”€â”€ Checkout no mobile â”€â”€ */
  .checkout {
    padding: 10px 16px calc(20px + env(safe-area-inset-bottom, 0px));
  }

  .checkout h4 { font-size: 14px; }

  .itemscount { font-size: 13px; }
 
  .finput, .fselect {
    height: 46px;
    font-size: 15px;
    text-align: center;
  }
 
  .obsfield {
    height: 64px !important;
    font-size: 15px;
  }
 
  .wppbtn {
    height: 58px;
    font-size: 16px;
  }
 
  .qbtn {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }

  .drwitems {
    min-height: 0;
  }

  .drawer-actions {
    padding: 12px 16px 16px;
  }

  .advance-btn {
    min-height: 56px;
    font-size: 17px;
  }

  .drawer-actions,
  .checkout {
    box-shadow: 0 -10px 24px rgba(26,16,8,.08);
  }
 
  .qnum { font-size: 16px; }
 
  .drwitem-cat { font-size: 12px; }
  .drwitem-name { font-size: 16px; }
  .drwitem-detail { font-size: 15px; }
  .drwitem-note { font-size: 12px; }
  .drwitem-qty-label { font-size: 16px; font-weight: 700; }
  .drwitem-sel { font-size: 13px; height: 36px; }
 
  .nav-inner a {
    font-size: 14px;
    padding: 0 18px;
    height: 56px;
  }
 
  .mfbtn {
    font-size: 14px;
    padding: 8px 18px;
    min-height: 42px;
  }
}

