/* =========================
   Wallet dropdown fixes
   ========================= */

/* Undo theme overrides so Bootstrap can control visibility */
.wallet-dropdown .dropdown-menu {
  display: none;              /* Bootstrap toggles to block via .show */
  visibility: visible;
  opacity: 1;
  transform: none;            /* kill any scaleY collapse */
}

/* When Bootstrap adds .show, actually show it */
.wallet-dropdown .dropdown-menu.show {
  display: block;
  visibility: visible;
  opacity: 1;
  transform: none !important; /* override any theme transforms */
}

/* Keep it above the header stack */
.header .dropdown-menu { z-index: 1060; }
.header, .navbar, .top-button { overflow: visible; }
.wallet-dropdown { position: relative; z-index: 1060; }

.wallet-summary {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.wallet-summary__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wallet-summary__label {
  color: var(--bs-secondary-color, #6c757d);
  font-size: 0.875rem;
}
.wallet-summary__amount {
  font-weight: 600;
  font-variant-numeric: tabular-nums;
}

/* =========================
   Footer language selector
   ========================= */

.footer-area .language {
  position: relative;
  z-index: 20;
  max-width: 100%;
}

.language-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 210px;
  max-width: 100%;
  min-height: 48px;
  padding: 10px 14px;
  border: 1px solid var(--theme-control-border, rgba(255, 255, 255, 0.14));
  border-radius: 8px;
  background: var(--theme-control-bg, rgba(8, 14, 22, 0.9));
  color: var(--theme-control-text, rgba(255, 255, 255, 0.84));
  box-shadow: var(--theme-control-shadow, 0 16px 32px rgba(0, 0, 0, 0.28));
}

.language-wrapper:focus-visible {
  outline: 2px solid hsl(var(--base));
  outline-offset: 2px;
}

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

.language_flag {
  width: 26px;
  height: 26px;
  flex: 0 0 26px;
  overflow: hidden;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
}

.language_flag img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.language_text_select,
.language_text {
  margin: 0;
  min-width: 0;
  line-height: 1.2;
  color: inherit;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.language-wrapper .collapse-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  line-height: 1;
  transition: transform 0.2s ease;
}

.language-wrapper.show .collapse-icon,
.language-wrapper[aria-expanded="true"] .collapse-icon {
  transform: rotate(180deg);
}

.langList_dropdow {
  display: none;
  visibility: visible;
  opacity: 1;
  min-width: 100%;
  max-width: min(320px, calc(100vw - 32px));
  max-height: min(340px, 70vh);
  padding: 8px !important;
  overflow-y: auto;
  border: 1px solid var(--theme-control-border, rgba(255, 255, 255, 0.14));
  border-radius: 8px;
  background: var(--theme-control-bg, rgba(8, 14, 22, 0.98));
  box-shadow: var(--theme-control-shadow, 0 18px 36px rgba(0, 0, 0, 0.32));
  transform: none !important;
}

.langList_dropdow.show {
  display: block;
  visibility: visible;
  opacity: 1;
  transform: none !important;
}

.langList {
  display: grid;
  gap: 4px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.langList .language-list {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 42px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--theme-control-text, rgba(255, 255, 255, 0.84));
  background: transparent;
  text-decoration: none;
  cursor: pointer;
}

.langList .language-list:hover,
.langList .language-list:focus,
.langList .language-list.active {
  color: hsl(var(--base));
  background: hsl(var(--base) / 0.12);
}

.langList .language-list.active {
  font-weight: 600;
}

.langList .language-list:focus-visible {
  outline: 2px solid hsl(var(--base));
  outline-offset: 2px;
}

@media (max-width: 767px) {
  .footer-item > .flex-between {
    justify-content: center;
    text-align: center;
  }

  .footer-area .language,
  .language-wrapper,
  .langList_dropdow {
    width: 100%;
  }

  .footer-area .language {
    max-width: 320px;
  }
}

/* =========================
   Profile avatar (generic)
   ========================= */

img.showProfilePhoto {
  display: block;
  max-width: 100%;
  border-radius: 50%;
  object-fit: cover;
}

/* Ensure the thumb can anchor the pencil badge */
.profile-setting__thumb { position: relative; }

/* Hide giant fallback user icons inside the avatar block */
.profile-setting__thumb i.la-user,
.profile-setting__thumb i.fas.fa-user,
.profile-setting__thumb i.far.fa-user { display: none !important; }

/* Pencil (edit) badge sizing & position */
.profile-image-label {
  position: absolute;
  right: -6px;
  bottom: -6px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;

  /* subtle styling so it looks intentional across themes */
  background: var(--bs-body-bg, #fff);
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 1px 2px rgba(0,0,0,.06);
  cursor: pointer;
}
.profile-image-label i { font-size: 14px; line-height: 1; }

/* =========================
   Kill the giant decorative header art (section-level)
   ========================= */

/* Most themes draw the billboard circle with ::before/::after on the section */
.profile-setting-section::before,
.profile-setting-section::after {
  content: none !important;
  background: none !important;
  background-image: none !important;
  -webkit-mask-image: none !important;
          mask-image: none !important;
  box-shadow: none !important;
}

/* Some builds put the background image directly on the section/container */
.profile-setting-section,
.profile-setting-section > *,
.profile-setting-section .container {
  background: transparent !important;
  background-image: none !important;
}

/* Some variants draw it on an inner wrapper */
.profile-setting-section .profile-setting::before,
.profile-setting-section .profile-setting::after,
.profile-setting-section .profile-setting .profile-cover,
.profile-setting-section .profile-setting .profile-header,
.profile-setting-section .profile-setting .profile-avatar-lg,
.profile-setting-section .profile-setting .profile-thumb-lg,
.profile-setting-section .profile-setting .profile-top-illustration,
.profile-setting-section .profile-header-avatar,
.profile-setting-section .big-user-icon {
  display: none !important;
}

/* Hide any inline decorative <img>/<svg> that might sit before content */
.profile-setting-section > img:first-child,
.profile-setting-section > svg:first-child {
  display: none !important;
}

/* Tighten spacing now that the big header is gone */
.profile-setting-section .profile-setting {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* =========================
   Utilities / fallbacks
   ========================= */

/* In case Bootstrap's visually-hidden isn't present */
.visually-hidden {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap; border: 0;
}

/* ---- Crop modal hardening ---- */
#cropperModal .modal-body { overflow: hidden; }           /* no scroll bleed */
#cropperModal .img-container { max-height: 70vh; }        /* comfortable viewport height */

/* When cropper attaches, it adds .cropper-hidden to the original img.
   On some themes that img still shows and "duplicates" the picture.
   Force it invisible while cropper is active. */
#cropperModal #cropperImage.cropper-hidden {
  display: none !important;
}

/* Keep cropper container sized to the modal width */
#cropperModal .cropper-container {
  max-width: 100% !important;
  width: 100% !important;
}

/* =========================
   Homepage Premium Refresh
   ========================= */

body.is-homepage {
  --home-surface: rgba(10, 18, 29, 0.84);
  --home-surface-strong: rgba(7, 14, 23, 0.94);
  --home-surface-soft: rgba(255, 255, 255, 0.04);
  --home-border: rgba(255, 255, 255, 0.08);
  --home-border-strong: rgba(255, 255, 255, 0.14);
  --home-muted: rgba(231, 237, 243, 0.72);
  --home-muted-strong: rgba(231, 237, 243, 0.84);
  --home-shadow: 0 32px 80px rgba(0, 0, 0, 0.32);
  --home-shadow-soft: 0 18px 38px rgba(0, 0, 0, 0.24);
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 255, 149, 0.16), transparent 28%),
    radial-gradient(circle at 100% 10%, rgba(42, 90, 255, 0.18), transparent 30%),
    linear-gradient(180deg, #06111a 0%, #09131d 38%, #0a1018 100%);
  position: relative;
}

body.is-homepage .homepage-shell {
  overflow: clip;
}

body.is-homepage .py-120 {
  padding-top: clamp(88px, 9vw, 124px);
  padding-bottom: clamp(88px, 9vw, 124px);
}

body.is-homepage .py-60 {
  padding-top: clamp(34px, 4.5vw, 56px);
  padding-bottom: clamp(34px, 4.5vw, 56px);
}

body.is-homepage .section-bg-two {
  background: transparent;
}

body.is-homepage .homepage-shell .container,
body.is-homepage .footer-area .container {
  position: relative;
  z-index: 1;
}

@media (min-width: 1400px) {
  body.is-homepage .homepage-shell .container,
  body.is-homepage .footer-area .container {
    max-width: 1240px;
  }
}

body.is-homepage h1,
body.is-homepage h2,
body.is-homepage h3,
body.is-homepage h4,
body.is-homepage h5,
body.is-homepage h6 {
  color: #fff;
}

body.is-homepage p,
body.is-homepage li,
body.is-homepage span {
  color: inherit;
}

body.is-homepage a {
  transition: color 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

body.is-homepage .header {
  border-bottom: 1px solid transparent;
  background: linear-gradient(180deg, rgba(6, 17, 26, 0.82) 0%, rgba(6, 17, 26, 0.56) 100%);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

body.is-homepage .header.fixed-header {
  background: rgba(7, 15, 24, 0.92);
  border-bottom-color: var(--home-border);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

body.is-homepage .nav-menu .nav-item .nav-link {
  color: rgba(255, 255, 255, 0.78) !important;
  font-weight: 500;
  letter-spacing: 0.01em;
}

body.is-homepage .user-info .user-info-dropdown,
body.is-homepage .wallet-dropdown .dropdown-menu {
  background: rgba(7, 14, 23, 0.96);
  border: 1px solid var(--home-border);
  border-radius: 18px;
  box-shadow: var(--home-shadow-soft);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

body.is-homepage .user-info-dropdown__link {
  border-bottom-color: rgba(255, 255, 255, 0.06);
}

body.is-homepage .user-info-dropdown__link.active {
  color: hsl(var(--black)) !important;
}

body.is-homepage .homepage-shell .btn {
  min-height: 52px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease, color 0.25s ease;
}

body.is-homepage .homepage-shell .btn:hover,
body.is-homepage .homepage-shell .btn:focus-visible {
  transform: translateY(-1px);
}

body.is-homepage .homepage-shell .btn--base {
  background: linear-gradient(135deg, hsl(var(--base)) 0%, hsl(var(--base-l-300)) 100%) !important;
  color: hsl(var(--black)) !important;
  border: 0 !important;
  box-shadow: 0 18px 32px rgba(0, 255, 149, 0.2);
}

body.is-homepage .homepage-shell .btn--base:hover,
body.is-homepage .homepage-shell .btn--base:focus-visible {
  color: hsl(var(--black)) !important;
  box-shadow: 0 22px 36px rgba(0, 255, 149, 0.26);
}

body.is-homepage .homepage-shell .btn-outline--base {
  background: rgba(0, 255, 149, 0.08) !important;
  border-color: rgba(0, 255, 149, 0.34) !important;
  color: hsl(var(--base)) !important;
}

body.is-homepage .homepage-shell .btn-outline--base:hover,
body.is-homepage .homepage-shell .btn-outline--base:focus-visible {
  color: hsl(var(--black)) !important;
  border-color: transparent !important;
}

body.is-homepage .badge {
  padding: 7px 14px;
  border-radius: 999px;
  font-weight: 600;
  letter-spacing: 0.01em;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

body.is-homepage .badge--base {
  background: rgba(0, 255, 149, 0.08);
  border-color: rgba(0, 255, 149, 0.42) !important;
}

body.is-homepage .section-heading {
  margin-bottom: clamp(32px, 4vw, 56px);
}

body.is-homepage .section-heading__subtitle {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 16px;
  border-radius: 999px;
  margin-bottom: 16px;
  color: var(--home-muted);
  border: 1px solid var(--home-border);
  background: rgba(255, 255, 255, 0.05);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.82rem;
}

body.is-homepage .section-heading__title {
  margin-bottom: 0;
  font-size: clamp(2rem, 3vw, 3.35rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
  max-width: 720px;
}

body.is-homepage .section-heading.style-left .section-heading__title {
  max-width: 560px;
}

body.is-homepage .section-heading__button {
  margin-top: 28px;
}

body.is-homepage .banner-section {
  position: relative;
  padding: clamp(120px, 14vw, 170px) 0 clamp(84px, 9vw, 120px);
  overflow: hidden;
}

body.is-homepage .banner-section [class*="banner-section__shape"] {
  display: none;
}

body.is-homepage .banner-shell {
  position: relative;
  padding: clamp(28px, 4vw, 56px);
  border-radius: 36px;
  border: 1px solid var(--home-border);
  background: linear-gradient(145deg, rgba(12, 21, 32, 0.88), rgba(7, 13, 22, 0.82));
  box-shadow: var(--home-shadow);
  overflow: hidden;
}

body.is-homepage .banner-shell::before {
  content: "";
  position: absolute;
  left: -8%;
  bottom: -18%;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 149, 0.2), transparent 72%);
  opacity: 0.65;
}

body.is-homepage .banner-shell::after {
  content: "";
  position: absolute;
  right: -6%;
  top: -10%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(43, 99, 255, 0.16), transparent 72%);
}

body.is-homepage .banner-content {
  position: relative;
  z-index: 1;
}

body.is-homepage .banner-content__badge {
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  margin-bottom: 24px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

body.is-homepage .banner-content__title {
  margin-bottom: 22px;
  font-size: clamp(2.85rem, 5vw, 5.2rem);
  line-height: 1.02;
  letter-spacing: -0.045em;
  max-width: 640px;
}

body.is-homepage .banner-content__desc {
  max-width: 560px;
  color: var(--home-muted);
  line-height: 1.78;
  font-size: 1.06rem;
}

body.is-homepage .banner-content__button {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  margin: 32px 0 26px;
}

body.is-homepage .banner-content__form {
  display: flex;
  align-items: center;
  gap: 12px;
  width: min(100%, 520px);
  padding: 8px;
  margin-bottom: 0;
  border-radius: 999px;
  border: 1px solid var(--home-border);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

body.is-homepage .form--control {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid rgba(255, 255, 255, 0.06) !important;
  color: #fff !important;
}

body.is-homepage .form--control::placeholder {
  color: rgba(255, 255, 255, 0.44) !important;
}

body.is-homepage .form--control:focus {
  border-color: rgba(0, 255, 149, 0.3) !important;
  box-shadow: 0 0 0 4px rgba(0, 255, 149, 0.08) !important;
}

body.is-homepage .banner-content__form .form--control,
body.is-homepage .cta-left .form--control {
  height: 52px;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

body.is-homepage .banner-content__form .banner-btn {
  min-width: 152px;
  white-space: nowrap;
}

body.is-homepage .banner-content__video {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-height: 60px;
  padding: 8px 18px 8px 8px;
  border-radius: 999px;
  border: 1px solid var(--home-border);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
}

body.is-homepage .banner-content__video:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

body.is-homepage .banner-content__icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: hsl(var(--black));
  background: linear-gradient(135deg, hsl(var(--base)) 0%, hsl(var(--base-l-300)) 100%);
  box-shadow: 0 12px 24px rgba(0, 255, 149, 0.22);
}

body.is-homepage .banner-content__rating {
  align-items: center;
  gap: 18px;
  width: fit-content;
  margin-top: 12px;
  padding: 14px 18px;
  border-radius: 22px;
  border: 1px solid var(--home-border);
  background: rgba(255, 255, 255, 0.05);
}

body.is-homepage .rating-thumb {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

body.is-homepage .rating-thumb img {
  border-radius: 999px;
}

body.is-homepage .rating-thumb__number {
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.08);
}

body.is-homepage .rating-list__text {
  color: #fff;
  font-weight: 600;
}

body.is-homepage .banner-thumb {
  position: relative;
  z-index: 1;
}

body.is-homepage .banner-thumb__inner {
  position: relative;
  padding: clamp(14px, 2vw, 20px);
  border-radius: 32px;
  border: 1px solid var(--home-border-strong);
  background: linear-gradient(160deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: var(--home-shadow);
}

body.is-homepage .banner-thumb__inner::before {
  content: "";
  position: absolute;
  inset: auto 8% 10% auto;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0, 255, 149, 0.24), transparent 72%);
}

body.is-homepage .banner-thumb img {
  position: relative;
  display: block;
  width: 100%;
  border-radius: 24px;
}

body.is-homepage .client-section {
  position: relative;
  margin-top: -18px;
  padding-top: 0;
  z-index: 2;
}

body.is-homepage .client-section__inner {
  padding: 22px clamp(20px, 3vw, 34px);
  border-radius: 999px;
  border: 1px solid var(--home-border);
  background: rgba(10, 18, 29, 0.88);
  box-shadow: var(--home-shadow-soft);
}

body.is-homepage .client-logos img {
  height: 36px;
  width: auto;
  margin: 0 18px;
  filter: grayscale(1) brightness(1.55);
  opacity: 0.74;
  transition: transform 0.25s ease, opacity 0.25s ease, filter 0.25s ease;
}

body.is-homepage .client-logos img:hover {
  transform: translateY(-2px);
  opacity: 1;
  filter: none;
}

body.is-homepage .category-item,
body.is-homepage .why-choose__item,
body.is-homepage .how-work__content,
body.is-homepage .testimonial-item,
body.is-homepage .blog-item,
body.is-homepage .account__tab,
body.is-homepage .footer-item {
  border: 1px solid var(--home-border);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.025));
  box-shadow: var(--home-shadow-soft);
}

body.is-homepage .cate-outer {
  display: block;
  height: 100%;
  text-decoration: none;
}

body.is-homepage .category-item {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 18px;
  min-height: 100%;
  padding: 28px 22px 24px;
  border-radius: 24px;
  overflow: hidden;
}

body.is-homepage .category-item:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 255, 149, 0.3);
  box-shadow: 0 24px 42px rgba(0, 0, 0, 0.28);
}

body.is-homepage .category-thumb {
  width: 78px;
  height: 78px;
  display: grid;
  place-items: center;
  margin: 0 auto;
  padding: 14px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
}

body.is-homepage .category-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

body.is-homepage .cate-title {
  margin-bottom: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #fff;
}

body.is-homepage .category-item__count {
  align-self: center;
  min-height: 36px;
  padding: 7px 12px;
  border-radius: 999px;
  background: rgba(0, 255, 149, 0.08);
  color: hsl(var(--base));
  font-size: 0.85rem;
  font-weight: 600;
}

body.is-homepage .why-choose__item {
  position: relative;
  width: 100%;
  padding: 30px 28px;
  border-radius: 26px;
  overflow: hidden;
}

body.is-homepage .why-choose__item::before {
  content: "";
  position: absolute;
  inset: 0 0 auto auto;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(0, 255, 149, 0.1), transparent 72%);
}

body.is-homepage .why-choose__item:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 255, 149, 0.28);
}

body.is-homepage .why-choose__number {
  position: absolute;
  top: 24px;
  right: 24px;
  color: rgba(255, 255, 255, 0.3);
  font-family: var(--heading-font);
  font-size: 0.95rem;
  letter-spacing: 0.16em;
}

body.is-homepage .why-choose__icon {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  border-radius: 22px;
  border: 1px solid rgba(0, 255, 149, 0.22);
  background: rgba(0, 255, 149, 0.1);
}

body.is-homepage .why-choose__icon img {
  width: 42px;
  height: 42px;
  object-fit: contain;
}

body.is-homepage .why-choose__title {
  margin-bottom: 14px;
  padding-right: 42px;
  color: #fff !important;
  font-size: 1.45rem;
}

body.is-homepage .why-choose__desc {
  color: var(--home-muted);
  line-height: 1.76;
}

body.is-homepage .how-work-section__panel,
body.is-homepage .testimonial-shell,
body.is-homepage .cta-card {
  position: relative;
  border-radius: 32px;
  border: 1px solid var(--home-border);
  box-shadow: var(--home-shadow);
}

body.is-homepage .how-work-section__panel {
  padding: clamp(28px, 4vw, 42px);
  background: linear-gradient(180deg, rgba(10, 18, 29, 0.9), rgba(8, 14, 23, 0.94));
}

body.is-homepage .how-work {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

body.is-homepage .how-work__thumb {
  position: relative;
  padding: 16px;
  border-radius: 28px;
  border: 1px solid var(--home-border);
  background: rgba(255, 255, 255, 0.05);
}

body.is-homepage .how-work__thumb > img {
  display: block;
  width: 100%;
  border-radius: 22px;
}

body.is-homepage .how-work__shape,
body.is-homepage .how-work__shape-two,
body.is-homepage .how-work__shape-three {
  position: absolute;
  display: grid;
  place-items: center;
  width: 58px;
  height: 58px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid var(--home-border);
  background: rgba(7, 14, 23, 0.92);
  box-shadow: var(--home-shadow-soft);
}

body.is-homepage .how-work__shape {
  top: 24px;
  left: 24px;
}

body.is-homepage .how-work__shape-two {
  top: 28%;
  right: 24px;
}

body.is-homepage .how-work__shape-three {
  left: 28px;
  bottom: 24px;
}

body.is-homepage .how-work__shape img,
body.is-homepage .how-work__shape-two img,
body.is-homepage .how-work__shape-three img {
  max-width: 100%;
}

body.is-homepage .how-work__content {
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  align-items: start;
  gap: 18px;
  padding: 24px;
  border-radius: 24px;
}

body.is-homepage .how-work__content:hover {
  transform: translateX(4px);
  border-color: rgba(0, 255, 149, 0.28);
}

body.is-homepage .how-work__step {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.65);
  font-family: var(--heading-font);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

body.is-homepage .how-work__icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, rgba(0, 255, 149, 0.16), rgba(0, 255, 149, 0.06));
  color: hsl(var(--base));
  font-size: 1.4rem;
}

body.is-homepage .how-work__title {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

body.is-homepage .how-work__desc {
  color: var(--home-muted);
  line-height: 1.72;
}

body.is-homepage .testimonial-shell {
  padding: clamp(28px, 4vw, 42px);
  background: linear-gradient(180deg, rgba(10, 18, 29, 0.92), rgba(11, 16, 24, 0.84));
}

body.is-homepage .testimonial-slider {
  margin: 0 -12px;
}

body.is-homepage .testimonails-card {
  padding: 12px;
}

body.is-homepage .testimonial-item {
  position: relative;
  padding: 38px;
  border-radius: 28px;
  overflow: hidden;
}

body.is-homepage .testimonial-item__quote {
  position: absolute;
  top: 24px;
  right: 24px;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: rgba(0, 255, 149, 0.1);
  color: hsl(var(--base));
  font-size: 1.2rem;
}

body.is-homepage .testimonial-item__desc {
  margin: 24px 0 30px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.05rem;
  line-height: 1.9;
}

body.is-homepage .testimonial-item__info {
  display: flex;
  align-items: center;
  gap: 16px;
}

body.is-homepage .testimonial-item__thumb {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--home-border-strong);
}

body.is-homepage .testimonial-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.is-homepage .testimonial-item__name {
  margin-bottom: 5px;
}

body.is-homepage .testimonial-item__designation {
  color: var(--home-muted);
}

body.is-homepage .testimonials .slick-dots {
  display: flex !important;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
}

body.is-homepage .testimonials .slick-dots li {
  width: auto;
  height: auto;
  margin: 0;
}

body.is-homepage .testimonials .slick-dots button {
  width: 12px;
  height: 12px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  font-size: 0;
  background: rgba(255, 255, 255, 0.18);
}

body.is-homepage .testimonials .slick-dots .slick-active button {
  width: 36px;
  background: linear-gradient(135deg, hsl(var(--base)) 0%, hsl(var(--base-l-300)) 100%);
}

body.is-homepage .testimonials .slick-prev,
body.is-homepage .testimonials .slick-next {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid var(--home-border);
  background: rgba(255, 255, 255, 0.05);
  color: #fff;
}

body.is-homepage .testimonials .slick-prev:hover,
body.is-homepage .testimonials .slick-next:hover {
  color: hsl(var(--base));
  border-color: rgba(0, 255, 149, 0.28);
  background: rgba(0, 255, 149, 0.08);
}

body.is-homepage .account__tab {
  padding: 18px;
  border-radius: 28px;
  background: rgba(10, 18, 29, 0.9);
}

body.is-homepage .account__tab .table {
  margin-bottom: 0;
}

body.is-homepage .account__tab thead th {
  padding: 18px 20px;
  border-bottom: 1px solid var(--home-border);
  color: rgba(255, 255, 255, 0.58);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
  font-weight: 600;
  white-space: nowrap;
}

body.is-homepage .account__tab tbody td {
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: var(--home-muted-strong);
  vertical-align: middle;
}

body.is-homepage .account__tab tbody tr:hover {
  background: rgba(255, 255, 255, 0.025);
}

body.is-homepage .account__name a {
  color: #fff;
  font-weight: 600;
}

body.is-homepage .account__tab .time {
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid var(--home-border);
  background: rgba(255, 255, 255, 0.05);
}

body.is-homepage .blog-item {
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
}

body.is-homepage .blog-item:hover {
  transform: translateY(-6px);
  border-color: rgba(0, 255, 149, 0.28);
}

body.is-homepage .blog-item__thumb {
  aspect-ratio: 16 / 11;
  overflow: hidden;
}

body.is-homepage .blog-item__thumb-link,
body.is-homepage .blog-item__thumb img {
  display: block;
  width: 100%;
  height: 100%;
}

body.is-homepage .blog-item__thumb img {
  object-fit: cover;
  transition: transform 0.45s ease;
}

body.is-homepage .blog-item:hover .blog-item__thumb img {
  transform: scale(1.06);
}

body.is-homepage .blog-item__content {
  padding: 26px 24px 28px;
}

body.is-homepage .blog-item__category {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  margin-bottom: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  color: var(--home-muted);
  background: rgba(255, 255, 255, 0.05);
}

body.is-homepage .blog-item__title {
  margin-bottom: 0;
}

body.is-homepage .blog-item__title-link {
  color: #fff;
  font-size: 1.25rem;
  line-height: 1.52;
}

body.is-homepage .blog-item__title-link:hover {
  color: hsl(var(--base));
}

body.is-homepage .cta-card {
  padding: clamp(28px, 4vw, 42px);
  overflow: hidden;
  background: linear-gradient(135deg, rgba(0, 255, 149, 0.16), rgba(9, 17, 28, 0.96) 42%, rgba(11, 19, 31, 0.94) 100%);
  border-color: rgba(0, 255, 149, 0.14);
}

body.is-homepage .cta-card::after {
  content: "";
  position: absolute;
  top: -80px;
  right: -70px;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent 70%);
  opacity: 0.28;
}

body.is-homepage .cta-right,
body.is-homepage .cta-left {
  position: relative;
  z-index: 1;
}

body.is-homepage .cta-right__title {
  margin-bottom: 14px;
  font-size: clamp(2rem, 2.8vw, 3rem);
}

body.is-homepage .cta-right__desc,
body.is-homepage .cta-left__desc {
  color: rgba(255, 255, 255, 0.78);
  line-height: 1.76;
}

body.is-homepage .cta-left {
  padding: 18px;
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(6, 12, 20, 0.34);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

body.is-homepage .cta-left .input-group {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 8px;
  margin-bottom: 12px !important;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.06);
}

body.is-homepage .footer-area {
  padding-bottom: 40px;
}

body.is-homepage .footer-area .py-60 {
  padding-top: 0;
  padding-bottom: 0;
}

body.is-homepage .footer-item {
  padding: clamp(28px, 4vw, 40px);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(9, 15, 24, 0.92), rgba(8, 13, 20, 0.82));
}

body.is-homepage .footer-item > .flex-between,
body.is-homepage .footer-item > .flex-center {
  align-items: center;
  flex-wrap: wrap;
}

body.is-homepage .footer-item__logo {
  margin-bottom: 0;
}

body.is-homepage .footer-menu {
  margin-top: 22px;
  gap: 10px 14px;
  justify-content: flex-start;
}

body.is-homepage .footer-menu.style-right {
  justify-content: flex-end;
  gap: 10px 12px;
}

body.is-homepage .footer-menu__item {
  margin-right: 0;
}

body.is-homepage .footer-menu__link {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: rgba(255, 255, 255, 0.76);
}

body.is-homepage .footer-menu__link:hover {
  color: #fff;
  text-decoration: none;
  background: rgba(0, 255, 149, 0.08);
  border-color: rgba(0, 255, 149, 0.24);
}

body.is-homepage .language-wrapper {
  min-width: 210px;
  padding: 12px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--home-border);
  color: #fff;
}

body.is-homepage .langList_dropdow {
  border: 1px solid var(--home-border);
  border-radius: 18px;
  background: rgba(7, 14, 23, 0.98);
  box-shadow: var(--home-shadow-soft);
  overflow-y: auto;
}

body.is-homepage .bottom-footer {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

body.is-homepage .bottom-footer-text p {
  color: rgba(255, 255, 255, 0.6);
}

body.is-homepage .scroll-top {
  box-shadow: 0 18px 30px rgba(0, 255, 149, 0.22);
}

@media (max-width: 1199px) {
  body.is-homepage .banner-content__title {
    font-size: clamp(2.45rem, 5vw, 4.25rem);
  }

  body.is-homepage .why-choose__title {
    font-size: 1.3rem;
  }
}

@media (max-width: 991px) {
  body.is-homepage .header {
    background: rgba(6, 17, 26, 0.92);
    border-bottom-color: var(--home-border);
  }

  body.is-homepage .nav-menu {
    margin-top: 24px;
  }

  body.is-homepage .nav-item .nav-link {
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  body.is-homepage .banner-section {
    padding-top: 110px;
  }

  body.is-homepage .banner-shell,
  body.is-homepage .how-work-section__panel,
  body.is-homepage .testimonial-shell,
  body.is-homepage .cta-card,
  body.is-homepage .footer-item {
    border-radius: 28px;
  }

  body.is-homepage .client-section {
    margin-top: 0;
  }

  body.is-homepage .account__tab thead {
    display: none;
  }

  body.is-homepage .table--responsive--lg tbody tr {
    margin-bottom: 16px;
    padding: 18px;
    border: 1px solid var(--home-border);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.04);
  }

  body.is-homepage .table--responsive--lg tbody tr td {
    padding: 14px 0 14px 48%;
    border-top: 0;
  }

  body.is-homepage .table--responsive--lg tbody tr td::before {
    color: rgba(255, 255, 255, 0.56);
    font-size: 0.74rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
  }

  body.is-homepage .footer-menu,
  body.is-homepage .footer-menu.style-right {
    justify-content: center;
  }
}

@media (max-width: 767px) {
  body.is-homepage .section-heading__subtitle {
    letter-spacing: 0.12em;
  }

  body.is-homepage .banner-content__button {
    flex-direction: column;
    align-items: stretch;
  }

  body.is-homepage .banner-content__form,
  body.is-homepage .banner-content__video {
    width: 100%;
  }

  body.is-homepage .banner-content__video {
    justify-content: center;
  }

  body.is-homepage .banner-content__rating {
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
  }

  body.is-homepage .how-work__content {
    grid-template-columns: auto 1fr;
  }

  body.is-homepage .how-work__step {
    grid-column: 1 / -1;
    width: fit-content;
    padding: 0 14px;
    height: 38px;
    border-radius: 999px;
  }

  body.is-homepage .testimonial-item {
    padding: 28px 24px;
  }

  body.is-homepage .testimonial-item__quote {
    width: 46px;
    height: 46px;
  }

  body.is-homepage .client-section__inner {
    border-radius: 28px;
  }

  body.is-homepage .cta-left .input-group {
    flex-direction: column;
    border-radius: 22px;
  }

  body.is-homepage .cta-left .btn {
    width: 100%;
  }
}

@media (max-width: 575px) {
  body.is-homepage .banner-shell,
  body.is-homepage .how-work-section__panel,
  body.is-homepage .testimonial-shell,
  body.is-homepage .cta-card,
  body.is-homepage .footer-item {
    padding: 22px;
    border-radius: 24px;
  }

  body.is-homepage .banner-content__form {
    flex-direction: column;
    align-items: stretch;
    border-radius: 22px;
    padding: 16px;
  }

  body.is-homepage .banner-content__form .banner-btn {
    width: 100%;
  }

  body.is-homepage .client-section__inner {
    padding: 20px;
    border-radius: 24px;
  }

  body.is-homepage .category-item,
  body.is-homepage .why-choose__item,
  body.is-homepage .blog-item__content,
  body.is-homepage .account__tab {
    border-radius: 22px;
  }

  body.is-homepage .testimonial-item__desc {
    font-size: 1rem;
  }
}

/* =========================
   Seller Create Pages
   ========================= */

body.route-user-account-listing-create,
body.route-user-account-listing-create-auction {
  --seller-surface: rgba(10, 18, 30, 0.9);
  --seller-surface-soft: rgba(255, 255, 255, 0.04);
  --seller-border: rgba(255, 255, 255, 0.08);
  --seller-border-strong: rgba(255, 255, 255, 0.14);
  --seller-muted: rgba(229, 236, 242, 0.72);
  --seller-text: rgba(255, 255, 255, 0.96);
  --seller-shadow: 0 24px 64px rgba(0, 0, 0, 0.28);
  background:
    radial-gradient(circle at 0% 0%, rgba(0, 255, 149, 0.12), transparent 26%),
    radial-gradient(circle at 100% 12%, rgba(42, 90, 255, 0.12), transparent 24%),
    linear-gradient(180deg, #07131d 0%, #0b1520 38%, #0d121a 100%);
}

body.route-user-account-listing-create .header,
body.route-user-account-listing-create-auction .header {
  background: rgba(6, 14, 22, 0.88);
  border-bottom-color: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

body.route-user-account-listing-create .root,
body.route-user-account-listing-create-auction .root {
  position: relative;
}

body.route-user-account-listing-create .seller-create-page,
body.route-user-account-listing-create-auction .seller-create-page {
  position: relative;
}

body.route-user-account-listing-create .seller-create-page .container,
body.route-user-account-listing-create-auction .seller-create-page .container {
  max-width: 1240px;
}

body.route-user-account-listing-create .seller-create-shell,
body.route-user-account-listing-create-auction .seller-create-shell {
  display: grid;
  gap: 28px;
}

body.route-user-account-listing-create .seller-create-hero,
body.route-user-account-listing-create-auction .seller-create-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.95fr);
  gap: 24px;
  align-items: stretch;
}

body.route-user-account-listing-create .seller-create-hero__content,
body.route-user-account-listing-create .seller-create-hero__aside,
body.route-user-account-listing-create-auction .seller-create-hero__content,
body.route-user-account-listing-create-auction .seller-create-hero__aside,
body.route-user-account-listing-create .seller-create-card,
body.route-user-account-listing-create-auction .seller-create-card {
  border: 1px solid var(--seller-border);
  border-radius: 30px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  box-shadow: var(--seller-shadow);
}

body.route-user-account-listing-create .seller-create-hero__content,
body.route-user-account-listing-create-auction .seller-create-hero__content {
  padding: clamp(28px, 4vw, 42px);
}

body.route-user-account-listing-create .seller-create-hero__aside,
body.route-user-account-listing-create-auction .seller-create-hero__aside {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 3vw, 28px);
}

body.route-user-account-listing-create .seller-create-hero__eyebrow,
body.route-user-account-listing-create-auction .seller-create-hero__eyebrow,
body.route-user-account-listing-create .seller-create-card__eyebrow,
body.route-user-account-listing-create-auction .seller-create-card__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 16px;
  border-radius: 999px;
  color: var(--seller-muted);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--seller-border);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.8rem;
}

body.route-user-account-listing-create .seller-create-hero__title,
body.route-user-account-listing-create-auction .seller-create-hero__title {
  margin: 18px 0 14px;
  color: var(--seller-text);
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

body.route-user-account-listing-create .seller-create-hero__lead,
body.route-user-account-listing-create-auction .seller-create-hero__lead {
  max-width: 720px;
  margin-bottom: 0;
  color: var(--seller-muted);
  line-height: 1.78;
  font-size: 1.02rem;
}

body.route-user-account-listing-create .seller-create-tabs,
body.route-user-account-listing-create-auction .seller-create-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

body.route-user-account-listing-create .seller-create-tab,
body.route-user-account-listing-create-auction .seller-create-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 13px 18px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--seller-border);
  color: rgba(255, 255, 255, 0.82);
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

body.route-user-account-listing-create .seller-create-tab:hover,
body.route-user-account-listing-create-auction .seller-create-tab:hover {
  color: #fff;
  border-color: rgba(0, 255, 149, 0.22);
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-1px);
}

body.route-user-account-listing-create .seller-create-tab.is-active,
body.route-user-account-listing-create-auction .seller-create-tab.is-active {
  background: linear-gradient(135deg, hsl(var(--base)) 0%, hsl(var(--base-l-300)) 100%);
  border-color: transparent;
  color: hsl(var(--black));
  box-shadow: 0 16px 34px rgba(0, 255, 149, 0.2);
}

body.route-user-account-listing-create .seller-create-tab.is-back,
body.route-user-account-listing-create-auction .seller-create-tab.is-back {
  background: rgba(255, 255, 255, 0.03);
}

body.route-user-account-listing-create .seller-create-note,
body.route-user-account-listing-create-auction .seller-create-note,
body.route-user-account-listing-create .seller-create-checklist,
body.route-user-account-listing-create-auction .seller-create-checklist {
  padding: 22px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--seller-border);
}

body.route-user-account-listing-create .seller-create-note__label,
body.route-user-account-listing-create-auction .seller-create-note__label {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 255, 149, 0.1);
  color: hsl(var(--base));
  font-size: 0.82rem;
  font-weight: 600;
}

body.route-user-account-listing-create .seller-create-note__title,
body.route-user-account-listing-create-auction .seller-create-note__title {
  margin: 16px 0 10px;
  color: var(--seller-text);
  font-size: 1.45rem;
}

body.route-user-account-listing-create .seller-create-note p,
body.route-user-account-listing-create-auction .seller-create-note p,
body.route-user-account-listing-create .seller-create-checklist h3,
body.route-user-account-listing-create-auction .seller-create-checklist h3,
body.route-user-account-listing-create .seller-create-card__head p,
body.route-user-account-listing-create-auction .seller-create-card__head p,
body.route-user-account-listing-create .seller-form-section__header p,
body.route-user-account-listing-create-auction .seller-form-section__header p,
body.route-user-account-listing-create .seller-create-submit__content p,
body.route-user-account-listing-create-auction .seller-create-submit__content p {
  color: var(--seller-muted);
}

body.route-user-account-listing-create .seller-create-checklist h3,
body.route-user-account-listing-create-auction .seller-create-checklist h3 {
  margin-bottom: 14px;
  color: var(--seller-text);
  font-size: 1.05rem;
}

body.route-user-account-listing-create .seller-create-checklist__list,
body.route-user-account-listing-create-auction .seller-create-checklist__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

body.route-user-account-listing-create .seller-create-checklist__list li,
body.route-user-account-listing-create-auction .seller-create-checklist__list li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.65;
}

body.route-user-account-listing-create .seller-create-checklist__list li::before,
body.route-user-account-listing-create-auction .seller-create-checklist__list li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: linear-gradient(135deg, hsl(var(--base)) 0%, hsl(var(--base-l-300)) 100%);
  box-shadow: 0 0 0 5px rgba(0, 255, 149, 0.08);
}

body.route-user-account-listing-create .seller-create-alert,
body.route-user-account-listing-create-auction .seller-create-alert {
  padding: 18px 20px;
  border-radius: 20px;
}

body.route-user-account-listing-create .seller-create-alert strong,
body.route-user-account-listing-create-auction .seller-create-alert strong {
  display: block;
  margin-bottom: 10px;
}

body.route-user-account-listing-create .seller-create-card,
body.route-user-account-listing-create-auction .seller-create-card {
  padding: clamp(24px, 4vw, 40px);
}

body.route-user-account-listing-create .seller-create-card__head,
body.route-user-account-listing-create-auction .seller-create-card__head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  padding-bottom: 28px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

body.route-user-account-listing-create .seller-create-card__head h2,
body.route-user-account-listing-create-auction .seller-create-card__head h2 {
  margin: 16px 0 12px;
  color: var(--seller-text);
  font-size: clamp(1.6rem, 2.6vw, 2.35rem);
  line-height: 1.15;
}

body.route-user-account-listing-create .seller-create-card__chips,
body.route-user-account-listing-create-auction .seller-create-card__chips {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
  max-width: 340px;
}

body.route-user-account-listing-create .seller-create-chip,
body.route-user-account-listing-create-auction .seller-create-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--seller-border);
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.88rem;
  transition: transform 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

body.route-user-account-listing-create .seller-form-section,
body.route-user-account-listing-create-auction .seller-form-section {
  padding: 28px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

body.route-user-account-listing-create .seller-form-section:first-of-type,
body.route-user-account-listing-create-auction .seller-form-section:first-of-type {
  padding-top: 8px;
  border-top: 0;
}

body.route-user-account-listing-create .seller-form-section__header,
body.route-user-account-listing-create-auction .seller-form-section__header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 24px;
}

body.route-user-account-listing-create .seller-form-section__step,
body.route-user-account-listing-create-auction .seller-form-section__step {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: rgba(0, 255, 149, 0.12);
  color: hsl(var(--base));
  font-family: var(--heading-font);
  font-weight: 700;
  letter-spacing: 0.08em;
  flex-shrink: 0;
}

body.route-user-account-listing-create .seller-form-section__header h3,
body.route-user-account-listing-create-auction .seller-form-section__header h3 {
  margin: 0 0 8px;
  color: var(--seller-text);
  font-size: 1.32rem;
}

body.route-user-account-listing-create .seller-field,
body.route-user-account-listing-create-auction .seller-field {
  height: 100%;
}

body.route-user-account-listing-create .seller-field .form-label,
body.route-user-account-listing-create-auction .seller-field .form-label {
  display: block;
  margin-bottom: 10px;
  color: var(--seller-text);
  font-weight: 600;
}

body.route-user-account-listing-create .seller-field__hint,
body.route-user-account-listing-create-auction .seller-field__hint {
  display: block;
  margin-top: 10px;
  color: var(--seller-muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

body.route-user-account-listing-create .seller-create-page .form--control,
body.route-user-account-listing-create-auction .seller-create-page .form--control {
  min-height: 56px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--seller-border);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  transition: border-color 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

body.route-user-account-listing-create .seller-create-page select.form--control option,
body.route-user-account-listing-create-auction .seller-create-page select.form--control option {
  background: #0d1722;
  color: #fff;
}

body.route-user-account-listing-create .seller-create-page textarea.form--control,
body.route-user-account-listing-create-auction .seller-create-page textarea.form--control {
  min-height: 180px;
  resize: vertical;
}

body.route-user-account-listing-create .seller-create-page .form--control::placeholder,
body.route-user-account-listing-create-auction .seller-create-page .form--control::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

body.route-user-account-listing-create .seller-create-page .form--control:focus,
body.route-user-account-listing-create-auction .seller-create-page .form--control:focus {
  border-color: rgba(0, 255, 149, 0.3);
  box-shadow: 0 0 0 4px rgba(0, 255, 149, 0.08);
}

body.route-user-account-listing-create .seller-create-page .form--control[type="file"],
body.route-user-account-listing-create-auction .seller-create-page .form--control[type="file"] {
  min-height: 58px;
  padding: 10px 14px;
}

body.route-user-account-listing-create .seller-create-page .form--control[type="file"]::file-selector-button,
body.route-user-account-listing-create-auction .seller-create-page .form--control[type="file"]::file-selector-button {
  margin-right: 14px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(0, 255, 149, 0.2);
  background: rgba(0, 255, 149, 0.12);
  color: hsl(var(--base));
}

body.route-user-account-listing-create .seller-input-group,
body.route-user-account-listing-create-auction .seller-input-group {
  align-items: stretch;
}

body.route-user-account-listing-create .seller-create-page .input-group-text,
body.route-user-account-listing-create-auction .seller-create-page .input-group-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 84px;
  padding: 0 16px;
  border-radius: 16px;
  border: 1px solid var(--seller-border);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
}

body.route-user-account-listing-create .seller-duration-fields,
body.route-user-account-listing-create-auction .seller-duration-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body.route-user-account-listing-create .seller-toggle,
body.route-user-account-listing-create-auction .seller-toggle {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.035);
  border: 1px solid var(--seller-border);
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

body.route-user-account-listing-create .seller-toggle p,
body.route-user-account-listing-create-auction .seller-toggle p {
  margin-bottom: 0;
  color: var(--seller-muted);
  line-height: 1.65;
}

body.route-user-account-listing-create .seller-toggle .form-check,
body.route-user-account-listing-create-auction .seller-toggle .form-check {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

body.route-user-account-listing-create .seller-toggle .form-check-input,
body.route-user-account-listing-create-auction .seller-toggle .form-check-input {
  width: 1.15rem;
  height: 1.15rem;
  margin-top: 0;
  border-radius: 7px;
  border-color: var(--seller-border-strong);
  background-color: rgba(255, 255, 255, 0.04);
}

body.route-user-account-listing-create .seller-toggle .form-check-input:checked,
body.route-user-account-listing-create-auction .seller-toggle .form-check-input:checked {
  background-color: hsl(var(--base));
  border-color: hsl(var(--base));
}

body.route-user-account-listing-create .seller-toggle .form-check-label,
body.route-user-account-listing-create-auction .seller-toggle .form-check-label {
  margin-bottom: 0;
  color: var(--seller-text);
  font-weight: 600;
}

body.route-user-account-listing-create .seller-create-submit,
body.route-user-account-listing-create-auction .seller-create-submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-top: 14px;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body.route-user-account-listing-create .seller-create-submit__content span,
body.route-user-account-listing-create-auction .seller-create-submit__content span {
  display: block;
  margin-bottom: 6px;
  color: var(--seller-text);
  font-weight: 700;
}

body.route-user-account-listing-create .seller-create-submit__actions,
body.route-user-account-listing-create-auction .seller-create-submit__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

body.route-user-account-listing-create .seller-create-submit .btn,
body.route-user-account-listing-create-auction .seller-create-submit .btn {
  min-height: 56px;
  padding: 14px 22px;
  border-radius: 999px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
}

body.route-user-account-listing-create .seller-create-submit .btn--dark,
body.route-user-account-listing-create-auction .seller-create-submit .btn--dark {
  background: rgba(255, 255, 255, 0.05) !important;
  border: 1px solid var(--seller-border) !important;
  color: #fff !important;
}

body.route-user-account-listing-create .seller-create-submit .btn--dark:hover,
body.route-user-account-listing-create-auction .seller-create-submit .btn--dark:hover {
  background: rgba(255, 255, 255, 0.08) !important;
}

body.route-user-account-listing-create .seller-create-submit__primary,
body.route-user-account-listing-create-auction .seller-create-submit__primary {
  min-width: 240px;
  box-shadow: 0 18px 36px rgba(0, 255, 149, 0.22);
}

body.route-user-account-listing-create .seller-create-submit__primary:hover,
body.route-user-account-listing-create-auction .seller-create-submit__primary:hover {
  box-shadow: 0 22px 40px rgba(0, 255, 149, 0.28);
}

@media (max-width: 1199px) {
  body.route-user-account-listing-create .seller-create-hero,
  body.route-user-account-listing-create-auction .seller-create-hero {
    grid-template-columns: 1fr;
  }

  body.route-user-account-listing-create .seller-create-card__head,
  body.route-user-account-listing-create-auction .seller-create-card__head {
    flex-direction: column;
  }

  body.route-user-account-listing-create .seller-create-card__chips,
  body.route-user-account-listing-create-auction .seller-create-card__chips {
    justify-content: flex-start;
    max-width: none;
  }
}

@media (max-width: 991px) {
  body.route-user-account-listing-create .seller-create-page .container,
  body.route-user-account-listing-create-auction .seller-create-page .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  body.route-user-account-listing-create .seller-create-hero__content,
  body.route-user-account-listing-create-auction .seller-create-hero__content,
  body.route-user-account-listing-create .seller-create-card,
  body.route-user-account-listing-create-auction .seller-create-card {
    border-radius: 26px;
  }

  body.route-user-account-listing-create .seller-create-submit,
  body.route-user-account-listing-create-auction .seller-create-submit,
  body.route-user-account-listing-create .seller-toggle,
  body.route-user-account-listing-create-auction .seller-toggle {
    flex-direction: column;
    align-items: stretch;
  }

  body.route-user-account-listing-create .seller-toggle .form-check,
  body.route-user-account-listing-create-auction .seller-toggle .form-check {
    min-width: 0;
  }

  body.route-user-account-listing-create .seller-create-submit__actions,
  body.route-user-account-listing-create-auction .seller-create-submit__actions {
    justify-content: stretch;
  }

  body.route-user-account-listing-create .seller-create-submit__actions .btn,
  body.route-user-account-listing-create-auction .seller-create-submit__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  body.route-user-account-listing-create .seller-create-tabs,
  body.route-user-account-listing-create-auction .seller-create-tabs {
    display: grid;
  }

  body.route-user-account-listing-create .seller-create-tab,
  body.route-user-account-listing-create-auction .seller-create-tab {
    width: 100%;
    justify-content: center;
  }

  body.route-user-account-listing-create .seller-form-section__header,
  body.route-user-account-listing-create-auction .seller-form-section__header {
    flex-direction: column;
  }
}

@media (max-width: 575px) {
  body.route-user-account-listing-create .seller-create-hero__content,
  body.route-user-account-listing-create-auction .seller-create-hero__content,
  body.route-user-account-listing-create .seller-create-hero__aside,
  body.route-user-account-listing-create-auction .seller-create-hero__aside,
  body.route-user-account-listing-create .seller-create-card,
  body.route-user-account-listing-create-auction .seller-create-card {
    padding: 22px;
    border-radius: 22px;
  }

  body.route-user-account-listing-create .seller-duration-fields,
  body.route-user-account-listing-create-auction .seller-duration-fields {
    grid-template-columns: 1fr;
  }

  body.route-user-account-listing-create .seller-create-hero__title,
  body.route-user-account-listing-create-auction .seller-create-hero__title {
    font-size: 2rem;
  }
}

/* =========================
   Seller Create Simple Board
   ========================= */

body.route-user-account-listing-create,
body.route-user-account-listing-create-auction {
  --seller-board-bg: #738991;
  --seller-board-panel: #46515b;
  --seller-board-panel-dark: #3f4a54;
  --seller-board-border: #5e7079;
  --seller-board-border-soft: #74858d;
  --seller-board-text: #edf3f5;
  --seller-board-muted: #b6c3c8;
  --seller-board-accent: #58ccb1;
  --seller-board-accent-dark: #46b99f;
  background: linear-gradient(180deg, #70868e 0%, #6b8189 100%);
}

body.route-user-account-listing-create .header,
body.route-user-account-listing-create-auction .header {
  background: #36454f;
  border-bottom: 1px solid rgba(214, 227, 232, 0.18);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
}

body.route-user-account-listing-create .seller-create-page,
body.route-user-account-listing-create-auction .seller-create-page {
  padding-top: 56px !important;
  padding-bottom: 72px !important;
}

body.route-user-account-listing-create .seller-create-page .container,
body.route-user-account-listing-create-auction .seller-create-page .container {
  max-width: 1120px;
}

body.route-user-account-listing-create .seller-create-shell,
body.route-user-account-listing-create-auction .seller-create-shell {
  gap: 14px;
}

body.route-user-account-listing-create .seller-create-hero,
body.route-user-account-listing-create-auction .seller-create-hero {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 320px);
  gap: 14px;
  align-items: start;
}

body.route-user-account-listing-create .seller-create-hero__content,
body.route-user-account-listing-create-auction .seller-create-hero__content,
body.route-user-account-listing-create .seller-create-card,
body.route-user-account-listing-create-auction .seller-create-card,
body.route-user-account-listing-create .seller-create-note,
body.route-user-account-listing-create-auction .seller-create-note,
body.route-user-account-listing-create .seller-create-checklist,
body.route-user-account-listing-create-auction .seller-create-checklist,
body.route-user-account-listing-create .seller-toggle,
body.route-user-account-listing-create-auction .seller-toggle {
  border-radius: 3px;
  border: 1px solid var(--seller-board-border);
  background: var(--seller-board-panel);
  box-shadow: none;
}

body.route-user-account-listing-create .seller-create-hero__content,
body.route-user-account-listing-create-auction .seller-create-hero__content {
  display: flex;
  flex-direction: column;
  padding: 14px 16px 16px;
}

body.route-user-account-listing-create .seller-create-hero__aside,
body.route-user-account-listing-create-auction .seller-create-hero__aside {
  display: grid;
  gap: 14px;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

body.route-user-account-listing-create .seller-create-tabs,
body.route-user-account-listing-create-auction .seller-create-tabs {
  order: -1;
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin: 0 0 16px;
  padding: 4px;
  border-radius: 3px;
  border: 1px solid #97aab0;
  background: #b6c6cb;
}

body.route-user-account-listing-create .seller-create-tab,
body.route-user-account-listing-create-auction .seller-create-tab {
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 2px;
  border: 1px solid #6c7d86;
  background: #64747d;
  color: #f4f7f8;
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.2;
  transform: none;
  box-shadow: none;
}

body.route-user-account-listing-create .seller-create-tab:hover,
body.route-user-account-listing-create-auction .seller-create-tab:hover {
  color: #fff;
  border-color: #5b6c75;
  background: #57666f;
  transform: none;
}

body.route-user-account-listing-create .seller-create-tab.is-active,
body.route-user-account-listing-create-auction .seller-create-tab.is-active {
  border-color: #dae5e8;
  background: #eef4f5;
  color: #2f3c45;
  box-shadow: none;
}

body.route-user-account-listing-create .seller-create-tab.is-back,
body.route-user-account-listing-create-auction .seller-create-tab.is-back {
  margin-left: auto;
  background: #4d5b65;
}

body.route-user-account-listing-create .seller-create-hero__eyebrow,
body.route-user-account-listing-create-auction .seller-create-hero__eyebrow,
body.route-user-account-listing-create .seller-create-card__eyebrow,
body.route-user-account-listing-create-auction .seller-create-card__eyebrow {
  min-height: auto;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #aabac0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

body.route-user-account-listing-create .seller-create-hero__title,
body.route-user-account-listing-create-auction .seller-create-hero__title {
  margin: 10px 0 8px;
  color: var(--seller-board-text);
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: 0;
  text-transform: uppercase;
}

body.route-user-account-listing-create .seller-create-hero__lead,
body.route-user-account-listing-create-auction .seller-create-hero__lead,
body.route-user-account-listing-create .seller-create-note p,
body.route-user-account-listing-create-auction .seller-create-note p,
body.route-user-account-listing-create .seller-create-checklist h3,
body.route-user-account-listing-create-auction .seller-create-checklist h3,
body.route-user-account-listing-create .seller-create-card__head p,
body.route-user-account-listing-create-auction .seller-create-card__head p,
body.route-user-account-listing-create .seller-form-section__header p,
body.route-user-account-listing-create-auction .seller-form-section__header p,
body.route-user-account-listing-create .seller-create-submit__content p,
body.route-user-account-listing-create-auction .seller-create-submit__content p {
  color: var(--seller-board-muted);
}

body.route-user-account-listing-create .seller-create-hero__lead,
body.route-user-account-listing-create-auction .seller-create-hero__lead {
  max-width: none;
  font-size: 0.92rem;
  line-height: 1.6;
}

body.route-user-account-listing-create .seller-create-note,
body.route-user-account-listing-create-auction .seller-create-note,
body.route-user-account-listing-create .seller-create-checklist,
body.route-user-account-listing-create-auction .seller-create-checklist {
  padding: 14px 16px;
}

body.route-user-account-listing-create .seller-create-note__label,
body.route-user-account-listing-create-auction .seller-create-note__label {
  min-height: 28px;
  padding: 4px 9px;
  border-radius: 2px;
  background: rgba(88, 204, 177, 0.16);
  color: #9de4d2;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

body.route-user-account-listing-create .seller-create-note__title,
body.route-user-account-listing-create-auction .seller-create-note__title {
  margin: 10px 0 8px;
  color: var(--seller-board-text);
  font-size: 1rem;
  line-height: 1.35;
  text-transform: uppercase;
}

body.route-user-account-listing-create .seller-create-checklist h3,
body.route-user-account-listing-create-auction .seller-create-checklist h3 {
  margin-bottom: 10px;
  color: var(--seller-board-text);
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

body.route-user-account-listing-create .seller-create-checklist__list,
body.route-user-account-listing-create-auction .seller-create-checklist__list {
  gap: 10px;
}

body.route-user-account-listing-create .seller-create-checklist__list li,
body.route-user-account-listing-create-auction .seller-create-checklist__list li {
  padding-left: 18px;
  color: #d8e3e7;
  font-size: 0.84rem;
  line-height: 1.55;
}

body.route-user-account-listing-create .seller-create-checklist__list li::before,
body.route-user-account-listing-create-auction .seller-create-checklist__list li::before {
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--seller-board-accent);
  box-shadow: none;
}

body.route-user-account-listing-create .seller-create-alert,
body.route-user-account-listing-create-auction .seller-create-alert {
  padding: 14px 16px;
  border-radius: 3px;
  border-width: 1px;
}

body.route-user-account-listing-create .seller-create-card,
body.route-user-account-listing-create-auction .seller-create-card {
  padding: 18px 20px 20px;
}

body.route-user-account-listing-create .seller-create-card__head,
body.route-user-account-listing-create-auction .seller-create-card__head {
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  padding-bottom: 14px;
  margin-bottom: 2px;
  border-bottom: 1px solid var(--seller-board-border-soft);
}

body.route-user-account-listing-create .seller-create-card__head h2,
body.route-user-account-listing-create-auction .seller-create-card__head h2 {
  margin: 8px 0 6px;
  color: var(--seller-board-text);
  font-size: 1.32rem;
  line-height: 1.25;
  text-transform: uppercase;
}

body.route-user-account-listing-create .seller-create-card__chips,
body.route-user-account-listing-create-auction .seller-create-card__chips {
  justify-content: flex-start;
  max-width: none;
}

body.route-user-account-listing-create .seller-create-chip,
body.route-user-account-listing-create-auction .seller-create-chip {
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 2px;
  border: 1px solid var(--seller-board-border);
  background: var(--seller-board-panel-dark);
  color: #d3dee2;
  font-size: 0.79rem;
}

body.route-user-account-listing-create .seller-form-section,
body.route-user-account-listing-create-auction .seller-form-section {
  padding: 18px 0;
  border-top: 1px solid var(--seller-board-border-soft);
}

body.route-user-account-listing-create .seller-form-section:first-of-type,
body.route-user-account-listing-create-auction .seller-form-section:first-of-type {
  padding-top: 10px;
}

body.route-user-account-listing-create .seller-form-section__header,
body.route-user-account-listing-create-auction .seller-form-section__header {
  gap: 12px;
  margin-bottom: 16px;
}

body.route-user-account-listing-create .seller-form-section__step,
body.route-user-account-listing-create-auction .seller-form-section__step {
  width: 36px;
  height: 36px;
  border: 1px solid var(--seller-board-border);
  border-radius: 2px;
  background: #394650;
  color: #bdd0d6;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}

body.route-user-account-listing-create .seller-form-section__header h3,
body.route-user-account-listing-create-auction .seller-form-section__header h3 {
  margin: 0 0 5px;
  color: var(--seller-board-text);
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

body.route-user-account-listing-create .seller-form-section__header p,
body.route-user-account-listing-create-auction .seller-form-section__header p {
  font-size: 0.84rem;
  line-height: 1.55;
}

body.route-user-account-listing-create .seller-field .form-label,
body.route-user-account-listing-create-auction .seller-field .form-label {
  margin-bottom: 8px;
  color: var(--seller-board-text);
  font-size: 0.9rem;
  font-weight: 600;
}

body.route-user-account-listing-create .seller-field__hint,
body.route-user-account-listing-create-auction .seller-field__hint {
  margin-top: 8px;
  color: #9eafb6;
  font-size: 0.77rem;
  line-height: 1.55;
}

body.route-user-account-listing-create .seller-create-page .form--control,
body.route-user-account-listing-create-auction .seller-create-page .form--control,
body.route-user-account-listing-create .seller-create-page .input-group-text,
body.route-user-account-listing-create-auction .seller-create-page .input-group-text {
  border-radius: 2px;
  border-color: var(--seller-board-border);
  background: var(--seller-board-panel-dark);
  color: #eff5f7;
  box-shadow: none;
}

body.route-user-account-listing-create .seller-create-page .form--control,
body.route-user-account-listing-create-auction .seller-create-page .form--control {
  min-height: 46px;
  padding: 11px 13px;
}

body.route-user-account-listing-create .seller-create-page textarea.form--control,
body.route-user-account-listing-create-auction .seller-create-page textarea.form--control {
  min-height: 240px;
}

body.route-user-account-listing-create .seller-create-page .form--control::placeholder,
body.route-user-account-listing-create-auction .seller-create-page .form--control::placeholder {
  color: rgba(229, 238, 242, 0.45);
}

body.route-user-account-listing-create .seller-create-page .form--control:focus,
body.route-user-account-listing-create-auction .seller-create-page .form--control:focus {
  border-color: #87b7c2;
  box-shadow: 0 0 0 1px rgba(135, 183, 194, 0.24);
  background: #44505a;
}

body.route-user-account-listing-create .seller-create-page .form--control[type="file"],
body.route-user-account-listing-create-auction .seller-create-page .form--control[type="file"] {
  min-height: 48px;
  padding-top: 8px;
  padding-bottom: 8px;
}

body.route-user-account-listing-create .seller-create-page .form--control[type="file"]::file-selector-button,
body.route-user-account-listing-create-auction .seller-create-page .form--control[type="file"]::file-selector-button {
  padding: 8px 10px;
  border-radius: 2px;
  border: 1px solid #73848c;
  background: #56656f;
  color: #eef4f6;
}

body.route-user-account-listing-create .seller-create-page select.form--control option,
body.route-user-account-listing-create-auction .seller-create-page select.form--control option {
  background: #3f4a54;
}

body.route-user-account-listing-create .seller-create-page .input-group-text,
body.route-user-account-listing-create-auction .seller-create-page .input-group-text {
  min-width: 74px;
  padding: 0 12px;
  color: #dce7ea;
}

body.route-user-account-listing-create .seller-duration-fields,
body.route-user-account-listing-create-auction .seller-duration-fields {
  gap: 8px;
}

body.route-user-account-listing-create .seller-toggle,
body.route-user-account-listing-create-auction .seller-toggle {
  gap: 14px;
  padding: 14px 15px;
}

body.route-user-account-listing-create .seller-toggle p,
body.route-user-account-listing-create-auction .seller-toggle p {
  color: var(--seller-board-muted);
  font-size: 0.82rem;
  line-height: 1.55;
}

body.route-user-account-listing-create .seller-toggle .form-check,
body.route-user-account-listing-create-auction .seller-toggle .form-check {
  min-width: 210px;
}

body.route-user-account-listing-create .seller-toggle .form-check-input,
body.route-user-account-listing-create-auction .seller-toggle .form-check-input {
  width: 1rem;
  height: 1rem;
  border-radius: 2px;
  border-color: #83949b;
  background-color: #32404a;
}

body.route-user-account-listing-create .seller-toggle .form-check-input:checked,
body.route-user-account-listing-create-auction .seller-toggle .form-check-input:checked {
  background-color: var(--seller-board-accent);
  border-color: var(--seller-board-accent);
}

body.route-user-account-listing-create .seller-toggle .form-check-label,
body.route-user-account-listing-create-auction .seller-toggle .form-check-label {
  color: var(--seller-board-text);
  font-size: 0.88rem;
}

body.route-user-account-listing-create .seller-create-submit,
body.route-user-account-listing-create-auction .seller-create-submit {
  gap: 16px;
  margin-top: 0;
  padding-top: 18px;
  border-top: 1px solid var(--seller-board-border-soft);
}

body.route-user-account-listing-create .seller-create-submit__content span,
body.route-user-account-listing-create-auction .seller-create-submit__content span {
  color: var(--seller-board-text);
  font-size: 0.96rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

body.route-user-account-listing-create .seller-create-submit__content p,
body.route-user-account-listing-create-auction .seller-create-submit__content p {
  font-size: 0.83rem;
  line-height: 1.55;
}

body.route-user-account-listing-create .seller-create-submit .btn,
body.route-user-account-listing-create-auction .seller-create-submit .btn {
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 2px;
  font-weight: 700;
  letter-spacing: 0.01em;
  transform: none !important;
  box-shadow: none !important;
}

body.route-user-account-listing-create .seller-create-submit .btn--dark,
body.route-user-account-listing-create-auction .seller-create-submit .btn--dark {
  background: #4f5c66 !important;
  border-color: #6b7c84 !important;
}

body.route-user-account-listing-create .seller-create-submit .btn--dark:hover,
body.route-user-account-listing-create-auction .seller-create-submit .btn--dark:hover {
  background: #5a6872 !important;
}

body.route-user-account-listing-create .seller-create-submit__primary,
body.route-user-account-listing-create-auction .seller-create-submit__primary {
  min-width: 190px;
  background: var(--seller-board-accent) !important;
  border-color: var(--seller-board-accent-dark) !important;
  color: #122126 !important;
}

body.route-user-account-listing-create .seller-create-submit__primary:hover,
body.route-user-account-listing-create-auction .seller-create-submit__primary:hover {
  background: var(--seller-board-accent-dark) !important;
  border-color: #38aa91 !important;
}

@media (max-width: 991px) {
  body.route-user-account-listing-create .seller-create-hero,
  body.route-user-account-listing-create-auction .seller-create-hero {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767px) {
  body.route-user-account-listing-create .seller-create-tabs,
  body.route-user-account-listing-create-auction .seller-create-tabs {
    display: grid;
  }

  body.route-user-account-listing-create .seller-create-tab,
  body.route-user-account-listing-create-auction .seller-create-tab {
    width: 100%;
    justify-content: center;
  }

  body.route-user-account-listing-create .seller-create-tab.is-back,
  body.route-user-account-listing-create-auction .seller-create-tab.is-back {
    margin-left: 0;
  }
}

@media (max-width: 575px) {
  body.route-user-account-listing-create .seller-create-page,
  body.route-user-account-listing-create-auction .seller-create-page {
    padding-top: 42px !important;
    padding-bottom: 54px !important;
  }

  body.route-user-account-listing-create .seller-create-hero__content,
  body.route-user-account-listing-create-auction .seller-create-hero__content,
  body.route-user-account-listing-create .seller-create-card,
  body.route-user-account-listing-create-auction .seller-create-card,
  body.route-user-account-listing-create .seller-create-note,
  body.route-user-account-listing-create-auction .seller-create-note,
  body.route-user-account-listing-create .seller-create-checklist,
  body.route-user-account-listing-create-auction .seller-create-checklist {
    padding-left: 14px;
    padding-right: 14px;
  }

  body.route-user-account-listing-create .seller-create-hero__title,
  body.route-user-account-listing-create-auction .seller-create-hero__title {
    font-size: 1.5rem;
  }
}

/* =========================
   Seller Create Premium Refresh
   ========================= */

body.route-user-account-listing-create,
body.route-user-account-listing-create-auction {
  --seller-clean-bg: #091017;
  --seller-clean-panel: rgba(11, 19, 27, 0.92);
  --seller-clean-panel-soft: rgba(15, 25, 35, 0.96);
  --seller-clean-panel-strong: #101b24;
  --seller-clean-border: rgba(202, 219, 225, 0.12);
  --seller-clean-border-strong: rgba(202, 219, 225, 0.2);
  --seller-clean-text: #eef5f7;
  --seller-clean-muted: #9aadb6;
  --seller-clean-muted-strong: #c6d4d9;
  --seller-clean-accent: #80ddc7;
  --seller-clean-accent-strong: #63c9b2;
  background:
    radial-gradient(circle at top left, rgba(128, 221, 199, 0.14), transparent 28%),
    radial-gradient(circle at top right, rgba(78, 160, 197, 0.16), transparent 24%),
    linear-gradient(180deg, #091018 0%, #0c141c 100%);
}

body.route-user-account-listing-create .header,
body.route-user-account-listing-create-auction .header {
  background: rgba(8, 14, 20, 0.9);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

body.route-user-account-listing-create .seller-create-page,
body.route-user-account-listing-create-auction .seller-create-page {
  padding-top: 58px !important;
  padding-bottom: 84px !important;
}

body.route-user-account-listing-create .seller-create-page .container,
body.route-user-account-listing-create-auction .seller-create-page .container {
  max-width: 1080px;
}

body.route-user-account-listing-create .seller-create-shell,
body.route-user-account-listing-create-auction .seller-create-shell {
  gap: 20px;
}

body.route-user-account-listing-create .seller-create-hero,
body.route-user-account-listing-create-auction .seller-create-hero {
  display: block;
}

body.route-user-account-listing-create .seller-create-hero__content,
body.route-user-account-listing-create-auction .seller-create-hero__content,
body.route-user-account-listing-create .seller-create-card,
body.route-user-account-listing-create-auction .seller-create-card {
  border-radius: 28px;
  border: 1px solid var(--seller-clean-border);
  background: linear-gradient(180deg, rgba(15, 24, 34, 0.98), rgba(10, 17, 24, 0.95));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

body.route-user-account-listing-create .seller-create-hero__content,
body.route-user-account-listing-create-auction .seller-create-hero__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: clamp(24px, 4vw, 34px);
}

body.route-user-account-listing-create .seller-create-tabs,
body.route-user-account-listing-create-auction .seller-create-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
}

body.route-user-account-listing-create .seller-create-tab,
body.route-user-account-listing-create-auction .seller-create-tab {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 12px 16px;
  border-radius: 15px;
  border: 1px solid var(--seller-clean-border);
  background: rgba(255, 255, 255, 0.03);
  color: var(--seller-clean-muted-strong);
  font-size: 0.93rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, transform 0.2s ease, color 0.2s ease;
}

body.route-user-account-listing-create .seller-create-tab:hover,
body.route-user-account-listing-create-auction .seller-create-tab:hover {
  color: #fff;
  border-color: rgba(128, 221, 199, 0.34);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

body.route-user-account-listing-create .seller-create-tab.is-active,
body.route-user-account-listing-create-auction .seller-create-tab.is-active {
  border-color: rgba(128, 221, 199, 0.55);
  background: rgba(128, 221, 199, 0.12);
  color: #fff;
}

body.route-user-account-listing-create .seller-create-tab.is-back,
body.route-user-account-listing-create-auction .seller-create-tab.is-back {
  margin-left: auto;
}

body.route-user-account-listing-create .seller-create-hero__eyebrow,
body.route-user-account-listing-create-auction .seller-create-hero__eyebrow,
body.route-user-account-listing-create .seller-create-card__eyebrow,
body.route-user-account-listing-create-auction .seller-create-card__eyebrow {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 34px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--seller-clean-muted);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

body.route-user-account-listing-create .seller-create-hero__headline,
body.route-user-account-listing-create-auction .seller-create-hero__headline {
  display: grid;
  gap: 10px;
}

body.route-user-account-listing-create .seller-create-hero__title,
body.route-user-account-listing-create-auction .seller-create-hero__title {
  margin: 0;
  color: var(--seller-clean-text);
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.04;
  letter-spacing: -0.04em;
  text-transform: none;
}

body.route-user-account-listing-create .seller-create-hero__lead,
body.route-user-account-listing-create-auction .seller-create-hero__lead {
  max-width: 700px;
  margin: 0;
  color: var(--seller-clean-muted);
  font-size: 1rem;
  line-height: 1.7;
}

body.route-user-account-listing-create .seller-create-hero__meta,
body.route-user-account-listing-create-auction .seller-create-hero__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

body.route-user-account-listing-create .seller-create-hero__pill,
body.route-user-account-listing-create-auction .seller-create-hero__pill {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(128, 221, 199, 0.12);
  border: 1px solid rgba(128, 221, 199, 0.18);
  color: var(--seller-clean-accent);
  font-size: 0.88rem;
  font-weight: 700;
}

body.route-user-account-listing-create .seller-create-hero__note,
body.route-user-account-listing-create-auction .seller-create-hero__note,
body.route-user-account-listing-create .seller-create-card__head p,
body.route-user-account-listing-create-auction .seller-create-card__head p,
body.route-user-account-listing-create .seller-form-section__header p,
body.route-user-account-listing-create-auction .seller-form-section__header p,
body.route-user-account-listing-create .seller-field__hint,
body.route-user-account-listing-create-auction .seller-field__hint,
body.route-user-account-listing-create .seller-create-submit__content p,
body.route-user-account-listing-create-auction .seller-create-submit__content p,
body.route-user-account-listing-create .seller-toggle p,
body.route-user-account-listing-create-auction .seller-toggle p,
body.route-user-account-listing-create .seller-editor__footer,
body.route-user-account-listing-create-auction .seller-editor__footer {
  color: var(--seller-clean-muted);
}

body.route-user-account-listing-create .seller-create-alert,
body.route-user-account-listing-create-auction .seller-create-alert {
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 120, 120, 0.22);
  background: rgba(88, 18, 24, 0.58);
}

body.route-user-account-listing-create .seller-create-alert strong,
body.route-user-account-listing-create-auction .seller-create-alert strong {
  display: block;
  margin-bottom: 8px;
  color: #fff4f4;
}

body.route-user-account-listing-create .seller-create-card,
body.route-user-account-listing-create-auction .seller-create-card {
  padding: clamp(24px, 4vw, 34px);
}

body.route-user-account-listing-create .seller-create-card__head,
body.route-user-account-listing-create-auction .seller-create-card__head {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 4px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

body.route-user-account-listing-create .seller-create-card__head h2,
body.route-user-account-listing-create-auction .seller-create-card__head h2 {
  margin: 0;
  color: var(--seller-clean-text);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1.18;
  text-transform: none;
}

body.route-user-account-listing-create .seller-form-section,
body.route-user-account-listing-create-auction .seller-form-section {
  padding: 24px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body.route-user-account-listing-create .seller-form-section:first-of-type,
body.route-user-account-listing-create-auction .seller-form-section:first-of-type {
  padding-top: 10px;
  border-top: 0;
}

body.route-user-account-listing-create .seller-form-section__header,
body.route-user-account-listing-create-auction .seller-form-section__header {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  margin-bottom: 20px;
}

body.route-user-account-listing-create .seller-form-section__step,
body.route-user-account-listing-create-auction .seller-form-section__step {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--seller-clean-accent);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

body.route-user-account-listing-create .seller-form-section__header h3,
body.route-user-account-listing-create-auction .seller-form-section__header h3 {
  margin: 0 0 6px;
  color: var(--seller-clean-text);
  font-size: 1.16rem;
  line-height: 1.3;
  text-transform: none;
}

body.route-user-account-listing-create .seller-form-section__header p,
body.route-user-account-listing-create-auction .seller-form-section__header p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
}

body.route-user-account-listing-create .seller-field,
body.route-user-account-listing-create-auction .seller-field {
  height: 100%;
}

body.route-user-account-listing-create .seller-label-row,
body.route-user-account-listing-create-auction .seller-label-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

body.route-user-account-listing-create .seller-label-row .form-label,
body.route-user-account-listing-create-auction .seller-label-row .form-label {
  margin-bottom: 0;
}

body.route-user-account-listing-create .seller-label-note,
body.route-user-account-listing-create-auction .seller-label-note {
  color: var(--seller-clean-muted);
  font-size: 0.82rem;
  white-space: nowrap;
}

body.route-user-account-listing-create .seller-field .form-label,
body.route-user-account-listing-create-auction .seller-field .form-label {
  display: block;
  margin-bottom: 10px;
  color: var(--seller-clean-text);
  font-size: 0.94rem;
  font-weight: 600;
}

body.route-user-account-listing-create .seller-field__hint,
body.route-user-account-listing-create-auction .seller-field__hint {
  display: block;
  margin-top: 10px;
  font-size: 0.84rem;
  line-height: 1.55;
}

body.route-user-account-listing-create .seller-create-page .form--control,
body.route-user-account-listing-create-auction .seller-create-page .form--control,
body.route-user-account-listing-create .seller-create-page .input-group-text,
body.route-user-account-listing-create-auction .seller-create-page .input-group-text {
  border-radius: 16px;
  border: 1px solid var(--seller-clean-border);
  background: var(--seller-clean-panel-strong);
  color: var(--seller-clean-text);
  box-shadow: none;
}

body.route-user-account-listing-create .seller-create-page .form--control,
body.route-user-account-listing-create-auction .seller-create-page .form--control {
  min-height: 54px;
  padding: 14px 16px;
  font-size: 0.95rem;
  transition: border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

body.route-user-account-listing-create .seller-create-page .form--control::placeholder,
body.route-user-account-listing-create-auction .seller-create-page .form--control::placeholder {
  color: rgba(238, 245, 247, 0.36);
}

body.route-user-account-listing-create .seller-create-page .form--control:focus,
body.route-user-account-listing-create-auction .seller-create-page .form--control:focus {
  border-color: rgba(128, 221, 199, 0.32);
  background: #13212b;
  box-shadow: 0 0 0 4px rgba(128, 221, 199, 0.08);
}

body.route-user-account-listing-create .seller-create-page select.form--control option,
body.route-user-account-listing-create-auction .seller-create-page select.form--control option {
  background: #101923;
  color: var(--seller-clean-text);
}

body.route-user-account-listing-create .seller-create-page .input-group-text,
body.route-user-account-listing-create-auction .seller-create-page .input-group-text {
  min-width: 84px;
  justify-content: center;
  color: var(--seller-clean-muted-strong);
}

body.route-user-account-listing-create .seller-create-page .form--control[type="file"],
body.route-user-account-listing-create-auction .seller-create-page .form--control[type="file"] {
  padding-top: 10px;
  padding-bottom: 10px;
}

body.route-user-account-listing-create .seller-create-page .form--control[type="file"]::file-selector-button,
body.route-user-account-listing-create-auction .seller-create-page .form--control[type="file"]::file-selector-button {
  margin-right: 14px;
  padding: 10px 14px;
  border-radius: 12px;
  border: 1px solid rgba(128, 221, 199, 0.18);
  background: rgba(128, 221, 199, 0.12);
  color: var(--seller-clean-accent);
}

body.route-user-account-listing-create .seller-duration-fields,
body.route-user-account-listing-create-auction .seller-duration-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body.route-user-account-listing-create .seller-editor,
body.route-user-account-listing-create-auction .seller-editor {
  display: flex;
  flex-direction: column;
  border-radius: 22px;
  border: 1px solid var(--seller-clean-border);
  background: linear-gradient(180deg, rgba(9, 15, 21, 0.98), rgba(13, 20, 28, 0.98));
  overflow: hidden;
}

body.route-user-account-listing-create .seller-editor__toolbar,
body.route-user-account-listing-create-auction .seller-editor__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.02);
}

body.route-user-account-listing-create .seller-editor__tool,
body.route-user-account-listing-create-auction .seller-editor__tool {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 9px 12px;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.03);
  color: var(--seller-clean-muted-strong);
  font-size: 0.85rem;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

body.route-user-account-listing-create .seller-editor__tool:hover,
body.route-user-account-listing-create-auction .seller-editor__tool:hover {
  color: #fff;
  border-color: rgba(128, 221, 199, 0.24);
  background: rgba(128, 221, 199, 0.08);
  transform: translateY(-1px);
}

body.route-user-account-listing-create .seller-editor__tool i,
body.route-user-account-listing-create-auction .seller-editor__tool i {
  font-size: 1rem;
}

body.route-user-account-listing-create .seller-editor__textarea.form--control,
body.route-user-account-listing-create-auction .seller-editor__textarea.form--control {
  min-height: 300px;
  padding: 22px 24px 18px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  color: var(--seller-clean-text);
  line-height: 1.75;
  resize: vertical;
}

body.route-user-account-listing-create .seller-editor__textarea.form--control:focus,
body.route-user-account-listing-create-auction .seller-editor__textarea.form--control:focus {
  background: transparent;
  box-shadow: none;
}

body.route-user-account-listing-create .seller-editor__footer,
body.route-user-account-listing-create-auction .seller-editor__footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 18px 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.84rem;
}

body.route-user-account-listing-create .seller-tags,
body.route-user-account-listing-create-auction .seller-tags {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  min-height: 58px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid var(--seller-clean-border);
  background: var(--seller-clean-panel-strong);
}

body.route-user-account-listing-create .seller-tags__chips,
body.route-user-account-listing-create-auction .seller-tags__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

body.route-user-account-listing-create .seller-tags__chip,
body.route-user-account-listing-create-auction .seller-tags__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 36px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(128, 221, 199, 0.18);
  background: rgba(128, 221, 199, 0.1);
  color: var(--seller-clean-text);
  font-size: 0.85rem;
}

body.route-user-account-listing-create .seller-tags__chip i,
body.route-user-account-listing-create-auction .seller-tags__chip i {
  font-size: 0.9rem;
}

body.route-user-account-listing-create .seller-tags__input,
body.route-user-account-listing-create-auction .seller-tags__input {
  flex: 1 1 180px;
  min-height: 34px;
  border: 0;
  background: transparent;
  color: var(--seller-clean-text);
  padding: 0;
}

body.route-user-account-listing-create .seller-tags__input::placeholder,
body.route-user-account-listing-create-auction .seller-tags__input::placeholder {
  color: rgba(238, 245, 247, 0.36);
}

body.route-user-account-listing-create .seller-tags__input:focus,
body.route-user-account-listing-create-auction .seller-tags__input:focus {
  outline: none;
  box-shadow: none;
}

body.route-user-account-listing-create .seller-toggle,
body.route-user-account-listing-create-auction .seller-toggle {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 20px;
  border-radius: 18px;
  border: 1px solid var(--seller-clean-border);
  background: rgba(255, 255, 255, 0.03);
}

body.route-user-account-listing-create .seller-toggle .form-check,
body.route-user-account-listing-create-auction .seller-toggle .form-check {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 250px;
}

body.route-user-account-listing-create .seller-toggle .form-check-input,
body.route-user-account-listing-create-auction .seller-toggle .form-check-input {
  width: 1.08rem;
  height: 1.08rem;
  margin-top: 0;
  border-radius: 7px;
  border-color: var(--seller-clean-border-strong);
  background-color: rgba(255, 255, 255, 0.03);
}

body.route-user-account-listing-create .seller-toggle .form-check-input:checked,
body.route-user-account-listing-create-auction .seller-toggle .form-check-input:checked {
  background-color: var(--seller-clean-accent);
  border-color: var(--seller-clean-accent);
}

body.route-user-account-listing-create .seller-toggle .form-check-label,
body.route-user-account-listing-create-auction .seller-toggle .form-check-label {
  margin-bottom: 0;
  color: var(--seller-clean-text);
  font-weight: 600;
}

body.route-user-account-listing-create .seller-create-submit,
body.route-user-account-listing-create-auction .seller-create-submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  margin-top: 4px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

body.route-user-account-listing-create .seller-create-submit__content span,
body.route-user-account-listing-create-auction .seller-create-submit__content span {
  display: block;
  margin-bottom: 6px;
  color: var(--seller-clean-text);
  font-size: 1rem;
  font-weight: 700;
}

body.route-user-account-listing-create .seller-create-submit__content p,
body.route-user-account-listing-create-auction .seller-create-submit__content p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.6;
}

body.route-user-account-listing-create .seller-create-submit__actions,
body.route-user-account-listing-create-auction .seller-create-submit__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

body.route-user-account-listing-create .seller-create-submit .btn,
body.route-user-account-listing-create-auction .seller-create-submit .btn {
  min-height: 52px;
  padding: 13px 20px;
  border-radius: 14px;
  font-weight: 700;
  letter-spacing: 0;
  transform: none !important;
  box-shadow: none !important;
}

body.route-user-account-listing-create .seller-create-submit .btn--dark,
body.route-user-account-listing-create-auction .seller-create-submit .btn--dark {
  background: rgba(255, 255, 255, 0.04) !important;
  border: 1px solid var(--seller-clean-border) !important;
  color: var(--seller-clean-text) !important;
}

body.route-user-account-listing-create .seller-create-submit__primary,
body.route-user-account-listing-create-auction .seller-create-submit__primary {
  min-width: 200px;
  background: linear-gradient(135deg, var(--seller-clean-accent) 0%, #9ee4d7 100%) !important;
  border-color: var(--seller-clean-accent-strong) !important;
  color: #0a171d !important;
}

body.route-user-account-listing-create .seller-create-submit__primary:hover,
body.route-user-account-listing-create-auction .seller-create-submit__primary:hover {
  background: linear-gradient(135deg, var(--seller-clean-accent-strong) 0%, #a8ecdf 100%) !important;
}

@media (max-width: 991px) {
  body.route-user-account-listing-create .seller-create-page .container,
  body.route-user-account-listing-create-auction .seller-create-page .container {
    padding-left: 18px;
    padding-right: 18px;
  }

  body.route-user-account-listing-create .seller-create-tab.is-back,
  body.route-user-account-listing-create-auction .seller-create-tab.is-back {
    margin-left: 0;
  }

  body.route-user-account-listing-create .seller-toggle,
  body.route-user-account-listing-create-auction .seller-toggle,
  body.route-user-account-listing-create .seller-create-submit,
  body.route-user-account-listing-create-auction .seller-create-submit {
    flex-direction: column;
    align-items: stretch;
  }

  body.route-user-account-listing-create .seller-toggle .form-check,
  body.route-user-account-listing-create-auction .seller-toggle .form-check {
    min-width: 0;
  }

  body.route-user-account-listing-create .seller-create-submit__actions,
  body.route-user-account-listing-create-auction .seller-create-submit__actions {
    justify-content: stretch;
  }

  body.route-user-account-listing-create .seller-create-submit__actions .btn,
  body.route-user-account-listing-create-auction .seller-create-submit__actions .btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 767px) {
  body.route-user-account-listing-create .seller-create-tabs,
  body.route-user-account-listing-create-auction .seller-create-tabs {
    display: grid;
  }

  body.route-user-account-listing-create .seller-create-tab,
  body.route-user-account-listing-create-auction .seller-create-tab {
    width: 100%;
    justify-content: center;
  }

  body.route-user-account-listing-create .seller-form-section__header,
  body.route-user-account-listing-create-auction .seller-form-section__header,
  body.route-user-account-listing-create .seller-editor__footer,
  body.route-user-account-listing-create-auction .seller-editor__footer {
    flex-direction: column;
  }

  body.route-user-account-listing-create .seller-editor__tool span,
  body.route-user-account-listing-create-auction .seller-editor__tool span {
    display: none;
  }
}

@media (max-width: 575px) {
  body.route-user-account-listing-create .seller-create-page,
  body.route-user-account-listing-create-auction .seller-create-page {
    padding-top: 44px !important;
    padding-bottom: 58px !important;
  }

  body.route-user-account-listing-create .seller-create-hero__content,
  body.route-user-account-listing-create-auction .seller-create-hero__content,
  body.route-user-account-listing-create .seller-create-card,
  body.route-user-account-listing-create-auction .seller-create-card {
    padding: 22px;
    border-radius: 22px;
  }

  body.route-user-account-listing-create .seller-duration-fields,
  body.route-user-account-listing-create-auction .seller-duration-fields {
    grid-template-columns: 1fr;
  }

  body.route-user-account-listing-create .seller-create-hero__title,
  body.route-user-account-listing-create-auction .seller-create-hero__title {
    font-size: 1.78rem;
  }

  body.route-user-account-listing-create .seller-editor__textarea.form--control,
  body.route-user-account-listing-create-auction .seller-editor__textarea.form--control {
    min-height: 240px;
    padding-left: 18px;
    padding-right: 18px;
  }
}

/* =========================
   Create Listing Match
   ========================= */

body.route-user-account-listing-create,
body.route-user-account-listing-create-auction {
  background-color: hsl(var(--body-bg));
  background-image: none;
}

body.route-user-account-listing-create .header,
body.route-user-account-listing-create-auction .header {
  background: transparent;
  border-bottom: 1px solid hsl(var(--white) / 0.09);
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  box-shadow: none;
}

body.route-user-account-listing-create .header.fixed-header,
body.route-user-account-listing-create-auction .header.fixed-header {
  background-color: hsl(var(--black));
  box-shadow: var(--header-box-shadow);
}

body.route-user-account-listing-create .create-listing-page .card-header,
body.route-user-account-listing-create-auction .create-listing-page .card-header {
  gap: 16px;
}

body.route-user-account-listing-create .create-listing-heading,
body.route-user-account-listing-create-auction .create-listing-heading {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

body.route-user-account-listing-create .create-listing-heading__text,
body.route-user-account-listing-create-auction .create-listing-heading__text,
body.route-user-account-listing-create .create-listing-intro,
body.route-user-account-listing-create-auction .create-listing-intro,
body.route-user-account-listing-create .create-listing-section__head p,
body.route-user-account-listing-create-auction .create-listing-section__head p,
body.route-user-account-listing-create .create-listing-hint,
body.route-user-account-listing-create-auction .create-listing-hint,
body.route-user-account-listing-create .create-listing-editor__footer,
body.route-user-account-listing-create-auction .create-listing-editor__footer,
body.route-user-account-listing-create .create-listing-toggle__content small,
body.route-user-account-listing-create-auction .create-listing-toggle__content small {
  color: hsl(var(--white) / 0.62);
}

body.route-user-account-listing-create .create-listing-intro,
body.route-user-account-listing-create-auction .create-listing-intro {
  max-width: 760px;
  margin-bottom: 28px;
  line-height: 1.75;
}

body.route-user-account-listing-create .create-listing-form,
body.route-user-account-listing-create-auction .create-listing-form {
  display: grid;
}

body.route-user-account-listing-create .create-listing-section,
body.route-user-account-listing-create-auction .create-listing-section {
  padding: 26px 0;
  border-top: 1px solid hsl(var(--white) / 0.08);
}

body.route-user-account-listing-create .create-listing-section:first-child,
body.route-user-account-listing-create-auction .create-listing-section:first-child {
  padding-top: 0;
  border-top: 0;
}

body.route-user-account-listing-create .create-listing-section__head,
body.route-user-account-listing-create-auction .create-listing-section__head {
  margin-bottom: 18px;
}

body.route-user-account-listing-create .create-listing-section__head h6,
body.route-user-account-listing-create-auction .create-listing-section__head h6 {
  margin-bottom: 6px;
  color: hsl(var(--white) / 0.9);
  font-size: 1rem;
}

body.route-user-account-listing-create .create-listing-field,
body.route-user-account-listing-create-auction .create-listing-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  min-width: 0;
}

body.route-user-account-listing-create .create-listing-field .form-label,
body.route-user-account-listing-create-auction .create-listing-field .form-label {
  margin-bottom: 0;
  color: hsl(var(--white) / 0.84);
  font-weight: 500;
}

body.route-user-account-listing-create .create-listing-destination,
body.route-user-account-listing-create-auction .create-listing-destination {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 51px;
  padding: 12px 16px;
  border: 1px solid hsl(var(--white) / 0.18);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
}

body.route-user-account-listing-create .create-listing-destination strong,
body.route-user-account-listing-create-auction .create-listing-destination strong {
  color: hsl(var(--white) / 0.9);
  font-size: 0.95rem;
  font-weight: 600;
}

body.route-user-account-listing-create .create-listing-destination small,
body.route-user-account-listing-create-auction .create-listing-destination small {
  margin-top: 3px;
  color: hsl(var(--white) / 0.6);
  line-height: 1.5;
}

body.route-user-account-listing-create .create-listing-page .input-group-text,
body.route-user-account-listing-create-auction .create-listing-page .input-group-text {
  color: hsl(var(--white) / 0.64);
  background-color: hsl(var(--white) / 0.05);
  border-color: hsl(var(--white) / 0.3);
}

body.route-user-account-listing-create .create-listing-price-group,
body.route-user-account-listing-create-auction .create-listing-price-group {
  display: flex;
  align-items: stretch;
  width: 100%;
  overflow: hidden;
  border: 1px solid hsl(var(--white) / 0.3);
  border-radius: 4px;
  background-color: hsl(var(--white) / 0.02);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

body.route-user-account-listing-create .create-listing-price-group:focus-within,
body.route-user-account-listing-create-auction .create-listing-price-group:focus-within {
  border-color: hsl(var(--base));
  background-color: transparent;
  box-shadow: 0 0 0 1px hsl(var(--base) / 0.15);
}

body.route-user-account-listing-create .create-listing-price-group .form--control,
body.route-user-account-listing-create-auction .create-listing-price-group .form--control {
  border: 0;
  border-radius: 0;
  background: transparent;
  min-width: 0;
}

body.route-user-account-listing-create .create-listing-price-group .input-group-text,
body.route-user-account-listing-create-auction .create-listing-price-group .input-group-text {
  display: inline-flex;
  align-items: center;
  min-width: 78px;
  justify-content: center;
  padding: 0 16px;
  border: 0;
  border-left: 1px solid hsl(var(--white) / 0.12);
  border-radius: 0;
  font-weight: 600;
  white-space: nowrap;
}

body.route-user-account-listing-create .create-listing-inline-fields,
body.route-user-account-listing-create-auction .create-listing-inline-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

body.route-user-account-listing-create .create-listing-inline-fields__item,
body.route-user-account-listing-create-auction .create-listing-inline-fields__item {
  display: grid;
  gap: 7px;
  min-width: 0;
}

body.route-user-account-listing-create .create-listing-inline-fields__label,
body.route-user-account-listing-create-auction .create-listing-inline-fields__label {
  color: hsl(var(--white) / 0.72);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

body.route-user-account-listing-create .create-listing-upload,
body.route-user-account-listing-create-auction .create-listing-upload {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  border: 1px solid hsl(var(--white) / 0.14);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
  min-height: 100%;
}

body.route-user-account-listing-create .create-listing-upload__topline,
body.route-user-account-listing-create-auction .create-listing-upload__topline {
  display: flex;
  gap: 12px;
}

body.route-user-account-listing-create .create-listing-upload__topline span,
body.route-user-account-listing-create-auction .create-listing-upload__topline span {
  color: hsl(var(--white) / 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

body.route-user-account-listing-create .create-listing-upload__trigger,
body.route-user-account-listing-create-auction .create-listing-upload__trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 8px;
  border: 1px solid hsl(var(--white) / 0.16);
  border-radius: 6px;
  background-color: hsl(var(--white) / 0.025);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

body.route-user-account-listing-create .create-listing-upload__trigger:hover,
body.route-user-account-listing-create-auction .create-listing-upload__trigger:hover {
  border-color: hsl(var(--base) / 0.35);
  background-color: hsl(var(--white) / 0.04);
}

body.route-user-account-listing-create .create-listing-upload__button,
body.route-user-account-listing-create-auction .create-listing-upload__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 4px;
  border: 1px solid hsl(var(--base) / 0.2);
  background-color: hsl(var(--base));
  color: hsl(var(--black)) !important;
  font-weight: 600;
  white-space: nowrap;
}

body.route-user-account-listing-create .create-listing-upload__value,
body.route-user-account-listing-create-auction .create-listing-upload__value {
  min-width: 0;
  flex: 1;
  color: hsl(var(--white) / 0.62);
  font-size: 0.88rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

body.route-user-account-listing-create .create-listing-editor,
body.route-user-account-listing-create-auction .create-listing-editor {
  border: 1px solid hsl(var(--white) / 0.14);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(10, 15, 23, 0.96), rgba(11, 18, 27, 0.96));
  overflow: hidden;
}

body.route-user-account-listing-create .create-listing-editor__toolbar,
body.route-user-account-listing-create-auction .create-listing-editor__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 12px;
  border-bottom: 1px solid hsl(var(--white) / 0.08);
}

body.route-user-account-listing-create .create-listing-editor__tool,
body.route-user-account-listing-create-auction .create-listing-editor__tool {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  border: 1px solid hsl(var(--white) / 0.1);
  border-radius: 6px;
  background-color: hsl(var(--white) / 0.03);
  color: hsl(var(--white) / 0.72);
  font-size: 0.875rem;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

body.route-user-account-listing-create .create-listing-editor__tool:hover,
body.route-user-account-listing-create-auction .create-listing-editor__tool:hover {
  color: hsl(var(--white) / 0.92);
  background-color: hsl(var(--white) / 0.06);
  border-color: hsl(var(--base) / 0.35);
}

body.route-user-account-listing-create .create-listing-editor__textarea.form--control,
body.route-user-account-listing-create-auction .create-listing-editor__textarea.form--control {
  min-height: 320px;
  padding: 20px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: hsl(var(--white) / 0.78);
  line-height: 1.8;
  resize: vertical;
}

body.route-user-account-listing-create .create-listing-editor__textarea.form--control:focus,
body.route-user-account-listing-create-auction .create-listing-editor__textarea.form--control:focus {
  background: transparent !important;
  box-shadow: none !important;
}

body.route-user-account-listing-create .create-listing-editor__footer,
body.route-user-account-listing-create-auction .create-listing-editor__footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px 16px;
  border-top: 1px solid hsl(var(--white) / 0.06);
  font-size: 0.875rem;
}

body.route-user-account-listing-create .create-listing-tags,
body.route-user-account-listing-create-auction .create-listing-tags {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 12px;
  min-height: 51px;
  padding: 12px;
  border: 1px solid hsl(var(--white) / 0.3);
  border-radius: 4px;
  background-color: hsl(var(--white) / 0.02);
  cursor: text;
  width: 100%;
}

body.route-user-account-listing-create .create-listing-tags__chips,
body.route-user-account-listing-create-auction .create-listing-tags__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

body.route-user-account-listing-create .create-listing-tags__chip,
body.route-user-account-listing-create-auction .create-listing-tags__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 11px;
  border: 1px solid hsl(var(--base) / 0.24);
  border-radius: 999px;
  background-color: hsl(var(--base) / 0.12);
  color: hsl(var(--white) / 0.86);
  font-size: 0.875rem;
}

body.route-user-account-listing-create .create-listing-tags__field,
body.route-user-account-listing-create-auction .create-listing-tags__field {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: hsl(var(--white) / 0.72);
  min-height: 40px;
  padding: 0;
}

body.route-user-account-listing-create .create-listing-tags__field:focus,
body.route-user-account-listing-create-auction .create-listing-tags__field:focus {
  outline: none;
}

body.route-user-account-listing-create .create-listing-final,
body.route-user-account-listing-create-auction .create-listing-final {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

body.route-user-account-listing-create .create-listing-toggle,
body.route-user-account-listing-create-auction .create-listing-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  cursor: pointer;
}

body.route-user-account-listing-create .create-listing-toggle .form-check-input,
body.route-user-account-listing-create-auction .create-listing-toggle .form-check-input {
  margin-top: 0;
}

body.route-user-account-listing-create .create-listing-toggle__content,
body.route-user-account-listing-create-auction .create-listing-toggle__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

body.route-user-account-listing-create .create-listing-toggle__content strong,
body.route-user-account-listing-create-auction .create-listing-toggle__content strong {
  color: hsl(var(--white) / 0.86);
  font-size: 0.95rem;
}

body.route-user-account-listing-create .create-listing-submit .btn,
body.route-user-account-listing-create-auction .create-listing-submit .btn {
  min-width: 220px;
}

body.route-user-account-listing-create .create-listing-alert,
body.route-user-account-listing-create-auction .create-listing-alert {
  margin-bottom: 24px;
}

body.route-user-account-listing-create .create-listing-alert ul,
body.route-user-account-listing-create-auction .create-listing-alert ul {
  padding-left: 18px;
}

@media (max-width: 991px) {
  body.route-user-account-listing-create .header,
  body.route-user-account-listing-create-auction .header {
    background-color: hsl(var(--black));
  }

  body.route-user-account-listing-create .create-listing-final,
  body.route-user-account-listing-create-auction .create-listing-final {
    flex-direction: column;
    align-items: stretch;
  }

  body.route-user-account-listing-create .create-listing-submit .btn,
  body.route-user-account-listing-create-auction .create-listing-submit .btn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 767px) {
  body.route-user-account-listing-create .create-listing-header__actions,
  body.route-user-account-listing-create-auction .create-listing-header__actions {
    width: 100%;
  }

  body.route-user-account-listing-create .create-listing-header__actions .btn,
  body.route-user-account-listing-create-auction .create-listing-header__actions .btn {
    flex: 1 1 100%;
    justify-content: center;
  }

  body.route-user-account-listing-create .create-listing-inline-fields,
  body.route-user-account-listing-create-auction .create-listing-inline-fields,
  body.route-user-account-listing-create .create-listing-editor__footer,
  body.route-user-account-listing-create-auction .create-listing-editor__footer {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  body.route-user-account-listing-create .create-listing-upload__topline,
  body.route-user-account-listing-create-auction .create-listing-upload__topline {
    flex-direction: column;
  }

  body.route-user-account-listing-create .create-listing-upload__trigger,
  body.route-user-account-listing-create-auction .create-listing-upload__trigger {
    flex-direction: column;
    align-items: stretch;
  }

  body.route-user-account-listing-create .create-listing-upload__button,
  body.route-user-account-listing-create-auction .create-listing-upload__button {
    width: 100%;
  }

  body.route-user-account-listing-create .create-listing-upload__value,
  body.route-user-account-listing-create-auction .create-listing-upload__value {
    white-space: normal;
    word-break: break-word;
  }
}

@media (max-width: 575px) {
  body.route-user-account-listing-create .create-listing-editor__tool span,
  body.route-user-account-listing-create-auction .create-listing-editor__tool span {
    display: none;
  }

  body.route-user-account-listing-create .create-listing-editor__textarea.form--control,
  body.route-user-account-listing-create-auction .create-listing-editor__textarea.form--control {
    min-height: 260px;
    padding: 18px;
  }
}

/* =========================
   Create Listing Shared UI
   ========================= */

.create-listing-page .create-listing-card .card-header {
  gap: 16px;
}

.create-listing-page .create-listing-heading {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.create-listing-page .create-listing-heading__text,
.create-listing-page .create-listing-intro,
.create-listing-page .create-listing-section__head p,
.create-listing-page .create-listing-hint,
.create-listing-page .create-listing-editor__footer,
.create-listing-page .create-listing-toggle__content small {
  color: hsl(var(--white) / 0.62);
}

.create-listing-page .create-listing-intro {
  max-width: 760px;
  margin-bottom: 28px;
  line-height: 1.75;
}

.create-listing-page .create-listing-form {
  display: grid;
}

.create-listing-page .create-listing-section {
  padding: 26px 0;
  border-top: 1px solid hsl(var(--white) / 0.08);
}

.create-listing-page .create-listing-section:first-child {
  padding-top: 0;
  border-top: 0;
}

.create-listing-page .create-listing-section__head {
  margin-bottom: 18px;
}

.create-listing-page .create-listing-section__head h6 {
  margin-bottom: 6px;
  color: hsl(var(--white) / 0.9);
  font-size: 1rem;
}

.create-listing-page .create-listing-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  min-width: 0;
}

.create-listing-page .create-listing-field .form-label {
  margin-bottom: 0;
  color: hsl(var(--white) / 0.84);
  font-weight: 500;
}

.create-listing-page .create-listing-destination {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 51px;
  padding: 12px 16px;
  border: 1px solid hsl(var(--white) / 0.18);
  border-radius: 4px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.03));
}

.create-listing-page .create-listing-destination strong {
  color: hsl(var(--white) / 0.9);
  font-size: 0.95rem;
  font-weight: 600;
}

.create-listing-page .create-listing-destination small {
  margin-top: 3px;
  color: hsl(var(--white) / 0.6);
  line-height: 1.5;
}

.create-listing-page .create-listing-page .input-group-text,
.create-listing-page .input-group-text {
  color: hsl(var(--white) / 0.64);
  background-color: hsl(var(--white) / 0.05);
  border-color: hsl(var(--white) / 0.3);
}

.create-listing-page .create-listing-price-group {
  display: flex;
  align-items: stretch;
  width: 100%;
  overflow: hidden;
  border: 1px solid hsl(var(--white) / 0.3);
  border-radius: 4px;
  background-color: hsl(var(--white) / 0.02);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.create-listing-page .create-listing-price-group:focus-within {
  border-color: hsl(var(--base));
  background-color: transparent;
  box-shadow: 0 0 0 1px hsl(var(--base) / 0.15);
}

.create-listing-page .create-listing-price-group .form--control {
  flex: 1 1 auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  min-width: 0;
}

.create-listing-page .create-listing-price-group .input-group-text {
  display: inline-flex;
  align-items: center;
  min-width: 78px;
  justify-content: center;
  padding: 0 16px;
  border: 0;
  border-left: 1px solid hsl(var(--white) / 0.12);
  border-radius: 0;
  font-weight: 600;
  white-space: nowrap;
}

.create-listing-page .create-listing-inline-fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.create-listing-page .create-listing-inline-fields__item {
  display: grid;
  gap: 7px;
  min-width: 0;
}

.create-listing-page .create-listing-inline-fields__label {
  color: hsl(var(--white) / 0.72);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.create-listing-page .create-listing-upload {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 12px;
  border: 1px solid hsl(var(--white) / 0.14);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.02));
  min-height: 100%;
}

.create-listing-page .create-listing-upload__topline {
  display: flex;
  gap: 12px;
}

.create-listing-page .create-listing-upload__topline span {
  color: hsl(var(--white) / 0.8);
  font-size: 0.9rem;
  font-weight: 500;
}

.create-listing-page .create-listing-upload__trigger {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 8px;
  border: 1px solid hsl(var(--white) / 0.16);
  border-radius: 6px;
  background-color: hsl(var(--white) / 0.025);
  text-decoration: none;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.create-listing-page .create-listing-upload__trigger:hover {
  border-color: hsl(var(--base) / 0.35);
  background-color: hsl(var(--white) / 0.04);
}

.create-listing-page .create-listing-upload__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 136px;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 4px;
  border: 1px solid hsl(var(--base) / 0.2);
  background-color: hsl(var(--base));
  color: hsl(var(--black)) !important;
  font-weight: 600;
  white-space: nowrap;
}

.create-listing-page .create-listing-upload__value {
  min-width: 0;
  flex: 1;
  color: hsl(var(--white) / 0.62);
  font-size: 0.88rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.create-listing-page .create-listing-editor {
  border: 1px solid hsl(var(--white) / 0.14);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(10, 15, 23, 0.96), rgba(11, 18, 27, 0.96));
  overflow: hidden;
}

.create-listing-page .create-listing-editor trix-toolbar {
  display: flex;
  padding: 12px;
  border-bottom: 1px solid hsl(var(--white) / 0.08);
  background: rgba(255, 255, 255, 0.02);
}

.create-listing-page .create-listing-editor trix-toolbar .trix-button-row {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.create-listing-page .create-listing-editor trix-toolbar .trix-button-group {
  display: inline-flex;
  gap: 8px;
  margin: 0;
  border: 0;
  border-radius: 0;
}

.create-listing-page .create-listing-editor trix-toolbar .trix-button {
  position: relative;
  width: 40px;
  height: 38px;
  border: 1px solid hsl(var(--white) / 0.1);
  border-radius: 6px;
  background-color: hsl(var(--white) / 0.03);
  color: hsl(var(--white) / 0.72);
  box-shadow: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.create-listing-page .create-listing-editor trix-toolbar .trix-button:hover,
.create-listing-page .create-listing-editor trix-toolbar .trix-button.trix-active {
  border-color: hsl(var(--base) / 0.35);
  background-color: hsl(var(--white) / 0.06);
}

.create-listing-page .create-listing-editor trix-toolbar .trix-button::before {
  filter: invert(1) opacity(0.78);
}

.create-listing-page .create-listing-editor trix-toolbar .trix-button.trix-active::before,
.create-listing-page .create-listing-editor trix-toolbar .trix-button:hover::before {
  filter: invert(1) opacity(0.96);
}

.create-listing-page .create-listing-editor trix-toolbar .trix-button-group--file-tools,
.create-listing-page .create-listing-editor trix-toolbar .trix-button--icon-heading-1,
.create-listing-page .create-listing-editor trix-toolbar .trix-button--icon-quote,
.create-listing-page .create-listing-editor trix-toolbar .trix-button--icon-code,
.create-listing-page .create-listing-editor trix-toolbar .trix-button--icon-decrease-nesting-level,
.create-listing-page .create-listing-editor trix-toolbar .trix-button--icon-increase-nesting-level {
  display: none !important;
}

.create-listing-page .create-listing-editor trix-toolbar .trix-dialogs {
  width: 100%;
  margin-top: 10px;
}

.create-listing-page .create-listing-editor trix-toolbar .trix-dialog {
  max-width: 420px;
  padding: 12px;
  border: 1px solid hsl(var(--white) / 0.12);
  border-radius: 8px;
  background: rgba(10, 15, 23, 0.98);
  box-shadow: none;
}

.create-listing-page .create-listing-editor trix-toolbar .trix-dialog__link-fields {
  align-items: center;
  gap: 10px;
}

.create-listing-page .create-listing-editor trix-toolbar .trix-input {
  min-height: 42px;
  border: 1px solid hsl(var(--white) / 0.18);
  border-radius: 6px;
  background: hsl(var(--white) / 0.03);
  color: hsl(var(--white) / 0.78);
  padding: 0 12px;
  box-shadow: none;
}

.create-listing-page .create-listing-editor trix-toolbar .trix-input:focus {
  border-color: hsl(var(--base));
  box-shadow: none;
}

.create-listing-page .create-listing-editor trix-toolbar .trix-dialog__link-fields .trix-button-group {
  gap: 8px;
}

.create-listing-page .create-listing-editor trix-toolbar .trix-dialog__link-fields .trix-button {
  width: auto;
  min-width: 80px;
  padding: 0 14px;
}

.create-listing-page .create-listing-editor__surface {
  min-height: 320px;
  padding: 20px;
  border: 0;
  border-radius: 0 !important;
  background: transparent;
  color: hsl(var(--white) / 0.78);
  line-height: 1.8;
  resize: vertical !important;
  outline: none;
}

.create-listing-page .create-listing-editor__surface:focus {
  background: transparent !important;
  box-shadow: none !important;
}

.create-listing-page .create-listing-editor__surface[contenteditable="true"] {
  min-height: 320px;
}

.create-listing-page .create-listing-editor__surface:empty::before {
  color: hsl(var(--white) / 0.38);
}

.create-listing-page .create-listing-editor__surface a {
  color: hsl(var(--base));
}

.create-listing-page .create-listing-editor__surface ul,
.create-listing-page .create-listing-editor__surface ol,
.product-description ul,
.product-description ol,
.auction-detail-description ul,
.auction-detail-description ol {
  margin: 0 0 1rem;
  padding-left: 1.5rem;
  list-style-position: outside;
}

.create-listing-page .create-listing-editor__surface ul,
.product-description ul,
.auction-detail-description ul {
  list-style: disc;
}

.create-listing-page .create-listing-editor__surface ol,
.product-description ol,
.auction-detail-description ol {
  list-style: decimal;
}

.create-listing-page .create-listing-editor__surface li,
.product-description li,
.auction-detail-description li {
  display: list-item;
  list-style: inherit;
  margin-bottom: 0.35rem;
}

.create-listing-page .create-listing-editor__surface li::marker,
.product-description li::marker,
.auction-detail-description li::marker {
  color: hsl(var(--white) / 0.7);
}

.create-listing-page .create-listing-editor__surface ul ul,
.create-listing-page .create-listing-editor__surface ol ul,
.product-description ul ul,
.product-description ol ul,
.auction-detail-description ul ul,
.auction-detail-description ol ul {
  list-style: circle;
}

.create-listing-page .create-listing-editor__surface ul ol,
.create-listing-page .create-listing-editor__surface ol ol,
.product-description ul ol,
.product-description ol ol,
.auction-detail-description ul ol,
.auction-detail-description ol ol {
  list-style: lower-alpha;
}

.create-listing-page .create-listing-editor__footer {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 16px 16px;
  border-top: 1px solid hsl(var(--white) / 0.06);
  font-size: 0.875rem;
}

.create-listing-page .create-listing-tags {
  display: grid;
  grid-template-columns: 1fr;
  align-items: start;
  gap: 12px;
  min-height: 51px;
  padding: 12px;
  border: 1px solid hsl(var(--white) / 0.3);
  border-radius: 4px;
  background-color: hsl(var(--white) / 0.02);
  cursor: text;
  width: 100%;
}

.create-listing-page .create-listing-tags__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
}

.create-listing-page .create-listing-tags__chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 11px;
  border: 1px solid hsl(var(--base) / 0.24);
  border-radius: 999px;
  background-color: hsl(var(--base) / 0.12);
  color: hsl(var(--white) / 0.86);
  font-size: 0.875rem;
}

.create-listing-page .create-listing-tags__field {
  width: 100%;
  min-width: 0;
  border: 0;
  background: transparent;
  color: hsl(var(--white) / 0.72);
  min-height: 40px;
  padding: 0;
}

.create-listing-page .create-listing-tags__field:focus {
  outline: none;
}

.create-listing-page .create-listing-final {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.create-listing-page .create-listing-toggle {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0;
  cursor: pointer;
}

.create-listing-page .create-listing-toggle .form-check-input {
  margin-top: 0;
}

.create-listing-page .create-listing-toggle__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.create-listing-page .create-listing-toggle__content strong {
  color: hsl(var(--white) / 0.86);
  font-size: 0.95rem;
}

.create-listing-page .create-listing-submit .btn {
  min-width: 220px;
}

.create-listing-page .create-listing-alert {
  margin-bottom: 24px;
}

.create-listing-page .create-listing-alert ul {
  padding-left: 18px;
}

@media (max-width: 991px) {
  .create-listing-page .create-listing-final {
    flex-direction: column;
    align-items: stretch;
  }

  .create-listing-page .create-listing-submit .btn {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 767px) {
  .create-listing-page .create-listing-header__actions {
    width: 100%;
  }

  .create-listing-page .create-listing-header__actions .btn {
    flex: 1 1 100%;
    justify-content: center;
  }

  .create-listing-page .create-listing-inline-fields,
  .create-listing-page .create-listing-editor__footer {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .create-listing-page .create-listing-upload__topline {
    flex-direction: column;
  }

  .create-listing-page .create-listing-upload__trigger {
    flex-direction: column;
    align-items: stretch;
  }

  .create-listing-page .create-listing-upload__button {
    width: 100%;
  }

  .create-listing-page .create-listing-upload__value {
    white-space: normal;
    word-break: break-word;
  }
}

@media (max-width: 575px) {
  .create-listing-page .create-listing-editor__tool span {
    display: none;
  }

  .create-listing-page .create-listing-editor__textarea.form--control {
    min-height: 260px;
    padding: 18px;
  }
}
