:root {
  color-scheme: light;
  font-family: Arial, Helvetica, sans-serif;
  --blue: #075cff;
  --orange: #ff7100;
  --ink: #101828;
  --muted: #667085;
  --line: #dce7fb;
  --surface: #ffffff;
  --soft: #f5f8fe;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--soft);
}

body {
  background: var(--soft);
  color: var(--ink);
  margin: 0;
  padding: 0 0 calc(84px + env(safe-area-inset-bottom));
}

a {
  color: inherit;
}

.mobile-shell {
  background: var(--surface);
  min-height: 100vh;
  overflow: hidden;
  width: 100%;
}

.mobile-header {
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  display: grid;
  gap: 13px;
  padding: max(14px, env(safe-area-inset-top)) 14px 14px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.mobile-brand-row {
  align-items: center;
  display: grid;
  gap: 7px;
  grid-template-columns: auto minmax(0, 1fr) 38px;
}

.mobile-brand {
  font-size: 29px;
  font-weight: 950;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}

.mobile-brand span {
  color: var(--blue);
}

.mobile-brand-row strong {
  color: var(--orange);
  font-size: 12px;
  line-height: 1.1;
}

.mobile-account {
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  display: flex;
  height: 38px;
  justify-content: center;
  width: 38px;
}

.mobile-account svg,
.mobile-search svg,
.mobile-bottom-nav svg,
.mobile-views svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.mobile-account svg {
  height: 21px;
  width: 21px;
}

.mobile-search {
  align-items: center;
  background: var(--surface);
  border: 1px solid #aec8ff;
  border-radius: 8px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr) 56px;
  height: 48px;
  overflow: hidden;
  padding-left: 12px;
}

.mobile-search:focus-within {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(7, 92, 255, .10);
}

.mobile-search svg {
  color: #7b879b;
  height: 19px;
  width: 19px;
}

.mobile-search input {
  background: transparent;
  border: 0;
  color: var(--ink);
  font-size: 14px;
  font-weight: 750;
  height: 100%;
  min-width: 0;
  outline: 0;
  padding: 0 9px;
  width: 100%;
}

.mobile-search button {
  align-self: stretch;
  background: var(--blue);
  border: 0;
  color: #fff;
  font-size: 13px;
  font-weight: 900;
}

.mobile-category-nav {
  background: var(--surface);
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 11px 14px;
  scrollbar-width: none;
}

.mobile-category-nav::-webkit-scrollbar,
.mobile-list::-webkit-scrollbar {
  display: none;
}

.mobile-category-nav a {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 7px;
  flex: 0 0 auto;
  font-size: 12px;
  font-weight: 850;
  padding: 9px 11px;
  text-decoration: none;
}

.mobile-showcase {
  border-top: 8px solid var(--soft);
}

.mobile-showcase > h1 {
  color: var(--orange);
  font-size: 21px;
  letter-spacing: 0;
  margin: 0;
  padding: 20px 14px;
  text-align: center;
  text-transform: uppercase;
}

.mobile-section {
  border-top: 8px solid var(--soft);
}

.mobile-section > header {
  align-items: center;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 13px 14px 10px;
}

.mobile-section h2 {
  font-size: 16px;
  letter-spacing: 0;
  margin: 0;
}

.mobile-section header a {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-decoration: none;
}

.mobile-list {
  display: flex;
  gap: 11px;
  overflow-x: auto;
  padding: 12px 14px 16px;
  scroll-padding-inline: 14px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.mobile-listing {
  display: grid;
  flex: 0 0 156px;
  gap: 7px;
  min-width: 0;
  scroll-snap-align: start;
  text-decoration: none;
}

.mobile-photo {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 7px;
  display: block;
  height: 108px;
  overflow: hidden;
  width: 156px;
}

.mobile-photo img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.mobile-title {
  display: -webkit-box;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.25;
  min-height: 33px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.mobile-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  min-height: 24px;
}

.mobile-meta small {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 5px;
  color: #344054;
  font-size: 10px;
  font-weight: 850;
  max-width: 100%;
  overflow: hidden;
  padding: 4px 5px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mobile-views {
  align-items: center;
  color: var(--muted);
  display: flex;
  font-size: 11px;
  font-weight: 850;
  gap: 5px;
}

.mobile-views svg {
  color: var(--blue);
  height: 15px;
  width: 15px;
}

.mobile-empty {
  align-items: center;
  background: var(--soft);
  border: 1px dashed #b5c9ed;
  border-radius: 7px;
  color: var(--muted);
  display: flex;
  flex: 0 0 calc(100vw - 28px);
  font-size: 13px;
  font-weight: 800;
  justify-content: center;
  margin: 0;
  min-height: 100px;
  text-align: center;
}

.desktop-link {
  color: var(--blue);
  display: block;
  font-size: 12px;
  font-weight: 850;
  padding: 22px 14px 30px;
  text-align: center;
  text-decoration: none;
}

.mobile-bottom-nav {
  align-items: end;
  background: var(--surface);
  border-top: 1px solid var(--line);
  bottom: 0;
  box-shadow: 0 -8px 24px rgba(16, 24, 40, .10);
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  left: 0;
  min-height: 66px;
  padding: 7px 5px max(7px, env(safe-area-inset-bottom));
  position: fixed;
  right: 0;
  z-index: 200;
}

.mobile-bottom-nav > a {
  align-items: center;
  color: #5d6676;
  display: flex;
  flex-direction: column;
  font-size: 10px;
  font-weight: 800;
  gap: 4px;
  justify-content: center;
  text-decoration: none;
}

.mobile-bottom-nav > a.active {
  color: var(--blue);
}

.mobile-bottom-nav > a > svg {
  height: 23px;
  width: 23px;
}

.mobile-bottom-nav .mobile-add {
  color: var(--blue);
}

.mobile-add span {
  align-items: center;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 5px 14px rgba(7, 92, 255, .28);
  color: #fff;
  display: flex;
  height: 40px;
  justify-content: center;
  margin-top: -22px;
  width: 40px;
}

.mobile-add span svg {
  height: 24px;
  width: 24px;
}

@media (min-width: 560px) {
  .mobile-shell,
  .mobile-header,
  .mobile-bottom-nav {
    margin-left: auto;
    margin-right: auto;
    max-width: 560px;
  }
}

body.theme-dark,
body.dark,
body[data-theme="dark"] {
  --ink: #f8fafc;
  --muted: #aeb9ca;
  --line: #263a5b;
  --surface: #091426;
  --soft: #0d1d33;
  color-scheme: dark;
}

body.theme-dark .mobile-meta small,
body.dark .mobile-meta small,
body[data-theme="dark"] .mobile-meta small {
  color: #dbe7fa;
}
