.mobile-overlay {
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}

.mobile-overlay.active {
  opacity: 1;
  visibility: visible;
}

.mobile-sheet {
  transform: translateY(100%);
  transition: transform .35s cubic-bezier(.32, .72, 0, 1);
  max-height: calc(100dvh - 12px) !important;
  touch-action: pan-y;
}

.mobile-sheet.dragging {
  transition: none !important;
}

.mobile-overlay.active .mobile-sheet {
  transform: translateY(0);
}

.mobile-nav-item {
  background: #fff !important;
  border-color: rgba(218, 220, 224, .95) !important;
  box-shadow: var(--shadow-card);
  transition: border-color .2s ease, background .2s ease, transform .15s ease;
}

.mobile-nav-item p:first-child {
  color: #202124 !important;
}

.mobile-nav-item p:last-child {
  color: #5f6368 !important;
}

.mobile-nav-item:hover {
  border-color: rgba(26, 115, 232, .28);
  background: rgba(248, 250, 253, .95);
}

.mobile-nav-item:active {
  transform: scale(.98);
}

@media (max-width: 420px) {
  .category-dropdown-panel {
    width: min(18rem, calc(100vw - 1rem)) !important;
  }

  .category-item {
    min-height: 2.65rem;
    gap: .65rem;
  }

  .category-item .check-shell {
    width: 1.05rem;
    height: 1.05rem;
  }

  .hero-eyebrow {
    align-items: center;
    border-radius: 1.75rem;
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: .7rem 1rem;
    row-gap: .35rem;
  }

  .hero-eyebrow .google-dots {
    flex-shrink: 0;
  }

  .hero-eyebrow-text {
    display: block;
    max-width: 18.5rem;
  }
}
