.aci-lot-flow {
  padding: 6px 0 0;
}

.aci-lot-flow__crumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 18px;
  color: #7b7b7b;
  font-size: 13px;
}

.aci-lot-flow__crumbs a {
  color: #7b7b7b;
  text-decoration: none;
}

.aci-lot-flow__crumbs a:hover {
  color: #e6031f;
}

.aci-lot-flow__intro {
  margin-bottom: 26px;
}

.aci-lot-flow__intro h3 {
  margin: 0 0 8px;
  color: #222;
  font-size: 29px;
  font-weight: 700;
}

.aci-lot-flow__intro p {
  margin: 0;
  color: #666;
}

.aci-flow-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  margin: 0 0 28px;
}

.aci-flow-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 0 0 auto;
}

.aci-flow-step__circle {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #e4e4e4;
  color: #818181;
  font-weight: 700;
  box-shadow: 0 5px 12px rgb(0 0 0 / 8%);
}

.aci-flow-step__label {
  margin-top: 8px;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #929292;
  white-space: nowrap;
}

.aci-flow-step.is-active .aci-flow-step__circle,
.aci-flow-step.is-done .aci-flow-step__circle {
  background: #e6031f;
  color: #fff;
}

.aci-flow-step.is-active .aci-flow-step__circle {
  box-shadow: 0 0 0 8px rgb(230 3 31 / 10%);
}

.aci-flow-step.is-active .aci-flow-step__label,
.aci-flow-step.is-done .aci-flow-step__label {
  color: #b11221;
}

.aci-flow-steps__line {
  flex: 1 1 auto;
  height: 4px;
  margin: 20px 6px 0;
  border-radius: 999px;
  background: #e4e4e4;
}

.aci-flow-steps__line.is-done {
  background: #e6031f;
}

.aci-lot-flow__layout {
  display: grid;
  grid-template-columns: minmax(0, 920px);
  justify-content: center;
  gap: 26px;
}

.aci-lot-flow__panel,
.aci-lot-flow__side {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 10px 28px rgb(0 0 0 / 8%);
}

.aci-lot-flow__panel {
  padding: 28px;
}

.aci-lot-flow__side {
  padding: 24px;
  align-self: start;
  position: sticky;
  top: 110px;
}

.aci-lot-flow__eyebrow {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff0f1;
  color: #c31828;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.aci-lot-flow__title {
  margin: 14px 0 8px;
  color: #202020;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
}

.aci-lot-flow__text {
  margin: 0 0 18px;
  color: #5f5f5f;
}

.aci-lot-flow__list {
  margin: 0 0 22px;
  padding-left: 18px;
  color: #4f4f4f;
}

.aci-lot-flow__list li + li {
  margin-top: 8px;
}

.aci-lot-flow__checkbox {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  padding: 16px 18px;
  margin: 0 0 20px;
  border: 1px solid #ececec;
  border-radius: 14px;
  background: #fafafa;
}

.aci-lot-flow__checkbox input {
  margin-top: 2px;
}

.aci-lot-flow__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.aci-lot-flow__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.aci-lot-flow__field--full {
  grid-column: 1 / -1;
}

.aci-lot-flow__label {
  color: #222;
  font-size: 14px;
  font-weight: 700;
}

.aci-lot-flow__input,
.aci-lot-flow__select,
.aci-lot-flow__textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #ddd;
  border-radius: 12px;
  background: #fff;
  color: #222;
  font-size: 15px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.aci-lot-flow__textarea {
  min-height: 110px;
  resize: vertical;
}

.aci-lot-flow__input:focus,
.aci-lot-flow__select:focus,
.aci-lot-flow__textarea:focus {
  outline: none;
  border-color: #e6031f;
  box-shadow: 0 0 0 4px rgb(230 3 31 / 10%);
}

.aci-lot-flow__choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.aci-lot-flow__choice,
.aci-lot-flow__parcel,
.aci-lot-flow__platform {
  padding: 22px;
  border: 1px solid #ececec;
  border-radius: 16px;
  background: #fff;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.aci-lot-flow__choice:hover,
.aci-lot-flow__parcel:hover,
.aci-lot-flow__platform:hover {
  transform: translateY(-2px);
  border-color: #f0a0aa;
  box-shadow: 0 10px 24px rgb(0 0 0 / 7%);
}

.aci-lot-flow__choice.is-disabled,
.aci-lot-flow__parcel.is-disabled {
  opacity: 0.55;
  background: #f7f7f7;
}

.aci-lot-flow__choice h4,
.aci-lot-flow__parcel h4,
.aci-lot-flow__platform h4 {
  margin: 0 0 10px;
  color: #202020;
  font-size: 21px;
  font-weight: 700;
}

.aci-lot-flow__pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff0f1;
  color: #c31828;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.aci-lot-flow__meta {
  display: grid;
  gap: 8px;
  margin: 14px 0;
}

.aci-lot-flow__meta-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  color: #5f5f5f;
  font-size: 14px;
}

.aci-lot-flow__meta-row strong {
  color: #1f1f1f;
  text-align: right;
}

.aci-lot-flow__price {
  margin: 10px 0 18px;
  color: #e6031f;
  font-size: 23px;
  font-weight: 700;
}

.aci-lot-flow__actions {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 24px;
}

.aci-lot-flow__actions--stack {
  justify-content: flex-start;
}

.aci-lot-flow__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 22px;
  border: 0;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
}

.aci-lot-flow__button:hover {
  transform: translateY(-1px);
}

.aci-lot-flow__button--primary {
  background: #e6031f;
  color: #fff;
}

.aci-lot-flow__button--primary:hover {
  background: #b71220;
  color: #fff;
}

.aci-lot-flow__button--ghost {
  background: #efefef;
  color: #444;
}

.aci-lot-flow__button--ghost:hover {
  background: #dddddd;
}

.aci-lot-flow__button[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

.aci-lot-flow__error {
  margin-top: 16px;
  color: #c31828;
  font-size: 14px;
  font-weight: 700;
}

.aci-lot-flow__notice,
.aci-lot-flow__timer,
.aci-lot-flow__status {
  padding: 18px;
  border-radius: 16px;
  background: #faf7f7;
  border: 1px solid #f1d5d8;
}

.aci-lot-flow__timer {
  background: linear-gradient(135deg, #fff1f3, #fff8f8);
}

.aci-lot-flow__timer strong {
  display: block;
  color: #c31828;
  font-size: 28px;
  line-height: 1;
  margin-top: 8px;
}

.aci-lot-flow__summary {
  display: grid;
  gap: 14px;
}

.aci-lot-flow__summary-block + .aci-lot-flow__summary-block {
  padding-top: 14px;
  border-top: 1px solid #ededed;
}

.aci-lot-flow__summary-block h5 {
  margin: 0 0 10px;
  color: #222;
  font-size: 16px;
  font-weight: 700;
}

.aci-lot-flow__summary-block dl {
  display: grid;
  gap: 10px;
  margin: 0;
}

.aci-lot-flow__summary-block div {
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

.aci-lot-flow__summary-block dt {
  color: #666;
  font-weight: 400;
}

.aci-lot-flow__summary-block dd {
  margin: 0;
  color: #222;
  font-weight: 700;
  text-align: right;
}

.aci-lot-flow__platform-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 18px;
}

.aci-lot-flow__platform {
  cursor: pointer;
}

.aci-lot-flow__platform.is-selected {
  border-color: #e6031f;
  background: #fff4f5;
}

.aci-lot-flow__platform p,
.aci-lot-flow__choice p,
.aci-lot-flow__parcel p {
  margin: 0;
  color: #626262;
}

.aci-lot-flow__manual-card {
  margin-top: 18px;
  padding: 20px;
  border-radius: 16px;
  background: #1f2024;
  color: #fff;
}

.aci-lot-flow__manual-card h4,
.aci-lot-flow__manual-card p,
.aci-lot-flow__manual-card li {
  color: #fff;
}

.aci-lot-flow__manual-card ul {
  margin: 12px 0 0;
  padding-left: 18px;
}

.aci-lot-flow__status {
  text-align: center;
  padding: 30px 22px;
}

.aci-lot-flow__status-icon {
  width: 76px;
  height: 76px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #fff0f1;
  color: #c31828;
  font-size: 34px;
  font-weight: 700;
}

.aci-lot-flow__side h4 {
  margin: 0 0 14px;
  color: #202020;
  font-size: 20px;
  font-weight: 700;
}

.aci-lot-flow__side-copy {
  margin: 0 0 18px;
  color: #666;
}

@media (max-width: 991px) {
  .aci-lot-flow__layout {
    grid-template-columns: 1fr;
  }

  .aci-lot-flow__side {
    position: static;
  }
}

@media (max-width: 767px) {
  .aci-flow-step__label {
    font-size: 10px;
  }

  .aci-flow-step__circle {
    width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .aci-flow-steps__line {
    margin-top: 16px;
  }

  .aci-lot-flow__panel,
  .aci-lot-flow__side {
    padding: 20px;
  }

  .aci-lot-flow__grid,
  .aci-lot-flow__choice-grid,
  .aci-lot-flow__platform-grid {
    grid-template-columns: 1fr;
  }

  .aci-lot-flow__actions {
    flex-direction: column-reverse;
  }

  .aci-lot-flow__button {
    width: 100%;
  }
}
