:root {
  --brand: #7357ef;
  --brand-dark: #5840cf;
  --brand-soft: #f0edff;
  --mint: #21ddb0;
  --ink: #111521;
  --text: #363c4b;
  --muted: #737b8d;
  --surface: #ffffff;
  --surface-soft: #f5f6fa;
  --line: #e7e9f0;
  --danger: #db3150;
  --success: #11875f;
  --shadow-sm: 0 10px 30px rgba(17, 21, 33, 0.06);
  --shadow-md: 0 24px 70px rgba(17, 21, 33, 0.11);
  --radius-sm: 14px;
  --radius-md: 22px;
  --radius-lg: 32px;
  --container: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  padding-top: 78px;
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background: var(--surface);
  font-family: "Roboto Slab", Georgia, serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(115, 87, 239, 0.3);
  outline-offset: 3px;
}

.container {
  width: min(var(--container), calc(100% - 36px));
  margin-inline: auto;
}

.section {
  padding: 84px 0;
}

.section-soft {
  background: var(--surface-soft);
}

.eyebrow,
.card-kicker {
  margin: 0;
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 30px;
}

.section-heading h2,
.page-heading h1 {
  margin: 10px 0 0;
  font-size: clamp(2.25rem, 5vw, 4.25rem);
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.section-heading p,
.page-heading p {
  max-width: 660px;
  color: var(--muted);
  line-height: 1.7;
}

.text-link {
  flex: 0 0 auto;
  color: var(--brand);
  font-weight: 700;
}

/* Header */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(255,255,255,.9);
    backdrop-filter: blur(20px);
}

.topbar {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 28px;
}

.brand {
  display: inline-flex;
  width: 166px;
  flex: 0 0 auto;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.desktop-nav a,
.header-link {
  border-radius: 12px;
  padding: 10px 13px;
  color: #616879;
  font-size: 0.94rem;
  font-weight: 600;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: var(--brand);
  background: var(--brand-soft);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-left: auto;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 19px;
  height: 2px;
  margin: 4px auto;
  border-radius: 99px;
  background: var(--ink);
}

.mobile-nav {
  display: none;
}

/* Buttons */
.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 0;
  border-radius: 15px;
  padding: 13px 20px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: linear-gradient(135deg, var(--brand), #8973ff);
  box-shadow: 0 14px 34px rgba(115, 87, 239, 0.25);
}

.button-primary:hover {
  box-shadow: 0 18px 42px rgba(115, 87, 239, 0.34);
}

.button-dark {
  color: #fff;
  background: #151a27;
}

.button-secondary {
  border: 1px solid var(--line);
  color: var(--ink);
  background: #fff;
}

.button-small {
  min-height: 44px;
  padding: 10px 16px;
  font-size: 0.9rem;
}

.button-full {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    radial-gradient(circle at 15% 10%, rgba(126, 99, 255, 0.35), transparent 32%),
    radial-gradient(circle at 88% 20%, rgba(33, 221, 176, 0.15), transparent 28%),
    linear-gradient(145deg, #0e1119, #181d2c 56%, #101521);
}

.hero::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.14;
  background-image:
    linear-gradient(rgba(255,255,255,.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.06) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: linear-gradient(to bottom, #000, transparent 90%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  min-height: 670px;
  grid-template-columns: minmax(0, 1.05fr) minmax(390px, 0.95fr);
  align-items: center;
  gap: 70px;
  padding-block: 88px;
}

.hero .eyebrow {
  display: inline-flex;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  padding: 8px 11px;
  color: #c9c1ff;
  background: rgba(255,255,255,.06);
}

.hero h1 {
  max-width: 720px;
  margin: 22px 0;
  font-size: clamp(3.4rem, 7.4vw, 6.25rem);
  line-height: 0.94;
  letter-spacing: -0.07em;
}

.hero h1 span {
  color: transparent;
  background: linear-gradient(90deg, #a28fff, #58ebc6);
  background-clip: text;
  -webkit-background-clip: text;
}

.hero-copy > p {
  max-width: 630px;
  color: #bbc1d0;
  font-size: 1.13rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero .button-secondary {
  border-color: rgba(255,255,255,.12);
  color: #fff;
  background: rgba(255,255,255,.07);
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 38px;
}

.hero-point {
  min-width: 145px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 16px;
  padding: 13px 15px;
  background: rgba(255,255,255,.045);
}

.hero-point strong,
.hero-point span {
  display: block;
}

.hero-point strong {
  font-size: 1.15rem;
}

.hero-point span {
  margin-top: 3px;
  color: #9fa7b9;
  font-size: 0.78rem;
}

.hero-showcase {
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 30px;
  padding: 16px;
  background: rgba(255,255,255,.06);
  box-shadow: 0 36px 110px rgba(0,0,0,.34);
  backdrop-filter: blur(15px);
}

.showcase-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5px 5px 18px;
  color: #9fa7b9;
  font-size: 0.78rem;
}

.showcase-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  font-weight: 700;
}

.showcase-brand img {
  width: 30px;
  height: 30px;
}

.showcase-shops {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.showcase-shop {
  min-height: 320px;
  overflow: hidden;
  border-radius: 22px;
  padding: 17px;
  color: #fff;
  transition: transform .2s ease;
}

.showcase-shop:hover {
  transform: translateY(-5px);
}

.showcase-shop.mm2 {
  background: linear-gradient(155deg, #806cff, #39269f);
}

.showcase-shop.gag2 {
  background: linear-gradient(155deg, #22d686, #087347);
}

.showcase-shop img {
  width: 100%;
  max-width: 150px;
  margin: 25px auto 22px;
  filter: drop-shadow(0 18px 18px rgba(0,0,0,.18));
}

.showcase-label {
  display: inline-flex;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 6px 9px;
  background: rgba(255,255,255,.1);
  font-size: 0.72rem;
  font-weight: 700;
}

.showcase-shop h2 {
  margin: 0;
  font-size: 1.15rem;
}

.showcase-shop p {
  margin: 5px 0 0;
  color: rgba(255,255,255,.75);
  font-size: 0.8rem;
}

/* Trust bar */
.trust-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 25px 20px;
  border-right: 1px solid var(--line);
}

.trust-item:first-child {
  border-left: 1px solid var(--line);
}

.trust-item img {
  width: 44px;
  height: 44px;
}

.trust-item strong,
.trust-item span {
  display: block;
}

.trust-item strong {
  font-size: 0.93rem;
}

.trust-item span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.77rem;
}

/* Shop cards */
.shop-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.shop-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .22s ease, box-shadow .22s ease;
}

.shop-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.shop-card-art {
  position: relative;
  display: grid;
  min-height: 300px;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 80% 0%, color-mix(in srgb, var(--shop-accent) 36%, transparent), transparent 38%),
    #101521;
}

.shop-card-art::after {
  position: absolute;
  width: 280px;
  height: 280px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 50%;
  content: "";
}

.shop-card-art img {
  position: relative;
  z-index: 2;
  width: 180px;
  filter: drop-shadow(0 24px 22px rgba(0,0,0,.27));
}

.shop-card-art > span {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 3;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 999px;
  padding: 7px 11px;
  color: #fff;
  background: rgba(255,255,255,.08);
  font-size: 0.75rem;
  font-weight: 700;
}

.shop-card-content {
  padding: 26px;
}

.shop-card-content h3 {
  margin: 8px 0;
  font-size: 1.75rem;
  letter-spacing: -0.035em;
}

.shop-card-content > p:not(.card-kicker) {
  min-height: 50px;
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.6;
}

/* Product cards */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.product-card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: #fff;
  box-shadow: var(--shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease;
}

.product-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.product-image-link {
  position: relative;
  display: grid;
  min-height: 225px;
  place-items: center;
  overflow: hidden;
  background: #f2f3f7;
}

.product-image-link img {
  width: 100%;
  height: 225px;
  object-fit: cover;
  transition: transform .25s ease;
}

.product-card:hover .product-image-link img {
  transform: scale(1.035);
}

.featured-badge {
  position: absolute;
  top: 13px;
  left: 13px;
  border-radius: 999px;
  padding: 7px 10px;
  color: #fff;
  background: var(--brand);
  font-size: .72rem;
  font-weight: 700;
}

.product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 18px;
}

.product-meta {
  display: flex;
  justify-content: space-between;
  gap: 8px;
  color: var(--muted);
  font-size: 0.74rem;
  font-weight: 600;
}

.product-card h2,
.product-card h3 {
  margin: 11px 0 14px;
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: -0.028em;
}

.product-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin: auto 0 17px;
}

.product-price strong {
  color: var(--brand);
  font-size: 1.45rem;
}

.product-price del {
  color: var(--muted);
  font-size: .88rem;
}

.product-card.compact .product-image-link,
.product-card.compact .product-image-link img {
  height: 200px;
  min-height: 200px;
}

/* Page hero */
.page-hero {
  color: #fff;
  background:
    radial-gradient(circle at 80% 0%, rgba(115,87,239,.32), transparent 30%),
    linear-gradient(145deg, #10141e, #1a2030);
}

.page-hero-inner {
  display: grid;
  min-height: 360px;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 40px;
  padding-block: 65px;
}

.page-heading .eyebrow {
  color: #bdb3ff;
}

.page-heading h1 {
  color: #fff;
}

.page-heading p {
  color: #b9c0cf;
}

.page-hero-image {
  width: 190px;
  filter: drop-shadow(0 20px 25px rgba(0,0,0,.25));
}

/* Shop toolbar */
.shop-section {
  padding: 40px 0 88px;
}

.shop-toolbar {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 190px 190px;
  gap: 12px;
  margin-bottom: 20px;
}

.field {
  display: grid;
  gap: 7px;
}

.field label {
  color: var(--text);
  font-size: .8rem;
  font-weight: 700;
}

.search-control {
  position: relative;
}

.search-control::before {
  position: absolute;
  top: 50%;
  left: 16px;
  width: 15px;
  height: 15px;
  border: 2px solid var(--muted);
  border-radius: 50%;
  content: "";
  transform: translateY(-58%);
}

.search-control::after {
  position: absolute;
  top: calc(50% + 8px);
  left: 29px;
  width: 7px;
  height: 2px;
  border-radius: 3px;
  content: "";
  background: var(--muted);
  transform: rotate(45deg);
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
}

.search-control input {
  padding-left: 44px;
}

textarea {
  resize: vertical;
  min-height: 130px;
}

.shop-results-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 2px 20px;
  color: var(--muted);
  font-size: .86rem;
}

.shop-empty,
.reviews-empty {
  padding: 70px 20px;
  text-align: center;
}

.shop-empty img,
.reviews-empty img {
  width: 80px;
  margin: 0 auto 18px;
}

/* Content cards */
.content-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.info-card img {
  width: 52px;
  height: 52px;
}

.info-card h2,
.info-card h3 {
  margin: 18px 0 8px;
  letter-spacing: -.025em;
}

.info-card p {
  color: var(--muted);
  line-height: 1.65;
}

.steps {
  counter-reset: step;
  display: grid;
  gap: 14px;
}

.step {
  position: relative;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 20px 20px 20px 70px;
  background: #fff;
}

.step::before {
  position: absolute;
  top: 17px;
  left: 18px;
  display: grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border-radius: 12px;
  color: #fff;
  content: counter(step);
  counter-increment: step;
  background: var(--brand);
  font-weight: 700;
}

.step h2,
.step h3 {
  margin: 0 0 6px;
}

.step p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

/* Review page */
.review-layout {
  display: grid;
  grid-template-columns: 390px minmax(0, 1fr);
  gap: 28px;
  align-items: start;
}

.review-form-card {
  position: sticky;
  top: 105px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow-sm);
}

.review-form-card h2 {
  margin: 0 0 8px;
}

.review-form-card > p {
  margin: 0 0 22px;
  color: var(--muted);
  line-height: 1.55;
}

.review-form {
  display: grid;
  gap: 17px;
}

.rating-picker {
  display: flex;
  gap: 4px;
}

.rating-star {
  border: 0;
  padding: 1px;
  color: #c8ccd6;
  background: transparent;
  font-size: 2.2rem;
  line-height: 1;
  cursor: pointer;
}

.rating-star.selected {
  color: #ffb52f;
}

.form-message {
  min-height: 21px;
  margin: 0;
  font-size: .85rem;
}

.form-message.error {
  color: var(--danger);
}

.form-message.success {
  color: var(--success);
}

.review-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 170px));
  gap: 12px;
  margin-bottom: 20px;
}

.stat-card {
  border: 1px solid var(--line);
  border-radius: 17px;
  padding: 17px;
  background: #fff;
}

.stat-card span,
.stat-card strong {
  display: block;
}

.stat-card span {
  color: var(--muted);
  font-size: .78rem;
}

.stat-card strong {
  margin-top: 5px;
  font-size: 1.8rem;
}

.review-list {
  display: grid;
  gap: 13px;
}

.review-card {
  border: 1px solid var(--line);
  border-radius: 19px;
  padding: 19px;
  background: #fff;
}

.review-card-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-avatar {
  display: grid;
  width: 44px;
  height: 44px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 14px;
  color: #fff;
  background: linear-gradient(135deg, var(--brand), var(--mint));
  font-weight: 700;
}

.review-card h3 {
  margin: 0;
  font-size: .98rem;
}

.review-stars {
  margin-top: 3px;
  color: #ffb52f;
  font-size: .85rem;
  letter-spacing: 1px;
}

.review-card > p {
  margin: 14px 0 0;
  color: var(--text);
  line-height: 1.65;
}

.loading-line {
  padding: 25px;
  color: var(--muted);
  text-align: center;
}

/* Policy pages */
.prose {
  max-width: 820px;
}

.prose h2 {
  margin-top: 34px;
  letter-spacing: -.03em;
}

.prose p,
.prose li {
  color: var(--text);
  line-height: 1.75;
}

.prose a {
  color: var(--brand);
  font-weight: 600;
}

/* Footer */
.site-footer {
  color: #b8bfce;
  background: #10141e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding-block: 55px 42px;
}

.brand-footer {
  width: 155px;
  filter: brightness(0) invert(1);
}

.footer-brand p {
  max-width: 390px;
  line-height: 1.7;
}

.site-footer h2 {
  margin: 0 0 15px;
  color: #fff;
  font-size: .93rem;
}

.footer-links {
  display: grid;
  gap: 10px;
}

.footer-links a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid #272c39;
  padding-block: 20px 25px;
  color: #8991a3;
  font-size: .77rem;
}

/* Responsive */
@media (max-width: 980px) {
  .desktop-nav,
  .header-link {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .mobile-nav {
    position: fixed;
    top: 79px;
    right: 0;
    left: 0;
    z-index: 99;
    display: grid;
    gap: 5px;
    border-bottom: 1px solid var(--line);
    padding: 14px 18px 20px;
    background: #fff;
    box-shadow: var(--shadow-md);
    transform: translateY(-130%);
    transition: transform .22s ease;
  }

  .mobile-nav.open {
    transform: translateY(0);
  }

  .mobile-nav > a:not(.button) {
    border-radius: 12px;
    padding: 13px;
    color: var(--text);
    font-weight: 600;
  }

  .mobile-nav > a.active {
    color: var(--brand);
    background: var(--brand-soft);
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 50px;
  }

  .hero-showcase {
    max-width: 680px;
  }

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

  .trust-item:nth-child(3) {
    border-left: 1px solid var(--line);
  }

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

  .review-layout {
    grid-template-columns: 1fr;
  }

  .review-form-card {
    position: static;
  }
}

@media (max-width: 720px) {
  .container {
    width: min(var(--container), calc(100% - 24px));
  }

  .section {
    padding: 58px 0;
  }

  .topbar {
    min-height: 70px;
    gap: 10px;
  }

  .brand {
    width: 135px;
  }

  .header-actions .button {
    display: none;
  }

  .mobile-nav {
    top: 71px;
  }

  .hero-inner {
    min-height: auto;
    padding-block: 70px;
  }

  .hero h1 {
    font-size: clamp(3.15rem, 15vw, 4.7rem);
  }

  .hero-copy > p {
    font-size: 1rem;
  }

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

  .showcase-shops {
    grid-template-columns: 1fr 1fr;
  }

  .showcase-shop {
    min-height: 245px;
  }

  .showcase-shop img {
    max-width: 105px;
    margin: 20px auto 16px;
  }

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

  .hero-point {
    min-width: 0;
  }

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

  .trust-item,
  .trust-item:nth-child(3) {
    border-right: 1px solid var(--line);
    border-left: 1px solid var(--line);
  }

  .shop-grid,
  .content-grid {
    grid-template-columns: 1fr;
  }

  .shop-card-art {
    min-height: 250px;
  }

  .page-hero-inner {
    min-height: 310px;
    grid-template-columns: 1fr;
  }

  .page-hero-image {
    display: none;
  }

  .shop-toolbar {
    grid-template-columns: 1fr 1fr;
  }

  .shop-toolbar .search-field {
    grid-column: 1 / -1;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 440px) {
  .showcase-shops {
    grid-template-columns: 1fr;
  }

  .showcase-shop {
    min-height: 225px;
  }

  .hero-points {
    grid-template-columns: 1fr 1fr;
  }

  .product-grid {
    gap: 10px;
  }

  .product-image-link,
  .product-image-link img {
    min-height: 155px;
    height: 155px;
  }

  .product-card.compact .product-image-link,
  .product-card.compact .product-image-link img {
    min-height: 155px;
    height: 155px;
  }

  .product-content {
    padding: 13px;
  }

  .product-card h2,
  .product-card h3 {
    font-size: 1rem;
  }

  .product-price strong {
    font-size: 1.15rem;
  }

  .product-price del {
    font-size: .72rem;
  }

  .product-card .button {
    min-height: 44px;
    padding: 10px 12px;
    font-size: .82rem;
  }

  .shop-toolbar {
    grid-template-columns: 1fr;
  }

  .shop-toolbar .search-field {
    grid-column: auto;
  }

  .review-summary {
    grid-template-columns: 1fr 1fr;
  }
}
