@charset "UTF-8";
/* YOUR CUSTOM CSS */


@media (min-width: 768px) {
	.omb_row-sm-offset-3 div:first-child[class*="col-"] {
		margin-left: 25%;
	}
}

.omb_login .omb_authTitle {
	text-align: center;
	line-height: 300%;
}

.omb_login .omb_socialButtons a {
	color: white; // In yourUse @body-bg 
	opacity:0.9;
}
.omb_login .omb_socialButtons a:hover {
	color: white;
	opacity:1;    	
}

.omb_login .omb_loginOr {
	position: relative;
	font-size: 1.5em;
	color: #aaa;
	margin-top: 1em;
	margin-bottom: 1em;
	padding-top: 0.5em;
	padding-bottom: 0.5em;
}
.omb_login .omb_loginOr .omb_hrOr {
	background-color: #cdcdcd;
	height: 1px;
	margin-top: 0px !important;
	margin-bottom: 0px !important;
}
.omb_login .omb_loginOr .omb_spanOr {
	display: block;
	position: absolute;
	left: 50%;
	top: -0.6em;
	margin-left: -1.5em;
	background-color: white;
	width: 3em;
	text-align: center;
}			

.omb_login .omb_loginForm .input-group.i {
	width: 2em;
}
.omb_login .omb_loginForm  .help-block {
	color: red;
}


@media (min-width: 768px) {
	.omb_login .omb_forgotPwd {
		text-align: right;
		margin-top:10px;
	}		
}

#whatsapp{
	position:fixed;
	width:60px;
	height:60px;
	right:10px;
	bottom:10px;
	display:block;
	z-index:1000000;
}
.cart-count{
	display: inline-block;
	position: absolute;
	top: 0;
	right: 0;
	background: #ff2646;
	color: #fff;
	padding: 4px 10px;
	border-radius: 100px;
	font-size: 10px;
	text-shadow: 0 1px 2px rgba(0,0,0,.1);
	box-shadow: 0 2px 4px rgba(0,0,0,.1);
	z-index: 10;
	text-align: center;
	opacity: 1;
	transition: .33s cubic-bezier(0.34, 0.13, 0.34, 1.43);
}


/*--thank you pop starts here--*/
.thank-you-pop{
	width:100%;
	padding:20px;
	text-align:center;
}
.thank-you-pop img{
	width:76px;
	height:auto;
	margin:0 auto;
	display:block;
	margin-bottom:25px;
}

.thank-you-pop h1{
	font-size: 42px;
	margin-bottom: 25px;
	color:#5C5C5C;
}
.thank-you-pop p{
	font-size: 20px;
	margin-bottom: 27px;
	color:#5C5C5C;
}
.thank-you-pop h3.cupon-pop{
	font-size: 25px;
	margin-bottom: 40px;
	color:#222;
	display:inline-block;
	text-align:center;
	padding:10px 20px;
	border:2px dashed #222;
	clear:both;
	font-weight:normal;
}
.thank-you-pop h3.cupon-pop span{
	color:#03A9F4;
}
.thank-you-pop a{
	display: inline-block;
	margin: 0 auto;
	padding: 9px 20px;
	color: #fff;
	text-transform: uppercase;
	font-size: 14px;
	background-color: #8BC34A;
	border-radius: 17px;
}
.thank-you-pop a i{
	margin-right:5px;
	color:#fff;
}
#ignismyModal .modal-header{
	border:0px;
}
/*--thank you pop ends here--*/

/* ===================================================
   CARDAPIO 99FOOD - CSS LIMPO
   =================================================== */

/* Titulo antigo do cardapio */
#main_menu > center { display:none !important; }
.box_style_2#main_menu { background:transparent !important; box-shadow:none !important; border:none !important; padding:0 !important; }


/* ─── BARRA DE CATEGORIAS ─────────────────────────────── */
/* NOTA: overflow-x:hidden no body/html quebra position:fixed — não usar! */

#cat-chips-bar {
  position: sticky;
  top: 0;
  z-index: 200;
  width: 100%;
  box-sizing: border-box;
  background: #fff;
  border-radius: 0 0 20px 20px;
  box-shadow: 0 4px 16px rgba(0,0,0,.11);
  padding: 10px 12px 14px;
  margin-bottom: 16px;
}

#cat-chips-scroll {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overflow-y: visible;
  padding-bottom: 6px; /* espaço para sombra 3D dos chips */
  scrollbar-width: none;
  -webkit-overflow-scrolling: touch;
  width: 100%;
  box-sizing: border-box;
}
#cat-chips-scroll::-webkit-scrollbar { display: none; }

/* ── Chip padrão ── */
.cat-chip {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 8px 16px;
  border-radius: 50px;
  border: none;
  outline: none;
  background: #f0f0f0;
  color: #555;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none !important;
  -webkit-tap-highlight-color: transparent;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
  /* 3D: sombra embaixo + leve sombra de profundidade */
  box-shadow:
    0 4px 0 0 #c8c8c8,
    0 5px 10px rgba(0,0,0,.10);
  user-select: none;
}
.cat-chip::after, .cat-chip::before { content: none !important; display: none !important; }

/* Hover — sobe levemente */
.cat-chip:hover:not(.active) {
  background: #e6e6e6;
  transform: translateY(-1px);
  box-shadow:
    0 5px 0 0 #c0c0c0,
    0 7px 14px rgba(0,0,0,.12);
}

/* Clicando — afunda */
.cat-chip:active:not(.active) {
  transform: translateY(3px);
  box-shadow:
    0 1px 0 0 #c0c0c0,
    0 2px 4px rgba(0,0,0,.08);
}

/* ── Chip ativo ── */
.cat-chip.active {
  background: var(--cp, #ea1d2c) !important;
  color: #fff !important;
  transform: translateY(1px);
  box-shadow:
    0 3px 0 0 var(--cpD, #b00c18),
    0 4px 12px rgba(var(--cp-rgb, 234,29,44), .35) !important;
}
.cat-chip.active:active {
  transform: translateY(3px);
  box-shadow:
    0 1px 0 0 var(--cpD, #b00c18),
    0 2px 6px rgba(var(--cp-rgb, 234,29,44), .25) !important;
}

/* ── Mobile ── */
@media(max-width:991px){
  #cat-chips-bar {
    padding: 8px 10px 12px;
    border-radius: 0 0 18px 18px;
    margin-bottom: 12px;
    box-shadow: 0 4px 14px rgba(0,0,0,.10);
  }
  .cat-chip {
    font-size: 12px;
    padding: 7px 14px;
    box-shadow:
      0 3px 0 0 #c8c8c8,
      0 4px 8px rgba(0,0,0,.09);
  }
  .cat-chip.active {
    box-shadow:
      0 2px 0 0 var(--cpD, #b00c18),
      0 3px 10px rgba(var(--cp-rgb, 234,29,44), .30) !important;
  }
}

/* --- Panels de categoria --- */
#main_menu .panel-group { margin-bottom:8px !important; }
#main_menu .panel.panel-default {
  border-radius:16px !important; overflow:hidden !important;
  border:1px solid #f0f0f0 !important;
  box-shadow:0 2px 10px rgba(0,0,0,.04) !important;
  margin-bottom:10px !important;
}
#main_menu .panel-heading { background:#fff !important; border-bottom:1px solid #f5f5f5 !important; padding:0 !important; }
#main_menu .panel-title a {
  display:flex !important; align-items:center !important;
  justify-content:space-between !important;
  padding:15px 18px !important; font-size:15px !important;
  font-weight:800 !important; color:#1a1a2e !important; text-transform:uppercase !important;
}
#main_menu .panel-title .fa { color:#aaa !important; float:none !important; font-size:13px !important; }
#main_menu .panel-body { padding:0 !important; background:#fff !important; }
#main_menu .panel-collapse { transition:none !important; }




/* --- Food cards dos itens --- */
.food-cards-wrap { padding:4px 0 8px; }
.food-card {
  display:flex; align-items:center; gap:12px;
  padding:14px 16px; border-bottom:1px solid #f5f5f5;
  cursor:pointer; background:#fff; transition:background .15s;
  -webkit-tap-highlight-color:transparent;
}
.food-card:last-child { border-bottom:none; }
.food-card:active { background:#fafafa; }
.food-card-info { flex:1; min-width:0; }
.food-card-name { font-size:14px; font-weight:700; color:#1a1a2e; margin:0 0 4px; line-height:1.35; }
.food-card-desc { font-size:12px; color:#999; line-height:1.5; margin:0 0 8px; display:-webkit-box; -webkit-line-clamp:2; -webkit-box-orient:vertical; overflow:hidden; }
.food-card-price { font-size:14px; font-weight:800; color:#1a1a2e; margin:0; }
.food-card-price.ver-val { font-size:12px; color:#ff3d6b; font-weight:700; }
.food-card-right { position:relative; flex-shrink:0; }
.food-card-img { width:90px; height:90px; border-radius:12px; object-fit:cover; display:block; }
.food-card-btn {
  position:absolute; bottom:-9px; right:-9px;
  width:28px; height:28px; line-height:26px; text-align:center;
  background:#ff3d6b; color:#fff; border-radius:50%; font-size:22px; font-weight:300;
  box-shadow:0 3px 10px rgba(255,61,107,.4); pointer-events:none;
}
.food-card-btn::after, .food-card-btn::before { content:none !important; }
.food-card-btn-solo {
  flex-shrink:0; width:28px; height:28px; line-height:26px; text-align:center;
  background:#ff3d6b; color:#fff; border-radius:50%; font-size:22px; font-weight:300;
  box-shadow:0 3px 10px rgba(255,61,107,.35);
}

/* --- Mobile --- */
@media(max-width:600px){
  .food-card { padding:12px 14px; gap:10px; }
  .food-card-name { font-size:13px; }
  .food-card-desc { font-size:11px; }
  .food-card-price { font-size:13px; }
  .food-card-img { width:76px; height:76px; border-radius:10px; }
  .food-card-btn { width:26px; height:26px; line-height:24px; font-size:20px; }
}

/* Logo do restaurante como fallback em itens sem foto */
.food-card-img-logo {
  object-fit: contain !important;
  background: #f5f5f5 !important;
  padding: 10px !important;
  border-radius: 12px !important;
  opacity: 0.75;
  filter: grayscale(20%);
}

/* Descrição da categoria centralizada e com espaçamento */
#main_menu .panel-body > br { display:none !important; }
#main_menu .panel-body > *:first-child:not(.food-cards-wrap):not(table):not(.alert) {
  display:block;
  text-align:center;
  font-size:13px;
  color:#aaa;
  font-style:italic;
  padding:12px 20px 4px;
  margin:0;
  line-height:1.4;
}

/* Descrição da categoria */
.cat-desc-text {
  text-align:center;
  font-size:13px;
  color:#aaa;
  font-style:italic;
  padding:14px 20px 6px;
  margin:0;
  line-height:1.4;
  border-bottom:1px dashed #f0f0f0;
  margin-bottom:4px;
}

/* Tabela original escondida - modais movidos para body pelo JS */
#main_menu .table.table-striped.cart-list { display:none !important; }
/* td.options sem display none - form permanece acessível */
#main_menu td.options { width:0 !important; padding:0 !important; border:none !important; overflow:visible !important; }

/* =============================================
   MODAL DE ADICIONAIS - REDESIGN MODERNO
   ============================================= */

/* Modal container */
.modal.popuppedido .modal-dialog {
  margin: 20px auto !important;
  max-width: 480px !important;
  border-radius: 20px !important;
}
.modal.popuppedido .modal-content {
  border: none !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  box-shadow: 0 24px 60px rgba(0,0,0,0.25) !important;
}
.modal.popuppedido .modal-body {
  padding: 0 !important;
}

/* Fechar */
.modal.popuppedido .close-link {
  position: absolute !important;
  top: 14px; right: 14px !important;
  width: 32px; height: 32px !important;
  background: rgba(0,0,0,0.08) !important;
  border-radius: 50% !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  z-index: 10 !important;
  transition: background .2s !important;
}
.modal.popuppedido .close-link:hover { background: rgba(0,0,0,0.18) !important; }
.modal.popuppedido .close-link i { font-size: 14px !important; color: #555 !important; }

/* Header do item */
.modal.popuppedido .dropdown-menupop {
  border-bottom: none !important;
  padding: 0 !important;
}
.modal.popuppedido .dropdown-menupop > center:first-of-type b {
  display: block !important;
  padding: 20px 20px 0 !important;
  font-size: 17px !important;
  font-weight: 800 !important;
  color: #1a1a2e !important;
  text-align: center !important;
}
.modal.popuppedido .dropdown-menupop > center:first-of-type b b {
  display: block !important;
  font-size: 18px !important;
  color: #27c764 !important;
  font-weight: 900 !important;
  margin-top: 4px !important;
  padding: 0 !important;
}

/* Imagem do item */
.modal.popuppedido .dropdown-menupop > center img {
  width: 100% !important;
  max-height: 180px !important;
  object-fit: cover !important;
  border-radius: 0 !important;
  display: block !important;
  margin: 12px 0 0 !important;
}

/* Scroll area dos adicionais */
.modal.popuppedido .dropdown-menupop {
  max-height: 75vh !important;
  overflow-y: auto !important;
  scroll-behavior: smooth !important;
}

/* Tamanhos - radio buttons */
.modal.popuppedido h5 {
  font-size: 11px !important;
  font-weight: 800 !important;
  color: #aaa !important;
  text-transform: uppercase !important;
  letter-spacing: .8px !important;
  padding: 14px 20px 8px !important;
  margin: 0 !important;
  border-top: 1px solid #f5f5f5 !important;
}
.modal.popuppedido .hcinco {
  border-top: 1px solid #f5f5f5 !important;
}
.modal.popuppedido label {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  padding: 11px 20px !important;
  margin: 0 !important;
  cursor: pointer !important;
  font-size: 14px !important;
  color: #333 !important;
  font-weight: 500 !important;
  border-bottom: 1px solid #f8f8f8 !important;
  transition: background .15s !important;
}
.modal.popuppedido label:hover { background: #fafafa !important; }
.modal.popuppedido label input[type="radio"],
.modal.popuppedido label input[type="checkbox"] {
  width: 18px !important; height: 18px !important;
  margin: 0 10px 0 0 !important;
  accent-color: #ff3d6b !important;
  flex-shrink: 0 !important;
}
.modal.popuppedido label span {
  font-size: 13px !important;
  font-weight: 700 !important;
  color: #ff3d6b !important;
  margin-left: auto !important;
  padding-left: 8px !important;
}

/* Header das categorias de adicional (bg-info) */
.modal.popuppedido .bg-info {
  background: #f8f8f8 !important;
  padding: 10px 20px !important;
  border-radius: 0 !important;
  margin: 0 !important;
  border-top: 1px solid #f0f0f0 !important;
  border-bottom: 1px solid #f0f0f0 !important;
}
.modal.popuppedido .bg-info strong {
  font-size: 13px !important;
  font-weight: 800 !important;
  color: #1a1a2e !important;
}
.modal.popuppedido .bg-info strong img {
  width: 20px !important; height: 20px !important;
  vertical-align: middle !important;
  margin-right: 6px !important;
}
.modal.popuppedido .bg-info span {
  font-size: 11px !important;
  color: #ff3d6b !important;
  font-weight: 700 !important;
}
.modal.popuppedido .bg-info .col-sm-6 { padding: 0 !important; }

/* Observação */
.modal.popuppedido .obsitem,
.modal.popuppedido textarea {
  border: 1.5px solid #ebebeb !important;
  border-radius: 10px !important;
  padding: 10px 14px !important;
  font-size: 13px !important;
  color: #333 !important;
  background: #fafafa !important;
  width: calc(100% - 40px) !important;
  margin: 0 20px 12px !important;
  resize: vertical !important;
  display: block !important;
}
.modal.popuppedido .obsitem:focus,
.modal.popuppedido textarea:focus {
  border-color: #ff3d6b !important;
  outline: none !important;
}

/* Quantidade */
.modal.popuppedido .input-group {
  padding: 0 20px !important;
  margin-bottom: 8px !important;
}
.modal.popuppedido .btn-number {
  border-radius: 8px !important;
  width: 36px !important; height: 36px !important;
  font-size: 18px !important;
  display: flex !important; align-items: center !important; justify-content: center !important;
  border: none !important;
  font-weight: 700 !important;
}
.modal.popuppedido .btn-danger.btn-number { background: #ff4545 !important; color: #fff !important; }
.modal.popuppedido .btn-success.btn-number { background: #27c764 !important; color: #fff !important; }
.modal.popuppedido .input-number {
  text-align: center !important;
  font-size: 16px !important;
  font-weight: 800 !important;
  color: #1a1a2e !important;
  border: 1.5px solid #ebebeb !important;
  border-radius: 8px !important;
  height: 36px !important;
  padding: 0 10px !important;
}

/* Modal footer */
.modal.popuppedido .modal-footer {
  display: none !important;
}

/* Botão ADICIONAR AO PEDIDO */
.modal.popuppedido #footer {
  background: linear-gradient(135deg, #ff3d6b, #ff5f40) !important;
  padding: 16px 20px !important;
  text-align: center !important;
  cursor: pointer !important;
  transition: opacity .2s !important;
  margin: 0 !important;
}
.modal.popuppedido #footer:hover { opacity: .9 !important; }
.modal.popuppedido #footer b {
  color: #fff !important;
  font-size: 15px !important;
  font-weight: 800 !important;
  text-transform: uppercase !important;
  letter-spacing: .8px !important;
}

/* Botão indisponível */
.modal.popuppedido #footerr {
  background: #f0f0f0 !important;
  padding: 16px 20px !important;
  text-align: center !important;
}
.modal.popuppedido #footerr b {
  color: #aaa !important;
  font-size: 14px !important;
  font-weight: 700 !important;
}

/* Texto ANTES DE FECHAR oculto */
.modal.popuppedido .modal-footer + * { display: none !important; }

/* Scrollbar */
.modal.popuppedido .dropdown-menupop::-webkit-scrollbar { width: 4px; }
.modal.popuppedido .dropdown-menupop::-webkit-scrollbar-track { background: #f5f5f5; }
.modal.popuppedido .dropdown-menupop::-webkit-scrollbar-thumb { background: #ddd; border-radius: 2px; }

/* Mobile */
@media(max-width:600px){
  .modal.popuppedido .modal-dialog { margin: 0 !important; max-width: 100% !important; border-radius: 20px 20px 0 0 !important; position: fixed !important; bottom: 0 !important; left: 0 !important; right: 0 !important; }
  .modal.popuppedido .modal-content { border-radius: 20px 20px 0 0 !important; }
  .modal.popuppedido .dropdown-menupop { max-height: 80vh !important; }
}

/* =============================================
   PWA BANNERS
   ============================================= */

/* --- MOBILE BANNER (acima do slider) - SOMENTE MOBILE --- */
/* Banner mobile: JS controla display via setAttribute */
@media(min-width:992px){ #pwa-banner-mobile { display:none !important; } }
#pwa-banner-mobile {
  position: fixed !important;
  bottom: 72px; /* acima do bottom nav (60px) + margem */
  left: 12px;
  right: 12px;
  z-index: 9998;
  border-radius: 14px;
  overflow: hidden;
  animation: pwaSlideDown .4s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
}
@media(min-width:992px){
  #pwa-banner-mobile { bottom: 16px; } /* desktop sem bottom nav */
}
@keyframes pwaSlideDown {
  from { opacity:0; transform:translateY(-12px); }
  to   { opacity:1; transform:translateY(0); }
}
.pwa-mob-inner {
  display: flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, #1a1a2e, #2d2d4e);
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,0.08);
}
.pwa-mob-logo {
  width: 44px; height: 44px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.pwa-mob-text {
  flex: 1;
  min-width: 0;
}
.pwa-mob-text strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
}
.pwa-mob-text span {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
}
.pwa-mob-btn {
  background: #ea1d2c;
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
  transition: background .15s;
}
.pwa-mob-btn:hover { background: #c91525; }
.pwa-mob-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.4);
  font-size: 20px;
  cursor: pointer;
  padding: 0 4px;
  line-height: 1;
  flex-shrink: 0;
}
.pwa-mob-close:hover { color: #fff; }

/* --- DESKTOP BANNER (acima do "Seu Pedido") - SOMENTE DESKTOP --- */
/* Banner desktop: JS controla display via setAttribute */
@media(max-width:991px){ #pwa-banner-desktop { display:none !important; } }
#pwa-banner-desktop {
  position: fixed !important;
  bottom: 16px;
  right: 16px;
  width: 340px;
  z-index: 9999;
  animation: pwaSlideDown .4s ease;
  box-shadow: 0 8px 32px rgba(0,0,0,0.35);
  border-radius: 14px;
  overflow: hidden;
}
.pwa-desk-inner {
  background: linear-gradient(135deg, #1a1a2e, #16213e);
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.pwa-desk-left {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.pwa-desk-logo {
  width: 40px; height: 40px;
  border-radius: 10px;
  object-fit: cover;
  flex-shrink: 0;
}
.pwa-desk-left strong {
  display: block;
  font-size: 13px;
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 130px;
}
.pwa-desk-left span {
  font-size: 11px;
  color: rgba(255,255,255,0.45);
  line-height: 1.3;
}
.pwa-desk-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}
.pwa-desk-btn {
  background: linear-gradient(135deg, #ea1d2c, #ff5f40);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: transform .15s, box-shadow .15s;
  box-shadow: 0 3px 10px rgba(234,29,44,0.35);
}
.pwa-desk-btn:hover { transform: translateY(-1px); box-shadow: 0 5px 16px rgba(234,29,44,0.45); }
.pwa-desk-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.35);
  font-size: 18px;
  cursor: pointer;
  padding: 0;
  line-height: 1;
  transition: color .15s;
}
.pwa-desk-close:hover { color: #fff; }