/* ============================================================
   The Recruitment Directory — extras.css (loaded after style.css)
   Contains: legacy logo animation, footer, auth pages, FAQ,
   hierarchical filter, responsive, modern polish.
   ============================================================ */

/* ----- Legacy logo: 4 tiles with staggered breathing pulse ----- */
.m-tile {
  transform-origin: center;
  transform-box: fill-box;
  animation: tilePulse 4.5s ease-in-out infinite;
}
.m-tile-1 { animation-delay: 0s; }
.m-tile-2 { animation-delay: 0.5s; }
.m-tile-3 { animation-delay: 1.5s; }
.m-tile-4 { animation-delay: 1.0s; }
@keyframes tilePulse {
  0%, 100% { transform: scale(1);    opacity: 0.92; }
  50%      { transform: scale(1.08); opacity: 1.00; }
}
.logo:hover .m-tile { animation-duration: 1.4s; }
.logo:hover .m-tile-1 { transform: translate(-1px, -1px) scale(1.05); transition: transform 0.4s; }
.logo:hover .m-tile-2 { transform: translate( 1px, -1px) scale(1.05); transition: transform 0.4s; }
.logo:hover .m-tile-3 { transform: translate(-1px,  1px) scale(1.05); transition: transform 0.4s; }
.logo:hover .m-tile-4 { transform: translate( 1px,  1px) scale(1.05); transition: transform 0.4s; }


/* ----- Footer (completion) ----- */
.site-footer::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; height: 3px;
  background: linear-gradient(90deg, transparent 0%, rgba(112,5,35,0.6) 20%, rgba(245,180,0,0.6) 50%, rgba(112,5,35,0.6) 80%, transparent 100%);
}
.site-footer a { color: #cfc8cb; }
.site-footer a:hover { color: #fff; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 32px; }
.footer-grid h4 { color: #fff; font-size: .9rem; text-transform: uppercase; letter-spacing: .5px; margin: 0 0 12px; }
.footer-grid ul { list-style: none; padding: 0; margin: 0; }
.footer-grid li { padding: 4px 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.1); margin-top: 32px; padding-top: 16px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; font-size: .85rem; color: #8e878a; }

/* ----- Auth pages ----- */
.auth-wrap { min-height: calc(100vh - 200px); display: flex; align-items: center; justify-content: center; padding: 32px 20px; }
.auth-card { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 32px; width: 100%; max-width: 440px; box-shadow: var(--shadow); }
.auth-card h1 { font-size: 1.6rem; margin-bottom: 4px; font-family: var(--font-display); }
.auth-card .subtitle { color: var(--text-muted); margin-bottom: 24px; }
.auth-divider { display: flex; align-items: center; gap: 12px; color: var(--text-soft); font-size: .85rem; margin: 16px 0; }
.auth-divider::before, .auth-divider::after { content: ""; flex: 1; height: 1px; background: var(--line); }

/* ----- FAQ + Help center ----- */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.faq-q { width: 100%; text-align: left; background: transparent; border: 0; padding: 14px 18px; font-weight: 600; font-size: 1rem; cursor: pointer; display: flex; justify-content: space-between; align-items: center; color: var(--text); }
.faq-q:hover { background: var(--bg-soft); }
.faq-q .chev { color: var(--brand); transition: transform .2s; }
.faq-item.open .faq-q .chev { transform: rotate(180deg); }
.faq-a { display: none; padding: 0 18px 16px; color: var(--text-muted); }
.faq-item.open .faq-a { display: block; }
.help-categories { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 14px; margin-bottom: 32px; }
.help-cat { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 18px; color: var(--text); transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s; }
.help-cat:hover { border-color: var(--brand); text-decoration: none; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(112,5,35,0.10); }
.help-cat h3 { font-size: 1rem; color: var(--brand); margin: 0 0 4px; }
.help-cat p { margin: 0; font-size: .88rem; color: var(--text-muted); }

/* ----- Pagination ----- */
.pagination { display: flex; gap: 4px; justify-content: center; margin-top: 24px; }
.pagination a, .pagination span { padding: 8px 12px; border: 1px solid var(--line); border-radius: 8px; color: var(--text); font-size: .9rem; background: #fff; }
.pagination a:hover { border-color: var(--brand); color: var(--brand); text-decoration: none; }
.pagination .current { background: var(--brand); color: #fff; border-color: var(--brand); }

/* ============================================================
   HIERARCHICAL CITY → SUBURB FILTER
   ============================================================ */
.filter-cities {
  max-height: 380px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  padding: 4px;
}
.filter-cities::-webkit-scrollbar { width: 8px; }
.filter-cities::-webkit-scrollbar-track { background: transparent; }
.filter-cities::-webkit-scrollbar-thumb { background: var(--line-strong); border-radius: 4px; }

.filter-city-group { border-bottom: 1px solid rgba(227,230,238,0.6); }
.filter-city-group:last-child { border-bottom: 0; }

.filter-city-row {
  display: flex;
  align-items: center;
  padding: 8px 10px;
  cursor: pointer;
  border-radius: 8px;
  transition: background 0.15s;
  user-select: none;
  margin: 0;
}
.filter-city-row:hover { background: var(--bg-soft); }
.filter-city-row input[type="radio"] {
  accent-color: var(--brand);
  margin-right: 8px;
  flex: 0 0 auto;
}
.filter-city-row .city-name {
  font-weight: 600;
  font-size: 0.93rem;
  color: var(--text);
  flex: 1;
}
.filter-city-row .city-count {
  font-size: 0.78rem;
  color: var(--text-soft);
  margin-right: 8px;
  background: var(--bg-tint);
  padding: 1px 7px;
  border-radius: 999px;
  min-width: 20px;
  text-align: center;
}
.filter-city-row .city-toggle {
  background: transparent;
  border: 0;
  cursor: pointer;
  padding: 4px;
  color: var(--text-muted);
  font-size: 0.95rem;
  border-radius: 4px;
  line-height: 1;
  transition: transform 0.25s ease, background 0.15s, color 0.15s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.filter-city-row .city-toggle:hover { background: var(--bg-tint); color: var(--brand); }
.filter-city-group.expanded .filter-city-row .city-toggle {
  transform: rotate(180deg);
  color: var(--brand);
}

.filter-city-suburbs {
  display: none;
  padding: 4px 8px 12px 30px;
  border-left: 2px solid var(--brand-tint);
  margin-left: 18px;
}
.filter-city-group.expanded .filter-city-suburbs {
  display: block;
  animation: subSlide 0.3s ease-out;
}
@keyframes subSlide {
  from { opacity: 0; transform: translateY(-6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.filter-suburb {
  display: flex;
  align-items: center;
  padding: 5px 8px;
  font-size: 0.88rem;
  color: var(--text-muted);
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  margin: 1px 0;
}
.filter-suburb:hover { background: var(--bg-soft); color: var(--text); }
.filter-suburb input[type="radio"] { accent-color: var(--brand); margin-right: 8px; }
.filter-suburb input[type="radio"]:checked + span { color: var(--brand); font-weight: 600; }

/* ============================================================
   MODERN POLISH
   ============================================================ */
/* Section title gradient underline */
.section-title h2 {
  position: relative;
  display: inline-block;
  padding-bottom: 6px;
}
.section-title h2::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 38px; height: 3px;
  background: linear-gradient(90deg, var(--brand) 0%, var(--accent) 100%);
  border-radius: 2px;
}

/* Smooth fade-in for cards */
.listings-grid .listing-card {
  opacity: 0;
  animation: cardFadeIn 0.5s ease-out forwards;
}
@keyframes cardFadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.listings-grid .listing-card:nth-child(1) { animation-delay: 0.04s; }
.listings-grid .listing-card:nth-child(2) { animation-delay: 0.08s; }
.listings-grid .listing-card:nth-child(3) { animation-delay: 0.12s; }
.listings-grid .listing-card:nth-child(4) { animation-delay: 0.16s; }
.listings-grid .listing-card:nth-child(5) { animation-delay: 0.20s; }
.listings-grid .listing-card:nth-child(6) { animation-delay: 0.24s; }
.listings-grid .listing-card:nth-child(7) { animation-delay: 0.28s; }
.listings-grid .listing-card:nth-child(8) { animation-delay: 0.32s; }

/* Refined filter panel */
.filter-panel h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.02em;
}

/* Tighter location pill */
.location-pill {
  font-family: var(--font-sans);
  letter-spacing: 0.01em;
}

/* ============================================================
   RESPONSIVE — TABLET (≤960px)
   ============================================================ */
@media (max-width: 960px) {
  .browse-layout   { grid-template-columns: 1fr; }
  .filter-panel    { position: static; }
  .listing-detail  { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .header-inner    { gap: 12px; padding: 12px 16px; }
  .container       { padding: 0 16px; }
}

/* ============================================================
   RESPONSIVE — PHONE (≤720px)
   ============================================================ */
@media (max-width: 720px) {

  /* ----- Header ----- */
  .site-header { box-shadow: 0 2px 12px rgba(112,5,35,0.25); }
  .header-inner {
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 14px;
    align-items: center;
  }
  .logo-mark { width: 34px; height: 34px; }
  .logo-word { font-size: 1.15rem; letter-spacing: 0.18em; }
  .header-nav { display: none; }
  .menu-toggle {
    display: inline-flex;
    align-items: center; justify-content: center;
    width: 42px; height: 42px;
    margin-left: auto;
    border-radius: 10px;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.18);
    font-size: 1.4rem;
    transition: background 0.15s, transform 0.15s;
  }
  .menu-toggle:hover,
  .menu-toggle:focus { background: rgba(255,255,255,0.18); }
  .menu-toggle:active { transform: scale(0.96); }
  .location-pill {
    order: 4;
    flex: 1 1 auto;
    justify-content: center;
    padding: 8px 12px;
    font-size: 0.82rem;
  }
  .header-search {
    order: 5;
    flex-basis: 100%;
    max-width: 100%;
    border-radius: 12px;
  }
  .header-search input { padding: 12px 14px; font-size: 0.95rem; }
  .header-search button { padding: 0 16px; font-size: 0.9rem; }

  /* Mobile slide-down menu */
  .mobile-menu {
    display: none;
    background: linear-gradient(180deg, #500117 0%, #3a0011 100%);
    padding: 6px 0 10px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.06);
  }
  .mobile-menu.open { display: block; animation: mmSlide 0.22s ease-out; }
  .mobile-menu a {
    display: flex; align-items: center;
    padding: 14px 20px;
    color: #fff;
    font-size: 0.98rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    min-height: 48px;
  }
  .mobile-menu a:last-child { border-bottom: 0; }
  .mobile-menu a:hover,
  .mobile-menu a:active { background: rgba(255,255,255,0.08); text-decoration: none; }
  @keyframes mmSlide {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* Subnav — collapsed behind a "Browse categories" toggle on mobile so the
     long category strip doesn't push listings below the fold. Desktop is
     unchanged (subnav always visible, toggle button hidden). */
  .subnav-toggle {
    display: flex; align-items: center; justify-content: space-between;
    width: 100%;
    padding: 12px 16px;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fc 100%);
    border: 0; border-bottom: 1px solid var(--line);
    color: var(--text);
    font-family: inherit; font-size: 0.92rem; font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    min-height: 48px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.04);
  }
  .subnav-toggle:hover,
  .subnav-toggle:active { background: var(--bg-soft); }
  .subnav-toggle .subnav-toggle-icon {
    color: var(--brand);
    transition: transform 0.22s ease;
    flex: 0 0 auto;
  }
  .subnav-toggle[aria-expanded="true"] .subnav-toggle-icon { transform: rotate(180deg); }
  .subnav {
    display: none;
    position: relative;
    background: #fff;
    border-bottom: 1px solid var(--line);
    overflow: visible;
    white-space: normal;
    padding: 6px 0 10px;
    animation: subnavSlide 0.22s ease-out;
  }
  .subnav.open { display: block; }
  .subnav-inner {
    flex-direction: column;
    align-items: stretch;
    padding: 4px 8px;
    gap: 2px;
  }
  .subnav a {
    display: flex; align-items: center;
    padding: 12px 14px;
    font-size: 0.96rem;
    color: var(--text);
    border-radius: 8px;
    min-height: 44px;
  }
  .subnav a:hover,
  .subnav a:active { background: var(--bg-tint); color: var(--brand); }
  .subnav::after { display: none; }
  @keyframes subnavSlide {
    from { opacity: 0; transform: translateY(-4px); }
    to   { opacity: 1; transform: translateY(0); }
  }

  /* ----- Hero ----- */
  .hero {
    padding: 44px 16px 56px;
  }
  .hero h1 {
    font-size: clamp(1.75rem, 7vw, 2.2rem);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
  }
  .hero p {
    font-size: 0.96rem;
    margin-bottom: 22px;
    padding: 0 4px;
    line-height: 1.5;
  }
  .hero-search {
    flex-direction: column;
    padding: 8px;
    gap: 6px;
    border-radius: 14px;
  }
  .hero-search input,
  .hero-search select {
    flex: 1 1 100%;
    padding: 13px 14px;
    font-size: 0.98rem;
    border-bottom: 1px solid var(--line);
  }
  .hero-search input + select { border-left: 0; }
  .hero-search select:last-of-type { border-bottom: 0; }
  .hero-search button {
    width: 100%;
    padding: 14px;
    font-size: 1rem;
    margin-top: 4px;
  }
  .hero-stats {
    gap: 18px;
    margin-top: 24px;
    font-size: 0.82rem;
  }
  .hero-stats strong { font-size: 1.12rem; }

  /* ----- Sections / Categories / Listings ----- */
  .section { padding: 28px 0; }
  .section-title { margin-bottom: 14px; gap: 10px; }
  .section-title h2 { font-size: 1.25rem; }
  .section-title a { font-size: 0.9rem; }

  .cat-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  .cat-card { padding: 16px 10px; }
  .cat-icon {
    width: 44px; height: 44px;
    margin-bottom: 8px;
    font-size: 1.25rem;
    border-radius: 12px;
  }
  .cat-card h3 { font-size: 0.88rem; }
  .cat-card span { font-size: 0.75rem; }

  .listings-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
  }
  /* When the listings count is odd, make the trailing card span the full row.
     Prevents the empty grid cell that otherwise leaves ~325px of dead space
     at the bottom of the section on mobile. */
  .listings-grid > .listing-card:last-child:nth-child(odd) {
    grid-column: 1 / -1;
  }
  .listing-body { padding: 10px 12px 12px; }
  .listing-title {
    font-size: 0.88rem;
    margin-bottom: 6px;
    min-height: 2.4em;
  }
  .listing-meta { font-size: 0.74rem; }
  .listing-price-overlay { font-size: 0.85rem; padding: 3px 8px; }
  /* Match the .listing-badges .listing-badge specificity from style.css so
     these mobile shrinks actually apply; badges wrap within the card. */
  .listing-badges { gap: 3px 4px; top: 8px; left: 8px; right: 8px; }
  .listing-badges .listing-badge { font-size: 0.58rem; padding: 3px 6px; letter-spacing: .04em; }
  .listing-img.is-logo { padding: 10px; }

  /* ----- Trust strip ----- */
  .trust-strip { padding: 22px 0; }
  .trust-grid { gap: 18px; }
  .trust-item .icon { width: 48px; height: 48px; font-size: 1.2rem; margin-bottom: 8px; }
  .trust-item h3 { font-size: 0.95rem; }
  .trust-item p  { font-size: 0.82rem; }

  /* ----- Browse layout / Filter drawer ----- */
  .browse-layout { padding: 14px 0 32px; gap: 14px; }
  .browse-toolbar {
    margin-bottom: 12px;
    gap: 8px;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 10px;
  }
  .browse-toolbar .results-count { font-size: 0.85rem; }
  .toolbar-controls { gap: 6px; flex-wrap: wrap; }

  /* Mobile filter drawer */
  .filter-panel {
    position: fixed;
    top: 0; left: 0;
    width: min(86vw, 340px);
    height: 100vh;
    z-index: 200;
    transform: translateX(-100%);
    transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 0;
    border-right: 1px solid var(--line);
    overflow-y: auto;
    padding: 18px 16px 80px;
    box-shadow: 4px 0 24px rgba(0,0,0,0.18);
  }
  .filter-panel.open { transform: translateX(0); }
  .filter-panel-overlay {
    display: none;
    position: fixed; inset: 0;
    background: rgba(20,24,40,0.45);
    z-index: 199;
    backdrop-filter: blur(2px);
    -webkit-backdrop-filter: blur(2px);
  }
  .filter-panel-overlay.open { display: block; animation: fadeIn 0.2s ease-out; }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

  .filter-toggle-mobile {
    display: inline-flex !important;
    align-items: center; gap: 8px;
    background: var(--brand);
    color: #fff;
    padding: 9px 14px;
    border: 0;
    border-radius: 10px;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 2px 6px rgba(112,5,35,0.25);
  }
  .filter-toggle-mobile:hover { background: var(--brand-dark); }
  .filter-close-mobile {
    display: flex;
    position: sticky; top: 0;
    width: 100%; align-items: center; justify-content: space-between;
    background: #fff;
    margin: -18px -16px 14px;
    padding: 12px 16px;
    border-bottom: 1px solid var(--line);
    z-index: 2;
  }
  .filter-close-mobile h3 { margin: 0; font-size: 1.05rem; }
  .filter-close-mobile button {
    background: var(--bg-tint); border: 0;
    width: 34px; height: 34px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    color: var(--text-muted);
  }
  .filter-cities { max-height: 280px; }

  /* ----- Listing detail ----- */
  .listing-detail { padding: 14px 0 32px; gap: 14px; }
  .gallery-thumbs { grid-template-columns: repeat(4, 1fr); padding: 6px; }
  .price-tag { font-size: 1.6rem; }
  .seller-card { padding: 18px; }
  .seller-avatar { width: 60px; height: 60px; font-size: 1.4rem; }

  /* ----- Forms ----- */
  .field-row { grid-template-columns: 1fr; gap: 8px; }
  .input, .select, .textarea {
    padding: 12px 14px;
    font-size: 1rem; /* prevents iOS auto-zoom */
  }
  .field label { font-size: 0.92rem; }
  .panel { padding: 18px 16px; }

  /* ----- Auth pages ----- */
  .auth-wrap { padding: 18px 14px; min-height: calc(100vh - 160px); }
  .auth-card { padding: 24px 20px; border-radius: 14px; }
  .auth-card h1 { font-size: 1.4rem; }
  .auth-card .subtitle { font-size: 0.92rem; margin-bottom: 18px; }

  /* ----- Help / FAQ ----- */
  .help-categories { grid-template-columns: 1fr 1fr; gap: 10px; }
  .help-cat { padding: 14px; }
  .help-cat h3 { font-size: 0.92rem; }
  .help-cat p  { font-size: 0.8rem; }
  .faq-q { padding: 13px 14px; font-size: 0.95rem; }
  .faq-a { padding: 0 14px 14px; font-size: 0.9rem; }

  /* ----- Footer ----- */
  .site-footer { padding: 36px 0 18px; margin-top: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 22px; }
  .footer-grid h4 { font-size: 0.82rem; margin-bottom: 8px; }
  .footer-grid li { font-size: 0.88rem; }
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    margin-top: 22px;
    font-size: 0.78rem;
  }

  /* ----- Buttons — bigger touch targets ----- */
  .btn { padding: 11px 18px; min-height: 44px; }
  .btn-sm { padding: 8px 14px; min-height: 36px; }
  .btn-lg { padding: 14px 22px; min-height: 50px; }

  /* ----- Pagination ----- */
  .pagination a, .pagination span {
    padding: 9px 13px;
    font-size: 0.88rem;
    min-width: 38px; min-height: 38px;
    display: inline-flex; align-items: center; justify-content: center;
  }
}

/* ============================================================
   RESPONSIVE — SMALL PHONE (≤480px)
   ============================================================ */
@media (max-width: 480px) {
  .container { padding: 0 12px; }
  .header-inner { padding: 9px 12px; gap: 8px; }
  .logo-mark { width: 30px; height: 30px; }
  .logo-word { font-size: 1.05rem; letter-spacing: 0.16em; }

  .hero { padding: 36px 14px 48px; }
  .hero h1 { font-size: 1.65rem; }
  .hero p  { font-size: 0.9rem; margin-bottom: 18px; }
  .hero-stats { gap: 14px; }
  .hero-stats strong { font-size: 1rem; }
  .hero-stats > div { font-size: 0.75rem; }

  .section-title h2 { font-size: 1.12rem; }
  .listing-title { font-size: 0.82rem; min-height: 2.3em; }

  .footer-grid { grid-template-columns: 1fr; gap: 18px; }
  .help-categories { grid-template-columns: 1fr; }
  .auth-card { padding: 20px 16px; }
  .auth-card h1 { font-size: 1.25rem; }
}

/* Hide the mobile-only filter toggle on desktop by default */
.filter-toggle-mobile { display: none; }
.filter-close-mobile  { display: none; }

/* Hide desktop heading on mobile (mobile uses sticky close header instead) */
@media (max-width: 720px) {
  .filter-desktop-heading { display: none; }
}

/* Default mobile-menu state (closed) — visible rules in 720px block */
.mobile-menu { display: none; }

/* ----- Site-wide header: original maroon nav + pure-white logo ----- */
.logo-eyebrow,
.logo-headline,
.logo-tld {
  color: #ffffff !important;
  text-shadow: none !important;
}
.logo-tld {
  border-left-color: rgba(255,255,255,0.7) !important;
}

/* Keep the gold "List your agency" button readable on hover —
   generic .header-nav a:hover was clobbering its gradient */
.header-nav .btn-accent,
.header-nav .btn-accent:hover,
.header-nav .btn-accent:focus {
  color: var(--text) !important;
}
.header-nav .btn-accent:hover {
  background: linear-gradient(180deg, #ffd450 0%, #ffc220 60%, #e6a200 100%) !important;
  transform: translateY(-1px);
}
