:root {
  --bg: #050812;
  --bg2: #08111f;
  --panel: rgba(12, 18, 32, .82);
  --panel2: rgba(17, 25, 43, .92);
  --card: rgba(13, 20, 35, .9);
  --card2: rgba(18, 27, 45, .96);
  --line: rgba(234, 179, 8, .16);
  --line2: rgba(148, 163, 184, .14);
  --text: #f8fafc;
  --muted: #9ca3af;
  --gold: #f6c65b;
  --gold2: #d99b2b;
  --gold3: #fff2b7;
  --blue: #38bdf8;
  --green: #22c55e;
  --red: #ef4444;
  --shadow: 0 18px 46px rgba(0, 0, 0, .35);
  --glow: 0 0 32px rgba(246, 198, 91, .18);
}

* {
  box-sizing: border-box;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 18% -10%, rgba(56, 189, 248, .18), transparent 30%),
    radial-gradient(circle at 90% 8%, rgba(246, 198, 91, .18), transparent 28%),
    linear-gradient(180deg, #07101d 0%, #050812 42%, #03050b 100%);
  min-height: 100vh;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, transparent 0 96%, rgba(246,198,91,.08) 97%, transparent 100%),
    linear-gradient(180deg, transparent 0 96%, rgba(56,189,248,.06) 97%, transparent 100%);
  background-size: 42px 42px;
  opacity: .22;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
}

button, input, select {
  font: inherit;
}

button {
  cursor: pointer;
}

.app {
  max-width: 1040px;
  margin: 0 auto;
  padding: 14px;
  padding-bottom: 96px;
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  padding: 10px 4px 4px;
}

.brand {
  display: flex;
  gap: 12px;
  align-items: center;
  min-width: 0;
}

.logo-img {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  object-fit: cover;
  border: 1px solid rgba(246, 198, 91, .42);
  box-shadow: var(--glow), 0 12px 28px rgba(0,0,0,.36);
  background: #050812;
}

.logo {
  width: 52px;
  height: 52px;
  border-radius: 18px;
  background: linear-gradient(135deg, #f9d976, #b7791f 54%, #fff2b7);
  display: grid;
  place-items: center;
  color: #0b1020;
  font-weight: 950;
  letter-spacing: -.05em;
  box-shadow: var(--glow);
}

.brand h1 {
  margin: 0;
  font-size: 21px;
  line-height: 1.05;
  letter-spacing: .02em;
  background: linear-gradient(135deg, #fff7c7, #f6c65b 45%, #b7791f);
  -webkit-background-clip: text;
  color: transparent;
}

.brand p {
  margin: 5px 0 0;
  font-size: 12px;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.role {
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(246, 198, 91, .12);
  border: 1px solid rgba(246, 198, 91, .32);
  color: var(--gold3);
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 0 18px rgba(246,198,91,.08);
}

.search-card {
  display: grid;
  grid-template-columns: 1fr 48px;
  gap: 10px;
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 8px 0 12px;
  background: linear-gradient(to bottom, rgba(5,8,18,.98) 75%, rgba(5,8,18,0));
  backdrop-filter: blur(10px);
}

.search-wrap {
  display: flex;
  align-items: center;
  gap: 9px;
  background: rgba(10, 15, 28, .9);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 0 14px;
  box-shadow: 0 10px 28px rgba(0,0,0,.26);
}

.search-wrap input {
  width: 100%;
  border: 0;
  outline: 0;
  height: 48px;
  background: transparent;
  color: var(--text);
}

.search-wrap input::placeholder {
  color: #7b8495;
}

.refresh {
  border: 1px solid rgba(246, 198, 91, .32);
  border-radius: 18px;
  background: linear-gradient(135deg, #f6c65b, #d99b2b);
  color: #07101d;
  font-weight: 950;
  font-size: 20px;
  box-shadow: var(--glow);
}

.promo {
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  padding: 20px;
  color: white;
  background:
    radial-gradient(circle at 86% 22%, rgba(255, 242, 183, .34), transparent 20%),
    linear-gradient(135deg, rgba(246,198,91,.95), rgba(217,155,43,.86) 34%, rgba(10,15,28,.96) 78%),
    url("/logo.png");
  background-size: auto, auto, cover;
  background-position: center;
  border: 1px solid rgba(246, 198, 91, .26);
  box-shadow: var(--shadow), var(--glow);
}

.promo::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5,8,18,.86), rgba(5,8,18,.38), rgba(5,8,18,.82)),
    radial-gradient(circle at 80% 14%, rgba(56,189,248,.18), transparent 26%);
}

.promo > * {
  position: relative;
  z-index: 1;
}

.promo-label {
  margin: 0 0 8px;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold3);
}

.promo h2 {
  margin: 0;
  font-size: 24px;
  line-height: 1.12;
  max-width: 680px;
  text-shadow: 0 8px 26px rgba(0,0,0,.42);
}

.promo p {
  margin: 9px 0 0;
  max-width: 680px;
  font-size: 13px;
  color: #dbe5f2;
}

.promo-badge {
  position: absolute;
  top: 14px;
  right: 14px;
  background: rgba(34, 197, 94, .14);
  border: 1px solid rgba(34, 197, 94, .32);
  border-radius: 999px;
  padding: 7px 10px;
  color: #bbf7d0;
  font-weight: 950;
  font-size: 11px;
}

.wallet {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 15px;
  margin-top: 13px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.wallet p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 12px;
}

.wallet strong {
  font-size: 22px;
  color: var(--gold3);
}

.wallet button {
  border: 1px solid rgba(246, 198, 91, .35);
  border-radius: 16px;
  background: linear-gradient(135deg, #f6c65b, #c98b24);
  color: #07101d;
  padding: 11px 14px;
  font-weight: 950;
  box-shadow: var(--glow);
}

.tabs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 9px;
  margin: 14px 0;
}

.tab {
  border: 1px solid var(--line2);
  background: rgba(12, 18, 32, .82);
  color: #aeb8c8;
  border-radius: 16px;
  padding: 11px 7px;
  font-size: 12px;
  font-weight: 900;
}

.tab.active {
  border-color: rgba(246,198,91,.52);
  background: linear-gradient(135deg, rgba(246,198,91,.19), rgba(217,155,43,.08));
  color: var(--gold3);
  box-shadow: 0 0 20px rgba(246,198,91,.09);
}

.category-title,
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 12px;
  margin-top: 15px;
}

.category-title h3,
.section-head h3 {
  margin: 0;
  font-size: 16px;
  color: var(--text);
}

.category-title span,
.section-head p {
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.section-head select {
  width: 150px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(12,18,32,.94);
  color: var(--text);
  padding: 10px;
  font-size: 12px;
  outline: 0;
}

.chips {
  display: flex;
  gap: 9px;
  overflow-x: auto;
  padding: 11px 1px 4px;
  scrollbar-width: none;
}

.chips::-webkit-scrollbar {
  display: none;
}

.chip {
  flex: 0 0 auto;
  border: 1px solid var(--line2);
  background: rgba(12, 18, 32, .9);
  color: #cbd5e1;
  border-radius: 999px;
  padding: 10px 13px;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 8px 22px rgba(0,0,0,.22);
}

.chip.active {
  background: linear-gradient(135deg, rgba(246,198,91,.22), rgba(217,155,43,.08));
  border-color: rgba(246,198,91,.55);
  color: var(--gold3);
}

.products {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
  margin-top: 13px;
}

.product {
  background: linear-gradient(180deg, rgba(18,27,45,.96), rgba(10,15,28,.98));
  border: 1px solid rgba(246,198,91,.14);
  border-radius: 22px;
  padding: 14px;
  box-shadow: 0 12px 32px rgba(0,0,0,.32);
  display: flex;
  flex-direction: column;
  min-height: 232px;
  position: relative;
  overflow: hidden;
}

.product::before {
  content: "";
  position: absolute;
  top: -60px;
  right: -60px;
  width: 130px;
  height: 130px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(246,198,91,.13), transparent 68%);
}

.product-top,
.price-grid,
.actions {
  position: relative;
  z-index: 1;
}

.product-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 9px;
}

.product-name {
  font-weight: 950;
  line-height: 1.25;
  font-size: 14px;
  color: #f8fafc;
}

.meta {
  margin-top: 7px;
  color: #8f9aab;
  font-size: 11px;
  line-height: 1.38;
}

.status {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 6px 8px;
  font-size: 10px;
  font-weight: 950;
}

.status.ok {
  background: rgba(34,197,94,.13);
  color: #bbf7d0;
  border: 1px solid rgba(34,197,94,.22);
}

.status.bad {
  background: rgba(239,68,68,.12);
  color: #fecaca;
  border: 1px solid rgba(239,68,68,.22);
}

.price-grid {
  display: grid;
  gap: 9px;
  margin-top: 13px;
}

.price-box {
  background: rgba(3, 7, 18, .48);
  border: 1px solid rgba(148,163,184,.12);
  border-radius: 16px;
  padding: 10px;
}

.price-box small {
  display: block;
  color: #8f9aab;
  font-size: 11px;
  margin-bottom: 4px;
}

.price-box strong {
  font-size: 16px;
  color: var(--gold3);
}

.saving {
  margin-top: 8px;
  color: #bbf7d0;
  font-size: 12px;
  font-weight: 900;
}

.actions {
  margin-top: auto;
  padding-top: 13px;
}

.buy {
  width: 100%;
  border: 1px solid rgba(255,242,183,.22);
  border-radius: 16px;
  padding: 12px;
  color: #07101d;
  background: linear-gradient(135deg, #fff2b7, #f6c65b 45%, #c98b24);
  font-weight: 950;
  box-shadow: 0 12px 26px rgba(246,198,91,.17);
}

.buy:disabled {
  background: #64748b;
  color: #e5e7eb;
  box-shadow: none;
  border-color: transparent;
}

.empty {
  text-align: center;
  padding: 44px 14px;
  color: var(--muted);
}

.empty-icon {
  font-size: 38px;
  margin-bottom: 8px;
}

.hidden {
  display: none;
}

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 12px;
  transform: translateX(-50%);
  width: min(94%, 540px);
  background: rgba(7, 12, 23, .88);
  backdrop-filter: blur(18px);
  border: 1px solid rgba(246,198,91,.18);
  border-radius: 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 8px;
  box-shadow: 0 18px 42px rgba(0,0,0,.44);
  z-index: 20;
}

.bottom-nav button {
  border: 0;
  background: transparent;
  color: #8f9aab;
  border-radius: 17px;
  padding: 8px 4px;
  font-weight: 900;
  font-size: 15px;
}

.bottom-nav button span {
  display: block;
  font-size: 10px;
  margin-top: 2px;
}

.bottom-nav button.active {
  background: rgba(246,198,91,.14);
  color: var(--gold3);
}

@media (max-width: 620px) {
  .app {
    padding: 12px;
    padding-bottom: 94px;
  }

  .products {
    grid-template-columns: 1fr;
  }

  .promo h2 {
    font-size: 20px;
    max-width: 82%;
  }

  .tabs {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand p {
    max-width: 210px;
  }
}

.brand-filter-wrap {
  margin-top: 4px;
}

.brand-title {
  margin-top: 10px;
}

.brand-title h3 {
  font-size: 14px;
}

#brandChips .chip {
  border-color: rgba(56, 189, 248, .18);
}

#brandChips .chip.active {
  border-color: rgba(246,198,91,.55);
  background: linear-gradient(135deg, rgba(246,198,91,.22), rgba(56,189,248,.08));
}

/* ===== ARPSTORE Homepage Premium v1 ===== */

.hero-home {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
  padding: 22px;
  margin-top: 8px;
  border: 1px solid rgba(246, 198, 91, .24);
  background:
    radial-gradient(circle at 82% 18%, rgba(246,198,91,.25), transparent 26%),
    radial-gradient(circle at 12% 0%, rgba(56,189,248,.16), transparent 25%),
    linear-gradient(135deg, rgba(10,15,28,.98), rgba(15,23,42,.9) 48%, rgba(5,8,18,.98));
  box-shadow: 0 18px 46px rgba(0,0,0,.38), 0 0 34px rgba(246,198,91,.12);
}

.hero-home::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("/logo.png");
  background-repeat: no-repeat;
  background-size: 280px;
  background-position: right -58px center;
  opacity: .14;
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}

.hero-kicker,
.section-kicker {
  margin: 0 0 9px;
  color: var(--gold3);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.hero-home h2 {
  margin: 0;
  font-size: 28px;
  line-height: 1.08;
  letter-spacing: -.03em;
  max-width: 520px;
}

.hero-desc {
  margin: 11px 0 0;
  color: #cbd5e1;
  font-size: 14px;
  line-height: 1.55;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 10px;
  margin-top: 17px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn {
  border-radius: 17px;
  padding: 12px 15px;
  font-weight: 950;
  border: 1px solid transparent;
}

.primary-btn {
  background: linear-gradient(135deg, #fff2b7, #f6c65b 45%, #c98b24);
  color: #07101d;
  box-shadow: 0 12px 26px rgba(246,198,91,.18);
}

.secondary-btn {
  color: var(--gold3);
  background: rgba(246,198,91,.08);
  border-color: rgba(246,198,91,.25);
}

.trust-row {
  display: flex;
  gap: 8px;
  margin-top: 17px;
  flex-wrap: wrap;
}

.trust-row span {
  padding: 8px 10px;
  border-radius: 999px;
  color: #dbe5f2;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(148,163,184,.13);
  font-size: 12px;
  font-weight: 800;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 11px;
  margin-top: 14px;
}

.service-card {
  text-align: left;
  border: 1px solid rgba(246,198,91,.15);
  background: linear-gradient(180deg, rgba(18,27,45,.92), rgba(9,14,26,.96));
  border-radius: 22px;
  padding: 14px;
  color: var(--text);
  box-shadow: 0 10px 26px rgba(0,0,0,.24);
  min-height: 124px;
}

.service-card:hover,
.service-card:active {
  border-color: rgba(246,198,91,.42);
}

.service-icon {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 15px;
  background: rgba(246,198,91,.11);
  border: 1px solid rgba(246,198,91,.2);
  margin-bottom: 10px;
}

.service-card strong {
  display: block;
  font-size: 14px;
  margin-bottom: 5px;
}

.service-card small {
  color: #9ca3af;
  font-size: 11px;
  line-height: 1.35;
}

.promo-strip {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: center;
  margin-top: 14px;
  border: 1px solid rgba(56,189,248,.16);
  border-radius: 22px;
  padding: 14px;
  background: linear-gradient(135deg, rgba(56,189,248,.09), rgba(246,198,91,.07));
}

.promo-strip p {
  margin: 0 0 4px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.promo-strip strong {
  display: block;
  color: #dbe5f2;
  font-size: 13px;
  line-height: 1.4;
}

.promo-strip button {
  flex: 0 0 auto;
  border: 1px solid rgba(246,198,91,.24);
  border-radius: 15px;
  color: var(--gold3);
  background: rgba(246,198,91,.08);
  padding: 10px 12px;
  font-weight: 950;
}

.catalog-panel {
  margin-top: 14px;
  padding: 14px;
  border: 1px solid rgba(246,198,91,.12);
  border-radius: 26px;
  background: rgba(5,8,18,.36);
}

.section-head-main {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 8px;
}

.section-head-main h3 {
  margin: 0;
  font-size: 19px;
}

.support-panel {
  margin-top: 16px;
  border: 1px solid rgba(246,198,91,.14);
  border-radius: 26px;
  padding: 18px;
  background: linear-gradient(135deg, rgba(18,27,45,.9), rgba(9,14,26,.96));
}

.support-panel h3 {
  margin: 0;
  font-size: 19px;
}

.support-panel p {
  margin: 8px 0 0;
  color: #cbd5e1;
  font-size: 13px;
  line-height: 1.5;
}

.support-actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  flex-wrap: wrap;
}

@media (max-width: 720px) {
  .hero-home {
    padding: 18px;
  }

  .hero-home h2 {
    font-size: 24px;
  }

  .hero-home::after {
    background-size: 220px;
    background-position: right -76px center;
  }

  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .promo-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .promo-strip button {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .service-grid {
    grid-template-columns: 1fr 1fr;
    gap: 9px;
  }

  .service-card {
    padding: 12px;
    min-height: 118px;
  }

  .hero-actions button {
    width: 100%;
  }
}

/* ===== Premium Polish ARPSTORE ===== */

.topbar {
  border-bottom: 1px solid rgba(246,198,91,.08);
  padding-bottom: 12px;
}

.hero-home {
  isolation: isolate;
}

.hero-home::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: 29px;
  border: 1px solid rgba(255,242,183,.08);
  pointer-events: none;
  z-index: 1;
}

.hero-content {
  z-index: 2;
}

.primary-btn,
.secondary-btn,
.buy,
.wallet button,
.promo-strip button {
  transition: transform .18s ease, filter .18s ease, border-color .18s ease;
}

.primary-btn:active,
.secondary-btn:active,
.buy:active,
.wallet button:active,
.promo-strip button:active,
.service-card:active {
  transform: scale(.98);
}

.service-card,
.product,
.wallet,
.catalog-panel,
.support-panel,
.promo-strip {
  transition: border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.service-card:hover,
.product:hover {
  border-color: rgba(246,198,91,.34);
}

.product-name {
  letter-spacing: -.01em;
}

.price-box strong {
  letter-spacing: -.02em;
}

.section-head-main,
.category-title,
.section-head {
  padding-left: 2px;
  padding-right: 2px;
}

.section-kicker {
  color: #f6c65b;
}

.support-panel {
  margin-bottom: 14px;
}

@media (min-width: 760px) {
  .hero-home h2 {
    font-size: 34px;
  }

  .hero-desc {
    font-size: 15px;
  }

  .product {
    min-height: 240px;
  }
}

/* ===== Premium Mobile Clean v2 ===== */

.catalog-panel {
  padding: 12px;
  border-radius: 24px;
}

.section-head-main h3 {
  font-size: 21px;
  line-height: 1.15;
}

.search-card {
  grid-template-columns: 1fr 54px;
  gap: 8px;
  padding: 6px 0 10px;
}

.search-wrap {
  height: 54px;
  border-radius: 20px;
}

.search-wrap input {
  height: 52px;
  font-size: 15px;
}

.refresh {
  height: 54px;
  border-radius: 18px;
}

.chips {
  padding-left: 0;
  padding-right: 0;
  gap: 8px;
}

.chip {
  padding: 9px 12px;
  font-size: 12px;
  max-width: none;
}

.products {
  gap: 12px;
}

.product {
  min-height: auto;
  padding: 13px;
  border-radius: 22px;
}

.product-name {
  font-size: 14px;
}

.meta {
  font-size: 11px;
}

.price-grid {
  margin-top: 12px;
  gap: 8px;
}

.price-box {
  padding: 11px 12px;
}

.price-box small {
  font-size: 11px;
}

.price-box strong {
  font-size: 18px;
}

.actions {
  padding-top: 12px;
}

.buy {
  padding: 13px;
  border-radius: 18px;
  font-size: 15px;
}

.bottom-nav {
  bottom: 10px;
  width: min(92%, 500px);
  border-radius: 24px;
  padding: 7px;
}

.bottom-nav button {
  padding: 8px 3px;
  font-size: 16px;
}

.bottom-nav button span {
  font-size: 10px;
}

@media (max-width: 620px) {
  .app {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 96px;
  }

  .catalog-panel {
    margin-left: 0;
    margin-right: 0;
  }

  .category-title,
  .section-head {
    margin-top: 13px;
  }

  .category-title h3,
  .section-head h3 {
    font-size: 15px;
  }

  .category-title span {
    font-size: 11px;
  }

  .section-head {
    align-items: center;
  }

  .section-head select {
    width: 132px;
    padding: 9px;
    font-size: 12px;
  }

  .products {
    grid-template-columns: 1fr;
  }
}

/* ===== Clean Category Chips ===== */

.chips {
  scroll-padding-left: 12px;
  padding-left: 2px;
  padding-right: 14px;
}

.chip {
  white-space: nowrap;
  min-width: fit-content;
}

#categoryChips {
  margin-left: 0;
  padding-left: 2px;
}

#brandChips {
  margin-left: 0;
  padding-left: 2px;
}

.catalog-panel {
  overflow: hidden;
}

.category-title {
  overflow: visible;
}

/* ===== Brand Chips Full Scroll ===== */

#brandChips,
#categoryChips {
  display: flex;
  overflow-x: auto;
  overflow-y: hidden;
  white-space: nowrap;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

#brandChips::-webkit-scrollbar,
#categoryChips::-webkit-scrollbar {
  display: none;
}

#brandChips .chip,
#categoryChips .chip {
  flex: 0 0 auto;
  scroll-snap-align: start;
}

.brand-filter-wrap {
  overflow: hidden;
}
