/* =============================================================
   VoragineTV — Masonry grid
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600;700&family=Roboto:wght@300;400;700&family=Bodoni+Moda:ital,wght@0,700;1,700;1,800&display=swap');

@font-face {
  font-family: 'MajritTx';
  src: url('/assets/fonts/MajritTx.woff2') format('woff2'),
       url('/assets/fonts/MajritTx.woff')  format('woff');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

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

:root {
  --c1:     #1f1f1f;
  --c2:     #ef173b;
  --yellow: #ffde00;
  --body:   #505050;
  --muted:  #929292;
  --border: #e8e8e8;
  --bg:     #ffffff;
  --font:        'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --font-title:  'Bodoni Moda', Georgia, serif;
  --font-card:   'Oswald', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  --gap:    10px;
  --col-gap: 48px;
}

html { font-size: 16px; }

body {
  background: var(--bg);
  color: var(--c1);
  font-family: var(--font);
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
}

/* Black frame only on the public site — not on admin pages, not on
   the TinyMCE iframe (body.post-body), not on the login screen. */
body:not(.admin-body):not(.post-body):not(.login-page) {
  outline: 10px solid #000;
  outline-offset: -10px;
}

/* Padding inside the TinyMCE editor iframe only.
   The public site's .post-body lives inside .single-wrap which already
   has its own padding, so this selector won't leak there because on the
   public site .post-body is a <div>, not a <body>. */
html > body.post-body {
  padding: 28px 36px;
}

img { display: block; max-width: 100%; height: auto; }
a   { color: inherit; text-decoration: none; }

/* ── MASONRY ─────────────────────────────────────────────────── */

.masonry-grid-wrap {
  display: flex;
  align-items: flex-start;
  gap: var(--col-gap);
  padding: var(--gap) 10%;
}

.masonry-col {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.masonry-col .masonry-item {
  width: 100%;
  margin-bottom: 42px;
}

/* ── BRAND CELL ──────────────────────────────────────────────── */

.brand-cell {
  padding: 16px 8px 24px 4px;
}

.brand-logo {
  display: block;
  margin-bottom: 26px;
}

.brand-logo img {
  width: 230px;
  max-width: 100%;
}

.brand-nav {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 4px 12px;
}

.brand-nav a {
  display: inline-block;
  font-size: 24px;
  font-family: var(--font-card);
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--c1);
  line-height: 1.5;
  margin-bottom: 4px;
  white-space: nowrap;
  /* yellow underline trick: yellow bg + white inset shadow covers it, leaving a bottom stripe */
  background-color: var(--yellow);
  box-shadow: #fff 0 1.1em inset;
  transition: box-shadow .15s ease-out, color .15s;
  padding-left: 2px;
  padding-right: 4px;
}

.brand-nav a:hover,
.brand-nav a.active {
  box-shadow: #fff 0 0 inset;
}

/* ── ARTICLE CARD ────────────────────────────────────────────── */

.card {
  display: block;
  padding-top: 32px;
  position: relative;
}

.card-img {
  width: 100%;
  overflow: hidden;
  background: #ebebeb;
  border-radius: 6px;
  position: relative;
}

.card-img img {
  width: 100%;
  height: auto;
  display: block;
  transition: filter .3s ease-in-out, transform .4s ease;
}

.card:hover .card-img img {
  -webkit-filter: grayscale(1);
  filter: grayscale(1);
  transform: scale(1.04);
}

.card-img.no-img { aspect-ratio: 4/3; }

/* ── HOVER OVERLAY ───────────────────────────────────────────── */

.card-overlay {
  position: absolute;
  inset: 0;
  border-radius: 6px;
  opacity: 0;
  transition: opacity .3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.card:hover .card-overlay { opacity: 1; }

/* Category + date — sits above the image, hidden by default, slides in on hover */
.overlay-top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(4px);
  transition: opacity .25s ease, transform .25s ease;
  pointer-events: none;
}

.card:hover .overlay-top {
  opacity: 1;
  transform: translateY(0);
}

.overlay-cat {
  background: var(--yellow);
  color: var(--c1);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 3px 9px;
  font-family: var(--font-card);
  white-space: nowrap;
}

.overlay-date {
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  font-family: var(--font);
}

/* READ MORE — centered on image */
.overlay-read {
  color: #fff;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  font-family: var(--font-card);
  text-shadow: 0 1px 6px rgba(0,0,0,0.4);
}

/* ── CARD INFO ───────────────────────────────────────────────── */

.card-info { padding: 9px 0 2px; }

/* cats, date and excerpt are hidden below — only shown in overlay */
.card-cats,
.card-date,
.card-excerpt { display: none; }

.card-title {
  font-size: 26px;
  font-weight: 400;
  font-family: var(--font-card);
  font-style: normal;
  text-transform: uppercase;
  color: var(--c1);
  line-height: 1.45;
  letter-spacing: 0.04em;
  margin-top: 0;
  transition: color .15s;
}

.card:hover .card-title { color: var(--c2); }

@media (max-width: 900px) { .card-title { font-size: 20px; } }
@media (max-width: 520px)  { .card-title { font-size: 9px; } }

/* ── CAT PAGE HEADER ─────────────────────────────────────────── */

.cat-header {
  padding: var(--gap) 10% 0;
}

.cat-header h1 {
  font-size: clamp(22px, 4vw, 40px);
  font-weight: 800;
  letter-spacing: -.02em;
  text-transform: uppercase;
  color: var(--c1);
  border-bottom: 2px solid var(--c1);
  padding-bottom: 10px;
  margin-bottom: 4px;
}

/* ── PAGINATION ──────────────────────────────────────────────── */

.pagination {
  display: flex;
  gap: 4px;
  justify-content: center;
  padding: 32px var(--gap);
}

.pagination a,
.pagination .pg-current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 36px;
  padding: 0 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .05em;
  border: 1px solid var(--border);
  color: var(--muted);
  transition: border-color .15s, color .15s;
}

.pagination a:hover       { border-color: var(--c2); color: var(--c2); }
.pagination .pg-current   { background: var(--c2); color: #fff; border-color: var(--c2); }
.pagination .pg-dots      { display: inline-flex; align-items: center; color: var(--muted); padding: 0 4px; }

/* ── SINGLE POST ─────────────────────────────────────────────── */

.single-wrap {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px 30px 100px;
}

.single-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.btn-edit-post {
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--muted);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: 2px;
  transition: color .15s, border-color .15s;
  white-space: nowrap;
}

.btn-edit-post:hover {
  color: var(--c2);
  border-color: var(--c2);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  transition: color .15s;
}

.back-link svg {
  width: 18px; height: 8px;
  fill: none; stroke: currentColor; stroke-width: 1.5;
  overflow: visible;
}

.back-link:hover { color: var(--c2); }

.single-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.post-cat-tag {
  font-size: 20px; font-weight: 400; letter-spacing: .08em;
  font-family: var(--font-card);
  text-transform: uppercase;
  background-color: var(--yellow);
  box-shadow: #fff 0 1.1em inset;
  padding-left: 4px;
  padding-right: 4px;
  color: var(--c1); transition: box-shadow .15s;
}

.post-cat-tag:hover { box-shadow: #fff 0 0 inset; }
.post-cat-sep       { color: var(--muted); font-size: 20px; }
.post-card-date     { font-size: 20px; color: var(--muted); letter-spacing: .05em; font-family: var(--font-card); }

.single-title {
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 400;
  font-family: var(--font-card);
  font-style: normal;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  line-height: 1.1;
  color: var(--c1);
  margin-bottom: 36px;
}

.single-featured {
  max-width: 100%;
  max-height: 50vh;
  width: auto;
  height: auto;
  display: block;
  margin: 0 auto 44px;
  border-radius: 6px;
  object-fit: contain;
}

/* Post body */
.post-body {
  font-size: 18px;
  line-height: 1.75;
  color: var(--body);
}

.post-body > * + * { margin-top: 1.5rem; }
.post-body p { margin-bottom: 0; }

.post-body h2 { font-size: 30px; font-weight: 700; color: var(--c1); letter-spacing: -.025em; }
.post-body h3 { font-size: 24px; font-weight: 700; color: var(--c1); }
.post-body h4 { font-size: 20px; font-weight: 700; color: var(--c1); }

.post-body a { color: var(--c1); text-decoration: underline; text-underline-offset: 2px; }
.post-body a:hover { color: var(--c2); }
.post-body strong  { color: var(--c1); font-weight: 700; font-size: 1.1em; }

.post-body blockquote {
  padding: 5% 10%; text-align: center; border: 0; margin: 2rem 0;
}
.post-body blockquote p {
  font-size: 24px; font-weight: 700; color: var(--c1); line-height: 1.3;
}

.post-body img { max-width: 100%; max-height: 50vh; width: auto; margin: 1.5rem auto; border-radius: 6px; object-fit: contain; }
.post-body ul, .post-body ol { padding-left: 1.6rem; margin: 1rem 0; }
.post-body li  { margin-bottom: 4px; }

.post-body .video-embed,
.post-body .flex-video,
.post-body .wp-video {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  margin: 2rem auto;
  max-width: 100%;
}
.post-body .video-embed iframe,
.post-body .flex-video iframe,
.post-body .wp-video iframe,
.post-body .wp-video video {
  position: absolute; top: 0; left: 0; width: 100%; height: 100%; margin: 0;
}

/* ── LOAD MORE ──────────────────────────────────────────────── */

#masonry-grid {
  /* opacity now managed per-image by JS */
}

.load-more-wrap {
  display: flex;
  justify-content: center;
  padding: 40px 0 60px;
}

#load-more-btn {
  font-family: var(--font-card);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--c1);
  background: transparent;
  border: 2px solid var(--c1);
  padding: 12px 40px;
  cursor: pointer;
  transition: background .2s, color .2s;
}

#load-more-btn:hover {
  background: var(--c1);
  color: #fff;
}

#load-more-btn.is-loading {
  opacity: 0.5;
  cursor: wait;
}

/* ── INFINITE SCROLL LOADER (kept for compat) ────────────────── */

#scroll-sentinel { height: 1px; }

.scroll-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  padding: 32px 0 48px;
}

.scroll-loader span {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--border);
  animation: loader-bounce 1s infinite ease-in-out;
}

.scroll-loader span:nth-child(2) { animation-delay: .15s; }
.scroll-loader span:nth-child(3) { animation-delay: .3s; }

@keyframes loader-bounce {
  0%, 80%, 100% { transform: scale(0.6); opacity: .4; }
  40%            { transform: scale(1);   opacity: 1; }
}

/* ── FLOATING BACK BUTTON ───────────────────────────────────── */

.float-back {
  position: fixed;
  bottom: 32px;
  left: 32px;
  z-index: 100;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(31,31,31,0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  font-family: var(--font);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 10px 18px 10px 14px;
  border-radius: 100px;
  text-decoration: none;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity .3s, transform .3s, background .15s;
  pointer-events: none;
}

.float-back.visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.float-back:hover {
  background: var(--c2);
}

.float-back svg {
  width: 14px; height: 6px;
  fill: none; stroke: currentColor; stroke-width: 1.8;
  overflow: visible;
  flex-shrink: 0;
}

@media (max-width: 520px) {
  .float-back { bottom: 20px; left: 16px; font-size: 9px; padding: 9px 14px 9px 11px; }
}

/* ── SILKTIDE COOKIE ICON Z-INDEX FIX ──────────────────────── */
#stcm-icon { z-index: 9999 !important; transform: scale(0.65) !important; transform-origin: bottom left !important; left: 12px !important; }
#stcm-wrapper { z-index: 9998 !important; }

/* ── FOOTER ──────────────────────────────────────────────────── */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 22px var(--gap);
  text-align: center;
  font-size: 10px;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ── ADMIN ───────────────────────────────────────────────────── */

.admin-body { background: #f4f4f4; min-height: 100vh; font-family: var(--font); color: var(--c1); -webkit-font-smoothing: antialiased; }

.admin-bar { background: var(--c1); height: 52px; display: flex; align-items: center; justify-content: space-between; padding: 0 30px; position: sticky; top: 0; z-index: 200; }

.admin-brand { font-size: 11px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; color: #fff; }
.admin-brand em { color: var(--c2); font-style: normal; }

.admin-bar-nav { display: flex; gap: 28px; align-items: center; }
.admin-bar-nav a { font-size: 16px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: rgba(255,255,255,.45); transition: color .15s; }
.admin-bar-nav a:hover, .admin-bar-nav a.active { color: #fff; }
.admin-bar-nav .a-logout { color: rgba(255,255,255,.3); }
.admin-bar-nav .a-logout:hover { color: var(--c2); }

.admin-main { max-width: 900px; margin: 0 auto; padding: 40px 30px 100px; }
.admin-title { font-size: 24px; font-weight: 800; letter-spacing: -.03em; margin-bottom: 32px; }

.articles-table { width: 100%; border-collapse: collapse; background: #fff; font-size: 13px; }
.articles-table th { text-align: left; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); padding: 12px 16px; border-bottom: 2px solid var(--border); white-space: nowrap; }
.articles-table td { padding: 12px 16px; border-bottom: 1px solid var(--border); vertical-align: middle; }
.articles-table tr:hover td { background: #fafafa; }
.articles-table .col-title { font-weight: 600; max-width: 320px; font-size: 16px; }
.articles-table .col-cat   { color: var(--muted); font-size: 11px; white-space: nowrap; }
.articles-table .col-date  { color: var(--muted); font-size: 11px; white-space: nowrap; }

.badge { display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; padding: 3px 8px; border-radius: 2px; }
.badge-publish { background: rgba(239,23,59,.1); color: var(--c2); }
.badge-draft   { background: #eee; color: var(--muted); }

.btn-edit { font-size: 9px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--c1); border: 1px solid #ddd; padding: 4px 12px; border-radius: 2px; transition: border-color .15s, color .15s; white-space: nowrap; }
.btn-edit:hover { border-color: var(--c2); color: var(--c2); }
.btn-view { font-size: 9px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; color: var(--muted); margin-left: 8px; transition: color .15s; }
.btn-view:hover { color: var(--c2); }

.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 9px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: 7px; }
.form-input, .form-select { width: 100%; background: #fff; border: 1px solid #ddd; color: var(--c1); padding: 11px 13px; font-size: 15px; font-family: var(--font); border-radius: 2px; outline: none; transition: border-color .15s; }
.form-input:focus, .form-select:focus { border-color: var(--c2); }
.cat-checkboxes { display: flex; flex-wrap: wrap; gap: 7px; }
.cat-cb-label { font-size: 9px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; border: 1px solid #ddd; padding: 5px 12px; border-radius: 2px; cursor: pointer; transition: all .12s; user-select: none; color: var(--muted); }
.cat-cb-label:hover { border-color: var(--c2); color: var(--c2); }
.cat-cb-label.is-checked { background: var(--c2); color: #fff; border-color: var(--c2); }
.cat-cb-label input[type=checkbox] { display: none; }
.upload-zone { position: relative; border: 2px dashed #ddd; border-radius: 2px; padding: 22px; text-align: center; background: #fff; cursor: pointer; transition: border-color .15s; }
.upload-zone:hover { border-color: var(--c2); }
.upload-zone input[type=file] { position: absolute; inset: 0; opacity: 0; cursor: pointer; width: 100%; height: 100%; }
.upload-hint { font-size: 13px; color: var(--muted); pointer-events: none; }
.upload-hint strong { display: block; font-size: 14px; color: var(--c1); margin-bottom: 3px; }
#img-preview { max-height: 180px; margin: 12px auto 0; border-radius: 2px; display: none; }
.editor-shell { border: 1px solid #ddd; border-radius: 2px; overflow: hidden; transition: border-color .15s; }
.editor-shell:focus-within { border-color: var(--c2); }
.btn-pub { background: var(--c2); color: #fff; border: none; padding: 13px 36px; font-size: 10px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; cursor: pointer; border-radius: 2px; font-family: var(--font); transition: opacity .15s, transform .1s; display: inline-block; }
.btn-pub:hover { opacity: .85; transform: translateY(-1px); }
.btn-pub:active { transform: translateY(0); }
.btn-ghost { background: transparent; color: var(--muted); border: 1px solid #ddd; padding: 12px 24px; font-size: 10px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; cursor: pointer; border-radius: 2px; font-family: var(--font); transition: border-color .15s, color .15s; display: inline-block; margin-left: 10px; }
.btn-ghost:hover { border-color: var(--c1); color: var(--c1); }
.alert { padding: 13px 16px; border-radius: 2px; margin-bottom: 20px; font-size: 13px; line-height: 1.5; }
.alert a { text-decoration: underline; }
.alert-ok    { background: rgba(239,23,59,.06); border-left: 3px solid var(--c2); color: var(--c2); }
.alert-error { background: rgba(180,0,0,.05);   border-left: 3px solid #c00;      color: #c00; }

.login-page { min-height: 100vh; background: var(--c1); display: flex; align-items: center; justify-content: center; }
.login-wrap { width: 100%; max-width: 360px; background: #fff; padding: 50px 40px; border-radius: 2px; }
.login-logo { text-align: center; margin-bottom: 32px; }
.login-logo img { height: 40px; margin: 0 auto 10px; }
.login-logo p   { font-size: 9px; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--muted); }
.login-form .form-group { margin-bottom: 16px; }

/* ── RESPONSIVE ─────────────────────────────────────────────── */

@media (max-width: 900px) {
  .masonry-grid-wrap { gap: 28px; padding: var(--gap) 3%; }
  .cat-header { padding: var(--gap) 3% 0; }
}

@media (max-width: 520px) {
  /* No black frame on mobile */
  body { outline: none; }

  .masonry-grid-wrap { gap: 8px; padding: 12px 10px; }
  .masonry-col .masonry-item { margin-bottom: 8px; }
  .brand-logo img { width: 100px; }
  .brand-nav { display: none; }

  /* Mobile category button */
  .mob-cat-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    margin-top: 14px;
    padding: 10px 16px;
    background: var(--c1);
    color: #fff;
    border: none;
    border-radius: 4px;
    font-family: var(--font-card);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: .12em;
    text-transform: uppercase;
    cursor: pointer;
  }
  .mob-cat-btn svg {
    width: 14px; height: 10px;
    transition: transform .2s ease;
    flex-shrink: 0;
  }
  .mob-cat-btn.is-open svg { transform: rotate(180deg); }

  /* Drawer */
  .mob-cat-drawer {
    display: none;
    position: absolute;
    left: 0; right: 0;
    top: calc(100% + 4px);
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 4px;
    box-shadow: 0 8px 24px rgba(0,0,0,.12);
    z-index: 500;
    max-height: 60vh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }
  .mob-cat-drawer.is-open { display: block; }
  .mob-cat-item {
    display: block;
    padding: 12px 16px;
    font-family: var(--font-card);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--c1);
    border-bottom: 1px solid var(--border);
  }
  .mob-cat-item:last-child { border-bottom: none; }
  .mob-cat-item:active { background: #f5f5f5; }
  .mob-cat-all { color: var(--muted); font-style: italic; }

  /* Make brand-cell position:relative so drawer is anchored to it */
  .brand-cell { position: relative; }

  /* Show cats + date under title on mobile */
  .card-cats { display: flex; flex-wrap: wrap; gap: 3px; margin-top: 4px; }
  .card-date  { display: block; font-size: 9px; color: var(--muted); margin-top: 2px; letter-spacing: .04em; }
  .card-cat   { font-size: 8px; font-weight: 700; letter-spacing: .07em; text-transform: uppercase;
                font-family: var(--font-card); background: var(--yellow); color: var(--c1); padding: 1px 5px; }

  .card-title { font-size: 11px; }
  .card { padding-top: 6px; }
  .card-info { padding: 5px 0 0; }

  .single-wrap { padding: 20px 16px 60px; }
  .single-title { font-size: 26px; }
  .post-body { font-size: 15px; line-height: 1.65; }
  .post-body h2 { font-size: 22px; }
  .post-body h3 { font-size: 19px; }
  .post-body blockquote p { font-size: 18px; }
}

/* Hide mobile-only elements on desktop */
@media (min-width: 521px) {
  .mob-cat-btn,
  .mob-cat-drawer { display: none !important; }
}
