:root {
  --green: #087f5b;
  --dark: #123d30;
  --ink: #172d27;
  --muted: #697a72;
  --mint: #eaf6ee;
  --line: #e4eae5;
  --yellow: #f7d96e;
  --bg: #f7f9f6;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--bg);
  font:
    16px/1.5 Arial,
    Helvetica,
    sans-serif;
  color: var(--ink);
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  outline-offset: 4px;
}
button {
  cursor: pointer;
}
button:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
a {
  color: inherit;
  text-decoration: none;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1 {
  font-size: 42px;
  letter-spacing: -1.5px;
  line-height: 1.1;
}
h2 {
  font-size: 25px;
  letter-spacing: -0.6px;
}
h3 {
  font-size: 18px;
  line-height: 1.3;
}
small,
.meta {
  font-size: 13px;
  color: var(--muted);
}
.muted {
  color: var(--muted);
}
.row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.between {
  justify-content: space-between;
}
.wrap {
  flex-wrap: wrap;
}
.stack {
  display: grid;
  gap: 16px;
}
.header {
  background: white;
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
}
.headinner {
  max-width: 1440px;
  margin: auto;
  padding: 17px 40px;
  display: flex;
  gap: 28px;
  align-items: center;
}
.brand {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.8px;
  white-space: nowrap;
}
.brand img {
  width: 47px;
  height: 47px;
  object-fit: contain;
}
.brand span span {
  color: var(--green);
}
.location {
  border: 0;
  background: transparent;
  text-align: left;
  font-size: 14px;
}
.location strong {
  display: block;
}
.search {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f3f6f2;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 11px 15px;
  flex: 1;
}
.search input {
  border: 0;
  background: none;
  outline: none;
  width: 100%;
  min-width: 90px;
}
.btn,
.chip {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  padding: 11px 18px;
  font-weight: 600;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}
.btn.primary {
  background: var(--green);
  color: white;
  border-color: var(--green);
}
.btn.dark {
  background: var(--dark);
  color: white;
}
.btn.light {
  background: var(--mint);
  color: var(--green);
  border: 0;
}
.btn.full {
  width: 100%;
}
.btn.small {
  padding: 7px 12px;
  font-size: 14px;
}
.chip {
  padding: 7px 14px;
  border-radius: 30px;
  font-size: 14px;
  white-space: nowrap;
}
.chip.active {
  background: var(--dark);
  border-color: var(--dark);
  color: white;
}
.subnav {
  max-width: 1440px;
  margin: auto;
  padding: 0 40px;
  display: flex;
  gap: 30px;
  font-size: 14px;
}
.subnav a {
  padding: 12px 0;
  border-bottom: 3px solid transparent;
}
.subnav a.active {
  color: var(--green);
  border-color: var(--green);
  font-weight: 700;
}
.container {
  max-width: 1440px;
  margin: auto;
  padding: 30px 40px 60px;
}
.market {
  display: grid;
  grid-template-columns: 195px minmax(0, 1fr);
  gap: 32px;
}
.sidebar {
  align-self: start;
  position: sticky;
  top: 155px;
}
.panel {
  background: white;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
}
.sidebar label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 14px;
  margin: 12px 0;
}
.sidebar h3 {
  margin: 8px 0 16px;
}
.sidebar hr {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 24px 0;
}
input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--green);
  width: 17px;
  height: 17px;
}
.hero {
  background: var(--mint);
  border-radius: 24px;
  min-height: 292px;
  position: relative;
  overflow: hidden;
  padding: 34px;
}
.hero img {
  position: absolute;
  right: 0;
  top: 0;
  width: 57%;
  height: 100%;
  object-fit: cover;
  object-position: right center;
  mix-blend-mode: multiply;
}
.hero .copy {
  position: relative;
  width: 52%;
  z-index: 1;
}
.eyebrow {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--green);
  margin-bottom: 12px;
}
.hero p {
  margin: 15px 0 22px;
  max-width: 360px;
  color: #456555;
}
.section {
  margin-top: 30px;
}
.section-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}
.link {
  border: 0;
  background: none;
  padding: 0;
  color: var(--green);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}
.categories {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  gap: 12px;
}
.category {
  text-align: center;
  font-size: 13px;
  font-weight: 600;
  background: transparent;
  border: 0;
  padding: 0;
  color: var(--ink);
}
.category .art {
  height: 86px;
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  margin-bottom: 8px;
  overflow: hidden;
}
.art .product-art {
  height: 100%;
  width: 100%;
}
.stores {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.store {
  background: white;
  border: 1px solid var(--line);
  border-radius: 18px;
  overflow: hidden;
  text-align: left;
  transition: transform 0.2s;
}
.store:hover {
  transform: translateY(-3px);
}
.store-cover {
  height: 146px;
  position: relative;
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--mint);
}
.store-cover .store-word {
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -1px;
  max-width: 180px;
  text-align: center;
  line-height: 1.1;
  z-index: 1;
}
.store-cover img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.14;
}
.store-cover .badge {
  position: absolute;
  top: 12px;
  left: 12px;
}
.store-cover .heart {
  position: absolute;
  top: 10px;
  right: 10px;
}
.heart {
  background: white;
  border: 0;
  border-radius: 50%;
  width: 30px;
  height: 30px;
}
.store-body {
  padding: 16px;
}
.store-body p {
  font-size: 13px;
  color: var(--muted);
  margin: 7px 0;
}
.rating {
  font-size: 13px;
  font-weight: 700;
  white-space: nowrap;
}
.badge {
  font-size: 11px;
  font-weight: 700;
  background: white;
  border-radius: 5px;
  padding: 3px 7px;
  color: var(--green);
}
.offer {
  font-size: 12px;
  color: var(--green);
  background: var(--mint);
  padding: 5px 8px;
  border-radius: 6px;
  display: inline-block;
}
.banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.promo {
  background: var(--dark);
  color: white;
  border-radius: 18px;
  padding: 23px;
  position: relative;
  overflow: hidden;
}
.promo.yellow {
  background: var(--yellow);
  color: var(--ink);
}
.promo p {
  margin: 7px 0 12px;
  font-size: 14px;
}
.footer {
  background: white;
  border-top: 1px solid var(--line);
  padding: 36px 40px;
}
.footinner {
  max-width: 1360px;
  margin: auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 35px;
}
.footer a {
  display: block;
  font-size: 14px;
  color: var(--muted);
  margin: 9px 0;
}
.footer h3 {
  margin-bottom: 12px;
}
.footer p {
  max-width: 290px;
  font-size: 14px;
  color: var(--muted);
}
.shop-layout {
  display: grid;
  grid-template-columns: 175px minmax(0, 1fr) 290px;
  gap: 24px;
}
.shop-banner {
  background: var(--dark);
  color: white;
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 24px;
  min-height: 190px;
  position: relative;
  overflow: hidden;
}
.shop-banner img {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 40%;
  object-fit: cover;
  opacity: 0.45;
}
.shop-banner > *:not(img) {
  position: relative;
}
.shop-banner h1 {
  font-size: 34px;
  margin: 12px 0;
}
.shop-banner p {
  font-size: 14px;
}
.side-link {
  display: block;
  width: 100%;
  padding: 11px 13px;
  border: 0;
  background: none;
  text-align: left;
  font-size: 14px;
  border-radius: 9px;
  margin-bottom: 4px;
  color: var(--muted);
}
.side-link.active {
  background: var(--mint);
  color: var(--green);
  font-weight: 700;
}
.products {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 15px;
}
.product {
  background: white;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 12px;
  position: relative;
  min-width: 0;
}
.product-art {
  width: 100%;
  height: 132px;
  background-image: url("assets/products.webp");
  background-size: 400% 400%;
  background-repeat: no-repeat;
  background-color: white;
}
.product h3 {
  font-size: 14px;
  margin-top: 8px;
  min-height: 38px;
  font-weight: 600;
}
.product .price {
  font-weight: 800;
  font-size: 15px;
  margin: 10px 0 2px;
}
.product del {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
}
.qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: white;
}
.qty button {
  width: 31px;
  height: 30px;
  border: 0;
  background: none;
  color: var(--green);
  font-weight: 700;
}
.qty span {
  font-size: 13px;
  min-width: 18px;
  text-align: center;
}
.add {
  height: 30px;
  width: 32px;
  border: 1px solid var(--green);
  color: var(--green);
  background: white;
  border-radius: 8px;
  font-size: 21px;
}
.basket {
  position: sticky;
  top: 110px;
  align-self: start;
}
.basket h3 {
  margin-bottom: 5px;
}
.cart-line {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 10px;
  padding: 17px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
}
.cart-line .product-art {
  height: 46px;
}
.cart-line strong {
  display: block;
  margin-bottom: 7px;
}
.totals {
  margin: 20px 0;
}
.totals .row {
  margin: 8px 0;
  font-size: 14px;
}
.totals .grand {
  font-size: 20px;
  font-weight: 800;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: 12px;
}
.checkout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 28px;
  max-width: 1050px;
  margin: 25px auto;
}
.field {
  display: grid;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  margin-top: 16px;
}
.field input,
.field textarea,
.field select {
  padding: 12px;
  border: 1px solid #cbd7ce;
  border-radius: 9px;
  background: white;
  min-width: 0;
  width: 100%;
  color: var(--ink);
}
.field textarea {
  min-height: 90px;
}
.choice {
  display: flex;
  align-items: center;
  gap: 10px;
  border: 1px solid var(--line);
  padding: 15px;
  border-radius: 10px;
  margin-top: 12px;
  font-size: 14px;
}
.choice strong {
  flex: 1;
}
.notice {
  padding: 12px 16px;
  background: var(--mint);
  color: var(--green);
  border-radius: 10px;
  font-size: 14px;
}
.empty {
  padding: 44px 20px;
  text-align: center;
  color: var(--muted);
}
.empty h3 {
  color: var(--ink);
  margin-bottom: 12px;
}
.back {
  font-size: 14px;
  color: var(--green);
  display: inline-block;
  margin-bottom: 20px;
}
.pagehead {
  margin-bottom: 26px;
}
.pagehead p {
  margin-top: 10px;
  color: var(--muted);
}
.ops {
  display: grid;
  grid-template-columns: 215px 1fr;
  min-height: 85vh;
}
.opsnav {
  background: var(--dark);
  color: white;
  padding: 24px 18px;
}
.opsnav small {
  color: #9ebdaf;
}
.opsnav .side-link {
  color: #cbdbd4;
  margin-top: 7px;
}
.opsnav .active {
  color: white;
  background: #245443;
}
.opsmain {
  padding: 32px;
  min-width: 0;
}
.kpis {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin: 22px 0;
}
.kpi {
  background: white;
  border: 1px solid var(--line);
  border-radius: 15px;
  padding: 22px;
}
.kpi strong {
  font-size: 30px;
  display: block;
  margin: 8px 0;
}
.kpi small {
  color: var(--green);
}
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
th,
td {
  text-align: left;
  padding: 16px 12px;
  border-bottom: 1px solid var(--line);
}
th {
  font-size: 12px;
  color: var(--muted);
  font-weight: 600;
}
.tablewrap {
  overflow: auto;
}
.status {
  padding: 5px 8px;
  background: var(--mint);
  color: var(--green);
  border-radius: 20px;
  font-size: 12px;
  white-space: nowrap;
}
.chart {
  display: flex;
  align-items: end;
  gap: 16px;
  height: 170px;
  padding: 20px 0 0;
}
.bar {
  flex: 1;
  background: #aad7c2;
  border-radius: 6px 6px 0 0;
  min-height: 10px;
  position: relative;
}
.bar:nth-child(3n) {
  background: var(--green);
}
.bar span {
  position: absolute;
  top: 100%;
  width: 100%;
  text-align: center;
  font-size: 12px;
  color: var(--muted);
}
.two {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 22px;
}
.timeline {
  border-left: 2px solid #b8d8c6;
  margin: 22px 10px;
  padding-left: 25px;
}
.timeline div {
  margin: 0 0 25px;
  position: relative;
}
.timeline div:before {
  content: "";
  width: 12px;
  height: 12px;
  position: absolute;
  left: -32px;
  top: 6px;
  border-radius: 50%;
  background: var(--green);
  border: 3px solid var(--mint);
}
.timeline p {
  font-size: 14px;
  color: var(--muted);
}
.mobile-nav {
  display: none;
}
.phone-page {
  max-width: 480px;
  margin: auto;
  padding: 25px 20px 100px;
}
.phone-page h1 {
  font-size: 29px;
}
.phone-page .kpis {
  grid-template-columns: 1fr 1fr;
}
.rider-hero {
  background: var(--dark);
  border-radius: 22px;
  color: white;
  padding: 28px;
}
.rider-hero h1 {
  margin: 10px 0;
}
.task {
  border: 1px solid var(--line);
  padding: 22px;
  background: white;
  border-radius: 20px;
  margin-top: 18px;
}
.task h3 {
  margin: 10px 0;
}
.map {
  height: 230px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background:
    repeating-linear-gradient(0deg, transparent 0 43px, #fff 43px 53px),
    repeating-linear-gradient(90deg, #e6eee6 0 70px, #fff 70px 81px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--dark);
  text-align: center;
}
.map strong {
  background: white;
  padding: 14px;
  border-radius: 10px;
  box-shadow: 0 6px 30px #123d3020;
}
.modal-back {
  position: fixed;
  inset: 0;
  background: #12281ed0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 20px;
}
.modal {
  background: white;
  border-radius: 23px;
  padding: 28px;
  max-width: 850px;
  width: 100%;
  max-height: 90vh;
  overflow: auto;
}
.modal .products {
  margin: 24px 0;
}
.review {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
}
.review p {
  margin-top: 8px;
  color: var(--muted);
}
#toast {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--dark);
  color: white;
  border-radius: 10px;
  padding: 12px 22px;
  display: none;
  z-index: 100;
}
.list-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background: white;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 15px;
  margin: 12px 0;
}
.auth {
  max-width: 480px;
  margin: 45px auto;
}
.auth h1 {
  font-size: 32px;
}
.auth p {
  margin: 15px 0;
}
.demo-strip {
  font-size: 12px;
  text-align: center;
  padding: 5px;
  background: #e6eee7;
  color: #486253;
}
@media (max-width: 1100px) {
  .headinner {
    gap: 16px;
    padding: 15px 22px;
  }
  .headinner .location {
    display: none;
  }
  .container {
    padding: 25px 22px;
  }
  .market {
    grid-template-columns: 160px 1fr;
    gap: 22px;
  }
  .categories {
    grid-template-columns: repeat(4, 1fr);
  }
  .shop-layout {
    grid-template-columns: 150px 1fr;
  }
  .basket {
    position: static;
    grid-column: 2;
  }
  .products {
    grid-template-columns: repeat(3, 1fr);
  }
  .hero h1 {
    font-size: 34px;
  }
  .stores {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 700px) {
  .headinner {
    padding: 12px 16px;
    flex-wrap: wrap;
    gap: 10px;
  }
  .brand {
    font-size: 20px;
  }
  .brand img {
    width: 36px;
    height: 36px;
  }
  .headinner .search {
    order: 3;
    flex-basis: 100%;
  }
  .headinner > .btn {
    padding: 8px 11px;
    font-size: 13px;
  }
  .headinner > .btn:last-child {
    margin-left: auto;
  }
  .subnav {
    padding: 0 16px;
    gap: 22px;
    overflow: auto;
    white-space: nowrap;
  }
  .container {
    padding: 22px 16px 85px;
  }
  .market {
    display: block;
  }
  .sidebar {
    display: none;
  }
  .hero {
    min-height: 255px;
    padding: 24px;
  }
  .hero h1 {
    font-size: 31px;
  }
  .hero .copy {
    width: 64%;
  }
  .hero img {
    width: 55%;
    opacity: 0.7;
  }
  .hero p {
    font-size: 13px;
    max-width: 180px;
  }
  .hero .btn {
    font-size: 13px;
    padding: 10px 13px;
  }
  .eyebrow {
    font-size: 10px;
  }
  .section {
    margin-top: 26px;
  }
  h2 {
    font-size: 22px;
  }
  .categories {
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
  .category .art {
    height: 74px;
  }
  .category {
    font-size: 12px;
  }
  .stores {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .store-cover {
    height: 112px;
    padding: 16px;
  }
  .store-cover .store-word {
    font-size: 20px;
  }
  .store-body {
    padding: 11px;
  }
  .store-body h3 {
    font-size: 14px;
  }
  .store-body .row {
    display: block;
  }
  .rating {
    font-size: 12px;
  }
  .store-body p {
    font-size: 12px;
  }
  .offer {
    font-size: 10px;
  }
  .banners {
    grid-template-columns: 1fr;
  }
  .promo {
    padding: 20px;
  }
  .footinner {
    grid-template-columns: 1fr 1fr;
    gap: 25px;
  }
  .footer {
    padding: 30px 18px 90px;
  }
  .shop-layout {
    display: block;
  }
  .shop-banner {
    min-height: 180px;
    padding: 22px;
  }
  .shop-banner h1 {
    font-size: 28px;
  }
  .products {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
  }
  .product-art {
    height: 142px;
  }
  .basket {
    margin-top: 25px;
  }
  .checkout {
    display: block;
    margin: 15px 0;
  }
  .checkout > .stack {
    margin-bottom: 22px;
  }
  .panel {
    padding: 20px;
  }
  .pagehead h1 {
    font-size: 31px;
  }
  .kpis {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .kpi {
    padding: 16px;
  }
  .kpi strong {
    font-size: 25px;
  }
  .ops {
    display: block;
  }
  .opsnav {
    display: flex;
    overflow: auto;
    padding: 10px;
    gap: 5px;
    white-space: nowrap;
  }
  .opsnav > h3,
  .opsnav > small {
    display: none;
  }
  .opsnav .side-link {
    width: auto;
    font-size: 13px;
    margin: 0;
  }
  .opsmain {
    padding: 23px 16px 90px;
  }
  .two {
    grid-template-columns: 1fr;
  }
  .mobile-nav {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 30;
    background: white;
    border-top: 1px solid var(--line);
    justify-content: space-around;
    padding: 10px 8px 17px;
  }
  .mobile-nav a {
    font-size: 12px;
    text-align: center;
    color: var(--muted);
  }
  .mobile-nav b {
    display: block;
    font-size: 19px;
    line-height: 1.3;
    color: var(--green);
  }
  .modal {
    padding: 20px;
  }
  .modal .products {
    grid-template-columns: 1fr 1fr;
  }
  .auth {
    margin: 30px 16px;
  }
  .demo-strip {
    font-size: 10px;
  }
  .section-title {
    align-items: start;
  }
  .section-title select {
    max-width: 145px;
  }
  .chip {
    font-size: 12px;
  }
  .store-cover .badge {
    font-size: 9px;
  }
  .hero .copy .eyebrow {
    max-width: 155px;
  }
}
.product-art {
  aspect-ratio: 1;
  height: auto;
}
.art .product-art {
  height: 100%;
  aspect-ratio: auto;
}
.cart-line .product-art {
  height: 46px;
  aspect-ratio: auto;
}
.product > a:first-child {
  display: block;
}
.two > .panel > .product-art {
  max-height: none;
}
.hero img {
  object-fit: cover;
}
.mobile-filters {
  display: none;
}
@media (max-width: 700px) {
  .mobile-filters {
    display: block;
    margin-bottom: 16px;
  }
  .mobile-filters .sidebar {
    display: block;
    position: static;
  }
  .mobile-filters summary {
    padding: 10px 0;
    font-weight: 700;
  }
  .headinner .brand small {
    font-size: 8px !important;
  }
  .headinner .brand {
    font-size: 18px;
  }
  .phone-page .list-card .product-art {
    max-height: 55px;
  }
  .map small {
    display: block;
    max-width: 240px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
.mobile-categories {
  display: none;
}
@media (max-width: 700px) {
  .mobile-categories {
    display: flex;
    flex-wrap: nowrap;
    overflow: auto;
    margin-bottom: 16px;
    padding-bottom: 6px;
  }
}
.icon {
  width: 19px;
  height: 19px;
  vertical-align: middle;
  display: inline-block;
}
.footer .brand {
  display: flex;
  font-size: 22px;
  color: var(--ink);
}
.product-art {
  clip-path: inset(1% 1% 3% 1%);
}
.mobile-nav {
  padding-bottom: max(17px, env(safe-area-inset-bottom));
}
@media (max-width: 700px) {
  .headinner .brand {
    margin-right: auto;
  }
  .headinner > .btn {
    font-size: 12px;
    padding: 7px;
  }
  .headinner > .btn:last-child {
    margin-left: 0;
  }
  .headinner {
    column-gap: 8px;
  }
  .hero .copy {
    width: 69%;
  }
  .hero h1 {
    font-size: 29px;
  }
  .hero img {
    width: 56%;
    opacity: 0.6;
  }
  .footer .brand {
    font-size: 16px;
  }
}
@media (max-width: 700px) {
  .headinner .brand small {
    display: none !important;
  }
  .footinner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .footinner > div:first-child {
    grid-column: 1/-1;
  }
  .footinner > div {
    min-width: 0;
  }
  .headinner .brand {
    font-size: 18px;
  }
  .headinner .brand img {
    width: 32px;
    height: 32px;
  }
  .rider-hero .btn {
    margin-top: 18px;
  }
}
