/* Buy page — shop list, not a landing layout */
.buy {
  background: #fff;
  color: #06283D;
}

.buy-top {
  padding: 24px 0 22px;
  border-bottom: 1px solid rgba(6, 40, 61, 0.12);
}
.buy-top h1 {
  font-size: clamp(30px, 4vw, 42px);
  margin-bottom: 8px;
}
.buy-top p {
  color: #06283D;
  font-size: 15.5px;
  max-width: 44ch;
  opacity: 0.78;
}
.buy-top-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  flex-wrap: wrap;
}
.buy-search {
  display: flex;
  gap: 8px;
  min-width: min(100%, 360px);
}
.buy-search input {
  flex: 1;
  min-height: 46px;
  margin: 0;
}

.buy-body {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 40px;
  padding: 36px 0 56px;
  align-items: start;
}

.buy-side {
  position: sticky;
  top: 118px;
}
.buy-side-label,
.buy-sort label {
  display: block;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #1363DF;
  margin-bottom: 10px;
}
.buy-types {
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(6, 40, 61, 0.12);
  margin-bottom: 28px;
}
.buy-types a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 11px 0;
  border-bottom: 1px solid rgba(6, 40, 61, 0.12);
  font-size: 14.5px;
  font-weight: 600;
}
.buy-types a em {
  font-style: normal;
  font-size: 12px;
  font-weight: 700;
  color: #1363DF;
}
.buy-types a.is-on { color: #1363DF; }
.buy-types a:hover { color: #1363DF; }

.buy-sort {
  margin-bottom: 28px;
}
.buy-sort select { margin: 0; }

.buy-notes {
  list-style: none;
  font-size: 13.5px;
  line-height: 1.7;
  margin-bottom: 16px;
}
.buy-notes li { padding-left: 12px; position: relative; }
.buy-notes li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #1363DF;
}
.buy-side-link {
  font-size: 13.5px;
  font-weight: 700;
  color: #1363DF;
}

.buy-list-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(6, 40, 61, 0.12);
}
.buy-list-head h2 { font-size: 26px; }
.buy-list-head p { font-size: 13.5px; color: #1363DF; font-weight: 700; }

.buy-cards {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.buy-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid rgba(6, 40, 61, 0.12);
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.buy-card:hover { border-color: #1363DF; }
.buy-card-shot {
  display: grid;
  place-items: center;
  height: 180px;
  padding: 16px;
  overflow: hidden;
  background: #f7f9fc;
}
.buy-card-shot img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}
.buy-card-copy {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 16px 16px 0;
}
.buy-card-copy small {
  display: block;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 800;
  color: #1363DF;
  margin-bottom: 6px;
}
.buy-card-copy strong {
  display: block;
  font-family: var(--font-body, Manrope, sans-serif);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.3;
  color: #06283D;
}
.buy-card-specs {
  display: block;
  margin-top: 8px;
  font-size: 13px;
  color: #3d5568;
  line-height: 1.4;
}
.buy-card-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-top: auto;
  padding: 14px 16px 16px;
}
.buy-card-price {
  font-family: var(--font-body, Manrope, sans-serif);
  font-size: 18px;
  font-weight: 800;
  color: #06283D;
}
.buy-card-go {
  font-size: 13px;
  font-weight: 800;
  color: #1363DF;
}
.buy-card:hover .buy-card-go { text-decoration: underline; }

.buy-empty {
  grid-column: 1 / -1;
  padding: 36px 0;
  text-align: left;
}
.buy-empty p { margin-bottom: 16px; }

.buy-path {
  border-top: 1px solid rgba(6, 40, 61, 0.12);
  border-bottom: 1px solid rgba(6, 40, 61, 0.12);
  padding: 22px 0;
}
.buy-path ol {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.buy-path li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  font-weight: 600;
}
.buy-path b {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: #1363DF;
  color: #fff;
  display: grid;
  place-items: center;
  font-size: 13px;
  flex: 0 0 auto;
}

.buy-help {
  padding: 48px 0 64px;
}
.buy-help-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: start;
}
.buy-help h2 { font-size: 32px; margin-bottom: 18px; }
.buy-faq details {
  border-bottom: 1px solid rgba(6, 40, 61, 0.12);
  padding: 14px 0;
}
.buy-faq summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}
.buy-faq summary::-webkit-details-marker { display: none; }
.buy-faq p {
  margin-top: 8px;
  font-size: 14.5px;
  opacity: 0.78;
}
.buy-help-card {
  border: 1px solid rgba(6, 40, 61, 0.14);
  border-radius: 18px;
  padding: 28px 24px;
}
.buy-help-card h3 { font-size: 26px; margin-bottom: 8px; }
.buy-help-card p { margin-bottom: 18px; font-size: 15px; opacity: 0.78; }
.buy-help-card .btn { width: 100%; margin-bottom: 8px; }

@media (max-width: 980px) {
  .buy-body { grid-template-columns: 1fr; gap: 28px; }
  .buy-side { position: static; }
  .buy-types { flex-direction: row; flex-wrap: wrap; gap: 8px; border: 0; }
  .buy-types a {
    border: 1px solid rgba(6, 40, 61, 0.14);
    border-radius: 999px;
    padding: 8px 12px;
  }
  .buy-types a.is-on { background: #1363DF; color: #fff; border-color: #1363DF; }
  .buy-types a.is-on em { color: #fff; }
  .buy-cards { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .buy-path ol { grid-template-columns: 1fr; }
  .buy-help-grid { grid-template-columns: 1fr; gap: 28px; }
}
@media (max-width: 700px) {
  .buy-cards { grid-template-columns: 1fr; }
  .buy-search { min-width: 100%; }
}
