:root {
  --main: #e61e25;
  --main-soft: #fde8e8;
  --main-deep: #b00f15;
  --base-two: #050505;
  --base-two-soft: #f4f4f4;
  --base-two-dark: #000000;
  --primary: #050505;
  --neutral-05: #050505;
  --neutral-10: #f4f4f4;
  --neutral-100: #e0e0e0;
  --dark-600: #050505;
  --body: #5a5a5a;
  --white: #ffffff;
  --danger: #e61e25;
  --success: #050505;
  --shadow-sm: 0 0 0 1px #050505;
  --shadow-md: 0 12px 30px rgba(0, 0, 0, 0.16);
  --radius: 0px;
  --heading-font: "Inter", "Helvetica Neue", Arial, sans-serif;
  --body-font: "Inter", "Helvetica Neue", Arial, "PingFang SC",
    "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  overflow-x: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--white);
  color: var(--dark-600);
  font-family: var(--body-font);
  font-size: 15px;
  line-height: 1.45;
  letter-spacing: 0;
  overflow-x: hidden;
}

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

button {
  cursor: pointer;
}

[hidden] {
  display: none !important;
}

svg {
  display: block;
}

.app-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid var(--neutral-05);
  backdrop-filter: blur(10px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  max-width: 1200px;
  min-height: 72px;
  margin: 0 auto;
  padding: calc(env(safe-area-inset-top) + 10px) 16px 10px;
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 0;
  background: var(--base-two);
  color: var(--main);
  font-family: var(--heading-font);
  font-size: 24px;
  line-height: 1;
  box-shadow: inset 0 0 0 2px rgba(174, 255, 28, 0.24);
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.brand-text strong {
  color: var(--base-two);
  font-size: 17px;
  line-height: 1.15;
}

.brand-text small {
  margin-top: 2px;
  color: var(--body);
  font-size: 12px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}

.lang-dropdown {
  position: relative;
}

.lang-select-btn {
  display: flex;
  align-items: center;
  gap: 6px;
  height: 38px;
  padding: 0 12px;
  border: 1px solid var(--neutral-05);
  border-radius: 0;
  background: var(--white);
  color: var(--base-two);
  font-size: 13px;
  font-weight: 700;
  outline: none;
}

.lang-caret {
  color: var(--body);
  font-size: 14px;
  line-height: 1;
}

.lang-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  z-index: 60;
  min-width: 132px;
  overflow: hidden;
  border: 1px solid var(--neutral-05);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.lang-option {
  display: block;
  width: 100%;
  padding: 10px 14px;
  border: 0;
  border-bottom: 1px solid var(--neutral-05);
  background: transparent;
  color: var(--dark-600);
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}

.lang-option:last-child {
  border-bottom: 0;
}

.lang-option.active {
  background: var(--main-soft);
  color: var(--base-two);
}

.search-box {
  display: none;
  align-items: center;
  gap: 8px;
  width: 230px;
  height: 42px;
  padding: 0 14px;
  border-radius: 0;
  background: var(--neutral-10);
}

.search-box svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: var(--body);
  stroke-width: 2;
  stroke-linecap: round;
}

.search-box input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--dark-600);
  font-size: 13px;
}

.icon-btn {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--neutral-05);
  border-radius: 0;
  background: var(--white);
  color: var(--base-two);
}

.icon-btn svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.icon-btn:active {
  background: var(--main-soft);
}

.bell-dot {
  position: absolute;
  top: 8px;
  right: 9px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--white);
  border-radius: 50%;
  background: var(--danger);
}

.avatar-btn {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: var(--base-two);
  color: var(--main);
  font-family: var(--heading-font);
  font-size: 20px;
}

.page-banner {
  position: relative;
  height: 210px;
  overflow: hidden;
  background: var(--base-two);
}

.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, 0.08) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.08) 1px, transparent 1px);
  background-size: 60px 60px;
}

.banner-shape {
  position: absolute;
  border-radius: 50%;
}

.banner-shape.shape-1 {
  top: -120px;
  right: -120px;
  left: auto;
  width: 320px;
  height: 320px;
  border: 40px solid var(--main);
}

.banner-shape.shape-2 {
  right: 26%;
  bottom: -120px;
  width: 220px;
  height: 220px;
  border: 30px solid rgba(255, 255, 255, 0.12);
}

.banner-shape.shape-3 {
  left: 16%;
  right: auto;
  top: 42px;
  width: 14px;
  height: 14px;
  background: var(--main);
}

.main {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: -124px auto 0;
  padding: 0 14px calc(env(safe-area-inset-bottom) + 30px);
}

.view {
  width: 100%;
  max-width: 760px;
  margin: 0 auto;
  animation: view-in 0.22s ease-out;
}

@keyframes view-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

.home-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 18px;
  padding: 18px;
  border: 1px solid var(--neutral-05);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow-sm);
}

.eyebrow {
  margin: 0 0 4px;
  color: var(--base-two);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  color: var(--base-two);
  font-family: var(--heading-font);
  font-size: 30px;
  font-weight: 400;
  line-height: 1.1;
}

h2 {
  margin-bottom: 0;
  color: var(--base-two);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.2;
}

h3 {
  margin-bottom: 10px;
  color: var(--base-two);
  font-size: 15px;
  font-weight: 800;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  white-space: nowrap;
}

.btn-gold {
  background: var(--base-two);
  color: var(--white);
  box-shadow: 0 8px 18px rgba(16, 64, 66, 0.22);
}

.btn-gold:active {
  background: var(--base-two-dark);
  transform: translateY(1px);
}

.btn-ghost {
  border-color: var(--neutral-05);
  background: var(--white);
  color: var(--base-two);
}

.btn-ghost:active {
  background: var(--neutral-10);
}

.order-list {
  display: grid;
  gap: 12px;
}

.order-card {
  padding: 16px;
  border: 1px solid var(--neutral-05);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.order-card-clickable {
  cursor: pointer;
  transition: border-color 0.15s, box-shadow 0.15s, transform 0.15s;
}

.order-card-clickable:hover {
  border-color: var(--main);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}

.order-card-clickable:focus-visible {
  outline: 3px solid var(--main);
  outline-offset: 2px;
}

.order-card-more {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 12px;
  padding-top: 10px;
  border-top: 1px solid var(--neutral-05);
  color: var(--base-two);
  font-size: 13px;
  font-weight: 800;
}

.order-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.order-main {
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.order-amount {
  color: var(--base-two);
  font-family: var(--heading-font);
  font-size: 22px;
  font-weight: 400;
  overflow-wrap: anywhere;
}

.order-method {
  margin-top: 3px;
  color: var(--body);
  font-size: 13px;
}

.status-pill {
  flex: 0 0 auto;
  padding: 5px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.status-pill.pending {
  background: var(--main-soft);
  color: var(--main-deep);
}

.status-pill.review {
  background: var(--main-soft);
  color: var(--main-deep);
}

.status-pill.reviewing {
  background: var(--base-two);
  color: var(--white);
}

.status-pill.processing {
  background: var(--base-two-soft);
  color: var(--base-two);
}

.status-pill.success {
  background: var(--base-two);
  color: var(--white);
}

.status-pill.danger {
  background: var(--main-soft);
  color: var(--danger);
}

.order-meta {
  display: grid;
  gap: 6px;
  margin: 0;
}

.order-meta > div {
  display: flex;
  gap: 10px;
  min-width: 0;
}

.order-meta dt {
  width: 74px;
  flex: 0 0 74px;
  color: var(--body);
  font-size: 12px;
}

.order-meta dd {
  margin: 0;
  min-width: 0;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.empty-state {
  display: grid;
  place-items: center;
  gap: 6px;
  min-height: 200px;
  padding: 28px;
  border: 1px dashed var(--neutral-05);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--body);
  text-align: center;
}

.empty-state strong {
  color: var(--base-two);
  font-size: 16px;
}

.stepper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  margin: 0 0 18px;
  padding: 14px 10px;
  border: 1px solid var(--neutral-05);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.step-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  min-width: 0;
}

.step-dot {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 2px solid var(--neutral-05);
  border-radius: 50%;
  background: var(--white);
  color: var(--body);
  font-size: 14px;
  font-weight: 800;
}

.step-item.active .step-dot {
  border-color: var(--main);
  background: var(--main);
  color: var(--white);
  box-shadow: 0 0 0 6px var(--main-soft);
}

.step-item.done .step-dot {
  border-color: var(--base-two);
  background: var(--base-two);
  color: var(--main);
}

.step-label {
  color: var(--body);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}

.step-item.active .step-label {
  color: var(--base-two);
}

.step-panel,
.result-head {
  padding: 16px;
  border: 1px solid var(--neutral-05);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.section-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--neutral-05);
}

.step-chip {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  background: var(--main);
  color: var(--white);
  font-weight: 900;
  box-shadow: 0 0 0 6px var(--main-soft);
}

.field-block {
  margin-bottom: 16px;
}

.field-label {
  display: block;
  margin-bottom: 7px;
  color: var(--base-two);
  font-size: 13px;
  font-weight: 800;
}

.segmented {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: 1fr;
  gap: 6px;
  padding: 5px;
  border: 1px solid var(--neutral-05);
  border-radius: var(--radius);
  background: var(--neutral-10);
}

.seg-btn {
  min-height: 44px;
  padding: 8px 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--body);
  font-size: 13px;
  font-weight: 800;
  overflow-wrap: anywhere;
}

.seg-btn.active {
  border-color: var(--main);
  background: var(--white);
  color: var(--base-two);
  box-shadow: 0 4px 12px rgba(16, 64, 66, 0.12);
}

.amount-fields,
.form-grid {
  display: grid;
  gap: 12px;
}

.amount-fields {
  grid-template-columns: minmax(0, 1fr);
}

.field {
  min-width: 0;
}

.country-picker {
  position: relative;
}

.country-input {
  padding-right: 78px;
}

.country-caret {
  position: absolute;
  top: 50%;
  right: 8px;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--base-two);
  font-size: 18px;
  line-height: 1;
  transform: translateY(-50%);
}

.country-clear {
  position: absolute;
  top: 50%;
  right: 42px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--body);
  font-size: 20px;
  line-height: 1;
  transform: translateY(-50%);
}

.country-clear:active {
  background: var(--neutral-10);
  color: var(--base-two);
}

.country-list {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  left: 0;
  z-index: 50;
  max-height: 300px;
  overflow: auto;
  border: 1px solid var(--neutral-05);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.country-option {
  display: block;
  width: 100%;
  min-height: 44px;
  padding: 10px 12px;
  border: 0;
  border-bottom: 1px solid var(--neutral-05);
  background: transparent;
  color: var(--dark-600);
  font-size: 14px;
  text-align: left;
}

.country-option.selected {
  background: var(--main-soft);
  color: var(--base-two);
  font-weight: 800;
}

.country-empty {
  padding: 16px;
  color: var(--body);
  font-size: 13px;
  text-align: center;
}

.field-input {
  width: 100%;
  min-height: 46px;
  padding: 10px 12px;
  border: 1px solid var(--neutral-05);
  border-radius: var(--radius);
  background: var(--white);
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
  overflow-wrap: anywhere;
}

.birth-date-selects {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.date-picker {
  position: relative;
}

.date-picker-trigger {
  cursor: pointer;
}

.date-picker-popup {
  position: absolute;
  top: calc(100% + 4px);
  right: 0;
  left: 0;
  z-index: 50;
  padding: 10px;
  border: 1px solid var(--neutral-05);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 8px;
}

.calendar-nav {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  padding: 0;
  border: 1px solid var(--neutral-05);
  border-radius: 50%;
  background: var(--white);
  color: var(--base-two);
  font-size: 16px;
}

.calendar-title-selects {
  display: flex;
  align-items: center;
  gap: 6px;
}

.calendar-select {
  position: relative;
}

.calendar-select-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  min-width: 96px;
  min-height: 42px;
  padding: 6px 10px;
  border: 1px solid var(--neutral-05);
  border-radius: var(--radius);
  background: var(--white);
  color: var(--base-two);
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  outline: none;
  transition: border-color 0.15s, box-shadow 0.15s;
}

.calendar-select-btn:focus {
  border-color: var(--main);
  box-shadow: 0 0 0 3px rgba(174, 255, 28, 0.32);
}

.calendar-caret {
  color: var(--body);
  font-size: 12px;
  line-height: 1;
}

.calendar-select-list {
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  z-index: 70;
  min-width: 120px;
  max-height: 220px;
  overflow: auto;
  border: 1px solid var(--neutral-05);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.calendar-select-option {
  display: block;
  width: 100%;
  padding: 9px 12px;
  border: 0;
  border-bottom: 1px solid var(--neutral-05);
  background: transparent;
  color: var(--dark-600);
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}

.calendar-select-option:last-child {
  border-bottom: 0;
}

.calendar-select-option.active {
  background: var(--main-soft);
  color: var(--base-two);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  margin-bottom: 4px;
}

.calendar-weekdays span {
  color: var(--body);
  font-size: 11px;
  text-align: center;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}

.calendar-day,
.calendar-empty {
  min-height: 34px;
}

.calendar-day {
  border: 1px solid transparent;
  border-radius: 6px;
  background: transparent;
  color: var(--dark-600);
  font-size: 13px;
}

.calendar-day:hover {
  background: var(--neutral-10);
}

.calendar-day.selected {
  border-color: var(--main);
  background: var(--main);
  color: var(--base-two-dark);
  font-weight: 800;
}

.birth-select {
  padding: 8px 6px;
  text-align: center;
}

.field-input:focus {
  border-color: var(--main);
  box-shadow: 0 0 0 3px rgba(174, 255, 28, 0.32);
}

.field-input.invalid {
  border-color: var(--danger);
  box-shadow: 0 0 0 3px rgba(226, 55, 68, 0.14);
}

.step-actions {
  position: sticky;
  bottom: calc(env(safe-area-inset-bottom) + 10px);
  z-index: 20;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 10px;
  margin-top: 18px;
  padding: 10px;
  border: 1px solid var(--neutral-05);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--shadow-md);
  backdrop-filter: blur(10px);
}

.step-actions .btn:first-child:last-child {
  grid-column: 1 / -1;
}

.step-actions.single {
  grid-template-columns: minmax(0, 1fr);
}

.step-actions.single .btn {
  width: 100%;
}

.review-section {
  margin-bottom: 14px;
  padding: 14px;
  border: 1px solid var(--neutral-05);
  border-radius: var(--radius);
  background: var(--neutral-10);
}

.review-section h3 {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--neutral-05);
}

.review-list {
  display: grid;
  gap: 8px;
  margin: 0;
}

.review-list > div,
.review-list > dt {
  color: var(--body);
  font-size: 12px;
}

.review-list > dd {
  margin: -4px 0 0;
  color: var(--dark-600);
  font-size: 14px;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.result-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  padding: 26px 16px;
  text-align: center;
}

.result-icon {
  display: grid;
  place-items: center;
  width: 68px;
  height: 68px;
  border-radius: 50%;
  font-size: 30px;
  font-weight: 900;
}

.result-icon.ok {
  background: var(--main);
  color: var(--base-two-dark);
  box-shadow: 0 0 0 10px var(--main-soft);
}

.result-icon.fail {
  background: #fde7e9;
  color: var(--danger);
  box-shadow: 0 0 0 10px #fff0f1;
}

.result-summary {
  margin-bottom: 12px;
  padding: 14px;
  border: 1px solid var(--neutral-05);
  border-radius: var(--radius);
  background: var(--white);
}

.json-panel {
  max-height: 46vh;
  margin: 0;
  padding: 12px;
  border: 1px solid var(--neutral-05);
  border-radius: var(--radius);
  background: var(--base-two-dark);
  color: var(--main);
  font-size: 11px;
  line-height: 1.5;
  overflow: auto;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}

.result-note {
  margin-bottom: 10px;
  color: var(--danger);
  font-size: 13px;
}

.detail-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
  padding: 16px;
  border: 1px solid var(--neutral-05);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}

.detail-amount {
  display: block;
  margin-top: 4px;
  color: var(--base-two);
  font-family: var(--heading-font);
  font-size: 26px;
  font-weight: 400;
  line-height: 1.1;
}

.detail-empty {
  margin: 0;
  color: var(--body);
  font-size: 13px;
}

.loading {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  background: rgba(5, 5, 5, 0.6);
  backdrop-filter: blur(3px);
}

.loading-card {
  display: grid;
  place-items: center;
  gap: 14px;
  min-width: 160px;
  padding: 26px 30px;
  border-radius: 0;
  background: var(--white);
  box-shadow: var(--shadow-md);
}

.spinner {
  width: 46px;
  height: 46px;
  border: 4px solid var(--main-soft);
  border-top-color: var(--main);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.loading-text {
  color: var(--base-two);
  font-weight: 800;
}

.toast {
  position: fixed;
  left: 50%;
  bottom: calc(env(safe-area-inset-bottom) + 24px);
  z-index: 120;
  max-width: calc(100vw - 40px);
  padding: 10px 16px;
  border-radius: 0;
  background: var(--base-two-dark);
  color: var(--white);
  font-size: 13px;
  text-align: center;
  box-shadow: var(--shadow-md);
  transform: translateX(-50%);
}

.page-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 16px calc(env(safe-area-inset-bottom) + 18px);
  color: var(--body);
  font-size: 13px;
}

.page-footer p {
  margin: 0;
}

.social-dots {
  display: flex;
  gap: 8px;
}

.social-dots span {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--base-two-soft);
}

@media (min-width: 768px) {
  .search-box {
    display: flex;
  }

  .main {
    padding-left: 24px;
    padding-right: 24px;
  }

  .view {
    max-width: 860px;
  }

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

  .step-actions {
    position: static;
  }
}
