/* MandahPoke! — Home page */
* { box-sizing: border-box; }

body:has(.mp-home) {
  margin: 0;
  padding: 0;
  background:
    radial-gradient(circle at 18% 12%, rgba(255,255,255,0.28) 0%, transparent 42%),
    radial-gradient(circle at 92% 4%, rgba(255,255,255,0.22) 0%, transparent 36%),
    radial-gradient(circle at 82% 48%, rgba(255,255,255,0.16) 0%, transparent 32%),
    radial-gradient(circle at 2% 58%, rgba(255,255,255,0.14) 0%, transparent 30%),
    radial-gradient(circle at 55% 30%, rgba(255,255,255,0.10) 0%, transparent 45%),
    linear-gradient(160deg, #f5a623 0%, #f7c96e 60%, #f9dfa0 100%);
  font-family: "Inter", system-ui, sans-serif;
}

.mp-home {
  max-width: 480px;
  margin: 0 auto;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  background:
    radial-gradient(circle at 18% 12%, rgba(255,255,255,0.28) 0%, transparent 42%),
    radial-gradient(circle at 92% 4%, rgba(255,255,255,0.22) 0%, transparent 36%),
    radial-gradient(circle at 82% 48%, rgba(255,255,255,0.16) 0%, transparent 32%),
    radial-gradient(circle at 2% 58%, rgba(255,255,255,0.14) 0%, transparent 30%),
    radial-gradient(circle at 55% 30%, rgba(255,255,255,0.10) 0%, transparent 45%),
    linear-gradient(160deg, #f5a623 0%, #f7c96e 60%, #f9dfa0 100%);
}

turbo-frame#home-content {
  display: contents;
}

:root {
  --mp-header-h: 76px;
}

/* ── Header — sobre fundo laranja, fixo no topo durante o scroll ── */
.mp-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 20px 14px;
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  min-height: var(--mp-header-h);
  transition: background 0.15s;
}

.mp-header--solid {
  background:
    radial-gradient(circle at 18% 12%, rgba(255,255,255,0.28) 0%, transparent 42%),
    radial-gradient(circle at 92% 4%, rgba(255,255,255,0.22) 0%, transparent 36%),
    radial-gradient(circle at 82% 48%, rgba(255,255,255,0.16) 0%, transparent 32%),
    radial-gradient(circle at 2% 58%, rgba(255,255,255,0.14) 0%, transparent 30%),
    radial-gradient(circle at 55% 30%, rgba(255,255,255,0.10) 0%, transparent 45%),
    linear-gradient(160deg, #f5a623 0%, #f7c96e 60%, #f9dfa0 100%);
}

.mp-header__brand {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mp-header__logo {
  height: 32px;
  width: auto;
  object-fit: contain;
}

.mp-header__title {
  font-size: 1.2rem;
  font-weight: 800;
  color: #fff;
  letter-spacing: -0.5px;
}

.mp-header__actions {
  display: flex;
  gap: 8px;
}

.mp-header__action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.55);
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #f5a623;
  cursor: pointer;
  transition: background 0.15s, transform 0.1s ease;
}

.mp-header__action-btn:hover {
  background: rgba(255,255,255,0.35);
}

.mp-header__action-btn:active {
  animation: icon-btn-pop 0.25s ease forwards;
}

/* ── FAB — scan ── */
.mp-fab {
  position: fixed;
  bottom: 28px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f5a623 0%, #f7c96e 100%);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: transform 0.15s, box-shadow 0.15s;
  z-index: 100;
}

.mp-fab:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.mp-fab:active {
  transform: scale(0.96);
}

/* ── Hero Banner — card branco sobre fundo laranja ── */
.mp-hero {
  padding: 4px 16px 28px;
  position: sticky;
  top: var(--mp-header-h);
}

.mp-hero__card {
  position: relative;
  background: transparent;
  border-radius: 20px;
  border: 2px solid rgba(255,255,255,0.6);
  padding: 18px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 150px;
  overflow: hidden;
}

.mp-hero__badge {
  position: absolute;
  top: 12px;
  left: 14px;
  background: rgba(255,255,255,0.3);
  color: #fff;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 20px;
}

.mp-hero__content {
  margin-top: 20px;
  flex: 1;
}

.mp-hero__label {
  margin: 0 0 4px;
  font-size: 0.7rem;
  color: rgba(255,255,255,0.75);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.mp-hero__name {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.mp-hero__art {
  width: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.15;
}

.mp-hero__pokeball {
  width: 72px;
  height: 72px;
  object-fit: contain;
}

/* ── Favoritos ── */
.mp-fav-carousel-outer {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mp-fav-carousel {
  position: relative;
  background: linear-gradient(130deg, #f5a623 0%, #f9d06b 60%, #f7b733 100%);
  border-radius: 20px;
  border: 2px solid rgba(255, 255, 255, 0.6);
  overflow: hidden;
}

.mp-fav-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.mp-fav-scroll::-webkit-scrollbar {
  display: none;
}

.mp-fav-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
}

.mp-fav-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  transition: background 0.2s ease, transform 0.2s ease;
}

.mp-fav-dot--active {
  background: #fff;
  transform: scale(1.35);
}

.mp-fav-item {
  position: relative;
  flex: 0 0 100%;
  scroll-snap-align: start;
  padding: 16px 16px;
  height: 172px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  text-decoration: none;
  outline: none;
  -webkit-tap-highlight-color: transparent;
}

.mp-fav-item__left {
  flex: 0 0 58%;
  max-width: 58%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
  z-index: 1;
  min-height: 130px;
}

.mp-fav-item__rank {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.mp-fav-item__price {
  font-size: 1.05rem;
  font-weight: 800;
  color: #fff;
}

.mp-fav-item__name {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.2;
}

.mp-fav-item__set-logo {
  height: 32px;
  width: auto;
  object-fit: contain;
  max-width: 120px;
}

.mp-fav-item__label {
  margin: 0;
  font-size: 0.8rem;
  font-weight: 800;
  color: rgba(255, 255, 255, 0.65);
}

.mp-fav-item__img {
  position: absolute;
  right: -14px;
  bottom: -12px;
  height: 185px;
  width: auto;
  transform: rotate(7deg);
  filter: drop-shadow(-6px 6px 14px rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

/* ── Content card — folha branca com cantos arredondados subindo, contém busca + conteúdo ── */
.mp-content-card {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 28px 28px 0 0;
  margin-top: 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
}

.mp-cover-sentinel {
  position: absolute;
  top: 0;
  height: 1px;
  width: 1px;
}

.mp-explore {
  padding: 20px 20px 40px;
}

/* ── Lang row — seletor de idioma + toggle de visualização, fixa abaixo do header ── */
.mp-lang-row {
  position: sticky;
  top: var(--mp-header-h);
  z-index: 10;
  background: #fff;
  min-height: var(--mp-langrow-h);
  padding-top: 6px;
}

.mp-lang-row__handle {
  display: block;
  color: #c8c8d4;
  margin: 0 auto 4px;
  transition: transform 0.2s ease;
}

.mp-lang-row__handle--down {
  transform: rotate(180deg);
}

.mp-lang-row__main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px 12px;
}

.mp-lang-select {
  position: relative;
}

.mp-lang-select__toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #e8e8f0;
  background: #fafafa;
  font-size: 0.85rem;
  font-weight: 700;
  color: #333;
  font-family: inherit;
  cursor: pointer;
  -webkit-tap-highlight-color: transparent;
}

.mp-lang-select__flag {
  font-size: 1rem;
  line-height: 1;
}

.mp-lang-select__menu {
  display: none;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 150px;
  background: #fff;
  border: 1px solid #e8e8f0;
  border-radius: 14px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12);
  padding: 6px;
  z-index: 20;
}

.mp-lang-select__menu--open {
  display: block;
}

.mp-lang-select__option {
  display: block;
  width: 100%;
  text-align: left;
  padding: 8px 10px;
  border: none;
  background: none;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  color: #333;
  font-family: inherit;
  cursor: pointer;
}

.mp-lang-select__option:hover {
  background: #f5f5fa;
}

.mp-lang-select__option--active {
  background: #fff5e6;
  color: #f5a623;
}

.mp-lang-row__right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mp-view-toggle {
  display: flex;
  align-items: center;
  gap: 2px;
  padding: 3px;
  border-radius: 999px;
  border: 1px solid #e8e8f0;
  background: #fafafa;
}

.mp-view-toggle__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: none;
  background: none;
  color: #bbb;
  cursor: pointer;
}

.mp-view-toggle__btn--active {
  background: #fff;
  color: #1a1a2e;
  box-shadow: 0 1px 4px rgba(0,0,0,0.1);
}

.mp-lang-row__search-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid #e8e8f0;
  background: #fafafa;
  color: #333;
  cursor: pointer;
  flex-shrink: 0;
}

.mp-lang-row--stuck .mp-view-toggle {
  display: none;
}

.mp-lang-row--stuck .mp-lang-row__search-btn {
  display: flex;
}

.mp-explore__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}

.mp-explore__title {
  font-size: 1rem;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0;
}

/* ── Collection Row ── */
.mp-collection-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: #fafafa;
  border-radius: 14px;
  margin-bottom: 14px;
}

.mp-collection-row__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: #fff0d6;
  color: #f5a623;
  flex-shrink: 0;
}

.mp-collection-row__label {
  flex: 1;
  font-size: 0.9rem;
  font-weight: 600;
  color: #1a1a2e;
}

.mp-collection-row__badge {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.4px;
  padding: 3px 8px;
  border-radius: 20px;
  background: #f0f0f6;
  color: #aaa;
}

/* ── Search Bar — sobre o fundo laranja ── */
.mp-search {
  display: flex;
  align-items: center;
  background: rgba(255,255,255,0.9);
  border-radius: 999px;
  padding: 4px 4px 4px 18px;
  margin: 0 16px 0;
}

.mp-search__icon {
  color: #bbb;
  flex-shrink: 0;
  margin-right: 10px;
}

.mp-search__fake-input {
  flex: 1;
  min-width: 0;
  padding: 12px 0;
  font-size: 16px;
  color: #333;
  text-decoration: none;
  font-family: inherit;
  border: none;
  outline: none;
  background: transparent;
}

.mp-search__fake-input::placeholder {
  color: #bbb;
}

.mp-search__clear {
  display: none;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  margin-right: 4px;
  border: none;
  border-radius: 50%;
  background: #e4e4ea;
  color: #888;
  flex-shrink: 0;
  cursor: pointer;
}

.mp-search__clear--visible {
  display: flex;
}

.mp-search__filter {
  display: flex;
  align-items: center;
  align-self: stretch;
  gap: 8px;
  background: none;
  border: none;
  border-left: 1px solid rgba(0,0,0,0.1);
  font-size: 0.9rem;
  font-weight: 700;
  color: #555;
  cursor: pointer;
  font-family: inherit;
  padding: 0 18px;
  margin-left: 15px;
  transition: color 0.15s;
  -webkit-tap-highlight-color: transparent;
}

.mp-search__filter:active {
  color: #f5a623;
}

/* ── Series Group ── */
.mp-series-group {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e8e8f0;
  padding: 16px 18px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.05);
}

.mp-series-group + .mp-series-group {
  margin-top: 20px;
}

.mp-sets--collapsed .mp-series-group__sets {
  display: none;
}

.mp-sets--collapsed .mp-series-header {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

/* ── Series Header ── */
.mp-series-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
  padding-bottom: 12px;
  border-bottom: 1px solid #f0f0f4;
  text-decoration: none;
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

.mp-series-header__left {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #1a1a2e;
}

.mp-series-header__left svg {
  color: #f5a623;
}

.mp-series-header__total {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: #fff5e6;
  border-radius: 99px;
  font-size: 0.8rem;
  color: #888;
}

.mp-series-header__total svg {
  color: #f5a623;
}

.mp-series-header__total strong {
  color: #f5a623;
  font-weight: 700;
}

/* ── Set Rows ── */
.mp-set-row {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f4;
  text-decoration: none;
}

.mp-set-row:last-child {
  border-bottom: none;
}

.mp-set-row__visual {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  width: 64px;
  flex-shrink: 0;
}

.mp-set-row__logo-img {
  width: 64px;
  height: 44px;
  object-fit: contain;
}

.mp-set-row__logo-placeholder {
  width: 64px;
  height: 44px;
  background: #f0f0f4;
  border-radius: 6px;
  display: block;
}

.mp-set-row__symbol {
  display: flex;
  align-items: center;
  gap: 4px;
}

.mp-set-row__symbol-img {
  width: 16px;
  height: 16px;
  object-fit: contain;
}

.mp-set-row__code {
  font-size: 0.6rem;
  font-weight: 700;
  color: #aaa;
  letter-spacing: 0.5px;
  background: #f0f0f4;
  padding: 2px 5px;
  border-radius: 4px;
}

.mp-set-row__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mp-set-row__name {
  font-size: 0.95rem;
  font-weight: 700;
  color: #1a1a2e;
}

.mp-set-row__count {
  margin: 0;
  font-size: 0.78rem;
  color: #aaa;
  font-weight: 500;
}

.mp-set-row__chevron-btn {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 1.5px solid #e8e8f0;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  cursor: pointer;
  flex-shrink: 0;
}

/* ── Empty State ── */
.mp-sets__empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 40px 20px;
  gap: 8px;
  color: #ddd;
}

.mp-sets__empty-title {
  margin: 8px 0 0;
  font-size: 0.95rem;
  font-weight: 600;
  color: #999;
}

.mp-sets__empty-sub {
  margin: 0;
  font-size: 0.8rem;
  color: #bbb;
  line-height: 1.5;
}

.mp-sets__cta {
  margin-top: 16px;
  display: inline-block;
  padding: 12px 24px;
  background: #f5a623;
  color: #fff;
  font-weight: 700;
  font-size: 0.875rem;
  border-radius: 14px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(245, 166, 35, 0.35);
  transition: opacity 0.15s;
}

.mp-sets__cta:hover {
  opacity: 0.9;
}

/* ── Resultados da busca ── */
.mp-search-content {
  flex: 1;
  padding-top: 20px;
}

.mp-search-sets {
  padding: 0 20px 20px;
}

.mp-search-sets__title {
  margin: 0 0 10px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #1a1a2e;
}

.mp-search-cards {
  padding-top: 4px;
}

.mp-search-cards__total {
  margin: 0 0 12px;
  padding: 0 16px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #888;
  text-align: center;
}

.mp-search-cards__total strong {
  color: #f5a623;
}

.mp-search-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 80px 24px;
  text-align: center;
}

.mp-search-empty__icon {
  font-size: 2.5rem;
}

.mp-search-empty__text {
  margin: 0;
  font-size: 0.9rem;
  color: #fff;
}

/* ── Botão de busca flutuante — acima da câmera, só durante uma busca ── */
.mp-fab--search {
  position: fixed;
  bottom: 100px;
  right: 28px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: none;
  background: #fff;
  color: #333;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.25);
  transition: transform 0.15s, box-shadow 0.15s;
  z-index: 100;
  cursor: pointer;
}

.mp-fab--search:hover {
  transform: scale(1.06);
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}

.mp-fab--search:active {
  transform: scale(0.96);
}

/* ── Filter button badge ── */
.mp-search__filter {
  position: relative;
}

.mp-search__filter-badge {
  display: none;
  position: absolute;
  top: 8px;
  right: 12px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f5a623;
  border: 1.5px solid #fff;
}

.mp-search__filter-badge--visible {
  display: block;
}

/* ── Filter Drawer ── */
body.mp-filter-open {
  overflow: hidden;
  touch-action: none;
}

.mp-filter-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
  z-index: 200;
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.mp-filter-overlay--visible {
  display: block;
  animation: mp-overlay-in 0.2s ease-out;
}

@keyframes mp-overlay-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.mp-filter-drawer {
  position: fixed;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) translateY(100%);
  width: 100%;
  max-width: 480px;
  background: #fff;
  border-radius: 24px 24px 0 0;
  z-index: 201;
  transition: transform 0.3s cubic-bezier(0.32, 0.72, 0, 1);
  max-height: 85dvh;
  overflow-y: auto;
  overscroll-behavior: none;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
}

.mp-filter-drawer--open {
  transform: translateX(-50%) translateY(0);
}

.mp-filter-drawer__handle {
  width: 36px;
  height: 4px;
  background: #e0e0e8;
  border-radius: 2px;
  margin: 12px auto 0;
  flex-shrink: 0;
}

.mp-filter-drawer__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px 4px;
}

.mp-filter-drawer__title {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 800;
  color: #1a1a2e;
}

.mp-filter-drawer__header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.mp-filter-drawer__clear,
.mp-filter-drawer__close {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: #f0f0f6;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.15s;
  flex-shrink: 0;
}

.mp-filter-drawer__clear {
  color: #f5a623;
}

.mp-filter-drawer__close {
  color: #666;
}

.mp-filter-drawer__clear:hover,
.mp-filter-drawer__close:hover {
  background: #e4e4ec;
}

.mp-filter-drawer__body {
  padding: 16px 20px 4px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mp-filter-section__label {
  margin: 0 0 10px;
  font-size: 0.82rem;
  font-weight: 700;
  color: #1a1a2e;
  text-transform: uppercase;
  letter-spacing: 0.4px;
}

.mp-filter-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.mp-filter-chip {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1.5px solid #e0e0e8;
  background: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  color: #555;
  font-family: inherit;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s, color 0.15s, transform 0.1s;
  -webkit-tap-highlight-color: transparent;
}

.mp-filter-chip:active {
  transform: scale(0.95);
}

.mp-filter-chip--active {
  background: #f5a623;
  border-color: #f5a623;
  color: #fff;
}

.mp-filter-drawer__footer {
  padding: 8px 20px 28px;
  border-top: 1px solid #f0f0f4;
}

.mp-filter-drawer__apply-btn {
  width: 100%;
  padding: 14px;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #f5a623 0%, #f7c96e 100%);
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  font-family: inherit;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(245, 166, 35, 0.35);
  transition: opacity 0.15s, transform 0.1s;
  -webkit-tap-highlight-color: transparent;
}

.mp-filter-drawer__apply-btn:hover {
  opacity: 0.92;
}

.mp-filter-drawer__apply-btn:active {
  transform: scale(0.98);
}
