/* =========================================================
   GHANIA GAWAI
   Sell Device Page
   /jual-hp/
   ========================================================= */


/* =========================================================
   01. PAGE
   ========================================================= */

.sell-page {
  min-height: 100vh;

  background:
    linear-gradient(
      180deg,
      #f7fbfe 0%,
      #ffffff 340px
    );
}


/* =========================================================
   02. PAGE HERO
   ========================================================= */

.sell-hero {
  position: relative;

  padding:
    58px
    0
    42px;

  overflow: hidden;
}

.sell-hero::before {
  content: "";

  position: absolute;

  top: -260px;
  right: -180px;

  width: 520px;
  height: 520px;

  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(20, 146, 222, 0.12),
      rgba(20, 146, 222, 0)
    );

  pointer-events: none;
}

.sell-hero__content {
  position: relative;

  z-index: 2;

  max-width: 720px;

  margin-inline: auto;

  text-align: center;
}

.sell-hero__eyebrow {
  margin-bottom: 15px;

  display: inline-flex;

  align-items: center;

  gap: 8px;

  color:
    var(--color-primary);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 0.1em;

  text-transform: uppercase;
}

.sell-hero__title {
  margin-bottom: 17px;

  font-size:
    clamp(
      38px,
      4.8vw,
      56px
    );

  font-weight: 800;

  line-height: 1.04;

  letter-spacing: -0.045em;
}

.sell-hero__title-highlight {
  color:
    var(--color-primary);
}

.sell-hero__description {
  max-width: 620px;

  margin:
    0
    auto;

  color:
    var(--color-muted);

  font-size: 15px;

  line-height: 1.75;
}


/* =========================================================
   03. WIZARD WRAPPER
   ========================================================= */

.sell-wizard {
  padding:
    12px
    0
    96px;
}

.sell-wizard__layout {
  display: grid;

  grid-template-columns:
    minmax(0, 1fr)
    320px;

  align-items: start;

  gap: 28px;
}


/* =========================================================
   04. MAIN FORM CARD
   ========================================================= */

.sell-form-card {
  min-width: 0;

  overflow: hidden;

  background:
    var(--color-white);

  border:
    1px solid
    var(--color-border);

  border-radius:
    var(--radius-xl);

  box-shadow:
    0 18px 48px
    rgba(15, 23, 42, 0.06);
}


/* =========================================================
   05. PROGRESS
   ========================================================= */

.sell-progress {
  padding:
    22px
    26px;

  background:
    var(--color-background);

  border-bottom:
    1px solid
    var(--color-border);
}

.sell-progress__top {
  margin-bottom: 15px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 16px;
}

.sell-progress__label {
  color:
    var(--color-muted);

  font-size: 11px;
  font-weight: 700;

  letter-spacing: 0.04em;

  text-transform: uppercase;
}

.sell-progress__status {
  color:
    var(--color-primary);

  font-size: 12px;
  font-weight: 800;
}

.sell-progress__bar {
  width: 100%;
  height: 6px;

  overflow: hidden;

  background:
    #e7eef3;

  border-radius:
    var(--radius-full);
}

.sell-progress__fill {
  width: 16.666%;

  height: 100%;

  background:
    linear-gradient(
      90deg,
      var(--color-primary),
      var(--color-secondary)
    );

  border-radius:
    inherit;

  transition:
    width 360ms ease;
}


/* =========================================================
   06. STEP INDICATOR
   ========================================================= */

.sell-step-indicator {
  padding:
    20px
    26px
    0;

  display: grid;

  grid-template-columns:
    repeat(
      6,
      minmax(0, 1fr)
    );

  gap: 8px;
}

.sell-step-indicator__item {
  position: relative;

  min-width: 0;

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 7px;

  text-align: center;
}

.sell-step-indicator__circle {
  position: relative;

  z-index: 2;

  width: 30px;
  height: 30px;

  display: grid;

  place-items: center;

  color:
    var(--color-muted);

  background:
    var(--color-background);

  border:
    1px solid
    var(--color-border);

  border-radius: 50%;

  font-size: 10px;
  font-weight: 800;

  transition:
    color var(--transition-base),
    background-color var(--transition-base),
    border-color var(--transition-base);
}

.sell-step-indicator__item:not(:last-child)::after {
  content: "";

  position: absolute;

  top: 15px;
  left: calc(50% + 20px);

  width: calc(100% - 40px);
  height: 1px;

  background:
    var(--color-border);
}

.sell-step-indicator__label {
  overflow: hidden;

  width: 100%;

  color:
    var(--color-muted);

  font-size: 9px;
  font-weight: 700;

  white-space: nowrap;

  text-overflow: ellipsis;
}

.sell-step-indicator__item.is-active
.sell-step-indicator__circle {
  color:
    var(--color-white);

  background:
    var(--color-primary);

  border-color:
    var(--color-primary);
}

.sell-step-indicator__item.is-active
.sell-step-indicator__label {
  color:
    var(--color-primary);
}

.sell-step-indicator__item.is-completed
.sell-step-indicator__circle {
  color:
    var(--color-white);

  background:
    var(--color-secondary);

  border-color:
    var(--color-secondary);
}

.sell-step-indicator__item.is-completed
.sell-step-indicator__label {
  color:
    var(--color-dark);
}


/* =========================================================
   07. STEP CONTENT
   ========================================================= */

.sell-step {
  display: none;

  padding:
    34px
    34px
    30px;
}

.sell-step.is-active {
  display: block;
}

.sell-step__header {
  max-width: 650px;

  margin-bottom: 28px;
}

.sell-step__eyebrow {
  margin-bottom: 8px;

  color:
    var(--color-primary);

  font-size: 10px;
  font-weight: 800;

  letter-spacing: 0.09em;

  text-transform: uppercase;
}

.sell-step__title {
  margin-bottom: 9px;

  font-size: 27px;

  line-height: 1.18;
}

.sell-step__description {
  margin: 0;

  color:
    var(--color-muted);

  font-size: 13px;

  line-height: 1.7;
}


/* =========================================================
   08. FIELD SECTION
   ========================================================= */

.sell-field-section {
  margin-bottom: 30px;
}

.sell-field-section:last-child {
  margin-bottom: 0;
}

.sell-field-section__header {
  margin-bottom: 14px;
}

.sell-field-section__label {
  margin-bottom: 4px;

  display: flex;

  align-items: center;

  gap: 5px;

  color:
    var(--color-dark);

  font-size: 13px;
  font-weight: 800;
}

.sell-field-section__description {
  margin: 0;

  color:
    var(--color-muted);

  font-size: 11px;

  line-height: 1.6;
}

.sell-required {
  color:
    var(--color-danger);
}


/* =========================================================
   09. BRAND SELECTION
   ========================================================= */

.sell-brand-grid {
  display: grid;

  grid-template-columns:
    repeat(
      4,
      minmax(0, 1fr)
    );

  gap: 10px;
}

.sell-brand-option {
  position: relative;

  min-width: 0;
}

.sell-brand-option input {
  position: absolute;

  width: 1px;
  height: 1px;

  opacity: 0;

  pointer-events: none;
}

.sell-brand-option__card {
  min-height: 104px;

  padding: 14px;

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  gap: 9px;

  color:
    var(--color-text);

  background:
    var(--color-white);

  border:
    1px solid
    var(--color-border);

  border-radius:
    14px;

  cursor: pointer;

  transition:
    color var(--transition-base),
    background-color var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    transform var(--transition-base);
}

.sell-brand-option__card:hover {
  border-color:
    rgba(20, 146, 222, 0.35);

  transform:
    translateY(-2px);
}

.sell-brand-option__logo {
  width: 40px;
  height: 40px;

  display: grid;

  place-items: center;
}

.sell-brand-option__logo img {
  max-width: 38px;
  max-height: 38px;

  object-fit: contain;
}

.sell-brand-option__name {
  font-size: 12px;
  font-weight: 700;
}

.sell-brand-option
input:checked
+
.sell-brand-option__card {
  color:
    var(--color-primary-dark);

  background:
    var(--color-primary-soft);

  border-color:
    var(--color-primary);

  box-shadow:
    0 0 0 3px
    rgba(20, 146, 222, 0.08);
}


/* =========================================================
   10. DEVICE / MODEL SELECTION
   ========================================================= */

.sell-device-search {
  position: relative;

  margin-bottom: 14px;
}

.sell-device-search__icon {
  position: absolute;

  top: 50%;
  left: 15px;

  width: 18px;
  height: 18px;

  display: grid;

  place-items: center;

  color:
    var(--color-muted);

  transform:
    translateY(-50%);

  pointer-events: none;
}

.sell-device-search__input {
  width: 100%;
  height: 50px;

  padding:
    0
    15px
    0
    43px;

  color:
    var(--color-dark);

  background:
    var(--color-background);

  border:
    1px solid
    var(--color-border);

  border-radius:
    var(--radius-md);

  outline: none;

  font-size: 13px;

  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base),
    background-color var(--transition-base);
}

.sell-device-search__input:focus {
  background:
    var(--color-white);

  border-color:
    var(--color-primary);

  box-shadow:
    0 0 0 4px
    rgba(20, 146, 222, 0.08);
}

.sell-device-grid {
  display: grid;

  grid-template-columns:
    repeat(
      3,
      minmax(0, 1fr)
    );

  gap: 10px;
}

.sell-device-option {
  position: relative;

  min-width: 0;
}

.sell-device-option input {
  position: absolute;

  width: 1px;
  height: 1px;

  opacity: 0;

  pointer-events: none;
}

.sell-device-option__card {
  min-height: 92px;

  padding: 14px;

  display: flex;

  align-items: center;

  gap: 12px;

  background:
    var(--color-white);

  border:
    1px solid
    var(--color-border);

  border-radius:
    13px;

  cursor: pointer;

  transition:
    background-color var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.sell-device-option__card:hover {
  border-color:
    rgba(20, 146, 222, 0.32);
}

.sell-device-option__icon {
  width: 43px;
  height: 54px;

  flex-shrink: 0;

  display: grid;

  place-items: center;

  color:
    var(--color-primary);

  background:
    var(--color-primary-soft);

  border-radius: 11px;
}

.sell-device-option__content {
  min-width: 0;
}

.sell-device-option__brand {
  margin-bottom: 2px;

  color:
    var(--color-muted);

  font-size: 9px;
}

.sell-device-option__name {
  color:
    var(--color-dark);

  font-size: 12px;
  font-weight: 800;

  line-height: 1.4;
}

.sell-device-option
input:checked
+
.sell-device-option__card {
  background:
    var(--color-primary-soft);

  border-color:
    var(--color-primary);

  box-shadow:
    0 0 0 3px
    rgba(20, 146, 222, 0.07);
}


/* =========================================================
   11. STORAGE OPTIONS
   ========================================================= */

.sell-storage-grid {
  display: flex;

  flex-wrap: wrap;

  gap: 8px;
}

.sell-storage-option {
  position: relative;
}

.sell-storage-option input {
  position: absolute;

  width: 1px;
  height: 1px;

  opacity: 0;

  pointer-events: none;
}

.sell-storage-option__label {
  min-width: 82px;
  min-height: 44px;

  padding:
    10px
    14px;

  display: inline-flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-text);

  background:
    var(--color-white);

  border:
    1px solid
    var(--color-border);

  border-radius:
    10px;

  font-size: 12px;
  font-weight: 800;

  cursor: pointer;

  transition:
    color var(--transition-base),
    background-color var(--transition-base),
    border-color var(--transition-base);
}

.sell-storage-option__label:hover {
  border-color:
    var(--color-primary);
}

.sell-storage-option
input:checked
+
.sell-storage-option__label {
  color:
    var(--color-primary-dark);

  background:
    var(--color-primary-soft);

  border-color:
    var(--color-primary);
}


/* =========================================================
   12. RADIO CARD
   ========================================================= */

.sell-choice-grid {
  display: grid;

  grid-template-columns:
    repeat(
      2,
      minmax(0, 1fr)
    );

  gap: 10px;
}

.sell-choice {
  position: relative;

  min-width: 0;
}

.sell-choice input {
  position: absolute;

  width: 1px;
  height: 1px;

  opacity: 0;

  pointer-events: none;
}

.sell-choice__card {
  min-height: 82px;

  padding: 15px;

  display: flex;

  align-items: flex-start;

  gap: 12px;

  background:
    var(--color-white);

  border:
    1px solid
    var(--color-border);

  border-radius:
    13px;

  cursor: pointer;

  transition:
    background-color var(--transition-base),
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.sell-choice__marker {
  width: 20px;
  height: 20px;

  flex-shrink: 0;

  margin-top: 1px;

  display: grid;

  place-items: center;

  background:
    var(--color-white);

  border:
    1.5px solid
    var(--color-border-dark);

  border-radius: 50%;
}

.sell-choice__marker::after {
  content: "";

  width: 8px;
  height: 8px;

  background:
    var(--color-primary);

  border-radius: 50%;

  opacity: 0;

  transform:
    scale(0.5);

  transition:
    opacity var(--transition-fast),
    transform var(--transition-fast);
}

.sell-choice__content {
  min-width: 0;

  flex: 1;
}

.sell-choice__title {
  display: block;

  margin-bottom: 3px;

  color:
    var(--color-dark);

  font-size: 12px;
  font-weight: 800;
}

.sell-choice__description {
  display: block;

  color:
    var(--color-muted);

  font-size: 10px;

  line-height: 1.55;
}

.sell-choice
input:checked
+
.sell-choice__card {
  background:
    var(--color-primary-soft);

  border-color:
    var(--color-primary);

  box-shadow:
    0 0 0 3px
    rgba(20, 146, 222, 0.07);
}

.sell-choice
input:checked
+
.sell-choice__card
.sell-choice__marker {
  border-color:
    var(--color-primary);
}

.sell-choice
input:checked
+
.sell-choice__card
.sell-choice__marker::after {
  opacity: 1;

  transform:
    scale(1);
}


/* =========================================================
   13. YES / NO OPTIONS
   ========================================================= */

.sell-binary-options {
  display: grid;

  grid-template-columns:
    repeat(
      2,
      minmax(0, 1fr)
    );

  gap: 8px;
}

.sell-binary-options--three {
  grid-template-columns:
    repeat(
      3,
      minmax(0, 1fr)
    );
}

.sell-binary-option {
  position: relative;
}

.sell-binary-option input {
  position: absolute;

  width: 1px;
  height: 1px;

  opacity: 0;

  pointer-events: none;
}

.sell-binary-option__label {
  min-height: 46px;

  padding:
    10px
    14px;

  display: flex;

  align-items: center;
  justify-content: center;

  color:
    var(--color-text);

  background:
    var(--color-white);

  border:
    1px solid
    var(--color-border);

  border-radius:
    10px;

  font-size: 12px;
  font-weight: 800;

  cursor: pointer;

  transition:
    color var(--transition-base),
    background-color var(--transition-base),
    border-color var(--transition-base);
}

.sell-binary-option
input:checked
+
.sell-binary-option__label {
  color:
    var(--color-primary-dark);

  background:
    var(--color-primary-soft);

  border-color:
    var(--color-primary);
}


/* =========================================================
   14. CONDITION QUESTIONS
   ========================================================= */

.sell-question-list {
  display: flex;

  flex-direction: column;

  gap: 14px;
}

.sell-question {
  padding:
    18px;

  background:
    var(--color-background);

  border:
    1px solid
    var(--color-border);

  border-radius:
    14px;
}

.sell-question__header {
  margin-bottom: 13px;
}

.sell-question__label {
  margin-bottom: 4px;

  display: block;

  color:
    var(--color-dark);

  font-size: 12px;
  font-weight: 800;
}

.sell-question__description {
  margin: 0;

  color:
    var(--color-muted);

  font-size: 10px;

  line-height: 1.55;
}


/* =========================================================
   15. BATTERY HEALTH
   ========================================================= */

.sell-percentage {
  position: relative;

  max-width: 180px;
}

.sell-percentage__input {
  width: 100%;
  height: 48px;

  padding:
    0
    42px
    0
    14px;

  color:
    var(--color-dark);

  background:
    var(--color-white);

  border:
    1px solid
    var(--color-border);

  border-radius:
    10px;

  outline: none;

  font-size: 13px;
  font-weight: 700;
}

.sell-percentage__input:focus {
  border-color:
    var(--color-primary);

  box-shadow:
    0 0 0 4px
    rgba(20, 146, 222, 0.08);
}

.sell-percentage__suffix {
  position: absolute;

  top: 50%;
  right: 14px;

  color:
    var(--color-muted);

  font-size: 12px;
  font-weight: 800;

  transform:
    translateY(-50%);
}


/* =========================================================
   16. CHECKBOX GRID
   ========================================================= */

.sell-checkbox-grid {
  display: grid;

  grid-template-columns:
    repeat(
      2,
      minmax(0, 1fr)
    );

  gap: 8px;
}

.sell-checkbox {
  position: relative;

  min-width: 0;
}

.sell-checkbox input {
  position: absolute;

  width: 1px;
  height: 1px;

  opacity: 0;

  pointer-events: none;
}

.sell-checkbox__label {
  min-height: 48px;

  padding:
    10px
    13px;

  display: flex;

  align-items: center;

  gap: 9px;

  color:
    var(--color-text);

  background:
    var(--color-white);

  border:
    1px solid
    var(--color-border);

  border-radius:
    10px;

  font-size: 11px;
  font-weight: 700;

  cursor: pointer;
}

.sell-checkbox__box {
  width: 18px;
  height: 18px;

  flex-shrink: 0;

  display: grid;

  place-items: center;

  color:
    var(--color-white);

  border:
    1.5px solid
    var(--color-border-dark);

  border-radius: 5px;
}

.sell-checkbox
input:checked
+
.sell-checkbox__label {
  color:
    var(--color-primary-dark);

  background:
    var(--color-primary-soft);

  border-color:
    var(--color-primary);
}

.sell-checkbox
input:checked
+
.sell-checkbox__label
.sell-checkbox__box {
  background:
    var(--color-primary);

  border-color:
    var(--color-primary);
}

.sell-checkbox
input:checked
+
.sell-checkbox__label
.sell-checkbox__box::before {
  content: "✓";

  font-size: 11px;
  font-weight: 900;
}


/* =========================================================
   17. TEXT INPUT
   ========================================================= */

.sell-input,
.sell-textarea {
  width: 100%;

  color:
    var(--color-dark);

  background:
    var(--color-white);

  border:
    1px solid
    var(--color-border);

  border-radius:
    11px;

  outline: none;

  transition:
    border-color var(--transition-base),
    box-shadow var(--transition-base);
}

.sell-input {
  height: 50px;

  padding:
    0
    14px;
}

.sell-textarea {
  min-height: 118px;

  padding:
    13px
    14px;

  resize: vertical;

  line-height: 1.6;
}

.sell-input::placeholder,
.sell-textarea::placeholder {
  color:
    var(--color-placeholder);
}

.sell-input:focus,
.sell-textarea:focus {
  border-color:
    var(--color-primary);

  box-shadow:
    0 0 0 4px
    rgba(20, 146, 222, 0.08);
}


/* =========================================================
   18. FIELD ERROR
   ========================================================= */

.sell-field-error {
  margin-top: 7px;

  display: none;

  color:
    var(--color-danger);

  font-size: 10px;
  font-weight: 700;
}

.has-error
.sell-field-error {
  display: block;
}

.has-error
.sell-input,
.has-error
.sell-textarea {
  border-color:
    var(--color-danger);
}


/* =========================================================
   19. MANUAL DEVICE
   ========================================================= */

.sell-manual-device {
  margin-top: 18px;

  padding:
    18px;

  display: none;

  background:
    var(--color-background);

  border:
    1px solid
    var(--color-border);

  border-radius:
    14px;
}

.sell-manual-device.is-visible {
  display: block;
}

.sell-manual-device__title {
  margin-bottom: 14px;

  font-size: 14px;
}

.sell-manual-device__grid {
  display: grid;

  grid-template-columns:
    repeat(
      3,
      minmax(0, 1fr)
    );

  gap: 10px;
}


/* =========================================================
   20. SELLER DATA
   ========================================================= */

.sell-seller-grid {
  display: grid;

  grid-template-columns:
    repeat(
      2,
      minmax(0, 1fr)
    );

  gap:
    16px
    12px;
}

.sell-seller-grid
.form-group {
  margin: 0;
}

.sell-seller-grid
.form-group--full {
  grid-column:
    1 / -1;
}


/* =========================================================
   21. REVIEW
   ========================================================= */

.sell-review {
  display: flex;

  flex-direction: column;

  gap: 12px;
}

.sell-review-section {
  overflow: hidden;

  background:
    var(--color-background);

  border:
    1px solid
    var(--color-border);

  border-radius:
    14px;
}

.sell-review-section__header {
  padding:
    14px
    16px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 16px;

  background:
    #f3f7fa;

  border-bottom:
    1px solid
    var(--color-border);
}

.sell-review-section__title {
  margin: 0;

  font-size: 13px;
}

.sell-review-section__edit {
  color:
    var(--color-primary);

  font-size: 10px;
  font-weight: 800;
}

.sell-review-section__body {
  padding:
    15px
    16px;
}

.sell-review-row {
  padding:
    8px
    0;

  display: grid;

  grid-template-columns:
    minmax(120px, 0.42fr)
    minmax(0, 0.58fr);

  gap: 16px;

  border-bottom:
    1px dashed
    var(--color-border);
}

.sell-review-row:last-child {
  padding-bottom: 0;

  border-bottom: 0;
}

.sell-review-row:first-child {
  padding-top: 0;
}

.sell-review-row__label {
  color:
    var(--color-muted);

  font-size: 10px;
}

.sell-review-row__value {
  color:
    var(--color-dark);

  font-size: 11px;
  font-weight: 700;

  text-align: right;
}


/* =========================================================
   22. CONSENT
   ========================================================= */

.sell-consent {
  margin-top: 22px;

  padding:
    17px;

  background:
    var(--color-primary-soft);

  border:
    1px solid
    rgba(20, 146, 222, 0.16);

  border-radius:
    13px;
}

.sell-consent__choice {
  display: flex;

  align-items: flex-start;

  gap: 10px;
}

.sell-consent__choice input {
  width: 18px;
  height: 18px;

  flex-shrink: 0;

  margin-top: 2px;

  accent-color:
    var(--color-primary);
}

.sell-consent__text {
  margin: 0;

  color:
    var(--color-text);

  font-size: 11px;

  line-height: 1.65;
}

.sell-consent__text a {
  color:
    var(--color-primary);

  font-weight: 700;
}


/* =========================================================
   23. NAVIGATION ACTIONS
   ========================================================= */

.sell-actions {
  padding:
    20px
    34px
    30px;

  display: flex;

  align-items: center;
  justify-content: space-between;

  gap: 12px;

  border-top:
    1px solid
    var(--color-border);
}

.sell-actions__left,
.sell-actions__right {
  display: flex;

  align-items: center;

  gap: 8px;
}

.sell-actions__next {
  min-width: 140px;
}


/* =========================================================
   24. SIDEBAR
   ========================================================= */

.sell-sidebar {
  position: sticky;

  top: 112px;

  display: flex;

  flex-direction: column;

  gap: 14px;
}

.sell-sidebar-card {
  padding:
    20px;

  background:
    var(--color-white);

  border:
    1px solid
    var(--color-border);

  border-radius:
    var(--radius-lg);

  box-shadow:
    var(--shadow-xs);
}

.sell-sidebar-card__icon {
  width: 42px;
  height: 42px;

  margin-bottom: 14px;

  display: grid;

  place-items: center;

  color:
    var(--color-primary);

  background:
    var(--color-primary-soft);

  border-radius: 12px;
}

.sell-sidebar-card__title {
  margin-bottom: 7px;

  font-size: 15px;
}

.sell-sidebar-card__description {
  margin-bottom: 0;

  color:
    var(--color-muted);

  font-size: 11px;

  line-height: 1.7;
}


/* =========================================================
   25. SELECTED DEVICE SUMMARY
   ========================================================= */

.sell-device-summary {
  display: none;
}

.sell-device-summary.is-visible {
  display: block;
}

.sell-device-summary__eyebrow {
  margin-bottom: 10px;

  color:
    var(--color-primary);

  font-size: 9px;
  font-weight: 800;

  letter-spacing: 0.08em;

  text-transform: uppercase;
}

.sell-device-summary__device {
  margin-bottom: 14px;

  display: flex;

  align-items: center;

  gap: 12px;
}

.sell-device-summary__icon {
  width: 46px;
  height: 56px;

  flex-shrink: 0;

  display: grid;

  place-items: center;

  color:
    var(--color-primary);

  background:
    var(--color-primary-soft);

  border-radius: 12px;
}

.sell-device-summary__brand {
  display: block;

  color:
    var(--color-muted);

  font-size: 9px;
}

.sell-device-summary__model {
  display: block;

  color:
    var(--color-dark);

  font-size: 13px;
  font-weight: 800;
}

.sell-device-summary__storage {
  margin-top: 2px;

  display: block;

  color:
    var(--color-text);

  font-size: 10px;
}


/* =========================================================
   26. SIDEBAR INFO LIST
   ========================================================= */

.sell-info-list {
  padding: 0;
  margin: 0;

  display: flex;

  flex-direction: column;

  gap: 10px;

  list-style: none;
}

.sell-info-list__item {
  display: flex;

  align-items: flex-start;

  gap: 9px;

  color:
    var(--color-text);

  font-size: 10px;

  line-height: 1.55;
}

.sell-info-list__icon {
  width: 20px;
  height: 20px;

  flex-shrink: 0;

  display: grid;

  place-items: center;

  color:
    var(--color-primary);

  background:
    var(--color-primary-soft);

  border-radius: 6px;

  font-size: 10px;
}


/* =========================================================
   27. INFO NOTICE
   ========================================================= */

.sell-offer-notice {
  padding:
    16px;

  color:
    #075985;

  background:
    #f0f9ff;

  border:
    1px solid
    #bae6fd;

  border-radius:
    13px;

  font-size: 10px;

  line-height: 1.65;
}

.sell-offer-notice strong {
  display: block;

  margin-bottom: 4px;

  color:
    #0c4a6e;

  font-size: 11px;
}


/* =========================================================
   28. WHATSAPP REVIEW CTA
   ========================================================= */

.sell-whatsapp-box {
  margin-top: 22px;

  padding:
    20px;

  background:
    linear-gradient(
      135deg,
      #ecfdf3,
      #f7fffa
    );

  border:
    1px solid
    #bbf7d0;

  border-radius:
    14px;
}

.sell-whatsapp-box__header {
  margin-bottom: 14px;

  display: flex;

  align-items: center;

  gap: 11px;
}

.sell-whatsapp-box__icon {
  width: 40px;
  height: 40px;

  flex-shrink: 0;

  display: grid;

  place-items: center;

  color:
    var(--color-white);

  background:
    #25d366;

  border-radius: 12px;
}

.sell-whatsapp-box__title {
  margin: 0;

  font-size: 14px;
}

.sell-whatsapp-box__description {
  margin: 0;

  color:
    var(--color-muted);

  font-size: 10px;

  line-height: 1.6;
}


/* =========================================================
   29. CONDITIONAL FIELD
   ========================================================= */

[data-conditional-field] {
  display: none;
}

[data-conditional-field].is-visible {
  display: block;
}


/* =========================================================
   30. DISABLED STATE
   ========================================================= */

.sell-step
input:disabled,
.sell-step
textarea:disabled,
.sell-step
button:disabled {
  cursor: not-allowed;
}

.sell-step
input:disabled
+
label {
  opacity: 0.5;

  cursor: not-allowed;
}


/* =========================================================
   31. LOADING STATE
   ========================================================= */

.sell-loading {
  min-height: 240px;

  display: flex;

  flex-direction: column;

  align-items: center;
  justify-content: center;

  gap: 12px;

  color:
    var(--color-muted);

  text-align: center;
}

.sell-loading__spinner {
  width: 32px;
  height: 32px;

  border:
    3px solid
    var(--color-border);

  border-top-color:
    var(--color-primary);

  border-radius: 50%;

  animation:
    sell-spinner
    0.7s
    linear
    infinite;
}

.sell-loading__text {
  font-size: 11px;
}

@keyframes sell-spinner {
  to {
    transform:
      rotate(360deg);
  }
}


/* =========================================================
   32. EMPTY STATE
   ========================================================= */

.sell-empty {
  padding:
    34px
    20px;

  text-align: center;

  background:
    var(--color-background);

  border:
    1px dashed
    var(--color-border-dark);

  border-radius:
    14px;
}

.sell-empty__icon {
  width: 46px;
  height: 46px;

  margin:
    0
    auto
    12px;

  display: grid;

  place-items: center;

  color:
    var(--color-primary);

  background:
    var(--color-primary-soft);

  border-radius: 13px;
}

.sell-empty__title {
  margin-bottom: 6px;

  font-size: 14px;
}

.sell-empty__description {
  max-width: 400px;

  margin:
    0
    auto
    16px;

  color:
    var(--color-muted);

  font-size: 11px;

  line-height: 1.6;
}