/* ============================================================
   Tripivo — NAV.CSS
   Premium navbar (desktop) + Full-screen mobile hamburger menu
   All selectors prefixed with .nav-tripovo / .brand / .mobile-menu / .mm-* / .hamburger
   to avoid conflicts with cards/auth/global.
   ============================================================ */

/* ---------- Reset for safety on this scope ---------- */
.nav-tripovo *,
.mobile-menu * { box-sizing: border-box; }

/* ============================================================
   1. NAVBAR — desktop & shared
   ============================================================ */

.nav-tripovo {
  position: sticky; top: 0; z-index: 1040;
  background: rgba(255, 255, 255, .82);
  -webkit-backdrop-filter: saturate(180%) blur(18px);
          backdrop-filter: saturate(180%) blur(18px);
  border-bottom: 1px solid transparent;
  transition: background-color .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.nav-tripovo.scrolled {
  background: rgba(255, 255, 255, .92);
  border-bottom-color: rgba(15, 23, 42, .06);
  box-shadow: 0 1px 0 rgba(16, 24, 40, .02), 0 8px 24px -16px rgba(16, 24, 40, .18);
}

.nav-tripovo .nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 0;
  min-height: 56px;
}

/* ----- Brand / logo ----- */
.nav-tripovo .brand-logo {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  height: 36px;
  padding: 0;
  margin: 0;
}
.nav-tripovo .brand-logo img {
  display: block;
  height: 32px;
  width: auto;
  max-width: 160px;
  object-fit: contain;
}
@media (min-width: 992px) {
  .nav-tripovo .brand-logo,
  .nav-tripovo .brand-logo img { height: 36px; }
}
@media (max-width: 575.98px) {
  .nav-tripovo .brand-logo,
  .nav-tripovo .brand-logo img { height: 28px; }
}

/* ----- Center: nav links ----- */
.nav-tripovo .nav-links {
  display: none;
  align-items: center;
  gap: 2px;
  flex: 1 1 auto;
  justify-content: center;
  flex-wrap: nowrap;
  min-width: 0;
}
.nav-tripovo .nav-links a {
  position: relative;
  color: var(--text);
  font-weight: 500;
  font-size: .94rem;
  letter-spacing: -.005em;
  padding: 8px 12px;
  border-radius: 10px;
  white-space: nowrap;
  transition: color .18s ease, background-color .18s ease;
}
.nav-tripovo .nav-links a:hover { color: var(--primary); background: rgba(52, 125, 128, .07); }
.nav-tripovo .nav-links a::after {
  content: "";
  position: absolute; left: 50%; bottom: 2px;
  width: 0; height: 2px; border-radius: 2px;
  background: var(--primary);
  transform: translateX(-50%);
  transition: width .22s ease;
}
.nav-tripovo .nav-links a:hover::after { width: 22px; }

/* ----- Right: actions (desktop) ----- */
.nav-tripovo .nav-actions {
  display: none;
  align-items: center;
  gap: 6px;
  flex: 0 0 auto;
}
.nav-tripovo .nav-actions .btn {
  white-space: nowrap;
  padding: 8px 16px;
  font-size: .92rem;
  border-radius: 11px;
}
.nav-tripovo .nav-actions .btn-primary {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 2px 8px -2px rgba(52, 125, 128, .35), 0 1px 0 rgba(255, 255, 255, .2) inset;
  padding: 8px 18px;
}
.nav-tripovo .nav-actions .btn-primary:hover {
  background: var(--primary-600);
  border-color: var(--primary-600);
  box-shadow: 0 6px 18px -4px rgba(52, 125, 128, .45);
}
.nav-tripovo .nav-actions .btn-ghost {
  background: transparent; border: 0; color: var(--text);
}
.nav-tripovo .nav-actions .btn-ghost:hover {
  background: rgba(52, 125, 128, .08); color: var(--primary);
}

/* ----- Cart icon (only allowed icon in navbar) ----- */
.nav-tripovo .nav-cart {
  position: relative;
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  border-radius: 11px;
  color: var(--text);
  background: transparent;
  border: 0;
  font-size: 1.15rem;
  transition: background-color .18s ease, color .18s ease;
}
.nav-tripovo .nav-cart:hover { background: rgba(52, 125, 128, .08); color: var(--primary); }
.nav-tripovo .nav-cart-badge {
  position: absolute; top: 2px; right: 2px;
  min-width: 18px; height: 18px; padding: 0 5px;
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--accent); color: #fff;
  font-size: .68rem; font-weight: 700; line-height: 1;
  border-radius: 999px;
  border: 2px solid #fff;
  box-shadow: 0 2px 6px rgba(199, 126, 44, .35);
}

/* ----- Compact search (appears in middle when scrolled) ----- */
.nav-tripovo .compact-search {
  display: none;
  align-items: center;
  gap: 8px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 4px 4px 4px 18px;
  box-shadow: var(--shadow-sm);
  flex: 0 1 380px;
  margin: 0 12px;
  transition: box-shadow .2s ease, border-color .2s ease;
}
.nav-tripovo .compact-search:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(52, 125, 128, .12);
}
.nav-tripovo .compact-search input {
  border: 0; outline: 0; background: transparent;
  font-size: .9rem; flex: 1; min-width: 0;
  color: var(--text);
}
.nav-tripovo .compact-search input::placeholder { color: var(--muted); }
.nav-tripovo .compact-search button {
  border-radius: 999px; padding: 7px 16px; font-size: .88rem;
}
.nav-tripovo.scrolled .compact-search { display: flex; }

/* Desktop activation */
@media (min-width: 992px) {
  .nav-tripovo .nav-links   { display: inline-flex; }
  .nav-tripovo .nav-actions { display: inline-flex; }
  .nav-tripovo .nav-mobile-actions { display: none; }
}
@media (max-width: 991.98px) {
  .nav-tripovo .compact-search { display: none !important; }
}

/* ============================================================
   2. NAVBAR — mobile (<992px)
   ============================================================ */

@media (max-width: 991.98px) {
  .nav-tripovo .nav-mobile-actions {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    flex: 0 0 auto;
  }
  .nav-tripovo .nav-mobile-actions .nav-cart {
    width: 44px; height: 44px;
  }
  /* hide desktop-only blocks on mobile */
  .nav-tripovo .nav-links,
  .nav-tripovo .nav-actions { display: none !important; }
}
@media (min-width: 992px) {
  .nav-tripovo .nav-mobile-actions { display: none !important; }
}

/* Hamburger button — clean, premium, no border */
.hamburger {
  display: inline-flex; align-items: center; justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 0; background: transparent;
  color: var(--text);
  padding: 0;
  cursor: pointer;
  transition: background-color .18s ease;
  -webkit-tap-highlight-color: transparent;
}
.hamburger:hover, .hamburger:focus-visible {
  background: rgba(52, 125, 128, .08);
  outline: none;
}
.hamburger-box {
  position: relative;
  width: 22px; height: 16px;
  display: inline-block;
}
.hamburger-line {
  position: absolute; left: 0; right: 0;
  height: 2px; border-radius: 2px;
  background: currentColor;
  transition: transform .28s cubic-bezier(.4, .01, .2, 1),
              opacity .18s ease,
              top .28s cubic-bezier(.4, .01, .2, 1);
}
.hamburger-line:nth-child(1) { top: 0; }
.hamburger-line:nth-child(2) { top: 7px; }
.hamburger-line:nth-child(3) { top: 14px; }

.hamburger.is-open .hamburger-line:nth-child(1) {
  top: 7px; transform: rotate(45deg);
}
.hamburger.is-open .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger.is-open .hamburger-line:nth-child(3) {
  top: 7px; transform: rotate(-45deg);
}

@media (min-width: 992px) { .hamburger { display: none; } }

/* ============================================================
   3. MOBILE MENU — backdrop + panel
   ============================================================ */

.mm-backdrop {
  position: fixed; inset: 0;
  background: rgba(15, 23, 42, .35);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  z-index: 1055;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.mm-backdrop.show { opacity: 1; visibility: visible; }
@media (min-width: 992px) { .mm-backdrop { display: none; } }

.mobile-menu {
  position: fixed; inset: 0;
  z-index: 1060;
  display: flex; flex-direction: column;
  width: 100%;
  background:
    radial-gradient(80% 50% at 100% 100%, rgba(52, 125, 128, .10), transparent 70%),
    radial-gradient(80% 40% at 0% 0%, rgba(199, 126, 44, .05), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #ffffff 60%, #F2F8F8 100%);
  transform: translateX(100%);
  transition: transform .42s cubic-bezier(.22, .61, .36, 1);
  visibility: hidden;
  overscroll-behavior: contain;
}
.mobile-menu.open { transform: translateX(0); visibility: visible; }
@media (min-width: 992px) { .mobile-menu { display: none; } }

@media (prefers-reduced-motion: reduce) {
  .mobile-menu { transition: none; }
  .mm-backdrop { transition: none; }
}

/* ----- Header ----- */
.mm-head {
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 18px;
  padding-top: calc(12px + env(safe-area-inset-top));
  border-bottom: 1px solid rgba(15, 23, 42, .06);
  background: rgba(255, 255, 255, .85);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
          backdrop-filter: saturate(180%) blur(12px);
}
.mm-head .brand-logo,
.mm-head .brand-logo img { height: 32px; }
.mm-head .brand-logo img { width: auto; max-width: 140px; }

.mm-close {
  width: 48px; height: 48px;
  border: 0; background: transparent;
  border-radius: 14px;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text);
  cursor: pointer;
  transition: background-color .18s ease, transform .15s ease;
  -webkit-tap-highlight-color: transparent;
}
.mm-close:hover, .mm-close:focus-visible {
  background: rgba(52, 125, 128, .08);
  outline: none;
}
.mm-close:active { transform: scale(.94); }
.mm-close-x {
  position: relative;
  width: 22px; height: 22px;
  display: inline-block;
}
.mm-close-x span {
  position: absolute; top: 10px; left: 0;
  width: 22px; height: 2px;
  background: currentColor; border-radius: 2px;
}
.mm-close-x span:nth-child(1) { transform: rotate(45deg); }
.mm-close-x span:nth-child(2) { transform: rotate(-45deg); }

/* ----- Body (scroll area) ----- */
.mm-body {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 16px 18px 24px;
}

/* ----- Logged-in user card ----- */
.mm-user {
  display: flex; align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(52, 125, 128, .12), rgba(79, 165, 168, .08));
  border: 1px solid rgba(52, 125, 128, .14);
  color: var(--text);
  margin-bottom: 18px;
  transition: transform .15s ease, box-shadow .2s ease;
}
.mm-user:hover { transform: translateY(-1px); box-shadow: 0 8px 24px -10px rgba(52, 125, 128, .35); color: var(--text); }
.mm-avatar {
  width: 48px; height: 48px;
  flex: 0 0 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 1.15rem;
  box-shadow: 0 4px 12px -4px rgba(52, 125, 128, .55);
}
.mm-user-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.mm-user-hi { font-size: 1.05rem; font-weight: 700; color: var(--text); letter-spacing: -.01em; }
.mm-user-link { font-size: .85rem; color: var(--muted); display: inline-flex; align-items: center; gap: 6px; }
.mm-arrow { color: var(--primary); font-weight: 700; font-size: 1rem; }

/* ----- Login/Register CTAs (guest) ----- */
.mm-auth-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  margin-bottom: 18px;
}
.mm-auth {
  position: relative;
  display: flex; flex-direction: column;
  gap: 4px;
  padding: 16px 16px 18px;
  border-radius: 18px;
  font-weight: 600;
  text-decoration: none;
  overflow: hidden;
  transition: transform .15s ease, box-shadow .25s ease;
  isolation: isolate;
}
.mm-auth::after {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, rgba(255, 255, 255, .18), transparent 60%);
  z-index: -1;
}
.mm-auth:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -14px rgba(15, 23, 42, .25); }
.mm-auth:active { transform: translateY(0); }
.mm-auth-eyebrow { font-size: .72rem; font-weight: 600; opacity: .85; letter-spacing: .02em; }
.mm-auth-title { font-size: 1.05rem; font-weight: 700; letter-spacing: -.01em; }

.mm-auth-login {
  background: linear-gradient(135deg, #FFF8EE 0%, #FDE7C5 100%);
  color: #7A4A12;
  border: 1px solid rgba(199, 126, 44, .25);
}
.mm-auth-login:hover { color: #5C380C; }
.mm-auth-register {
  background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
  color: #fff;
  border: 1px solid rgba(52, 125, 128, .55);
  box-shadow: 0 4px 14px -4px rgba(52, 125, 128, .45);
}
.mm-auth-register:hover { color: #fff; }

/* ----- Search ----- */
.mm-search {
  display: flex; align-items: center; gap: 10px;
  background: #fff;
  border: 1.5px solid var(--border);
  border-radius: 16px;
  padding: 12px 16px;
  margin: 6px 0 22px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.mm-search:focus-within {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(52, 125, 128, .12), 0 4px 14px -8px rgba(52, 125, 128, .35);
}
.mm-search-icon {
  color: var(--muted);
  display: inline-flex;
  flex: 0 0 auto;
  transition: color .2s ease;
}
.mm-search:focus-within .mm-search-icon { color: var(--primary); }
.mm-search input {
  border: 0; outline: 0; background: transparent;
  flex: 1; min-width: 0;
  font-size: 1rem; color: var(--text);
  font-family: inherit;
}
.mm-search input::placeholder { color: var(--muted); }

/* ----- Section title ----- */
.mm-section-title {
  font-size: .72rem; font-weight: 700; color: var(--muted);
  letter-spacing: .12em; text-transform: uppercase;
  margin: 22px 4px 10px;
}

/* ----- Nav links list ----- */
.mm-nav { display: flex; flex-direction: column; gap: 2px; }
.mm-link {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  min-height: 56px;
  padding: 14px 16px;
  border-radius: 14px;
  font-weight: 600; color: var(--text);
  font-size: 1.05rem;
  letter-spacing: -.01em;
  transition: background-color .15s ease, color .15s ease, transform .12s ease;
  position: relative;
}
.mm-link:hover, .mm-link:active {
  background: rgba(52, 125, 128, .06);
  color: var(--primary);
}
.mm-link:active { transform: scale(.99); }
.mm-link-sm { min-height: 48px; padding: 10px 16px; font-size: .98rem; font-weight: 500; }
.mm-link-arrow {
  color: var(--muted);
  font-size: 1.4rem; line-height: 1;
  font-weight: 400;
  transition: transform .18s ease, color .18s ease;
}
.mm-link:hover .mm-link-arrow { color: var(--primary); transform: translateX(3px); }

/* Subtle separator between groups of nav items */
.mm-nav .mm-link + .mm-link {
  position: relative;
}
.mm-nav .mm-link + .mm-link::before {
  content: ""; position: absolute;
  left: 16px; right: 16px; top: 0;
  height: 1px;
  background: rgba(15, 23, 42, .05);
}

/* ----- Categories grid ----- */
.mm-cats {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-top: 4px;
}
.mm-cat {
  position: relative;
  display: flex; flex-direction: column; justify-content: flex-end;
  gap: 4px;
  min-height: 100px;
  padding: 16px 16px 18px;
  border-radius: 18px;
  font-weight: 600;
  overflow: hidden;
  isolation: isolate;
  transition: transform .18s ease, box-shadow .25s ease;
  text-decoration: none;
}
.mm-cat::after {
  content: ""; position: absolute; inset: 0;
  border-radius: inherit;
  background:
    radial-gradient(120% 70% at 100% 0%, rgba(255, 255, 255, .35), transparent 55%),
    linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, .04) 100%);
  z-index: -1;
}
.mm-cat:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -16px rgba(15, 23, 42, .25); }
.mm-cat-eyebrow { font-size: .72rem; font-weight: 600; opacity: .8; letter-spacing: .02em; }
.mm-cat-title { font-size: 1rem; font-weight: 700; letter-spacing: -.01em; line-height: 1.2; }

.mm-cat.c1 { background: linear-gradient(135deg, #FFE4E6 0%, #FBCFE8 100%); color: #9F1239; }
.mm-cat.c2 { background: linear-gradient(135deg, #DBEAFE 0%, #BFDBFE 100%); color: #1D4ED8; }
.mm-cat.c3 { background: linear-gradient(135deg, #DCFCE7 0%, #BBF7D0 100%); color: #047857; }
.mm-cat.c4 { background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%); color: #92400E; }
.mm-cat.c5 { background: linear-gradient(135deg, #EDE9FE 0%, #DDD6FE 100%); color: #6D28D9; }
.mm-cat.c6 { background: linear-gradient(135deg, #FCE7F3 0%, #FBCFE8 100%); color: #BE185D; }

/* ----- Venues list ----- */
.mm-venues { display: flex; flex-direction: column; gap: 8px; }
.mm-venue {
  display: flex; align-items: center; gap: 14px;
  padding: 10px 12px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(15, 23, 42, .05);
  color: var(--text);
  transition: background-color .15s ease, transform .12s ease, box-shadow .2s ease, border-color .2s ease;
}
.mm-venue:hover {
  background: #fff;
  border-color: rgba(52, 125, 128, .25);
  box-shadow: 0 8px 22px -14px rgba(52, 125, 128, .25);
  color: var(--text);
}
.mm-venue:active { transform: scale(.99); }
.mm-venue-thumb {
  width: 56px; height: 56px;
  flex: 0 0 56px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg);
  display: inline-block;
}
.mm-venue-thumb img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.mm-venue-text { display: flex; flex-direction: column; gap: 2px; min-width: 0; flex: 1; }
.mm-venue-name { font-size: 1rem; font-weight: 700; color: var(--text); letter-spacing: -.01em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.mm-venue-meta { font-size: .82rem; color: var(--muted); }

/* ----- Big CTA ----- */
.mm-cta {
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
  padding: 18px 20px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-600) 100%);
  color: #fff;
  text-decoration: none;
  box-shadow: 0 14px 28px -14px rgba(52, 125, 128, .55), inset 0 1px 0 rgba(255, 255, 255, .15);
  transition: transform .15s ease, box-shadow .25s ease;
}
.mm-cta:hover { color: #fff; transform: translateY(-1px);
  box-shadow: 0 18px 32px -14px rgba(52, 125, 128, .65), inset 0 1px 0 rgba(255, 255, 255, .2); }
.mm-cta:active { transform: translateY(0); }
.mm-cta-text { display: flex; flex-direction: column; gap: 2px; }
.mm-cta-eyebrow { font-size: .78rem; font-weight: 600; opacity: .85; letter-spacing: .02em; }
.mm-cta-title { font-size: 1.15rem; font-weight: 800; letter-spacing: -.01em; }
.mm-cta-arrow {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .18);
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.3rem; line-height: 1; font-weight: 600;
  transition: transform .18s ease, background-color .18s ease;
}
.mm-cta:hover .mm-cta-arrow { transform: translateX(3px); background: rgba(255, 255, 255, .26); }

/* ----- Footer ----- */
.mm-foot {
  flex: 0 0 auto;
  padding: 14px 18px calc(18px + env(safe-area-inset-bottom));
  border-top: 1px solid rgba(15, 23, 42, .06);
  background: rgba(255, 255, 255, .85);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
          backdrop-filter: saturate(180%) blur(12px);
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px;
}
.mm-social { display: inline-flex; gap: 4px; }
.mm-social a {
  width: 40px; height: 40px;
  border-radius: 50%;
  display: inline-flex; align-items: center; justify-content: center;
  color: var(--text);
  font-size: 1.05rem;
  transition: background-color .15s ease, color .15s ease, transform .12s ease;
}
.mm-social a:hover { background: rgba(52, 125, 128, .1); color: var(--primary); }
.mm-social a:active { transform: scale(.92); }
.mm-copy { font-size: .82rem; color: var(--muted); font-weight: 500; }

/* ============================================================
   4. Stagger reveal for menu items when opened
   ============================================================ */
.mobile-menu .mm-body > * {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .35s ease, transform .35s cubic-bezier(.22, .61, .36, 1);
}
.mobile-menu.animate-in .mm-body > * { opacity: 1; transform: translateY(0); }
.mobile-menu.animate-in .mm-body > *:nth-child(1) { transition-delay: .04s; }
.mobile-menu.animate-in .mm-body > *:nth-child(2) { transition-delay: .08s; }
.mobile-menu.animate-in .mm-body > *:nth-child(3) { transition-delay: .12s; }
.mobile-menu.animate-in .mm-body > *:nth-child(4) { transition-delay: .16s; }
.mobile-menu.animate-in .mm-body > *:nth-child(5) { transition-delay: .20s; }
.mobile-menu.animate-in .mm-body > *:nth-child(6) { transition-delay: .24s; }
.mobile-menu.animate-in .mm-body > *:nth-child(7) { transition-delay: .26s; }
.mobile-menu.animate-in .mm-body > *:nth-child(8) { transition-delay: .28s; }
.mobile-menu.animate-in .mm-body > *:nth-child(n+9) { transition-delay: .30s; }

@media (prefers-reduced-motion: reduce) {
  .mobile-menu .mm-body > * { opacity: 1; transform: none; transition: none; }
}

/* ============================================================
   5. Hard hide of stale elements (defensive overrides)
   ============================================================ */

/* Hide stray icons inside text buttons (Zaloguj / Kup voucher) — keep cart only */
.nav-tripovo .nav-actions .btn > i,
.nav-tripovo .nav-links a > i { display: none; }

/* Print */
@media print {
  .nav-tripovo, .mobile-menu, .mm-backdrop { display: none !important; }
}
