/* ========================================
   تنظیمات اصلی
======================================== */

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  min-height: 100vh;

  font-family: Tahoma, Arial, sans-serif;

  background: #03162e;

  overflow: hidden;
}

/* ========================================
   صفحه ثبت آگهی خودرو
======================================== */

.gk-vehicle-register-page {
  position: relative;
  isolation: isolate;

  width: 100%;
  min-height: 100vh;
  min-height: 100svh;

  padding: 15px;

  display: flex;
  align-items: center;
  justify-content: flex-start;

  direction: ltr;

  background-image: url("./file_00000000c6ec8210a8ee1f53a9945038.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* لایه روی تصویر */

.gk-vehicle-register-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;

  background: linear-gradient(
    90deg,
    rgba(1, 22, 51, 0.17) 0%,
    rgba(2, 25, 55, 0.05) 48%,
    rgba(0, 11, 28, 0.08) 100%
  );

  pointer-events: none;
}

/* ========================================
   پنجره اصلی فرم
======================================== */

.gk-vehicle-register-window {
  position: relative;
  z-index: 2;

  direction: rtl;

  width: clamp(620px, 54vw, 850px);
  height: min(900px, calc(100svh - 30px));

  display: flex;
  flex-direction: column;

  border: 1px solid rgba(245, 202, 105, 0.72);
  border-radius: 24px;

  background: linear-gradient(
    145deg,
    rgba(5, 49, 99, 0.76),
    rgba(4, 66, 121, 0.63),
    rgba(2, 27, 61, 0.76)
  );

  -webkit-backdrop-filter: blur(13px) saturate(1.18);
  backdrop-filter: blur(13px) saturate(1.18);

  box-shadow:
    0 0 0 1px rgba(112, 205, 255, 0.2),
    0 0 26px rgba(44, 161, 255, 0.27),
    0 24px 60px rgba(0, 12, 35, 0.5),
    inset 0 1px rgba(255, 255, 255, 0.18);

  overflow: hidden;

  animation: gkVehicleWindowOpen 0.65s ease both;
}

/* خط نور طلایی بالای پنجره */

.gk-vehicle-register-window::before {
  content: "";

  position: absolute;
  top: 0;
  right: 10%;
  left: 10%;
  z-index: 4;

  height: 2px;

  background: linear-gradient(
    90deg,
    transparent,
    #79d9ff,
    #ffe29a,
    #d7a63e,
    transparent
  );

  box-shadow: 0 0 18px rgba(255, 207, 100, 0.85);

  pointer-events: none;
}

/* انیمیشن ورود */

@keyframes gkVehicleWindowOpen {
  from {
    opacity: 0;
    transform: translateX(-30px) scale(0.97);
  }

  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

/* ========================================
   دکمه بستن
======================================== */

.gk-vehicle-register-close {
  position: absolute;
  top: 15px;
  left: 15px;
  z-index: 10;

  width: 38px;
  height: 38px;

  display: grid;
  place-items: center;

  color: #f8e9ba;
  text-decoration: none;

  font-size: 27px;
  line-height: 1;

  border: 1px solid rgba(250, 209, 112, 0.65);
  border-radius: 50%;

  background: rgba(3, 36, 76, 0.72);

  box-shadow:
    0 0 13px rgba(255, 201, 80, 0.18),
    inset 0 1px rgba(255, 255, 255, 0.12);

  transition:
    transform 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.gk-vehicle-register-close:hover {
  transform: rotate(90deg) scale(1.07);

  color: #ffffff;
  background: rgba(27, 116, 188, 0.88);

  box-shadow:
    0 0 19px rgba(255, 208, 103, 0.52),
    inset 0 1px rgba(255, 255, 255, 0.2);
}

/* ========================================
   سربرگ فرم
======================================== */

.gk-vehicle-register-header {
  min-height: 88px;
  padding: 15px 18px 14px 62px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;

  border-bottom: 1px solid rgba(255, 213, 117, 0.3);

  background: linear-gradient(
    90deg,
    rgba(36, 151, 225, 0.2),
    rgba(4, 42, 87, 0.11)
  );

  box-shadow: inset 0 -1px rgba(100, 204, 255, 0.09);

  flex-shrink: 0;
}

/* عنوان و آیکون */

.gk-vehicle-register-heading {
  display: flex;
  align-items: center;
  gap: 12px;
}

.gk-vehicle-register-icon {
  width: 49px;
  height: 49px;
  flex: 0 0 49px;

  display: grid;
  place-items: center;

  color: #fff1be;
  font-size: 28px;

  border: 1px solid rgba(255, 216, 126, 0.66);
  border-radius: 15px;

  background: linear-gradient(
    145deg,
    rgba(52, 176, 246, 0.34),
    rgba(10, 82, 150, 0.55)
  );

  box-shadow:
    0 0 18px rgba(78, 194, 255, 0.3),
    inset 0 1px rgba(255, 255, 255, 0.2);
}

.gk-vehicle-register-heading h1 {
  color: #f7fbff;

  font-size: clamp(19px, 1.8vw, 27px);
  font-weight: 900;
  line-height: 1.45;

  text-shadow: 0 3px 15px rgba(41, 175, 255, 0.25);
}

.gk-vehicle-register-heading p {
  margin-top: 3px;

  color: rgba(220, 244, 255, 0.7);
  font-size: 10px;
}

/* نشان گرا.کالا */

.gk-vehicle-register-badge {
  padding: 8px 14px;

  color: #ffe6a3;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;

  border: 1px solid rgba(247, 202, 98, 0.61);
  border-radius: 999px;

  background: linear-gradient(
    135deg,
    rgba(215, 158, 43, 0.31),
    rgba(20, 100, 164, 0.46)
  );

  box-shadow:
    0 0 15px rgba(255, 198, 74, 0.22),
    inset 0 1px rgba(255, 255, 255, 0.15);
}

/* ========================================
   قسمت اسکرول فرم
======================================== */

.gk-vehicle-register-form {
  min-height: 0;
  flex: 1;

  padding: 14px;

  overflow-y: auto;
  overflow-x: hidden;

  scrollbar-width: thin;
  scrollbar-color: #e9b84f rgba(3, 36, 75, 0.42);
}

.gk-vehicle-register-form::-webkit-scrollbar {
  width: 7px;
}

.gk-vehicle-register-form::-webkit-scrollbar-track {
  background: rgba(3, 36, 75, 0.42);
  border-radius: 999px;
}

.gk-vehicle-register-form::-webkit-scrollbar-thumb {
  border-radius: 999px;

  background: linear-gradient(#8de3ff, #35aeea, #edbd55);
}

/* ========================================
   چیدمان داخلی فرم
======================================== */

.gk-vehicle-register-layout {
  direction: ltr;

  display: grid;
  grid-template-columns: minmax(0, 1fr) 270px;
  gap: 13px;
}

.gk-vehicle-main-content,
.gk-vehicle-ad-options {
  direction: rtl;

  min-width: 0;
  min-height: 160px;

  border: 1px solid rgba(142, 217, 255, 0.26);
  border-radius: 18px;

  background: linear-gradient(
    145deg,
    rgba(7, 67, 123, 0.29),
    rgba(2, 30, 66, 0.35)
  );

  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.08),
    0 10px 25px rgba(0, 15, 42, 0.16);
}

/* ========================================
   نسخه لپ‌تاپ و تبلت
======================================== */

@media (max-width: 1050px) {
  .gk-vehicle-register-window {
    width: min(780px, calc(100vw - 28px));
  }

  .gk-vehicle-register-layout {
    grid-template-columns: minmax(0, 1fr) 250px;
  }
}

/* ========================================
   نسخه موبایل
======================================== */

@media (max-width: 720px) {
  .gk-vehicle-register-page {
    padding: 9px;

    background-position: 66% center;
  }

  .gk-vehicle-register-window {
    width: 100%;
    height: calc(100svh - 18px);

    border-radius: 19px;
  }

  .gk-vehicle-register-header {
    min-height: 77px;
    padding: 12px 11px 11px 50px;
  }

  .gk-vehicle-register-icon {
    width: 41px;
    height: 41px;
    flex-basis: 41px;

    font-size: 23px;
    border-radius: 12px;
  }

  .gk-vehicle-register-heading h1 {
    font-size: 16px;
  }

  .gk-vehicle-register-heading p {
    font-size: 8px;
  }

  .gk-vehicle-register-badge {
    display: none;
  }

  .gk-vehicle-register-close {
    top: 12px;
    left: 11px;

    width: 34px;
    height: 34px;

    font-size: 24px;
  }

  .gk-vehicle-register-form {
    padding: 9px;
  }

  .gk-vehicle-register-layout {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
/* ========================================
   بخش دوم: محتوای اصلی فرم خودرو
======================================== */

.gk-vehicle-main-content {
  padding: 12px;
}

/* ========================================
   عنوان قسمت‌های فرم
======================================== */

.gk-vehicle-section-title {
  margin-bottom: 11px;
  padding-bottom: 9px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  border-bottom: 1px solid rgba(137, 211, 255, 0.2);
}

.gk-vehicle-section-title > div {
  display: flex;
  align-items: center;
  gap: 8px;
}

.gk-vehicle-section-title-icon {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;

  display: grid;
  place-items: center;

  color: #ffe4a0;
  font-size: 19px;

  border: 1px solid rgba(244, 202, 105, 0.5);
  border-radius: 11px;

  background: linear-gradient(
    145deg,
    rgba(51, 170, 237, 0.24),
    rgba(7, 73, 136, 0.43)
  );

  box-shadow: 0 0 13px rgba(255, 200, 76, 0.13);
}

.gk-vehicle-section-title h2 {
  color: #f3fbff;
  font-size: 13px;
  font-weight: 900;
}

.gk-vehicle-section-title small {
  color: rgba(216, 241, 255, 0.57);
  font-size: 8px;
}

/* ========================================
   بخش انتخاب تصاویر خودرو
======================================== */

.gk-vehicle-image-section {
  margin-bottom: 13px;
  padding: 11px;

  border: 1px solid rgba(137, 213, 255, 0.25);
  border-radius: 15px;

  background: rgba(3, 43, 88, 0.24);

  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
}

.gk-vehicle-image-area {
  display: grid;
  grid-template-columns: 155px minmax(0, 1fr);
  gap: 10px;
}

/* تصویر اصلی */

.gk-vehicle-main-preview {
  position: relative;

  height: 145px;

  display: grid;
  place-items: center;

  border: 1px dashed rgba(149, 222, 255, 0.58);
  border-radius: 13px;

  background: linear-gradient(
    145deg,
    rgba(52, 165, 228, 0.15),
    rgba(1, 25, 57, 0.45)
  );

  overflow: hidden;
}

.gk-vehicle-main-preview img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;
}

/* نوشته پیش‌فرض تصویر */

.gk-vehicle-image-placeholder {
  padding: 12px;

  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;

  text-align: center;
}

.gk-vehicle-image-placeholder > span {
  width: 43px;
  height: 43px;

  display: grid;
  place-items: center;

  color: #d6f6ff;
  font-size: 24px;

  border: 1px solid rgba(145, 220, 255, 0.42);
  border-radius: 13px;

  background: rgba(52, 172, 235, 0.14);
}

.gk-vehicle-image-placeholder strong {
  color: #eefaff;
  font-size: 11px;
}

.gk-vehicle-image-placeholder small {
  color: rgba(214, 241, 255, 0.53);
  font-size: 7px;
  line-height: 1.7;
}

/* کنترل‌های تصاویر */

.gk-vehicle-image-controls {
  min-width: 0;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 8px;
}

.gk-vehicle-image-select {
  min-height: 38px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  color: #fff1c5;
  font-size: 10px;
  font-weight: 900;

  border: 1px solid rgba(244, 202, 105, 0.68);
  border-radius: 11px;

  background: linear-gradient(
    135deg,
    rgba(32, 144, 214, 0.76),
    rgba(10, 91, 161, 0.79)
  );

  box-shadow:
    0 6px 16px rgba(0, 53, 105, 0.26),
    inset 0 1px rgba(255, 255, 255, 0.18);

  cursor: pointer;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    filter 0.25s ease;
}

.gk-vehicle-image-select:hover {
  transform: translateY(-2px);
  filter: brightness(1.12);

  box-shadow:
    0 0 17px rgba(255, 205, 91, 0.33),
    inset 0 1px rgba(255, 255, 255, 0.22);
}

/* تصاویر کوچک */

.gk-vehicle-thumbnails {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 5px;
}

.gk-vehicle-thumbnail-wrap {
  position: relative;
  min-width: 0;
}

.gk-vehicle-thumbnail {
  position: relative;

  height: 55px;
  padding: 0;

  border: 1px solid rgba(142, 215, 255, 0.3);
  border-radius: 9px;

  background: rgba(1, 25, 57, 0.56);

  overflow: hidden;
  cursor: pointer;
}

.gk-vehicle-thumbnail img {
  width: 100%;
  height: 100%;

  display: block;
  object-fit: cover;
}

.gk-vehicle-thumbnail.active {
  border-color: #f5cc6f;

  box-shadow:
    0 0 0 2px rgba(255, 203, 91, 0.21),
    0 0 12px rgba(255, 201, 78, 0.3);
}

.gk-vehicle-thumbnail-wrap .gk-vehicle-thumbnail {
  width: 100%;
}

.gk-vehicle-thumbnail-remove {
  position: absolute;
  top: 4px;
  left: 4px;
  z-index: 2;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  color: #fff;
  background: rgba(132, 16, 33, 0.92);
  font: 700 17px/22px Arial, sans-serif;
  cursor: pointer;
}

.gk-vehicle-thumbnail-remove:hover {
  background: #b21f3d;
}

.gk-vehicle-image-help {
  color: rgba(214, 241, 255, 0.55);
  font-size: 7px;
  line-height: 1.7;
}

/* ========================================
   چیدمان ورودی‌های فرم
======================================== */

.gk-vehicle-fields-section {
  padding: 11px;

  border: 1px solid rgba(137, 213, 255, 0.25);
  border-radius: 15px;

  background: rgba(3, 43, 88, 0.24);

  box-shadow: inset 0 1px rgba(255, 255, 255, 0.06);
}

.gk-vehicle-fields-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
}

.gk-vehicle-field {
  min-width: 0;

  display: flex;
  flex-direction: column;
  gap: 5px;
}

.gk-vehicle-field-wide {
  grid-column: span 2;
}

.gk-vehicle-field-full {
  grid-column: 1 / -1;
}

/* عنوان فیلد */

.gk-vehicle-field > label {
  padding-inline: 2px;

  color: #ecf9ff;
  font-size: 9px;
  font-weight: 800;
}

.gk-vehicle-field > label span {
  color: #ffd471;
}

/* ورودی‌ها */

.gk-vehicle-field input,
.gk-vehicle-field select,
.gk-vehicle-field textarea {
  width: 100%;
  min-width: 0;

  color: #f3fbff;
  font-family: inherit;
  font-size: 9px;

  border: 1px solid rgba(143, 216, 255, 0.34);
  border-radius: 10px;
  outline: none;

  background: rgba(2, 30, 65, 0.5);

  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.06),
    0 4px 11px rgba(0, 13, 38, 0.12);

  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.gk-vehicle-field input,
.gk-vehicle-field select {
  height: 38px;
  padding: 0 9px;
}

.gk-vehicle-field textarea {
  min-height: 82px;
  padding: 9px;

  line-height: 1.8;
  resize: vertical;
}

.gk-vehicle-field input::placeholder,
.gk-vehicle-field textarea::placeholder {
  color: rgba(215, 241, 255, 0.4);
}

.gk-vehicle-field input:focus,
.gk-vehicle-field select:focus,
.gk-vehicle-field textarea:focus {
  border-color: rgba(255, 213, 112, 0.84);

  background: rgba(5, 54, 105, 0.69);

  box-shadow:
    0 0 0 3px rgba(67, 181, 244, 0.12),
    0 0 14px rgba(255, 202, 80, 0.14);
}

.gk-vehicle-field select option {
  color: #effaff;
  background: #073867;
}

/* ========================================
   ورودی‌های دارای واحد
======================================== */

.gk-vehicle-unit-input {
  position: relative;
}

.gk-vehicle-unit-input input {
  padding-left: 63px;
}

.gk-vehicle-unit-input > span {
  position: absolute;
  top: 1px;
  bottom: 1px;
  left: 1px;

  min-width: 57px;
  padding: 0 6px;

  display: grid;
  place-items: center;

  color: #ffe3a2;
  font-size: 7px;

  border-right: 1px solid rgba(255, 210, 106, 0.22);
  border-radius: 9px 0 0 9px;

  background: rgba(220, 162, 48, 0.12);

  pointer-events: none;
}

/* مخفی‌کردن صحیح عناصر */

[hidden] {
  display: none !important;
}

/* ========================================
   تبلت
======================================== */

@media (max-width: 900px) {
  .gk-vehicle-fields-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gk-vehicle-field-wide {
    grid-column: auto;
  }

  .gk-vehicle-field-full {
    grid-column: 1 / -1;
  }
}

/* ========================================
   موبایل
======================================== */

@media (max-width: 720px) {
  .gk-vehicle-main-content {
    padding: 9px;
  }

  .gk-vehicle-image-area {
    grid-template-columns: 125px minmax(0, 1fr);
  }

  .gk-vehicle-main-preview {
    height: 135px;
  }

  .gk-vehicle-thumbnail {
    height: 48px;
  }

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

/* موبایل کوچک */

@media (max-width: 470px) {
  .gk-vehicle-image-area {
    grid-template-columns: 1fr;
  }

  .gk-vehicle-main-preview {
    height: 175px;
  }

  .gk-vehicle-fields-grid {
    grid-template-columns: 1fr;
  }

  .gk-vehicle-field-wide,
  .gk-vehicle-field-full {
    grid-column: auto;
  }
}
/* ========================================
   بخش قیمت، توضیحات و فروشنده
======================================== */

.gk-vehicle-sale-section,
.gk-vehicle-seller-section {
  margin-top: 13px;
  padding: 11px;

  border: 1px solid rgba(139, 214, 255, 0.26);
  border-radius: 15px;

  background: linear-gradient(
    145deg,
    rgba(6, 63, 116, 0.27),
    rgba(2, 31, 68, 0.32)
  );

  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.07),
    0 9px 22px rgba(0, 14, 40, 0.13);
}

/* ========================================
   قیمت خودرو
======================================== */

.gk-vehicle-price-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 10px;
}

.gk-vehicle-price-input {
  position: relative;
}

.gk-vehicle-price-input input {
  padding-left: 61px;
}

.gk-vehicle-price-input > span {
  position: absolute;
  top: 1px;
  bottom: 1px;
  left: 1px;

  width: 55px;

  display: grid;
  place-items: center;

  color: #ffe3a1;
  font-size: 8px;
  font-weight: 800;

  border-right: 1px solid rgba(255, 209, 100, 0.23);
  border-radius: 9px 0 0 9px;

  background: rgba(220, 162, 48, 0.13);

  pointer-events: none;
}

/* ========================================
   گزینه قیمت توافقی
======================================== */

.gk-vehicle-negotiable {
  position: relative;

  min-height: 38px;
  padding: 7px 11px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  color: rgba(232, 248, 255, 0.75);
  font-size: 9px;
  font-weight: 800;
  white-space: nowrap;

  border: 1px solid rgba(143, 216, 255, 0.28);
  border-radius: 10px;

  background: rgba(2, 31, 68, 0.48);

  cursor: pointer;

  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.gk-vehicle-negotiable input {
  position: absolute;

  width: 1px;
  height: 1px;

  opacity: 0;
  pointer-events: none;
}

.gk-vehicle-check-box {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;

  display: grid;
  place-items: center;

  color: transparent;
  font-size: 12px;

  border: 1px solid rgba(149, 219, 255, 0.48);
  border-radius: 6px;

  background: rgba(1, 24, 57, 0.65);

  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.gk-vehicle-negotiable:has(input:checked) {
  color: #fff3cb;

  border-color: rgba(247, 207, 111, 0.7);

  background: linear-gradient(
    135deg,
    rgba(32, 139, 205, 0.43),
    rgba(196, 140, 37, 0.2)
  );

  box-shadow: 0 0 13px rgba(255, 201, 78, 0.15);
}

.gk-vehicle-negotiable input:checked + .gk-vehicle-check-box {
  color: #082749;

  border-color: #ffe096;
  background: #f1bd4e;

  box-shadow: 0 0 11px rgba(255, 199, 69, 0.45);
}

/* ========================================
   توضیحات کامل
======================================== */

.gk-vehicle-description-field {
  margin-top: 11px;
}

.gk-vehicle-description-field textarea {
  min-height: 90px;
}

.gk-vehicle-description-footer {
  padding: 0 3px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;

  color: rgba(214, 241, 255, 0.53);
  font-size: 7px;
}

.gk-vehicle-description-footer > span {
  color: rgba(226, 247, 255, 0.72);
  white-space: nowrap;
}

#gkVehicleDescriptionCount {
  color: #ffdb83;
  font-size: 9px;
}

/* ========================================
   اطلاعات فروشنده
======================================== */

.gk-vehicle-seller-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px;
}

/* پیام امنیت */

.gk-vehicle-security {
  margin-top: 9px;
  padding: 8px 10px;

  display: flex;
  align-items: center;
  gap: 7px;

  color: rgba(220, 243, 255, 0.7);

  border: 1px solid rgba(98, 218, 173, 0.22);
  border-radius: 10px;

  background: rgba(24, 127, 91, 0.11);
}

.gk-vehicle-security > span {
  color: #8df1c5;
  font-size: 15px;
}

.gk-vehicle-security p {
  font-size: 8px;
  line-height: 1.7;
}

/* ========================================
   حالت غیرفعال قیمت هنگام توافقی‌بودن
======================================== */

.gk-vehicle-price-input.is-disabled {
  opacity: 0.48;
}

.gk-vehicle-price-input.is-disabled input {
  cursor: not-allowed;
  background: rgba(2, 25, 56, 0.36);
}

/* ========================================
   نسخه موبایل
======================================== */

@media (max-width: 720px) {
  .gk-vehicle-sale-section,
  .gk-vehicle-seller-section {
    padding: 10px;
  }

  .gk-vehicle-price-row {
    grid-template-columns: 1fr;
  }

  .gk-vehicle-negotiable {
    justify-content: flex-start;
  }
}

@media (max-width: 470px) {
  .gk-vehicle-seller-grid {
    grid-template-columns: 1fr;
  }

  .gk-vehicle-description-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }
}
/* ========================================
   ستون نوع آگهی و پرداخت
======================================== */

.gk-vehicle-ad-options {
  align-self: start;

  padding: 11px;

  border-color: rgba(247, 204, 104, 0.38);

  background: linear-gradient(
    150deg,
    rgba(4, 50, 99, 0.61),
    rgba(2, 27, 61, 0.69)
  );

  box-shadow:
    inset 0 1px rgba(255, 255, 255, 0.09),
    0 12px 28px rgba(0, 15, 42, 0.2);
}

/* ========================================
   عنوان ستون
======================================== */

.gk-vehicle-options-title {
  margin-bottom: 10px;
  padding-bottom: 9px;

  display: flex;
  align-items: center;
  gap: 8px;

  border-bottom: 1px solid rgba(255, 211, 107, 0.24);
}

.gk-vehicle-options-title > span {
  width: 35px;
  height: 35px;
  flex: 0 0 35px;

  display: grid;
  place-items: center;

  color: #ffdf8b;
  font-size: 20px;

  border: 1px solid rgba(246, 202, 99, 0.52);
  border-radius: 11px;

  background: rgba(218, 158, 39, 0.13);

  box-shadow: 0 0 13px rgba(255, 197, 69, 0.16);
}

.gk-vehicle-options-title h2 {
  color: #f3fbff;
  font-size: 12px;
  font-weight: 900;
}

.gk-vehicle-options-title small {
  color: rgba(215, 240, 255, 0.54);
  font-size: 7px;
}

/* ========================================
   دایره انتخاب نوع آگهی
======================================== */

.gk-vehicle-normal-option input,
.gk-vehicle-special-select input,
.gk-vehicle-plan input,
.gk-vehicle-rules input {
  position: absolute;

  width: 1px;
  height: 1px;

  opacity: 0;
  pointer-events: none;
}

.gk-vehicle-option-radio {
  width: 19px;
  height: 19px;
  flex: 0 0 19px;

  display: grid;
  place-items: center;

  border: 2px solid rgba(179, 230, 255, 0.64);
  border-radius: 50%;

  background: rgba(2, 25, 57, 0.72);

  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.gk-vehicle-option-radio::after {
  content: "";

  width: 8px;
  height: 8px;

  border-radius: 50%;
  background: transparent;

  transition:
    background 0.25s ease,
    box-shadow 0.25s ease;
}

/* ========================================
   آگهی عادی رایگان
======================================== */

.gk-vehicle-normal-option {
  position: relative;

  min-height: 75px;
  padding: 10px;

  display: flex;
  align-items: center;
  gap: 9px;

  border: 1px solid rgba(123, 211, 255, 0.38);
  border-radius: 14px;

  background: linear-gradient(
    135deg,
    rgba(31, 135, 205, 0.25),
    rgba(3, 42, 86, 0.45)
  );

  cursor: pointer;

  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease,
    transform 0.25s ease;
}

.gk-vehicle-normal-option:hover {
  transform: translateY(-1px);
  border-color: rgba(133, 220, 255, 0.67);
}

.gk-vehicle-option-content {
  min-width: 0;

  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 3px;
}

.gk-vehicle-option-content strong {
  color: #effaff;
  font-size: 11px;
  font-weight: 900;
}

.gk-vehicle-option-content small {
  color: rgba(216, 242, 255, 0.54);
  font-size: 7px;
  line-height: 1.6;
}

.gk-vehicle-option-content b {
  color: #99e5ff;
  font-size: 10px;
}

/* حالت انتخاب‌شده آگهی رایگان */

.gk-vehicle-normal-option:has(input:checked) {
  border-color: rgba(126, 222, 255, 0.9);

  background: linear-gradient(
    135deg,
    rgba(45, 166, 232, 0.47),
    rgba(5, 69, 128, 0.58)
  );

  box-shadow:
    0 0 16px rgba(59, 184, 249, 0.24),
    inset 0 1px rgba(255, 255, 255, 0.12);
}

.gk-vehicle-normal-option input:checked + .gk-vehicle-option-radio {
  border-color: #a8ebff;
  background: rgba(23, 128, 193, 0.77);

  box-shadow: 0 0 10px rgba(93, 211, 255, 0.55);
}

.gk-vehicle-normal-option input:checked + .gk-vehicle-option-radio::after {
  background: #dcf8ff;
  box-shadow: 0 0 7px #7cddff;
}

/* ========================================
   آگهی ویژه پولی
======================================== */

.gk-vehicle-special-option {
  margin-top: 10px;
  padding: 10px;

  border: 1px solid rgba(244, 196, 82, 0.4);
  border-radius: 15px;

  background: linear-gradient(
    145deg,
    rgba(95, 66, 14, 0.24),
    rgba(2, 28, 63, 0.54)
  );

  transition:
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.gk-vehicle-special-option:has(#gkVehicleSpecialAd:checked) {
  border-color: rgba(255, 211, 103, 0.9);

  background: linear-gradient(
    145deg,
    rgba(126, 87, 13, 0.35),
    rgba(4, 48, 91, 0.63)
  );

  box-shadow:
    0 0 20px rgba(255, 194, 59, 0.24),
    inset 0 1px rgba(255, 255, 255, 0.11);
}

/* عنوان آگهی ویژه */

.gk-vehicle-special-select {
  position: relative;

  display: flex;
  align-items: center;
  gap: 8px;

  cursor: pointer;
}

.gk-vehicle-special-heading {
  min-width: 0;

  display: flex;
  align-items: center;
  gap: 7px;
}

.gk-vehicle-special-heading > span:first-child {
  color: #ffd877;
  font-size: 21px;

  filter: drop-shadow(0 0 7px rgba(255, 199, 65, 0.48));
}

.gk-vehicle-special-heading > span:last-child {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.gk-vehicle-special-heading strong {
  color: #ffe39b;
  font-size: 12px;
  font-weight: 900;
}

.gk-vehicle-special-heading small {
  color: rgba(255, 238, 196, 0.57);
  font-size: 7px;
}

/* دایره انتخاب ویژه */

.gk-vehicle-special-select input:checked + .gk-vehicle-option-radio {
  border-color: #ffe099;
  background: rgba(195, 135, 25, 0.72);

  box-shadow: 0 0 11px rgba(255, 201, 70, 0.6);
}

.gk-vehicle-special-select input:checked + .gk-vehicle-option-radio::after {
  background: #fff2c7;
  box-shadow: 0 0 7px #ffd26c;
}

/* ========================================
   پلن‌های پولی
======================================== */

.gk-vehicle-special-plans {
  margin-top: 10px;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 6px;

  transition:
    opacity 0.25s ease,
    filter 0.25s ease;
}

/* تا زمانی که ویژه انتخاب نشده */

.gk-vehicle-special-option:not(:has(#gkVehicleSpecialAd:checked))
  .gk-vehicle-special-plans {
  opacity: 0.45;
  filter: grayscale(0.45);

  pointer-events: none;
}

.gk-vehicle-plan {
  position: relative;
  display: block;

  cursor: pointer;
}

.gk-vehicle-plan > span {
  position: relative;

  min-height: 91px;
  padding: 10px 4px 7px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 4px;

  text-align: center;

  border: 1px solid rgba(244, 204, 112, 0.3);
  border-radius: 11px;

  background: rgba(3, 32, 68, 0.62);

  transition:
    transform 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease,
    box-shadow 0.25s ease;
}

.gk-vehicle-plan:hover > span {
  transform: translateY(-2px);
  border-color: rgba(255, 213, 113, 0.65);
}

.gk-vehicle-plan b {
  color: #f7fbff;
  font-size: 10px;
}

.gk-vehicle-plan strong {
  color: #ffdc85;
  font-size: 10px;
}

.gk-vehicle-plan small {
  color: rgba(224, 243, 255, 0.58);
  font-size: 7px;
}

/* برچسب پیشنهادی */

.gk-vehicle-plan em {
  position: absolute;
  top: -7px;
  right: 50%;

  padding: 2px 5px;

  transform: translateX(50%);

  color: #092545;
  font-size: 6px;
  font-style: normal;
  font-weight: 900;
  white-space: nowrap;

  border-radius: 999px;

  background: #ffd36f;

  box-shadow: 0 0 9px rgba(255, 201, 68, 0.42);
}

/* پلن انتخاب‌شده */

.gk-vehicle-plan input:checked + span {
  transform: translateY(-2px);

  border-color: #ffe09a;

  background: linear-gradient(
    145deg,
    rgba(219, 158, 39, 0.37),
    rgba(15, 86, 145, 0.56)
  );

  box-shadow:
    0 0 0 2px rgba(255, 205, 91, 0.14),
    0 0 16px rgba(255, 196, 58, 0.32),
    inset 0 1px rgba(255, 255, 255, 0.14);
}

/* ========================================
   مزایای آگهی ویژه
======================================== */

.gk-vehicle-special-benefits {
  margin-top: 9px;

  display: flex;
  flex-direction: column;
  gap: 5px;
}

.gk-vehicle-special-benefits > div {
  min-height: 30px;
  padding: 5px 7px;

  display: flex;
  align-items: center;
  gap: 7px;

  color: rgba(242, 249, 255, 0.78);

  border: 1px solid rgba(244, 203, 105, 0.19);
  border-radius: 9px;

  background: rgba(2, 28, 62, 0.43);
}

.gk-vehicle-special-benefits span {
  width: 21px;
  height: 21px;

  display: grid;
  place-items: center;

  color: #ffda7b;
  font-size: 12px;
}

.gk-vehicle-special-benefits p {
  font-size: 8px;
  font-weight: 700;
}

/* ========================================
   خلاصه هزینه
======================================== */

.gk-vehicle-payment-summary {
  margin-top: 10px;
  padding: 9px 10px;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;

  border: 1px solid rgba(137, 216, 255, 0.25);
  border-radius: 11px;

  background: rgba(3, 39, 81, 0.49);
}

.gk-vehicle-payment-summary span {
  color: rgba(222, 243, 255, 0.69);
  font-size: 8px;
}

.gk-vehicle-payment-summary strong {
  color: #a7ebff;
  font-size: 11px;
  font-weight: 900;
}

/* ========================================
   پذیرش قوانین
======================================== */

.gk-vehicle-rules {
  position: relative;

  margin-top: 9px;
  padding: 8px;

  display: flex;
  align-items: flex-start;
  gap: 7px;

  color: rgba(224, 244, 255, 0.68);
  font-size: 7px;
  line-height: 1.7;

  border: 1px solid rgba(141, 215, 255, 0.2);
  border-radius: 10px;

  background: rgba(2, 28, 61, 0.35);

  cursor: pointer;
}

.gk-vehicle-rules-box {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;

  display: grid;
  place-items: center;

  color: transparent;
  font-size: 11px;

  border: 1px solid rgba(154, 223, 255, 0.45);
  border-radius: 5px;

  background: rgba(1, 23, 53, 0.66);
}

.gk-vehicle-rules input:checked + .gk-vehicle-rules-box {
  color: #082544;

  border-color: #ffe095;
  background: #f1bd4e;

  box-shadow: 0 0 10px rgba(255, 198, 66, 0.4);
}

/* ========================================
   دکمه ثبت و پرداخت
======================================== */

.gk-vehicle-submit {
  width: 100%;
  min-height: 42px;
  margin-top: 10px;
  padding: 8px 12px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;

  color: #effbff;
  font-family: inherit;
  font-size: 11px;

  border: 1px solid rgba(143, 223, 255, 0.7);
  border-radius: 11px;

  background: linear-gradient(135deg, #238dcc, #0b5d9f);

  box-shadow:
    0 8px 19px rgba(0, 66, 124, 0.3),
    inset 0 1px rgba(255, 255, 255, 0.2);

  cursor: pointer;

  transition:
    transform 0.25s ease,
    filter 0.25s ease,
    box-shadow 0.25s ease;
}

.gk-vehicle-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.12);

  box-shadow:
    0 0 20px rgba(96, 211, 255, 0.36),
    inset 0 1px rgba(255, 255, 255, 0.22);
}

/* دکمه هنگام انتخاب آگهی ویژه */

.gk-vehicle-ad-options:has(#gkVehicleSpecialAd:checked) .gk-vehicle-submit {
  color: #092643;

  border-color: #ffe9ae;

  background: linear-gradient(135deg, #ffe39a, #eeb844, #ffd875);

  box-shadow:
    0 0 20px rgba(255, 195, 58, 0.42),
    inset 0 1px rgba(255, 255, 255, 0.42);
}

/* ========================================
   دکمه انصراف
======================================== */

.gk-vehicle-cancel {
  min-height: 34px;
  margin-top: 7px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: rgba(230, 246, 255, 0.73);
  text-decoration: none;
  font-size: 9px;

  border: 1px solid rgba(140, 214, 255, 0.23);
  border-radius: 10px;

  background: rgba(2, 28, 62, 0.38);

  transition:
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.gk-vehicle-cancel:hover {
  color: #ffe29a;
  border-color: rgba(247, 204, 102, 0.55);
  background: rgba(8, 59, 110, 0.52);
}

/* امنیت پرداخت */

.gk-vehicle-payment-security {
  margin-top: 8px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;

  color: rgba(151, 235, 199, 0.68);
  font-size: 7px;
}

/* ========================================
   تبلت و موبایل
======================================== */

@media (max-width: 720px) {
  .gk-vehicle-ad-options {
    width: 100%;
  }

  .gk-vehicle-special-plans {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .gk-vehicle-plan > span {
    min-height: 82px;
  }
}

@media (max-width: 390px) {
  .gk-vehicle-special-plans {
    grid-template-columns: 1fr;
  }

  .gk-vehicle-plan > span {
    min-height: 65px;
  }
}
/* ========================================
   پنجره نتیجه ثبت آگهی خودرو
======================================== */

.gk-vehicle-result-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;

  padding: 15px;

  display: grid;
  place-items: center;

  direction: rtl;

  background: rgba(0, 12, 31, 0.68);

  -webkit-backdrop-filter: blur(7px);
  backdrop-filter: blur(7px);

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

/* حالت نمایش پنجره */

.gk-vehicle-result-modal.show {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* ========================================
   قاب اصلی نتیجه
======================================== */

.gk-vehicle-result-box {
  position: relative;

  width: min(430px, 100%);
  padding: 27px 22px 20px;

  text-align: center;

  border: 1px solid rgba(146, 221, 255, 0.67);
  border-radius: 22px;

  background: linear-gradient(
    145deg,
    rgba(7, 71, 130, 0.95),
    rgba(2, 34, 73, 0.97)
  );

  box-shadow:
    0 0 0 1px rgba(255, 209, 100, 0.13),
    0 0 30px rgba(54, 180, 246, 0.31),
    0 25px 65px rgba(0, 8, 28, 0.57),
    inset 0 1px rgba(255, 255, 255, 0.13);

  overflow: hidden;

  transform: translateY(24px) scale(0.94);
  opacity: 0;

  transition:
    transform 0.35s ease,
    opacity 0.35s ease;
}

.gk-vehicle-result-modal.show .gk-vehicle-result-box {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* نور بالای پنجره */

.gk-vehicle-result-box::before {
  content: "";

  position: absolute;
  top: 0;
  right: 12%;
  left: 12%;

  height: 2px;

  background: linear-gradient(
    90deg,
    transparent,
    #75dcff,
    #ffe094,
    transparent
  );

  box-shadow: 0 0 15px rgba(255, 208, 92, 0.72);
}

/* ========================================
   دکمه بستن
======================================== */

.gk-vehicle-result-close {
  position: absolute;
  top: 12px;
  left: 12px;

  width: 31px;
  height: 31px;

  display: grid;
  place-items: center;

  color: #dff7ff;
  font-family: inherit;
  font-size: 21px;
  line-height: 1;

  border: 1px solid rgba(151, 222, 255, 0.43);
  border-radius: 50%;

  background: rgba(1, 29, 64, 0.57);

  cursor: pointer;

  transition:
    transform 0.25s ease,
    color 0.25s ease,
    border-color 0.25s ease,
    background 0.25s ease;
}

.gk-vehicle-result-close:hover {
  transform: rotate(90deg);

  color: #ffe39d;
  border-color: rgba(255, 213, 112, 0.71);
  background: rgba(15, 87, 145, 0.75);
}

/* ========================================
   آیکون موفقیت
======================================== */

.gk-vehicle-result-icon {
  width: 67px;
  height: 67px;
  margin: 0 auto 12px;

  display: grid;
  place-items: center;

  color: #06284b;
  font-size: 34px;
  font-weight: 900;

  border: 2px solid rgba(221, 249, 255, 0.78);
  border-radius: 50%;

  background: linear-gradient(145deg, #c8f5ff, #56c6ee);

  box-shadow:
    0 0 0 7px rgba(94, 205, 247, 0.1),
    0 0 24px rgba(76, 198, 245, 0.44);

  animation: gkVehicleResultIcon 0.75s ease both;
}

@keyframes gkVehicleResultIcon {
  0% {
    transform: scale(0.3) rotate(-18deg);
    opacity: 0;
  }

  65% {
    transform: scale(1.12) rotate(4deg);
  }

  100% {
    transform: scale(1) rotate(0);
    opacity: 1;
  }
}

/* حالت آگهی ویژه */

.gk-vehicle-result-modal.special-result .gk-vehicle-result-box {
  border-color: rgba(255, 215, 118, 0.82);

  box-shadow:
    0 0 0 1px rgba(255, 209, 100, 0.19),
    0 0 35px rgba(255, 192, 47, 0.31),
    0 25px 65px rgba(0, 8, 28, 0.58),
    inset 0 1px rgba(255, 255, 255, 0.15);
}

.gk-vehicle-result-modal.special-result .gk-vehicle-result-icon {
  color: #08294a;

  border-color: #fff0c3;

  background: linear-gradient(145deg, #fff0bd, #edb940);

  box-shadow:
    0 0 0 7px rgba(255, 200, 68, 0.1),
    0 0 27px rgba(255, 193, 53, 0.5);
}

/* ========================================
   نوشته‌های نتیجه
======================================== */

.gk-vehicle-result-label {
  display: block;
  margin-bottom: 5px;

  color: #8ddfff;
  font-size: 8px;
  font-weight: 800;
}

.gk-vehicle-result-box h2 {
  color: #f5fbff;

  font-size: 20px;
  line-height: 1.5;
  font-weight: 900;
}

.gk-vehicle-result-box > p {
  max-width: 350px;
  margin: 8px auto 0;

  color: rgba(220, 243, 255, 0.67);
  font-size: 9px;
  line-height: 1.9;
}

/* حالت ویژه نوشته کوچک */

.gk-vehicle-result-modal.special-result .gk-vehicle-result-label {
  color: #ffdc85;
}

/* ========================================
   مشخصات نتیجه
======================================== */

.gk-vehicle-result-details {
  margin-top: 16px;

  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 7px;
}

.gk-vehicle-result-details > div {
  min-height: 67px;
  padding: 8px 5px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;

  border: 1px solid rgba(142, 216, 255, 0.23);
  border-radius: 11px;

  background: rgba(1, 29, 64, 0.43);
}

.gk-vehicle-result-details span {
  color: rgba(216, 240, 255, 0.52);
  font-size: 7px;
}

.gk-vehicle-result-details strong {
  color: #dff8ff;
  font-size: 9px;
  line-height: 1.5;
}

/* ========================================
   پیام پرداخت
======================================== */

.gk-vehicle-result-payment {
  margin-top: 10px;
  padding: 9px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;

  color: rgba(255, 238, 196, 0.75);

  border: 1px solid rgba(255, 208, 99, 0.27);
  border-radius: 10px;

  background: rgba(153, 103, 16, 0.13);
}

.gk-vehicle-result-payment span {
  color: #ffda7b;
  font-size: 15px;
}

.gk-vehicle-result-payment p {
  font-size: 8px;
  line-height: 1.7;
}

/* ========================================
   دکمه‌های نتیجه
======================================== */

.gk-vehicle-result-actions {
  margin-top: 14px;

  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.gk-vehicle-result-back,
.gk-vehicle-result-home {
  min-height: 39px;
  padding: 8px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family: inherit;
  font-size: 9px;
  font-weight: 800;
  text-decoration: none;

  border-radius: 10px;

  cursor: pointer;

  transition:
    transform 0.25s ease,
    filter 0.25s ease,
    box-shadow 0.25s ease;
}

.gk-vehicle-result-back {
  color: #effbff;

  border: 1px solid rgba(139, 220, 255, 0.63);

  background: linear-gradient(135deg, #218dcc, #0a5b9c);
}

.gk-vehicle-result-home {
  color: #ffe8aa;

  border: 1px solid rgba(245, 204, 105, 0.53);

  background: rgba(3, 35, 74, 0.54);
}

.gk-vehicle-result-back:hover,
.gk-vehicle-result-home:hover {
  transform: translateY(-2px);
  filter: brightness(1.12);
}

/* ========================================
   نوار زمان پنج‌ثانیه‌ای
======================================== */

.gk-vehicle-result-progress {
  height: 3px;
  margin-top: 15px;

  border-radius: 999px;

  background: rgba(179, 225, 247, 0.14);

  overflow: hidden;
}

.gk-vehicle-result-progress span {
  width: 100%;
  height: 100%;

  display: block;

  border-radius: inherit;

  background: linear-gradient(90deg, #4ec4f2, #ffe08f);
}

.gk-vehicle-result-modal.show .gk-vehicle-result-progress span {
  animation: gkVehicleResultProgress 5s linear forwards;
}

@keyframes gkVehicleResultProgress {
  from {
    width: 100%;
  }

  to {
    width: 0;
  }
}

.gk-vehicle-result-time {
  display: block;
  margin-top: 6px;

  color: rgba(211, 237, 250, 0.44);
  font-size: 7px;
}

/* ========================================
   نسخه موبایل
======================================== */

@media (max-width: 520px) {
  .gk-vehicle-result-modal {
    padding: 10px;
  }

  .gk-vehicle-result-box {
    padding: 24px 14px 16px;
    border-radius: 18px;
  }

  .gk-vehicle-result-icon {
    width: 59px;
    height: 59px;

    font-size: 29px;
  }

  .gk-vehicle-result-box h2 {
    font-size: 17px;
  }

  .gk-vehicle-result-details {
    gap: 5px;
  }

  .gk-vehicle-result-details > div {
    min-height: 62px;
    padding-inline: 3px;
  }
}
/* ===== بزرگ‌ترکردن گالری تصاویر خودرو ===== */

.gk-vehicle-image-area {
  grid-template-columns: 1fr !important;
}

.gk-vehicle-main-preview {
  width: 100%;
  height: 220px;
}

.gk-vehicle-image-controls {
  width: 100%;
}

.gk-vehicle-thumbnails {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 7px;
}

.gk-vehicle-thumbnail {
  width: 100%;
  height: 68px;
}

/* نسخه موبایل */

@media (max-width: 470px) {
  .gk-vehicle-main-preview {
    height: 190px;
  }

  .gk-vehicle-thumbnail {
    height: 52px;
  }
}
/* ===== مرتب و هم‌سطح‌کردن فیلدهای خودرو ===== */

.gk-vehicle-fields-grid {
  align-items: end;
}

.gk-vehicle-fields-grid > .gk-vehicle-field {
  align-self: end;

  display: grid;
  grid-template-rows: 24px 38px;
  gap: 5px;
}

/* ارتفاع یکسان عنوان تمام فیلدها */

.gk-vehicle-fields-grid > .gk-vehicle-field > label {
  width: 100%;
  height: 24px;
  min-height: 24px;

  display: flex;
  align-items: flex-end;
  gap: 3px;

  white-space: nowrap;
}

/* ارتفاع یکسان کادرها */

.gk-vehicle-fields-grid > .gk-vehicle-field > input,
.gk-vehicle-fields-grid > .gk-vehicle-field > select,
.gk-vehicle-fields-grid > .gk-vehicle-field > .gk-vehicle-unit-input {
  width: 100%;
  height: 38px;

  align-self: end;
}

.gk-vehicle-unit-input input {
  height: 38px;
}
/* ===== بیشترکردن فضای نوشتن کارکرد خودرو ===== */

#gkVehicleMileage {
  padding-right: 10px !important;
  padding-left: 47px !important;

  text-align: right;
}

.gk-vehicle-unit-input > span {
  width: 42px !important;
  min-width: 42px !important;
  padding: 0 3px !important;

  font-size: 6px !important;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
