/* Copy Animation */
.base-color {
  color: hsl(var(--main)) !important;
}

.copyInput {
  display: inline-block;
  line-height: 50px;
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.copied::after {
  position: absolute;
  top: 4px;
  right: 12%;
  width: 100px;
  display: block;
  content: "COPIED";
  font-size: 1em;
  padding: 5px 5px;
  color: #fff;
  background-color: #ff7000;
  border-radius: 3px;
  opacity: 0;
  will-change: opacity, transform;
  animation: showcopied 1.5s ease;
  font-size: .875rem;
}

@keyframes showcopied {
  0% {
    opacity: 0;
    transform: translateX(100%);
  }

  50% {
    opacity: 0.7;
    transform: translateX(40%);
  }

  70% {
    opacity: 1;
    transform: translateX(0);
  }

  100% {
    opacity: 0;
  }
}

.cookies-card {
  width: 520px;
  padding: 30px;
  color: #1e2337;
  position: fixed;
  bottom: 15px;
  left: 15px;
  z-index: 999999;
  transition: all 0.5s;
  background: #d1d1d1;
  border-radius: 5px;
}

.cookies-card.hide {
  bottom: -500px !important;
}

.radius--10px {
  border-radius: 10px;
}

.cookies-card__icon {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background-color: #6e6f70;
  color: #fff;
  font-size: 32px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
}

.cookies-card__content {
  margin-bottom: 0;
}

.cookies-btn {
  color: #363636;
  text-decoration: none;
  padding: 10px 35px;
  margin: 3px 5px;
  display: inline-block;
  border-radius: 999px;
}

.cookies-btn:hover {
  color: #363636;
}

@media (max-width: 767px) {
  .cookies-card {
    width: 100%;
    left: 0;
    bottom: 0;
    font-size: 14px;
    padding: 15px;
  }
}

.hover-input-popup {
  position: relative;
}

.input-popup {
  display: none;
}

.hover-input-popup .input-popup {
  display: block;
  position: absolute;
  bottom: 130%;
  left: 50%;
  width: 280px;
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
}

.input-popup::after {
  position: absolute;
  content: "";
  bottom: -19px;
  left: 50%;
  margin-left: -5px;
  border-width: 10px 10px 10px 10px;
  border-style: solid;
  border-color: transparent transparent #1a1a1a transparent;
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}

.input-popup p {
  padding-left: 20px;
  position: relative;
  color: #fff;
}

.input-popup p::before {
  position: absolute;
  content: "";
  font-family: "Line Awesome Free";
  font-weight: 900;
  left: 0;
  top: 4px;
  line-height: 1;
  font-size: 18px;
}

.input-popup p.error {
  text-decoration: line-through;
}

.input-popup p.error::before {
  content: "\f057";
  color: #ea5455;
}

.input-popup p.success::before {
  content: "\f058";
  color: #28c76f;
}

.show-filter {
  display: none;
}

@media (max-width: 767px) {
  .responsive-filter-card {
    display: none;
    transition: none;
  }

  .show-filter {
    display: block;
  }
}


.gateway-card {
  padding: 15px;
}

.payment-card-title {
  padding: 13px 25px;
  text-align: center;
  background-color: hsl(var(--white));
  box-shadow: var(--box-shadow);
  border-radius: 5px;
  border: 0;
  margin-bottom: 0px;
  color: #fff;
}

.payment-system-list {
  --thumb-width: 100px;
  --thumb-height: 40px;
  --radio-size: 12px;
  --border-color: #cccccf59;
  --hover-border-color: rgb(var(--main));
  background-color: hsl(var(--white));
  box-shadow: var(--box-shadow);
  border-radius: 5px;
  height: 100%;
}

.payment-system-list.is-scrollable {
  max-height: min(388px, 70vh);
  overflow-x: auto;
  padding-block: 4px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar {
  width: 5px;
}

.payment-system-list.is-scrollable::-webkit-scrollbar-thumb {
  background-color: rgb(var(--main));
  border-radius: 10px;
}

.payment-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 18px;
  border: 1px solid #fff;
  border-top-color: var(--border-color);
  transition: all 0.3s;
  border-left: 3px solid transparent;
}

.payment-item:first-child {
  border-top-color: #fff;
  border-radius: 5px 5px 0 0;
}

.payment-item:has(.payment-item__radio:checked) {
  border-left: 3px solid hsl(var(--base));
  border-radius: 0px;
}

.payment-item__check {
  border: 3px solid transparent;
}

.payment-item:has(.payment-item__radio:checked) .payment-item__check {
  border: 3px solid hsl(var(--base));
}

.payment-item__info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  max-width: calc(100% - var(--thumb-width));
}

.payment-item__check {
  width: var(--radio-size);
  height: var(--radio-size);
  border: 1px solid hsl(var(--base));
  display: inline-block;
  border-radius: 100%;
}

.payment-item__name {
  padding-left: 10px;
  width: calc(100% - var(--radio-size));
  transition: all 0.3s;
}

.payment-item__thumb {
  width: var(--thumb-width);
  height: var(--thumb-height);
  text-align: right;
  padding-left: 10px;

  &:has(.text) {
    width: fit-content;
  }
}

.payment-item__thumb img {
  max-width: var(--thumb-width);
  max-height: var(--thumb-height);
  object-fit: cover;
}

.deposit-info {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 10px;
}

.deposit-info__title {
  max-width: 50%;
  margin-bottom: 0px;
  text-align: left;
}

.deposit-info__input {
  max-width: 50%;
  text-align: right;
  width: 100%;
}

.deposit-info__input-select {
  border: 1px solid var(--border-color);
  width: 100%;
  border-radius: 5px;
  padding-block: 6px;
}

.deposit-info__input-group {
  border: 1px solid var(--border-color);
  border-radius: 5px;

  .deposit-info__input-group-text {
    align-self: center;
    padding-left: 5px;
  }
}

.deposit-info__input-group .form--control {
  padding: 5px;
  border: 0;
  height: 35px;
  text-align: right;
}

.deposit-info__input-group .form--control:focus {
  box-shadow: unset;
}

.info-text .text,
.deposit-info__input .text {
  font-size: 14px;
}

.deposit-info__title .text.has-icon {
  display: flex;
  align-items: center;
  gap: 5px;
}

.total-amount {
  border-top: 1px solid var(--border-color);
}

.total-amount .deposit-info__title {
  font-weight: 600;
}

.payment-item__btn {
  border: 0;
  border-block: 1px solid var(--border-color);
  border-bottom: 0;
  background: #fff;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 15px;
  font-weight: 500;
}

.payment-item:hover+.payment-item__btn {
  border-top-color: #fff;
}

button .spinner-border {
  --bs-spinner-width: 1.5rem;
  --bs-spinner-height: 1.5rem;
}


label.required:after {
  content: '*';
  color: hsl(var(--danger));
  margin-left: 2px;
}

/* ========== User panel: light sidebar (basic_tw) ========== */
.dashboard {
  --tw-user-sidebar-width: 248px;
  --tw-user-shell-bg: #f6f7f9;
  --tw-user-card-border: #e8eaef;
  min-height: 100vh;
  background: var(--tw-user-shell-bg);
}

.dashboard .tw-user-sidebar.sidebar-menu {
  width: var(--tw-user-sidebar-width);
  max-width: 100%;
  background-color: #fff;
  border-right: 1px solid var(--tw-user-card-border);
  box-shadow: none;
}

@media screen and (max-width: 424px) {
  .dashboard .tw-user-sidebar.sidebar-menu {
    width: min(288px, 92vw);
  }
}

.dashboard .dashboard__right {
  margin-left: var(--tw-user-sidebar-width);
  background-color: var(--tw-user-shell-bg);
}

@media screen and (max-width: 991px) {
  .dashboard .dashboard__right {
    margin-left: 0;
  }
}

.dashboard .tw-user-sidebar.sidebar-menu::after {
  display: none;
}

.dashboard .tw-user-sidebar .sidebar-logo {
  background-color: #fff;
  border-bottom: none;
  padding: 0.75rem 0.875rem;
}

.dashboard .tw-user-sidebar .sidebar-logo img {
  max-width: 156px;
  max-height: 52px;
}

.dashboard .tw-user-sidebar .sidebar-menu-list {
  margin-top: 1.125rem;
  padding: 0 12px 1.5rem;
}

.dashboard .tw-user-sidebar .sidebar-menu__close {
  color: #64748b;
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
}

.dashboard .tw-user-sidebar .sidebar-menu__close:hover,
.dashboard .tw-user-sidebar .sidebar-menu__close:focus {
  background-color: #fee2e2;
  border-color: #fecaca;
  color: #b91c1c;
}

.dashboard .tw-user-sidebar .sidebar-menu-list__link {
  color: #334155;
  font-weight: 500;
  font-size: 0.875rem;
  padding: 9px 12px;
  border-radius: 8px;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.dashboard .tw-user-sidebar .sidebar-menu-list__link:hover {
  background: #f1f5f9;
  color: #0f172a;
  background-image: none;
}

.dashboard .tw-user-sidebar .sidebar-menu-list__link .icon {
  color: #64748b;
  width: 2rem;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-right: 10px;
  border-radius: 7px;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.dashboard .tw-user-sidebar .sidebar-menu-list__link:hover .icon {
  color: hsl(var(--base));
  background-color: hsl(var(--base) / 0.08);
}

.dashboard .tw-user-sidebar .sidebar-menu-list__item.active > a,
.dashboard .tw-user-sidebar .sidebar-menu-list__item.has-dropdown.active > a {
  color: hsl(var(--base));
  background: hsl(var(--base) / 0.12);
  background-image: none;
  box-shadow: inset 3px 0 0 hsl(var(--base));
}

.dashboard .tw-user-sidebar .sidebar-menu-list__item.active > a .icon,
.dashboard .tw-user-sidebar .sidebar-menu-list__item.has-dropdown.active > a .icon {
  color: hsl(var(--base));
  background-color: hsl(var(--base) / 0.15);
}

.dashboard .tw-user-sidebar .sidebar-menu-list__item.has-dropdown > a::after {
  color: #94a3b8;
  top: 13px;
  right: 14px;
  font-size: 0.8125rem;
}

.dashboard .tw-user-sidebar .sidebar-menu-list__item.has-dropdown.active > a::after {
  color: hsl(var(--base));
}

.dashboard .tw-user-sidebar .sidebar-submenu-list__link {
  color: #475569;
  background-image: none;
  margin-left: 10px;
  padding: 8px 12px 8px 28px;
  border-radius: 7px;
  font-weight: 500;
  font-size: 0.875rem;
}

.dashboard .tw-user-sidebar .sidebar-submenu-list__link::before {
  border-color: #cbd5e1;
  background-color: #fff;
}

.dashboard .tw-user-sidebar .sidebar-submenu-list__item.active > a,
.dashboard .tw-user-sidebar .sidebar-submenu-list__link:hover {
  color: hsl(var(--base));
  background: hsl(var(--base) / 0.08);
  background-image: none;
}

.dashboard .tw-user-sidebar .sidebar-submenu-list__item.active > a::before {
  border-color: hsl(var(--base));
  background-color: hsl(var(--base));
}

.dashboard .tw-user-sidebar .sidebar-menu-list__item:last-child .sidebar-menu-list__link {
  margin-top: 4px;
  color: #64748b;
}

.dashboard .tw-user-sidebar .sidebar-menu-list__item:last-child .sidebar-menu-list__link:hover {
  color: #b91c1c;
  background: #fef2f2;
}

.dashboard .tw-user-sidebar .sidebar-menu-list__item:last-child .sidebar-menu-list__link:hover .icon {
  color: #b91c1c;
  background: #fee2e2;
}

/* ========== User panel: header (basic_tw) ========== */
.dashboard .tw-user-header.dashboard-header {
  background: var(--tw-user-shell-bg);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  border-bottom: none;
  box-shadow: none;
  z-index: 90;
}

.dashboard .tw-user-header .dashboard-header__inner {
  padding: 6px 0;
}

@media screen and (max-width: 991px) {
  .dashboard .tw-user-header .dashboard-header__inner {
    padding: 6px 0;
  }
}

.dashboard .tw-user-header .dashboard-body__bar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #475569;
  font-size: 1rem;
  transition:
    border-color 0.2s ease,
    color 0.2s ease,
    background-color 0.2s ease,
    box-shadow 0.2s ease;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.dashboard .tw-user-header .dashboard-body__bar-icon:hover {
  border-color: hsl(var(--base) / 0.35);
  color: hsl(var(--base));
  background: hsl(var(--base) / 0.06);
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.dashboard .tw-user-header .user-info__button {
  padding: 3px 10px 3px 3px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #fff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.dashboard .tw-user-header .user-info__button:hover {
  border-color: hsl(var(--base) / 0.28);
}

.dashboard .tw-user-header .user-info__thumb {
  width: 33px;
  height: 33px;
  border: 1px solid #f1f5f9;
}
.dashboard .user-info__profile {
    display: flex;
    flex-direction: column;
}
.dashboard .tw-user-header .user-info__name {
  color: #0f172a;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

.dashboard .tw-user-header .user-info__desc {
  color: #64748b;
  font-size: 0.75rem;
  line-height: 1.25;
}

.dashboard .tw-user-header .user-info__desc .icon {
  color: #94a3b8;
  margin-left: 6px;
  font-size: 0.7rem;
}

.dashboard .tw-user-header .user-info .user-info-dropdown {
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.04),
    0 20px 48px rgba(15, 23, 42, 0.12);
  margin-top: 10px;
  min-width: 228px;
  padding: 6px;
  overflow: hidden;
  background-color: #fff;
}

.dashboard .tw-user-header .user-info .user-info-dropdown__link {
  padding: 10px 12px;
  border-radius: 10px;
  color: #334155;
  font-weight: 500;
  border-bottom: 0 !important;
  transition:
    background-color 0.15s ease,
    color 0.15s ease;
}

.dashboard .tw-user-header .user-info .user-info-dropdown__link:hover {
  background-color: hsl(var(--base) / 0.09);
  color: hsl(var(--base));
}

.dashboard .tw-user-header .user-info .user-info-dropdown__link:hover .text,
.dashboard .tw-user-header .user-info .user-info-dropdown__link:hover .icon {
  color: inherit !important;
}

.dashboard .tw-user-header .user-info .user-info-dropdown__link .icon {
  color: #64748b;
  width: 1.5rem;
  text-align: center;
}

.dashboard .tw-user-header .user-info .user-info-dropdown__item + .user-info-dropdown__item {
  margin-top: 2px;
}

.dashboard .tw-user-header .user-info .user-info-dropdown__item:last-child .user-info-dropdown__link {
  color: #64748b;
}

.dashboard .tw-user-header .user-info .user-info-dropdown__item:last-child .user-info-dropdown__link:hover {
  background-color: #fef2f2;
  color: #b91c1c;
}

/* ========== User panel: shell density, cards, forms (basic_tw) ========== */
.dashboard .dashboard-body {
  padding: 1rem 1.25rem 1.5rem;
}

@media screen and (max-width: 424px) {
  .dashboard .dashboard-body {
    padding: 0.875rem 0.875rem 1.25rem;
  }
}

.dashboard .dashboard-body__top {
  margin-bottom: 0.5rem;
}

.dashboard .dashboard-body__left .title {
  font-size: 1.125rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.35;
  color: #0f172a;
}

.dashboard .dashboard-body .dashboard-body__left h4.title,
.dashboard .dashboard-body .dashboard-body__left h5.title {
  font-size: 1.125rem;
}

.dashboard .row > .col-12 > .insurance-plan-wrapper__header {
  border-radius: var(--form-radius);
  border: 1px solid hsl(var(--black) / 0.08);
}

.dashboard .custom--card {
  border: 1px solid var(--tw-user-card-border);
  box-shadow: none;
  border-radius: var(--form-radius);
}

.dashboard .custom--card .card-body {
  border-radius: var(--form-radius);
}

.dashboard .dashboard-widget {
  border: 1px solid var(--tw-user-card-border);
  box-shadow: none;
  border-radius: var(--form-radius);
}

.dashboard .dashboard-widget::after {
  display: none;
}

.dashboard .dashboard-widget:hover {
  transform: none;
  border-color: hsl(var(--black) / 0.12);
}

.dashboard .dashboard-table {
  border: 1px solid var(--tw-user-card-border);
  box-shadow: none;
  border-radius: var(--form-radius);
}

.dashboard .dashboard-table__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 1.125rem 1.25rem;
  border-bottom: 1px solid var(--tw-user-card-border);
}

.dashboard .user-hizmet-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid var(--tw-user-card-border);
  border-radius: var(--form-radius);
  background: #fff;
  text-decoration: none;
  color: inherit;
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
  position: relative;
}

.dashboard .user-hizmet-card:hover {
  border-color: hsl(var(--base) / 0.45);
  box-shadow: 0 4px 12px hsl(var(--base) / 0.08);
  transform: translateY(-1px);
  color: inherit;
}

.dashboard .user-hizmet-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f1f5f9;
}

.dashboard .user-hizmet-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dashboard .user-hizmet-card__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: hsl(var(--base));
}

.dashboard .user-hizmet-card__body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.dashboard .user-hizmet-card__body strong {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
}

.dashboard .user-hizmet-card__body small {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dashboard .user-hizmet-card__badge {
  display: inline-block;
  margin-top: auto;
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(var(--base));
  background: hsl(var(--base) / 0.1);
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  width: fit-content;
}

.dashboard .user-hizmet-card__arrow {
  position: absolute;
  top: 0.75rem;
  right: 0.75rem;
  font-size: 1.125rem;
  color: #fff;
  background: hsl(var(--base) / 0.85);
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dashboard .info-card {
  border: 1px solid var(--tw-user-card-border);
  box-shadow: none;
  border-radius: var(--form-radius);
}

.dashboard .information-container.information-two {
  border: 1px solid var(--tw-user-card-border);
  box-shadow: none;
  border-radius: var(--form-radius);
}

.dashboard .info-wrapper__title {
  font-size: 0.9375rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #0f172a;
}

.dashboard .page-list {
  padding-left: 1rem;
  padding-right: 1rem;
}

.dashboard .tw-user-sidebar .sidebar-menu-list__item {
  margin-bottom: 5px;
}

.dashboard .input-group {
  align-items: stretch;
}

.dashboard .input-group > .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: var(--form-min-height);
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  line-height: 1;
  border-radius: var(--form-radius);
}

.dashboard .input-group > .form--control,
.dashboard .input-group > .form-select {
  min-height: var(--form-min-height);
}

.dashboard .input-group > .input-group-text {
  min-height: var(--form-min-height);
}

.dashboard .d-flex.flex-wrap.align-items-center.gap-2 .btn,
.dashboard .d-flex.flex-wrap.align-items-center.gap-2 .btn--base,
.dashboard .d-flex.gap-2 .btn {
  min-height: var(--form-min-height);
  display: inline-flex;
  align-items: center;
}

.dashboard .tw-user-header .user-info .user-info-dropdown {
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

/* Tek col-md-12 içeren satırlarda üst boşluğu kaldır (mt-0 ile aynı) */
.dashboard .row > .col-md-12:only-child {
  margin-top: 0 !important;
}

/* ========== Form spacing: tutarlı dikey ritim (panel, bayi, viser-form) ========== */
:root {
  --form-row-gap: 1rem;
  --form-stack-gap: 1rem;
  --form-actions-gap: 1.25rem;
}

form .row,
form.row,
form .row > [class*='col-'] > .row {
  --bs-gutter-y: 0;
  row-gap: var(--form-row-gap);
  margin-top: 0;
}

form .row > [class*='col-'],
form.row > [class*='col-'] {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

form .row .form-group,
form .row > [class*='col-'].form-group {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

form .row > .form-group + .form-group {
  margin-top: 0 !important;
}

form .form-group + .form-group {
  margin-top: var(--form-stack-gap);
}

form .row > .form-group + .form-group,
form[class*='space-y-'] .form-group + .form-group,
form.verify-gcaptcha[class*='space-y-'] .form-group + .form-group,
.grid .form-group + .form-group,
[class*='gap-'] .form-group + .form-group {
  margin-top: 0 !important;
}


form .row + .form-group,
form .row + .btn,
form .row + button[type='submit'],
form .row + fieldset,
form .row + h6,
form fieldset + fieldset,
form fieldset + .bayi-form-submit,
form .form-group + .btn,
form .form-group + button[type='submit'],
form .form-group + .d-flex,
form .form-actions:not(:first-child),
form .d-flex:has(> button[type='submit'], > .btn[type='submit']):not(:first-child) {
  margin-top: var(--form-actions-gap);
}

form .form-group:not(:first-child):has(> button[type='submit'], > .btn[type='submit'], > .btn--base.w-100) {
  margin-top: var(--form-actions-gap);
}

/* Sayfa başlığı sağ toolbar: input / select / buton aynı minimum yükseklik */
.dashboard .dashboard-body__right .form--control,
.dashboard .dashboard-body__right .form-select,
.dashboard .dashboard-body__right select.form--control {
  min-height: var(--form-min-height);
  box-sizing: border-box;
}

.dashboard .dashboard-body__right .search-form .form--control {
  min-height: var(--form-min-height);
  padding-top: var(--form-padding-y);
  padding-bottom: var(--form-padding-y);
  padding-right: var(--form-padding-x);
  padding-left: 2.5rem;
}

@media screen and (max-width: 424px) {
  .dashboard .dashboard-body__right .search-form .form--control {
    padding-left: 2rem;
  }
}

.dashboard .dashboard-body__right a.btn,
.dashboard .dashboard-body__right .btn,
.dashboard .dashboard-body__right .btn.btn--sm,
.dashboard .dashboard-body__right .btn.btn-sm,
.dashboard .dashboard-body__right button.input-group-text {
  min-height: var(--form-min-height);
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--form-padding-y);
  padding-bottom: var(--form-padding-y);
  line-height: 1.25;
  font-size: var(--form-font-size);
  display: flex !important;
  flex-direction: row !important;
  gap: 5px;
}

.dashboard .dashboard-body__right .select2 + .select2-container {
  min-height: var(--form-min-height) !important;
}

.dashboard .dashboard-body__right .select2 + .select2-container .select2-selection--single,
.dashboard .dashboard-body__right .select2 + .select2-container .select2-selection {
  min-height: var(--form-min-height);
}

.dashboard .dashboard-body__right form.filter-dropdowns {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 10px;
}

.dashboard .dashboard-body__right form.filter-dropdowns > .flex-grow-1,
.dashboard .dashboard-body__right form.filter-dropdowns > .search-form,
.dashboard .dashboard-body__right form.filter-dropdowns > .dashboard-select {
  display: flex;
  align-items: stretch;
  min-width: 0;
}

.dashboard .dashboard-body__right form.filter-dropdowns .search-form {
  position: relative;
  flex: 1 1 auto;
}

.dashboard .dashboard-body__right form.filter-dropdowns .search-form .form--control {
  width: 100%;
  min-height: var(--form-min-height);
}

.dashboard .dashboard-body__right form.filter-dropdowns .dashboard-select .form-select,
.dashboard .dashboard-body__right form.filter-dropdowns .btn {
  width: 100%;
  min-height: var(--form-min-height);
  align-self: stretch;
}

.dashboard .dashboard-body__right .search-form:has(.form--control):has(button.input-group-text) {
  display: flex;
  flex-direction: row;
  align-items: stretch;
}

.dashboard .dashboard-body__right .search-form:has(button.input-group-text) .form--control {
  flex: 1 1 auto;
  min-width: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.dashboard .dashboard-body__right .search-form:has(button.input-group-text) button.input-group-text {
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  flex-shrink: 0;
}

/* ========== Bayi paneli: üst menü, tam genişlik ========== */
.dealer-panel--topnav .dealer-dashboard__main.dashboard__right {
  margin-left: 0;
  width: 100%;
}

.dealer-panel--topnav .dealer-page-wrapper {
  width: 100%;
  max-width: none;
}

.dealer-panel--topnav .dealer-topnav__impersonate {
  padding: 0.5rem 1.25rem;
  background: #fffbeb;
  border-bottom: 1px solid #fde68a;
  text-align: center;
}

.dealer-panel--topnav .dealer-topnav {
  position: sticky;
  top: 0;
  z-index: 120;
  background: #fff;
  border-bottom: 1px solid var(--tw-user-card-border, #e8eaef);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.04);
}

.dealer-panel--topnav .dealer-topnav__bar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1rem;
  padding: 0.625rem 1.25rem;
  max-width: 100%;
}

.dealer-panel--topnav .dealer-topnav__brand {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.dealer-panel--topnav .dealer-topnav__logo img {
  max-height: 44px;
  max-width: 140px;
  width: auto;
}

.dealer-panel--topnav .dealer-topnav__badge {
  display: inline-block;
  padding: 0.25rem 0.55rem;
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: hsl(var(--base));
  background: hsl(var(--base) / 0.1);
  border-radius: 999px;
  white-space: nowrap;
}

.dealer-panel--topnav .dealer-topnav__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-left: auto;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  background: #fff;
  color: #475569;
  font-size: 1rem;
}

.dealer-panel--topnav .dealer-topnav__toggle:hover {
  border-color: hsl(var(--base) / 0.35);
  color: hsl(var(--base));
  background: hsl(var(--base) / 0.06);
}

.dealer-panel--topnav .dealer-topnav__menu {
  flex: 1 1 auto;
  min-width: 0;
}

.dealer-panel--topnav .dealer-topnav__close {
  display: none;
}

.dealer-panel--topnav .dealer-topnav__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dealer-panel--topnav .dealer-topnav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  font-size: 0.875rem;
  font-weight: 500;
  color: #334155;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background-color 0.2s ease,
    color 0.2s ease;
}

.dealer-panel--topnav .dealer-topnav__link i {
  font-size: 1rem;
  color: #64748b;
}

.dealer-panel--topnav .dealer-topnav__link:hover,
.dealer-panel--topnav .dealer-topnav__link:focus {
  color: #0f172a;
  background: #f1f5f9;
}

.dealer-panel--topnav .dealer-topnav__link:hover i,
.dealer-panel--topnav .dealer-topnav__item.active .dealer-topnav__link i {
  color: hsl(var(--base));
}

.dealer-panel--topnav .dealer-topnav__item.active > .dealer-topnav__link,
.dealer-panel--topnav .dealer-topnav__item.active > .dropdown > .dealer-topnav__link {
  color: hsl(var(--base));
  background: hsl(var(--base) / 0.12);
  box-shadow: inset 0 -2px 0 hsl(var(--base));
}

.dealer-panel--topnav .dealer-topnav__dropdown {
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.1);
  padding: 0.35rem;
  min-width: 11rem;
}

.dealer-panel--topnav .dealer-topnav__dropdown .dropdown-item {
  border-radius: 7px;
  font-size: 0.875rem;
  font-weight: 500;
  padding: 0.45rem 0.65rem;
}

.dealer-panel--topnav .dealer-topnav__dropdown .dropdown-item.active,
.dealer-panel--topnav .dealer-topnav__dropdown .dropdown-item:active {
  background: hsl(var(--base) / 0.12);
  color: hsl(var(--base));
}

.dealer-panel--topnav .dealer-topnav__user {
  flex-shrink: 0;
  margin-left: auto;
}

.dealer-panel--topnav .dealer-topnav__user.user-info .user-info__button {
  padding: 3px 10px 3px 3px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #fff;
}

.dealer-panel--topnav .dealer-topnav__user.user-info .user-info-dropdown {
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  box-shadow:
    0 4px 6px rgba(15, 23, 42, 0.04),
    0 20px 48px rgba(15, 23, 42, 0.12);
  margin-top: 10px;
  min-width: 228px;
  padding: 6px;
  background-color: #fff;
}

.dealer-panel--topnav .bayi-menu-pending {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #f59e0b;
  flex-shrink: 0;
}

/* Bayi mobil menü: backdrop (1040) header altında, tam ekran menü üstte (1050+) */
body.dealer-panel--topnav .sidebar-overlay.show {
  z-index: 1040;
}

@media screen and (max-width: 991px) {
  .dealer-panel--topnav .dealer-topnav__bar {
    flex-wrap: nowrap;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.75rem;
  }

  .dealer-panel--topnav .dealer-topnav__brand {
    flex: 1 1 auto;
    min-width: 0;
    max-width: calc(100% - 5.5rem);
  }

  .dealer-panel--topnav .dealer-topnav__logo img {
    max-height: 36px;
    max-width: 120px;
  }

  .dealer-panel--topnav .dealer-topnav__toggle {
    order: 3;
    margin-left: 0;
    flex-shrink: 0;
  }

  .dealer-panel--topnav .dealer-topnav__user {
    order: 2;
    margin-left: auto;
    flex-shrink: 0;
  }

  .dealer-panel--topnav .dealer-topnav__user .user-info__profile {
    display: none !important;
  }

  .dealer-panel--topnav .dealer-topnav__user.user-info .user-info__button {
    padding: 2px;
    gap: 0;
    border-radius: 50%;
    min-width: 0;
  }

  .dealer-panel--topnav .dealer-topnav__user .user-info__thumb {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .dealer-panel--topnav .dealer-topnav__user .user-info__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .dealer-panel--topnav .dealer-topnav__user.user-info .user-info-dropdown {
    margin-top: 8px;
    right: 0;
    min-width: 200px;
  }

  body.dealer-panel--topnav.dealer-nav-open .dealer-topnav {
    z-index: 1050;
  }

  .dealer-panel--topnav .dealer-topnav__menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1051;
    background: #fff;
    padding: 1rem 1rem 1.5rem;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
  }

  .dealer-panel--topnav .dealer-topnav__menu.is-open {
    display: flex;
    flex-direction: column;
  }

  .dealer-panel--topnav .dealer-topnav__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    margin-bottom: 0.75rem;
    margin-left: auto;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    background: #f1f5f9;
    color: #64748b;
  }

  .dealer-panel--topnav .dealer-topnav__list {
    flex-direction: column;
    align-items: stretch;
    gap: 0.125rem;
  }

  .dealer-panel--topnav .dealer-topnav__link {
    width: 100%;
    padding: 0.65rem 0.85rem;
  }
}

@media screen and (min-width: 992px) {
  .dealer-panel--topnav .dealer-topnav__bar {
    flex-wrap: nowrap;
  }

  .dealer-panel--topnav .dealer-topnav__menu {
    order: 0;
  }

  .dealer-panel--topnav .dealer-topnav__user {
    order: 0;
  }
}

/* ========== Bayi paneli (dealer-panel) ========== */
.dealer-panel .bayi-sidebar-badge {
  display: block;
  margin: 0 1rem 0.75rem;
  padding: 0.35rem 0.65rem;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  color: hsl(var(--base));
  background: hsl(var(--base) / 0.1);
  border-radius: 999px;
}

.dealer-panel .bayi-dash {
  max-width: none;
  margin: 0;
}

.dealer-panel .bayi-dash__hero {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  margin-bottom: 1.25rem;
  border-radius: 16px;
  border: 1px solid hsl(var(--base) / 0.15);
  background: linear-gradient(135deg, #fff 0%, hsl(var(--base) / 0.06) 100%);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.dealer-panel .bayi-dash__eyebrow {
  margin: 0 0 0.25rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: hsl(var(--base));
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.dealer-panel .bayi-dash__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0f172a;
  line-height: 1.25;
}

.dealer-panel .bayi-dash__subtitle {
  margin: 0.5rem 0 0;
  max-width: 36rem;
  font-size: 0.9375rem;
  line-height: 1.55;
  color: #64748b;
}

.dealer-panel .bayi-settings-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid #e2e8f0;
}

.dealer-panel .bayi-settings-head__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
  line-height: 1.3;
}

.dealer-panel .bayi-notice {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin-bottom: 1rem;
  padding: 0.625rem 0.875rem;
  border-radius: 10px;
  border: 1px solid #fde68a;
  background: #fffbeb;
  font-size: 0.8125rem;
  line-height: 1.45;
  color: #78350f;
}

.dealer-panel .bayi-notice > i {
  font-size: 1.125rem;
  color: #d97706;
  flex-shrink: 0;
}

.dealer-panel .bayi-notice__text {
  flex: 1 1 12rem;
  min-width: 0;
}

.dealer-panel .bayi-notice__action {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-left: auto;
  padding: 0.25rem 0;
  font-size: 0.8125rem;
  font-weight: 600;
  color: hsl(var(--base));
  text-decoration: none;
  white-space: nowrap;
  border-bottom: 1px solid hsl(var(--base) / 0.35);
  transition: color 0.15s, border-color 0.15s, gap 0.15s;
}

.dealer-panel .bayi-notice__action:hover {
  color: #0f172a;
  border-bottom-color: #0f172a;
  gap: 0.45rem;
}

.dealer-panel .bayi-notice__action i {
  font-size: 0.95rem;
  transition: transform 0.15s;
}

.dealer-panel .bayi-notice__action:hover i {
  transform: translateX(2px);
}

.dealer-panel .bayi-notice--info {
  border-color: #bfdbfe;
  background: #eff6ff;
  color: #1e3a8a;
}

.dealer-panel .bayi-notice--info > i {
  color: #3b82f6;
}

.dealer-panel .bayi-notice--info .bayi-notice__text {
  color: #1e40af;
}

.dealer-panel .bayi-notice--block {
  width: 100%;
  margin-bottom: 0.75rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
}

.dealer-panel .bayi-notice--block .bayi-notice__text {
  font-size: 0.75rem;
  line-height: 1.45;
}

.dealer-panel .bayi-notice--block > i {
  font-size: 1rem;
}

.dealer-panel .bayi-notice--inline {
  margin-bottom: 0.875rem;
  padding: 0.45rem 0.65rem;
  font-size: 0.75rem;
}

.dealer-panel .bayi-notice--inline .bayi-notice__text {
  font-size: 0.75rem;
}

.dealer-panel .bayi-notice--inline > i {
  font-size: 1rem;
}

.dealer-panel .bayi-page-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  margin-bottom: 0.75rem;
}

.dealer-panel .bayi-page-head__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
}

.dealer-panel .bayi-hizmet-pick-grid {
  margin-top: 0.25rem;
}

.dealer-panel .bayi-hizmet-pick {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  height: 100%;
  padding: 0.875rem 0.75rem 0.75rem;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #fff;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition:
    border-color 0.15s ease,
    background 0.15s ease,
    box-shadow 0.15s ease;
}

.dealer-panel .bayi-hizmet-pick:focus-visible {
  outline: 2px solid hsl(var(--base) / 0.55);
  outline-offset: 2px;
}

.dealer-panel .bayi-hizmet-pick:hover {
  border-color: hsl(var(--base) / 0.4);
  background: hsl(var(--base) / 0.03);
  box-shadow: 0 6px 16px rgba(15, 23, 42, 0.06);
}

.dealer-panel .bayi-hizmet-pick__body {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.5rem;
  margin-bottom: 0.2rem;
}

.dealer-panel .bayi-hizmet-pick__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: hsl(var(--base) / 0.08);
  color: hsl(var(--base));
  font-size: 1.5rem;
  line-height: 1;
  box-shadow: none;
  flex-shrink: 0;
}

.dealer-panel .bayi-hizmet-pick[style*="--category-from"] .bayi-hizmet-pick__icon {
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--category-from) 14%, #fff) 0%,
    color-mix(in srgb, var(--category-to, var(--category-from)) 9%, #fff) 100%
  );
  color: color-mix(in srgb, var(--category-from) 78%, #1e293b);
  border: 1px solid color-mix(in srgb, var(--category-from) 14%, #e2e8f0);
  box-shadow: none;
}

.dealer-panel .bayi-hizmet-pick[style*="--category-from"]:hover {
  border-color: color-mix(in srgb, var(--category-from) 35%, #e2e8f0);
}

.dealer-panel .bayi-hizmet-pick__icon img {
  width: 1.65rem;
  height: 1.65rem;
  object-fit: contain;
}

.category-theme-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 1rem;
  background: linear-gradient(
    145deg,
    color-mix(in srgb, var(--category-from, #ea580c) 14%, #fff) 0%,
    color-mix(in srgb, var(--category-to, var(--category-from, #fb923c)) 9%, #fff) 100%
  );
  color: color-mix(in srgb, var(--category-from, #ea580c) 78%, #1e293b);
  line-height: 1;
  border: 1px solid color-mix(in srgb, var(--category-from, #ea580c) 14%, #e2e8f0);
  box-shadow: none;
}

.category-theme-icon--sm {
  width: 2.5rem;
  height: 2.5rem;
  font-size: 1.2rem;
  border-radius: 0.75rem;
}

.category-theme-icon--md {
  width: 3.25rem;
  height: 3.25rem;
  font-size: 1.45rem;
  border-radius: 1rem;
}

.category-theme-icon--lg {
  width: 4rem;
  height: 4rem;
  font-size: 1.75rem;
  border-radius: 1.125rem;
}

.category-theme-icon--xl {
  width: 5.5rem;
  height: 5.5rem;
  font-size: 2.25rem;
  border-radius: 1.25rem;
}

.dealer-panel .bayi-hizmet-pick__name {
  display: block;
  font-size: 0.8125rem;
  font-weight: 600;
  line-height: 1.4;
  color: #334155;
}

.dealer-panel .bayi-hizmet-pick:hover .bayi-hizmet-pick__name {
  color: #0f172a;
}

.dealer-panel .bayi-hizmet-pick__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
  width: 100%;
  margin-top: 0;
  padding: 0;
  font-size: 0.6875rem;
  font-weight: 600;
  line-height: 1.35;
  color: hsl(var(--base));
  text-decoration: none;
  white-space: normal;
}

.dealer-panel .bayi-hizmet-pick__cta i {
  font-size: 0.85em;
  line-height: 1;
  text-decoration: none;
}

.dealer-panel .bayi-hizmet-pick:hover .bayi-hizmet-pick__cta i {
  transform: translateX(2px);
  transition: transform 0.15s ease;
}

@media screen and (min-width: 768px) {
  .dealer-panel .bayi-hizmet-pick {
    padding: 1rem 0.875rem 0.875rem;
  }

  .dealer-panel .bayi-hizmet-pick__icon {
    width: 3.25rem;
    height: 3.25rem;
    font-size: 1.6rem;
  }

  .dealer-panel .bayi-hizmet-pick__name {
    font-size: 0.875rem;
  }

  .dealer-panel .bayi-hizmet-pick__cta {
    font-size: 0.75rem;
  }
}

.dealer-panel .bayi-teklif-tips {
  margin-top: 1rem;
}

.dealer-panel .bayi-tip-card {
  height: 100%;
  padding: 1rem 1.125rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
}

.dealer-panel .bayi-tip-card--accent {
  border-color: hsl(var(--base) / 0.2);
  background: hsl(var(--base) / 0.04);
}

.dealer-panel .bayi-tip-card__title {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 0 0 0.5rem;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0f172a;
}

.dealer-panel .bayi-tip-card__title i {
  font-size: 1.125rem;
  color: hsl(var(--base));
}

.dealer-panel .bayi-tip-card__text {
  margin: 0;
  font-size: 0.75rem;
  line-height: 1.5;
  color: #64748b;
}

.dealer-panel .bayi-tip-card__steps {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.75rem;
  line-height: 1.45;
  color: #64748b;
}

.dealer-panel .bayi-tip-card__steps li + li {
  margin-top: 0.35rem;
}

.dealer-panel .bayi-ops-contact__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.dealer-panel .bayi-ops-contact__card {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 0.75rem;
  border-radius: 10px;
  background: #fff;
  border: 1px solid #e2e8f0;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.dealer-panel .bayi-ops-contact__card:hover {
  border-color: hsl(var(--base) / 0.35);
  box-shadow: 0 2px 8px hsl(var(--base) / 0.08);
}

.dealer-panel .bayi-ops-contact__card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 8px;
  background: hsl(var(--base) / 0.1);
  color: hsl(var(--base));
  font-size: 1rem;
}

.dealer-panel .bayi-ops-contact__card-body {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
  flex: 1;
}

.dealer-panel .bayi-ops-contact__name {
  font-size: 0.75rem;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}

.dealer-panel .bayi-ops-contact__phone {
  font-size: 0.6875rem;
  font-weight: 600;
  color: hsl(var(--base));
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.dealer-panel .bayi-ops-contact__card-call {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  flex-shrink: 0;
  border-radius: 999px;
  background: hsl(var(--base) / 0.12);
  color: hsl(var(--base));
  font-size: 0.875rem;
}

@media screen and (max-width: 575px) {
  .dealer-panel .bayi-ops-contact__grid {
    grid-template-columns: 1fr;
  }
}

.dealer-panel .bayi-settings-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
}

.dealer-panel .bayi-settings-nav__link {
  padding: 0.35rem 0.75rem;
  border-radius: 8px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  transition: color 0.15s, background 0.15s;
}

.dealer-panel .bayi-settings-nav__link:hover {
  color: #0f172a;
  background: #f1f5f9;
}

.dealer-panel .bayi-settings-nav__link.active {
  color: hsl(var(--base));
  background: hsl(var(--base) / 0.1);
}

.dealer-panel .bayi-panel__head--compact {
  padding: 0.875rem 1rem;
  min-height: auto;
}

.dealer-panel .bayi-panel__head--compact .bayi-panel__title {
  font-size: 0.9375rem;
}

.dealer-panel .bayi-settings-form__actions {
  margin-top: 1.25rem;
  padding-top: 0.25rem;
}

.dealer-panel .bayi-settings-form--narrow {
  max-width: 32rem;
}

.dealer-panel .bayi-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}

.dealer-panel .bayi-badge--success {
  background: #dcfce7;
  color: #15803d;
}

.dealer-panel .bayi-badge--warning {
  background: #fef3c7;
  color: #b45309;
}

.dealer-panel .bayi-field-hint {
  margin: 0.35rem 0 0;
  font-size: 0.75rem;
  color: #64748b;
}

.dealer-panel .bayi-dash__balance-card {
  flex: 0 1 auto;
  min-width: min(100%, 260px);
  padding: 1.125rem 1.25rem;
  border-radius: 14px;
  background: #0f172a;
  color: #f8fafc;
}

.dealer-panel .bayi-dash__balance-card--solo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.75rem 1.25rem;
  width: 100%;
  max-width: 100%;
  margin-bottom: 0.75rem;
  padding: 0.875rem 1.125rem;
}

.dealer-panel .bayi-dash__balance-card--solo .bayi-dash__balance-label {
  margin-right: auto;
}

.dealer-panel .bayi-dash__balance-card--solo .bayi-dash__balance-value {
  margin: 0;
  font-size: 1.375rem;
}

.dealer-panel .bayi-dash__balance-card--solo .bayi-dash__balance-actions {
  margin-left: auto;
}

.dealer-panel .bayi-dash__balance-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.dealer-panel .bayi-dash__balance-value {
  margin: 0.35rem 0 0.85rem;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: #fff;
}

.dealer-panel .bayi-dash__balance-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.dealer-panel .bayi-dash__balance-actions .btn-outline--base {
  color: #e2e8f0;
  border-color: #475569;
}

.dealer-panel .bayi-dash__balance-actions .btn-outline--base:hover {
  color: #fff;
  border-color: #94a3b8;
  background: rgba(255, 255, 255, 0.08);
}

.dealer-panel .bayi-dash__layout {
  --bs-gutter-y: 0.75rem;
}

.dealer-panel .bayi-dash__layout > .col-12 {
  margin-bottom: 0;
}

.dealer-panel .bayi-dash__stats {
  margin-bottom: 0;
}

.dealer-panel .bayi-panel--cta .bayi-panel__body {
  padding: 0.875rem 1.125rem;
}

.dealer-panel .bayi-stat {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  height: 100%;
  padding: 1rem 1.125rem;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #fff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.dealer-panel .bayi-stat:hover {
  border-color: #cbd5e1;
  box-shadow: 0 4px 14px rgba(15, 23, 42, 0.06);
}

.dealer-panel .bayi-stat__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  flex-shrink: 0;
  border-radius: 12px;
  font-size: 1.35rem;
}

.dealer-panel .bayi-stat__icon--orange {
  color: #c2410c;
  background: #ffedd5;
}

.dealer-panel .bayi-stat__icon--amber {
  color: #b45309;
  background: #fef3c7;
}

.dealer-panel .bayi-stat__icon--green {
  color: #15803d;
  background: #dcfce7;
}

.dealer-panel .bayi-stat__icon--blue {
  color: #1d4ed8;
  background: #dbeafe;
}

.dealer-panel .bayi-stat__label {
  display: block;
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.3;
}

.dealer-panel .bayi-stat__value {
  display: block;
  margin-top: 0.15rem;
  font-size: 1.375rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  color: #0f172a;
  line-height: 1.2;
}

.dealer-panel .bayi-panel {
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #fff;
  overflow: hidden;
}

.dealer-panel .bayi-panel__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.75rem 1rem;
  padding: 1.125rem 1.25rem;
  border-bottom: 1px solid #f1f5f9;
  background: #fafbfc;
}

.dealer-panel .bayi-panel__title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
}

.dealer-panel .bayi-panel__desc {
  margin: 0.25rem 0 0;
  font-size: 0.8125rem;
  color: #64748b;
}

.dealer-panel .bayi-panel__body {
  padding: 1.25rem;
}

.dealer-panel .bayi-quote-thread {
  max-height: 22rem;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  padding: 0.25rem 0;
}

.dealer-panel .bayi-quote-msg {
  display: flex;
}

.dealer-panel .bayi-quote-msg--mine {
  justify-content: flex-end;
}

.dealer-panel .bayi-quote-msg--staff {
  justify-content: flex-start;
}

.dealer-panel .bayi-quote-msg__bubble {
  max-width: min(100%, 32rem);
  padding: 0.75rem 1rem;
  border-radius: 0.875rem;
}

.dealer-panel .bayi-quote-msg--mine .bayi-quote-msg__bubble {
  background: hsl(var(--base) / 0.1);
  border: 1px solid hsl(var(--base) / 0.25);
}

.dealer-panel .bayi-quote-msg--staff .bayi-quote-msg__bubble {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.dealer-panel .bayi-quote-msg__head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.35rem 0.75rem;
  margin-bottom: 0.35rem;
  font-size: 0.75rem;
}

.dealer-panel .bayi-quote-msg__head time {
  color: #64748b;
}

.dealer-panel .bayi-quote-msg__bubble p {
  margin: 0;
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 0.875rem;
  line-height: 1.5;
}

.dealer-panel .bayi-quote-msg__files {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.625rem;
}

.dealer-panel .bayi-quote-msg__file {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem 0.625rem;
  font-size: 0.8125rem;
  border-radius: 0.375rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #334155;
  text-decoration: none;
}

.dealer-panel .bayi-quote-msg__file:hover {
  border-color: color-mix(in srgb, var(--site-accent, #4634ff) 35%, #e2e8f0);
  color: var(--site-accent, #4634ff);
}

.dealer-panel .bayi-quote-reply {
  padding-top: 1rem;
  border-top: 1px dashed #e2e8f0;
}

.dealer-panel .bayi-quote-track {
  width: 100%;
  margin-bottom: 0.75rem;
  padding: 0.4rem 0.55rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}

.dealer-panel .bayi-quote-track__list {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 0;
  min-width: max-content;
  margin: 0;
  padding: 0;
  list-style: none;
}

.dealer-panel .bayi-quote-track__item {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex: 0 0 auto;
  padding: 0.15rem 0.25rem;
  border-radius: 6px;
  white-space: nowrap;
}

.dealer-panel .bayi-quote-track__sep {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
  padding: 0 0.15rem;
  color: #cbd5e1;
  font-size: 0.65rem;
  line-height: 1;
  list-style: none;
}

.dealer-panel .bayi-quote-track__item.is-done + .bayi-quote-track__sep,
.dealer-panel .bayi-quote-track__sep:has(+ .bayi-quote-track__item.is-done) {
  color: hsl(var(--base) / 0.45);
}

.dealer-panel .bayi-quote-track__dot {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.375rem;
  height: 1.375rem;
  border-radius: 50%;
  font-size: 0.7rem;
  line-height: 1;
  color: #94a3b8;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  flex-shrink: 0;
}

.dealer-panel .bayi-quote-track__label {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.2;
  color: #64748b;
}

.dealer-panel .bayi-quote-track__item.is-done .bayi-quote-track__dot {
  border-color: #bbf7d0;
  background: #f0fdf4;
  color: #16a34a;
}

.dealer-panel .bayi-quote-track__item.is-done .bayi-quote-track__label {
  color: #15803d;
}

.dealer-panel .bayi-quote-track__item.is-current {
  background: hsl(var(--base) / 0.06);
}

.dealer-panel .bayi-quote-track__item.is-current .bayi-quote-track__dot {
  border-color: hsl(var(--base));
  background: hsl(var(--base));
  color: #fff;
}

.dealer-panel .bayi-quote-track__item.is-current .bayi-quote-track__label {
  color: #0f172a;
  font-weight: 600;
}

.dealer-panel .bayi-quote-track__item.is-current.is-done .bayi-quote-track__dot {
  background: hsl(var(--base));
  border-color: hsl(var(--base));
  color: #fff;
}

@media screen and (max-width: 991px) {
  .dealer-panel .bayi-quote-track__item:not(.is-current) .bayi-quote-track__label {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
  }

  .dealer-panel .bayi-quote-track__item:not(.is-current) .bayi-quote-track__dot {
    width: 1.25rem;
    height: 1.25rem;
    font-size: 0.625rem;
  }
}

.dealer-panel .bayi-teklif-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem 0.75rem;
  margin-bottom: 1.25rem;
  padding: 0.5rem 0.55rem 0.5rem 0.75rem;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
}

.dealer-panel .bayi-teklif-nav__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  flex: 1 1 auto;
}

.dealer-panel .bayi-teklif-nav__actions {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 0.4rem;
  flex-shrink: 0;
  margin-left: auto;
}

.dealer-panel .bayi-teklif-nav__action {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  white-space: nowrap;
}

.dealer-panel .bayi-teklif-nav__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 1rem;
  height: 1rem;
  padding: 0 0.28rem;
  border-radius: 999px;
  font-size: 0.5625rem;
  font-weight: 700;
  line-height: 1;
  background: rgba(255, 255, 255, 0.25);
}

.dealer-panel .bayi-teklif-nav__badge--outline {
  background: hsl(var(--base) / 0.1);
  color: hsl(var(--base));
}

.dealer-panel .bayi-teklif-nav__link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.45rem 0.85rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #475569;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  transition: border-color 0.15s ease, background 0.15s ease, color 0.15s ease;
}

.dealer-panel .bayi-teklif-nav__link:hover {
  color: hsl(var(--base));
  border-color: hsl(var(--base) / 0.35);
  background: hsl(var(--base) / 0.06);
}

.dealer-panel .scroll-mt-28 {
  scroll-margin-top: 6rem;
}

.dealer-panel .bayi-card-payment-form__lead {
  font-size: 0.8125rem;
  color: #64748b;
  margin-bottom: 1.25rem;
  line-height: 1.5;
}

.dealer-panel .bayi-card-payment-form__section {
  padding: 1rem 1.1rem;
  margin-bottom: 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  background: #f8fafc;
}

.dealer-panel .bayi-card-payment-form__heading {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #475569;
  margin: 0 0 0.85rem;
}

.dealer-panel .bayi-card-payment-form .font-mono {
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  letter-spacing: 0.06em;
}

.dealer-panel .bayi-card-payment-history__item {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.5rem 1rem;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  margin-bottom: 0.5rem;
}

.dealer-panel .bayi-card-payment-history__preview {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  font-size: 0.875rem;
}

.dealer-panel .bayi-card-payment-history__digits {
  font-family: ui-monospace, monospace;
  font-weight: 600;
  color: #0f172a;
}

.dealer-panel .bayi-card-payment-history__meta {
  text-align: right;
  font-size: 0.75rem;
  color: #64748b;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.dealer-panel .bayi-panel__body--flush {
  padding: 0;
}

.dealer-panel .bayi-panel__body--flush .bayi-empty {
  padding: 2rem 1.25rem;
}

.dealer-panel .bayi-panel__body--compact {
  padding: 0.75rem 1rem 1rem;
}

.dealer-panel .bayi-teklif-overview__hero {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem;
  border-bottom: 1px solid #f1f5f9;
  background: #fff;
}

.dealer-panel .bayi-teklif-overview__icon {
  flex-shrink: 0;
}

.dealer-panel .bayi-teklif-overview__title {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.dealer-panel .bayi-teklif-overview__meta-line {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.25rem 0.5rem;
  margin: 0.2rem 0 0;
  font-size: 0.75rem;
  color: #64748b;
  line-height: 1.35;
}

.dealer-panel .bayi-teklif-overview__meta-line strong {
  color: #334155;
  font-weight: 600;
}

.dealer-panel .bayi-teklif-overview__sep {
  color: #cbd5e1;
}

.dealer-panel .bayi-teklif-overview__status .badge {
  font-size: 0.6875rem;
  padding: 0.3rem 0.55rem;
}

.dealer-panel .bayi-teklif-dl {
  margin: 0;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
}

.dealer-panel .bayi-teklif-dl__row {
  display: grid;
  grid-template-columns: minmax(6.5rem, 34%) minmax(0, 1fr);
  gap: 0.5rem 0.75rem;
  align-items: start;
  padding: 0.5rem 0.75rem;
  margin: 0;
  font-size: 0.8125rem;
  line-height: 1.4;
  border-bottom: 1px solid #f1f5f9;
}

.dealer-panel .bayi-teklif-dl__row:last-child {
  border-bottom: 0;
}

.dealer-panel .bayi-teklif-dl__row:nth-child(even) {
  background: #fafbfc;
}

.dealer-panel .bayi-teklif-dl dt {
  margin: 0;
  font-weight: 500;
  color: #64748b;
}

.dealer-panel .bayi-teklif-dl dd {
  margin: 0;
  font-weight: 600;
  color: #0f172a;
  text-align: right;
  word-break: break-word;
}

.dealer-panel .bayi-teklif-dl__link {
  color: hsl(var(--base));
  text-decoration: none;
  font-weight: 600;
}

.dealer-panel .bayi-teklif-dl__link:hover {
  text-decoration: underline;
}

.dealer-panel .bayi-teklif-dl__file {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: hsl(var(--base));
  text-decoration: none;
}

.dealer-panel .bayi-teklif-dl__file:hover {
  text-decoration: underline;
}

.dealer-panel .bayi-teklif-overview__tip {
  margin-top: 0.75rem;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  font-size: 0.75rem;
}

.dealer-panel .bayi-teklif-overview__tip i {
  font-size: 1rem;
}

.dealer-panel .bayi-tip--success {
  border-color: #a7f3d0;
  background: #ecfdf5;
  color: #047857;
}

.dealer-panel .bayi-tip--success i {
  color: #059669;
}

@media screen and (max-width: 575px) {
  .dealer-panel .bayi-teklif-dl__row {
    grid-template-columns: 1fr;
    gap: 0.15rem;
  }

  .dealer-panel .bayi-teklif-dl dd {
    text-align: left;
    font-weight: 500;
  }
}

.dealer-panel .bayi-teklif-sidebar {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

@media screen and (min-width: 992px) {
  .dealer-panel .bayi-teklif-sidebar {
    position: sticky;
    top: 1rem;
    align-self: flex-start;
  }
}

.dealer-panel .bayi-aside-card {
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
  overflow: hidden;
}

.dealer-panel .bayi-aside-card__head {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0.625rem 0.75rem;
  border-bottom: 1px solid #f1f5f9;
  background: #fafbfc;
}

.dealer-panel .bayi-aside-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #e2e8f0;
  color: #64748b;
  font-size: 1rem;
  flex-shrink: 0;
}

.dealer-panel .bayi-aside-card__title {
  margin: 0;
  font-size: 0.8125rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.25;
}

.dealer-panel .bayi-aside-card__sub {
  margin: 0.125rem 0 0;
  font-size: 0.6875rem;
  color: #64748b;
  line-height: 1.35;
}

.dealer-panel .bayi-aside-card__body {
  padding: 0.75rem;
}

.dealer-panel .bayi-aside-card__body--flush {
  padding: 0.5rem 0.75rem 0.65rem;
}

.dealer-panel .bayi-teklif-sidebar .bayi-aside-hint {
  display: flex;
  align-items: flex-start;
  gap: 0.3rem;
  padding: 0.35rem 0.45rem;
  border-radius: 6px;
  font-size: 0.625rem;
  line-height: 1.35;
  font-weight: 400;
  color: #64748b;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.dealer-panel .bayi-teklif-sidebar .bayi-aside-hint p,
.dealer-panel .bayi-teklif-sidebar .bayi-aside-hint span {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  color: inherit;
}

.dealer-panel .bayi-teklif-sidebar .bayi-aside-hint i {
  font-size: 0.6875rem;
  line-height: 1.35;
  color: #94a3b8;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.dealer-panel .bayi-teklif-sidebar .bayi-aside-hint--info {
  color: #0369a1;
  background: #eff6ff;
  border-color: #bae6fd;
  margin-bottom: 0.35rem;
}

.dealer-panel .bayi-teklif-sidebar .bayi-aside-hint--info i {
  color: #0284c7;
}

.dealer-panel .bayi-teklif-sidebar .bayi-aside-hint--success {
  color: #047857;
  background: #ecfdf5;
  border-color: #a7f3d0;
  margin-bottom: 0;
}

.dealer-panel .bayi-teklif-sidebar .bayi-aside-hint--success i {
  color: #059669;
}

.dealer-panel .bayi-teklif-sidebar .bayi-aside-form {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dealer-panel .bayi-teklif-sidebar .bayi-aside-form .form-group {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.dealer-panel .bayi-teklif-sidebar .bayi-aside-form .form-group + .form-group {
  margin-top: 0 !important;
}

.dealer-panel .bayi-teklif-sidebar .bayi-aside-form fieldset + fieldset {
  margin-top: 0 !important;
}

.dealer-panel .bayi-teklif-sidebar .bayi-aside-form fieldset + .btn {
  margin-top: 0.35rem !important;
}

.dealer-panel .bayi-teklif-sidebar .bayi-aside-form__stack {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.dealer-panel .bayi-teklif-sidebar .bayi-aside-form__row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.35rem;
}

.dealer-panel .bayi-teklif-sidebar .bayi-aside-form .form--label {
  font-size: 0.6875rem;
  margin-bottom: 0.125rem;
}

.dealer-panel .bayi-teklif-sidebar .bayi-aside-form .form-control.form--control {
  font-size: 0.8125rem;
  padding: 0.35rem 0.5rem;
  min-height: 1.875rem;
}

.dealer-panel .bayi-teklif-sidebar .bayi-aside-fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.dealer-panel .bayi-teklif-sidebar .bayi-aside-fieldset__legend {
  display: block;
  width: 100%;
  margin: 0 0 0.35rem;
  padding: 0 0 0.25rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
  border-bottom: 1px solid #f1f5f9;
}

.dealer-panel .bayi-teklif-sidebar .bayi-aside-form__radios {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 0.35rem;
}

.dealer-panel .bayi-teklif-sidebar .bayi-aside-radio {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0;
  font-size: 0.6875rem;
  color: #475569;
  cursor: pointer;
}

.dealer-panel .bayi-aside-history {
  margin-top: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid #f1f5f9;
}

.dealer-panel .bayi-aside-history__title {
  margin: 0 0 0.5rem;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
}

.dealer-panel .bayi-aside-history__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.dealer-panel .bayi-aside-history__item {
  padding: 0.45rem 0.55rem;
  border-radius: 8px;
  border: 1px solid #f1f5f9;
  background: #fafbfc;
  font-size: 0.6875rem;
  line-height: 1.35;
}

.dealer-panel .bayi-aside-history__card {
  display: block;
  font-family: ui-monospace, monospace;
  font-weight: 600;
  color: #0f172a;
  font-size: 0.75rem;
}

.dealer-panel .bayi-aside-history__name {
  display: block;
  color: #334155;
  font-weight: 500;
}

.dealer-panel .bayi-aside-history__meta {
  display: block;
  color: #94a3b8;
  margin-top: 0.1rem;
}

.dealer-panel .bayi-process-list--compact {
  padding: 0.15rem 0;
}

.dealer-panel .bayi-process-list--compact li {
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  font-size: 0.75rem;
}

.dealer-panel .bayi-process-list li.is-current {
  color: hsl(var(--base));
  font-weight: 600;
}

.dealer-panel .bayi-process-list li.is-current::before {
  background: hsl(var(--base) / 0.15);
  color: hsl(var(--base));
  box-shadow: 0 0 0 2px hsl(var(--base) / 0.2);
}

.dealer-panel .bayi-teklif-sidebar__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  padding: 0.5rem 0.75rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  border-radius: 8px;
  border: 1px solid #e2e8f0;
  background: #fff;
  transition: color 0.15s ease, border-color 0.15s ease, background 0.15s ease;
}

.dealer-panel .bayi-teklif-sidebar__back:hover {
  color: hsl(var(--base));
  border-color: hsl(var(--base) / 0.35);
  background: hsl(var(--base) / 0.04);
}

.dealer-panel .bayi-teklif-sidebar .bayi-card-payment-form__section,
.dealer-panel .bayi-teklif-sidebar .bayi-card-payment-form__lead {
  display: none;
}

.dealer-panel .bayi-service-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.125rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, background 0.2s ease, transform 0.15s ease;
}

.dealer-panel .bayi-service-card:hover {
  border-color: hsl(var(--base) / 0.45);
  background: hsl(var(--base) / 0.04);
  transform: translateY(-1px);
  color: inherit;
}

.dealer-panel .bayi-service-card__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 10px;
  font-size: 1.25rem;
  color: hsl(var(--base));
  background: hsl(var(--base) / 0.12);
}

.dealer-panel .bayi-service-card__content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.dealer-panel .bayi-service-card__content strong {
  font-size: 0.9375rem;
  font-weight: 600;
  color: #0f172a;
}

.dealer-panel .bayi-service-card__content small {
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dealer-panel .bayi-service-card__arrow {
  flex-shrink: 0;
  font-size: 1.125rem;
  color: #94a3b8;
  transition: transform 0.2s ease, color 0.2s ease;
}

.dealer-panel .bayi-service-card:hover .bayi-service-card__arrow {
  color: hsl(var(--base));
  transform: translateX(3px);
}

.dealer-panel .bayi-table thead th {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
  background: #f8fafc;
  border-bottom: 1px solid #e2e8f0;
  padding: 0.75rem 1rem;
  white-space: nowrap;
}

.dealer-panel .bayi-table tbody td {
  padding: 0.875rem 1rem;
  vertical-align: middle;
  border-color: #f1f5f9;
  font-size: 0.875rem;
  color: #334155;
}

.dealer-panel .bayi-quick {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.dealer-panel .bayi-quick__item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 0.875rem;
  border-radius: 10px;
  border: 1px solid #f1f5f9;
  background: #fafbfc;
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  color: #334155;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.dealer-panel .bayi-quick__item i {
  width: 1.5rem;
  text-align: center;
  font-size: 1.25rem;
  color: hsl(var(--base));
}

.dealer-panel .bayi-quick__item:hover {
  background: hsl(var(--base) / 0.06);
  border-color: hsl(var(--base) / 0.2);
  color: #0f172a;
}

.dealer-panel .bayi-tx-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dealer-panel .bayi-tx-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f1f5f9;
}

.dealer-panel .bayi-tx-list__item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.dealer-panel .bayi-tx-list__type {
  display: block;
  font-size: 0.9375rem;
  font-weight: 700;
}

.dealer-panel .bayi-tx-list__type.is-credit {
  color: #15803d;
}

.dealer-panel .bayi-tx-list__type.is-debit {
  color: #b91c1c;
}

.dealer-panel .bayi-tx-list__remark {
  display: block;
  margin-top: 0.1rem;
  font-size: 0.75rem;
  color: #64748b;
}

.dealer-panel .bayi-tx-list__trx {
  font-size: 0.6875rem;
  color: #94a3b8;
  background: #f8fafc;
  padding: 0.2rem 0.4rem;
  border-radius: 4px;
}

.dealer-panel .bayi-empty {
  text-align: center;
  padding: 2rem 1rem;
  color: #64748b;
}

.dealer-panel .bayi-empty i {
  display: block;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: #cbd5e1;
}

.dealer-panel .bayi-empty--compact {
  padding: 1.25rem 0.5rem;
}

.dealer-panel .bayi-empty--compact p {
  margin: 0;
  font-size: 0.875rem;
}

.dealer-panel .bayi-tip {
  display: flex;
  gap: 0.65rem;
  padding: 0.875rem 1rem;
  border-radius: 12px;
  border: 1px solid hsl(var(--base) / 0.2);
  background: hsl(var(--base) / 0.06);
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #475569;
}

.dealer-panel .bayi-tip i {
  font-size: 1.25rem;
  color: hsl(var(--base));
  flex-shrink: 0;
}

.dealer-panel .bayi-tip p {
  margin: 0;
}

@media screen and (max-width: 991px) {
  .dealer-panel .bayi-dash__hero {
    flex-direction: column;
  }

  .dealer-panel .bayi-dash__balance-card {
    width: 100%;
  }
}

@media screen and (max-width: 575px) {
  .dealer-panel .bayi-table thead {
    display: none;
  }

  .dealer-panel .bayi-table tbody tr {
    display: block;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #f1f5f9;
  }

  .dealer-panel .bayi-table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.5rem;
    padding: 0.35rem 0;
    border: 0;
  }

  .dealer-panel .bayi-table tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    font-size: 0.75rem;
    color: #64748b;
  }

  .dealer-panel .bayi-table tbody td:last-child {
    justify-content: flex-end;
    padding-top: 0.5rem;
  }

  .dealer-panel .bayi-table tbody td:last-child::before {
    display: none;
  }
}

/* Bayi: yeni teklif & form sayfaları */
.dealer-panel .bayi-breadcrumb {
  margin-bottom: 1rem;
}

.dealer-panel .bayi-breadcrumb__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.8125rem;
}

.dealer-panel .bayi-breadcrumb__item {
  display: flex;
  align-items: center;
  color: #64748b;
}

.dealer-panel .bayi-breadcrumb__item:not(:last-child)::after {
  content: '/';
  margin: 0 0.5rem;
  color: #cbd5e1;
}

.dealer-panel .bayi-breadcrumb__item a {
  color: hsl(var(--base));
  text-decoration: none;
}

.dealer-panel .bayi-breadcrumb__item a:hover {
  text-decoration: underline;
}

.dealer-panel .bayi-breadcrumb__item span[aria-current] {
  color: #0f172a;
  font-weight: 600;
}

.dealer-panel .bayi-teklif-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.dealer-panel .bayi-teklif-hero__title {
  margin: 0;
  font-size: 1.625rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: #0f172a;
}

.dealer-panel .bayi-teklif-hero__lead {
  margin: 0.5rem 0 0;
  max-width: 42rem;
  font-size: 0.9375rem;
  line-height: 1.6;
  color: #64748b;
}

.dealer-panel .bayi-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

@media screen and (max-width: 767px) {
  .dealer-panel .bayi-steps {
    grid-template-columns: 1fr;
  }
}

.dealer-panel .bayi-steps__item {
  display: flex;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  background: #fff;
}

.dealer-panel .bayi-steps__item.is-active {
  border-color: hsl(var(--base) / 0.35);
  background: hsl(var(--base) / 0.05);
  box-shadow: 0 0 0 1px hsl(var(--base) / 0.08);
}

.dealer-panel .bayi-steps__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  flex-shrink: 0;
  border-radius: 50%;
  font-size: 0.875rem;
  font-weight: 700;
  color: #64748b;
  background: #f1f5f9;
}

.dealer-panel .bayi-steps__item.is-active .bayi-steps__num {
  color: #fff;
  background: hsl(var(--base));
}

.dealer-panel .bayi-steps__item strong {
  display: block;
  font-size: 0.875rem;
  color: #0f172a;
}

.dealer-panel .bayi-steps__item p {
  margin: 0.2rem 0 0;
  font-size: 0.75rem;
  line-height: 1.45;
  color: #64748b;
}

.dealer-panel .bayi-hizmet-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #fff;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.dealer-panel .bayi-hizmet-card:hover {
  border-color: hsl(var(--base) / 0.4);
  box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
  color: inherit;
}

.dealer-panel .bayi-hizmet-card__media {
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #f1f5f9;
}

.dealer-panel .bayi-hizmet-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dealer-panel .bayi-hizmet-card__media--placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  color: hsl(var(--base) / 0.5);
  background: linear-gradient(135deg, hsl(var(--base) / 0.08), #f8fafc);
}

.dealer-panel .bayi-hizmet-card__body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 1.125rem;
}

.dealer-panel .bayi-hizmet-card__title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
  color: #0f172a;
}

.dealer-panel .bayi-hizmet-card__desc {
  margin: 0.35rem 0 0.75rem;
  font-size: 0.8125rem;
  line-height: 1.5;
  color: #64748b;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.dealer-panel .bayi-hizmet-card__meta {
  list-style: none;
  margin: 0 0 0.75rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.75rem;
  font-size: 0.75rem;
  color: #64748b;
}

.dealer-panel .bayi-hizmet-card__meta li {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.dealer-panel .bayi-hizmet-card__meta i {
  color: hsl(var(--base));
}

.dealer-panel .bayi-hizmet-card__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: hsl(var(--base));
}

.dealer-panel .bayi-hizmet-card:hover .bayi-hizmet-card__cta i {
  transform: translateX(3px);
}

.dealer-panel .bayi-info-box {
  display: flex;
  gap: 1rem;
  height: 100%;
  padding: 1.25rem;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #fff;
}

.dealer-panel .bayi-info-box > i {
  font-size: 1.75rem;
  color: hsl(var(--base));
  flex-shrink: 0;
}

.dealer-panel .bayi-info-box h3 {
  margin: 0 0 0.65rem;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.dealer-panel .bayi-info-box--accent {
  border-color: hsl(var(--base) / 0.2);
  background: hsl(var(--base) / 0.04);
}

.dealer-panel .bayi-faq {
  margin: 0;
}

.dealer-panel .bayi-faq dt {
  font-size: 0.8125rem;
  font-weight: 600;
  color: #334155;
  margin-top: 0.65rem;
}

.dealer-panel .bayi-faq dt:first-child {
  margin-top: 0;
}

.dealer-panel .bayi-faq dd {
  margin: 0.15rem 0 0;
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.5;
}

.dealer-panel .bayi-dash-cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.dealer-panel .bayi-dash-cta__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
}

.dealer-panel .bayi-dash-cta__desc {
  margin: 0.25rem 0 0;
  font-size: 0.875rem;
  color: #64748b;
  max-width: 28rem;
}

.dealer-panel .bayi-form-steps {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.25rem;
  padding: 0.875rem 1rem;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.dealer-panel .bayi-form-steps__step {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 500;
  color: #94a3b8;
  text-decoration: none;
}

.dealer-panel .bayi-form-steps__step.is-active {
  color: #0f172a;
  font-weight: 600;
}

.dealer-panel .bayi-form-steps__step.is-done {
  color: #15803d;
}

.dealer-panel .bayi-form-steps__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  font-size: 0.75rem;
  font-weight: 700;
  background: #e2e8f0;
  color: #64748b;
}

.dealer-panel .bayi-form-steps__step.is-active .bayi-form-steps__num {
  background: hsl(var(--base));
  color: #fff;
}

.dealer-panel .bayi-form-steps__step.is-done .bayi-form-steps__num {
  background: #dcfce7;
  color: #15803d;
}

.dealer-panel .bayi-form-steps__line {
  width: 1.5rem;
  height: 2px;
  background: #e2e8f0;
}

.dealer-panel .bayi-form-aside {
  position: sticky;
  top: 1rem;
}

.dealer-panel .bayi-form-aside__card {
  padding: 1.125rem;
  margin-bottom: 0.75rem;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #fff;
}

.dealer-panel .bayi-form-aside__card--muted {
  background: #f8fafc;
}

.dealer-panel .bayi-form-aside__thumb {
  margin: -1.125rem -1.125rem 1rem;
  border-radius: 14px 14px 0 0;
  overflow: hidden;
  aspect-ratio: 16/10;
}

.dealer-panel .bayi-form-aside__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dealer-panel .bayi-form-aside__title {
  margin: 0;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0f172a;
}

.dealer-panel .bayi-form-aside__desc {
  margin: 0.35rem 0 0;
  font-size: 0.8125rem;
  line-height: 1.55;
  color: #64748b;
}

.dealer-panel .bayi-form-aside__benefits h3 {
  margin: 1rem 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
}

.dealer-panel .bayi-form-aside__benefits ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dealer-panel .bayi-form-aside__benefits li {
  display: flex;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: #334155;
  padding: 0.25rem 0;
}

.dealer-panel .bayi-form-aside__benefits i {
  color: #16a34a;
  margin-top: 0.1rem;
}

.dealer-panel .bayi-form-aside__card h3 {
  margin: 0 0 0.65rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
}

.dealer-panel .bayi-form-aside__timeline {
  margin: 0;
  padding-left: 1.15rem;
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.55;
}

.dealer-panel .bayi-form-aside__timeline li {
  margin-bottom: 0.35rem;
}

.dealer-panel .bayi-fieldset {
  margin: 0 0 1.75rem;
  padding: 0 0 1.75rem;
  border: 0;
  border-bottom: 1px solid #f1f5f9;
}

.dealer-panel .bayi-fieldset:last-of-type {
  border-bottom: 0;
  padding-bottom: 0;
  margin-bottom: 0;
}

.dealer-panel .bayi-fieldset__legend {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
  font-size: 1rem;
  font-weight: 700;
  color: #0f172a;
}

.dealer-panel .bayi-fieldset__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  font-size: 1.1rem;
  color: hsl(var(--base));
  background: hsl(var(--base) / 0.1);
}

.dealer-panel .bayi-fieldset__hint {
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.5;
}

.dealer-panel .bayi-form-submit {
  margin-top: var(--form-actions-gap, 1.25rem);
  padding-top: 1.25rem;
  border-top: 1px solid #f1f5f9;
}

.dealer-panel .bayi-form-submit__note {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin: 0 0 1rem;
  font-size: 0.8125rem;
  color: #64748b;
  line-height: 1.5;
}

.dealer-panel .bayi-form-submit__note i {
  font-size: 1.125rem;
  color: hsl(var(--base));
  flex-shrink: 0;
}

.dealer-panel .bayi-form-submit__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
}

.dealer-panel .bayi-empty h3 {
  margin: 0.5rem 0 0.25rem;
  font-size: 1.125rem;
  color: #0f172a;
}

.dealer-panel .bayi-subtitle {
  margin: 1.25rem 0 0.75rem;
  font-size: 0.9375rem;
  font-weight: 700;
  color: #0f172a;
}

.dealer-panel .bayi-detail-row {
  padding: 0.875rem 1rem;
  border-radius: 10px;
  border: 1px solid #f1f5f9;
  background: #f8fafc;
  height: 100%;
}

.dealer-panel .bayi-detail-row__label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #64748b;
  margin-bottom: 0.25rem;
}

.dealer-panel .bayi-timeline__item {
  padding: 0.875rem 1rem;
  border-radius: 10px;
  border: 1px solid #e2e8f0;
  background: #fff;
  margin-bottom: 0.625rem;
}

.dealer-panel .bayi-timeline__item time {
  display: block;
  font-size: 0.75rem;
  color: #94a3b8;
  margin-bottom: 0.35rem;
}

.dealer-panel .bayi-timeline__item p {
  margin: 0;
  font-size: 0.875rem;
  color: #334155;
  line-height: 1.5;
}

.dealer-panel .bayi-process-list {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: bayi-step;
}

.dealer-panel .bayi-process-list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.75rem;
  font-size: 0.8125rem;
  color: #94a3b8;
  line-height: 1.45;
}

.dealer-panel .bayi-process-list li::before {
  counter-increment: bayi-step;
  content: counter(bayi-step);
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  font-size: 0.6875rem;
  font-weight: 700;
  line-height: 1.25rem;
  text-align: center;
  background: #e2e8f0;
  color: #64748b;
}

.dealer-panel .bayi-process-list li.is-done {
  color: #0f172a;
  font-weight: 500;
}

.dealer-panel .bayi-process-list li.is-done::before {
  background: hsl(var(--base));
  color: #fff;
}

.dealer-panel .bayi-process-list li.is-done.is-current::before {
  background: hsl(var(--base));
  color: #fff;
  box-shadow: 0 0 0 2px hsl(var(--base) / 0.25);
}

.dealer-panel .dashboard-widget,
.dealer-panel .dashboard-table {
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  background: #fff;
  overflow: hidden;
}

.dealer-panel .dashboard-widget__header,
.dealer-panel .dashboard-table__header {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #f1f5f9;
  background: #fafbfc;
}

.dealer-panel .dashboard-widget__body,
.dealer-panel .dashboard-table .table-responsive {
  padding: 1.25rem;
}

.dealer-panel .dashboard-widget .card-body,
.dealer-panel .card:not(.bayi-panel):not(.bayi-stat) > .card-body {
  padding: 1.25rem;
}

/* —— Destek talepleri (kullanıcı / bayi) —— */
.dashboard .support-hub__top {
  margin-bottom: 0;
}

.support-hub__kpi {
  margin: 1.25rem 0 1.25rem;
}

.support-kpi {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--tw-user-card-border, #e2e8f0);
  border-radius: var(--form-radius, 12px);
  background: #e2e8f0;
  overflow: hidden;
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

@media (min-width: 576px) {
  .support-kpi {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.support-kpi__item {
  position: relative;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.875rem;
  min-height: 5.25rem;
  padding: 1rem 1.25rem;
  background: #fff;
}

.support-kpi__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  flex-shrink: 0;
  border-radius: 10px;
  font-size: 1.2rem;
}

.support-kpi__icon--blue {
  color: #1d4ed8;
  background: #dbeafe;
}

.support-kpi__icon--amber {
  color: #b45309;
  background: #fef3c7;
}

.support-kpi__icon--green {
  color: #15803d;
  background: #dcfce7;
}

.support-kpi__icon--slate {
  color: #475569;
  background: #f1f5f9;
}

.support-kpi__body {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.support-kpi__value {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.1;
  color: #0f172a;
  font-variant-numeric: tabular-nums;
}

.support-kpi__label {
  font-size: 0.75rem;
  font-weight: 500;
  color: #64748b;
  line-height: 1.3;
}

.support-kpi__item.is-emphasis {
  background: linear-gradient(180deg, hsl(var(--base) / 0.06) 0%, #fff 100%);
}

.support-kpi__item.is-emphasis .support-kpi__value {
  color: hsl(var(--base));
}

.support-kpi__item.is-emphasis .support-kpi__label {
  color: #475569;
  font-weight: 600;
}

.support-kpi__pulse {
  position: absolute;
  top: 0.875rem;
  right: 0.875rem;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: hsl(var(--base));
  box-shadow: 0 0 0 0 hsl(var(--base) / 0.45);
  animation: support-kpi-pulse 2s ease-out infinite;
}

@keyframes support-kpi-pulse {
  0% {
    box-shadow: 0 0 0 0 hsl(var(--base) / 0.45);
  }
  70% {
    box-shadow: 0 0 0 8px hsl(var(--base) / 0);
  }
  100% {
    box-shadow: 0 0 0 0 hsl(var(--base) / 0);
  }
}

.support-hub__table-head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem 1rem;
}

.support-hub__status-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  font-size: 0.75rem;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
}

.support-hub__status-pill i {
  font-size: 0.9375rem;
}

.support-hub__table-wrap .table {
  margin-bottom: 0;
}

.support-hub__table .support-hub__ticket-no {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.5rem;
  padding: 0.2rem 0.5rem;
  border-radius: 0.375rem;
  background: rgba(var(--base-rgb, 70, 52, 255), 0.1);
  color: hsl(var(--base));
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.support-hub__table .support-hub__subject {
  display: block;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.35;
}

.support-hub__table .badge {
  font-size: 0.6875rem;
  font-weight: 600;
  padding: 0.25rem 0.5rem;
}

.support-hub__row--alert {
  background: rgba(var(--base-rgb, 70, 52, 255), 0.04);
}

.support-hub__row--alert td:first-child {
  box-shadow: inset 3px 0 0 hsl(var(--base));
}

.support-hub__row--muted {
  opacity: 0.82;
}

.support-hub__pagination {
  padding: 1rem 1.25rem;
  border-top: 1px solid var(--tw-user-card-border, #e2e8f0);
}

.dealer-panel .support-hub .dashboard-table {
  border-radius: 16px;
  border: 1px solid #e2e8f0;
  box-shadow: none;
  overflow: hidden;
}

.support-hub .support-hero {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.5rem 1.75rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: linear-gradient(135deg, #fff 0%, #f8fafc 100%);
}

.support-hub .support-hero__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
  margin-bottom: 0.5rem;
}

.support-hub .support-hero__back:hover {
  color: hsl(var(--base));
}

.support-hub .support-hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: hsl(var(--base));
  margin: 0 0 0.35rem;
}

.support-hub .support-hero__title {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0f172a;
}

.support-hub .support-hero__lead {
  margin: 0.5rem 0 0;
  font-size: 0.9375rem;
  color: #64748b;
  max-width: 36rem;
}

.support-stats .support-stat {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1rem 1.125rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #fff;
  height: 100%;
}

.support-stats .support-stat__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  background: rgba(var(--base-rgb, 70, 52, 255), 0.1);
  color: hsl(var(--base));
}

.support-stats .support-stat__icon--amber {
  background: #fffbeb;
  color: #b45309;
}

.support-stats .support-stat__icon--green {
  background: #ecfdf5;
  color: #047857;
}

.support-stats .support-stat__icon--muted {
  background: #f1f5f9;
  color: #64748b;
}

.support-stats .support-stat__label {
  display: block;
  font-size: 0.75rem;
  color: #64748b;
}

.support-stats .support-stat__value {
  font-size: 1.375rem;
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
}

.support-list-panel {
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  background: #fff;
  overflow: hidden;
}

.support-list-panel__head {
  padding: 1.25rem 1.5rem;
  border-bottom: 1px solid #f1f5f9;
  background: #fafbfc;
}

.support-list-panel__title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
}

.support-list-panel__desc {
  margin: 0.25rem 0 0;
  font-size: 0.8125rem;
  color: #64748b;
}

.support-list__item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.125rem 1.5rem;
  border-bottom: 1px solid #f1f5f9;
  text-decoration: none;
  color: inherit;
  transition: background 0.15s;
}

.support-list__item:hover {
  background: #f8fafc;
  color: inherit;
}

.support-list__item.is-highlight {
  border-left: 3px solid hsl(var(--base));
  padding-left: calc(1.5rem - 3px);
}

.support-list__item.is-closed {
  opacity: 0.88;
}

.support-list__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
}

.support-list__no {
  font-size: 0.75rem;
  font-weight: 700;
  color: hsl(var(--base));
}

.support-list__subject {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  color: #0f172a;
}

.support-list__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
  font-size: 0.8125rem;
  color: #64748b;
}

.support-list__pill {
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
}

.support-list__pill.is-high {
  background: #fef2f2;
  color: #b91c1c;
}

.support-list__pill.is-medium {
  background: #fffbeb;
  color: #b45309;
}

.support-list__pill.is-low {
  background: #f1f5f9;
  color: #475569;
}

.support-list__arrow {
  color: #94a3b8;
  font-size: 1.25rem;
}

.support-list__empty {
  text-align: center;
  padding: 3rem 1.5rem;
}

.support-list__empty-icon {
  font-size: 2.5rem;
  color: #cbd5e1;
  margin-bottom: 0.75rem;
}

.support-list-panel__footer {
  padding: 1rem 1.5rem;
  border-top: 1px solid #f1f5f9;
}

.support-sidebar {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.support-sidebar__back {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: #64748b;
  text-decoration: none;
}

.support-sidebar__back:hover {
  color: hsl(var(--base));
}

.support-sidebar__card {
  padding: 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  background: #fff;
}

.support-sidebar__no {
  font-size: 0.75rem;
  font-weight: 700;
  color: hsl(var(--base));
}

.support-sidebar__subject {
  margin: 0.5rem 0;
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.35;
}

.support-sidebar__badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
}

.support-sidebar__meta {
  list-style: none;
  margin: 0;
  padding: 1rem 1.25rem;
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  background: #fff;
}

.support-sidebar__meta li {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.8125rem;
}

.support-sidebar__meta li:last-child {
  border-bottom: 0;
}

.support-sidebar__meta span {
  color: #64748b;
}

.support-sidebar__notice {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  border-radius: 0.75rem;
  background: #f8fafc;
  color: #64748b;
  font-size: 0.875rem;
}

.support-chat {
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  background: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 28rem;
}

.support-chat__head {
  padding: 1.125rem 1.5rem;
  border-bottom: 1px solid #f1f5f9;
  background: #fafbfc;
}

.support-chat__title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
}

.support-chat__desc {
  margin: 0.25rem 0 0;
  font-size: 0.8125rem;
  color: #64748b;
}

.support-chat__messages {
  flex: 1;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-height: min(55vh, 520px);
  overflow-y: auto;
}

.support-chat__row {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}

.support-chat__row.is-user {
  flex-direction: row-reverse;
}

.support-chat__avatar {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.125rem;
  flex-shrink: 0;
  background: #f1f5f9;
  color: #64748b;
}

.support-chat__row.is-staff .support-chat__avatar {
  background: rgba(var(--base-rgb, 70, 52, 255), 0.12);
  color: hsl(var(--base));
}

.support-chat__bubble {
  max-width: min(100%, 34rem);
  padding: 0.875rem 1rem;
  border-radius: 1rem;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}

.support-chat__row.is-user .support-chat__bubble {
  background: rgba(var(--base-rgb, 70, 52, 255), 0.06);
  border-color: rgba(var(--base-rgb, 70, 52, 255), 0.2);
}

.support-chat__head {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.8125rem;
}

.support-chat__head time {
  margin-left: auto;
  color: #94a3b8;
  font-size: 0.75rem;
}

.support-chat__body {
  white-space: pre-wrap;
  word-break: break-word;
  font-size: 0.9375rem;
  color: #334155;
}

.support-chat__files {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: 0.75rem;
}

.support-chat__file {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.25rem 0.625rem;
  border-radius: 999px;
  background: #fff;
  border: 1px solid #e2e8f0;
  font-size: 0.75rem;
  color: hsl(var(--base));
  text-decoration: none;
}

.support-chat__empty {
  text-align: center;
  padding: 2rem;
  color: #94a3b8;
}

.support-chat__composer {
  padding: 1.25rem 1.5rem;
  border-top: 1px solid #e2e8f0;
  background: #fafbfc;
}

.support-chat__composer-label {
  font-weight: 600;
  font-size: 0.875rem;
  margin-bottom: 0.5rem;
  display: block;
}

.support-chat__composer-tools {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.75rem;
}

.support-chat__hint {
  font-size: 0.75rem;
  color: #64748b;
  margin: 0.5rem 0 0;
}

.support-chat__composer--closed {
  text-align: center;
  color: #64748b;
}

.support-chat__composer--closed i {
  font-size: 1.75rem;
  display: block;
  margin-bottom: 0.5rem;
}

.support-form-panel {
  border: 1px solid #e2e8f0;
  border-radius: 1rem;
  background: #fff;
  padding: 1.5rem;
}

.support-form-panel__head {
  margin-bottom: 1.25rem;
}

.support-form-panel__title {
  margin: 0;
  font-size: 1.0625rem;
  font-weight: 700;
}

.support-form-panel__desc {
  margin: 0.35rem 0 0;
  font-size: 0.875rem;
  color: #64748b;
}

.support-form-panel__hint {
  font-size: 0.75rem;
  color: #64748b;
  margin: 0.5rem 0 0;
}

.support-form-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: flex-end;
  margin-top: var(--form-actions-gap, 1.25rem);
  padding-top: 1.25rem;
  border-top: 1px solid #f1f5f9;
}

/* —— Ana sayfa: banner & CTA — soft #f16725 —— */
.home-hero {
  --brand: #f16725;
  --brand-soft: #fff8f4;
  --brand-soft-mid: #ffefe6;
  --brand-muted: rgba(241, 103, 37, 0.1);
  --brand-dark: #d85a1f;
  background: linear-gradient(180deg, var(--brand-soft) 0%, #ffffff 55%, #ffffff 100%);
}

.home-hero__mesh {
  background:
    radial-gradient(ellipse 80% 50% at 10% 0%, rgba(241, 103, 37, 0.1), transparent 60%),
    radial-gradient(ellipse 60% 40% at 90% 20%, rgba(241, 103, 37, 0.06), transparent 55%);
}

.home-hero__lead {
  color: #475569;
  font-size: clamp(0.875rem, 0.9vw + 0.7rem, 1rem);
  line-height: 1.55;
}

.home-hero__eyebrow {
  padding: 0.4rem 1rem 0.4rem 0.55rem;
  border-radius: 9999px;
  border: 1px solid rgba(241, 103, 37, 0.22);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(255, 245, 239, 0.9));
  box-shadow: 0 4px 20px rgba(241, 103, 37, 0.1);
  color: var(--brand-dark);
}

.home-hero__eyebrow-dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 4px rgba(241, 103, 37, 0.22);
  animation: home-hero-pulse 2.4s ease-in-out infinite;
}

@keyframes home-hero-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 4px rgba(241, 103, 37, 0.22);
  }
  50% {
    box-shadow: 0 0 0 7px rgba(241, 103, 37, 0.08);
  }
}

.home-hero__title {
  color: #0f172a;
  font-size: clamp(2rem, 4.5vw + 0.85rem, 3rem);
  line-height: 1.18;
  text-wrap: balance;
}

.home-hero__title-accent {
  background: linear-gradient(120deg, #f67a3d 0%, var(--brand, #f16725) 50%, #e85f20 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.home-hero__aside {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.home-hero__panel-icon {
  background: linear-gradient(145deg, #f67a3d, #f16725);
  box-shadow: 0 4px 14px rgba(241, 103, 37, 0.22);
}

.home-hero__btn-primary {
  background: linear-gradient(135deg, #f67a3d 0%, #f16725 55%, #e85f20 100%);
  box-shadow: 0 10px 28px -6px rgba(241, 103, 37, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.home-hero__btn-primary:hover {
  filter: brightness(1.03);
  transform: translateY(-1px);
  box-shadow: 0 14px 32px -6px rgba(241, 103, 37, 0.45);
}

.home-hero__btn-secondary {
  color: var(--brand-dark);
  border: 2px solid rgba(241, 103, 37, 0.35);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: 0 4px 16px rgba(241, 103, 37, 0.08);
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.home-hero__btn-secondary:hover {
  background: var(--brand-soft);
  border-color: var(--brand);
  color: var(--brand-ink);
  transform: translateY(-1px);
}

.home-hero__trust-card {
  border-radius: 1.25rem;
  border: 1px solid rgba(241, 103, 37, 0.12);
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 245, 239, 0.65));
  box-shadow: 0 8px 24px rgba(241, 103, 37, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-hero__trust-card:hover {
  border-color: rgba(241, 103, 37, 0.28);
  box-shadow: 0 12px 28px rgba(241, 103, 37, 0.12);
}

.home-hero__trust-icon--soft {
  background: rgba(241, 103, 37, 0.1);
  color: var(--brand-dark);
}

.home-hero__trust-icon--brand {
  background: linear-gradient(145deg, #f67a3d, #f16725);
  color: #fff;
  box-shadow: 0 4px 14px rgba(241, 103, 37, 0.25);
}

.home-hero__panel {
  background: linear-gradient(165deg, #ffffff 0%, #fffaf7 45%, #fff5ef 100%);
  border: 1px solid rgba(241, 103, 37, 0.14);
  box-shadow:
    0 20px 48px -20px rgba(241, 103, 37, 0.18),
    0 4px 16px rgba(15, 23, 42, 0.04);
}

.home-hero__badge {
  color: #d85a1f;
  background: rgba(241, 103, 37, 0.1);
  border: 1px solid rgba(241, 103, 37, 0.18);
}

.home-hero__step {
  background: rgba(255, 255, 255, 0.85);
  border: 1px solid rgba(241, 103, 37, 0.1);
}

.home-hero__step-num {
  background: linear-gradient(145deg, #f67a3d, #f16725);
  color: #fff;
  box-shadow: 0 2px 8px rgba(241, 103, 37, 0.25);
}

.home-hero__highlight {
  background: rgba(241, 103, 37, 0.07);
  border: 1px solid rgba(241, 103, 37, 0.12);
}

.home-hero__highlight .las {
  background: #fff;
  border-radius: 0.75rem;
  width: 2.5rem;
  height: 2.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(241, 103, 37, 0.1);
}

.home-hero__float-card {
  border-radius: 1.25rem;
  border: 1px solid rgba(241, 103, 37, 0.18);
  background: #fff;
  box-shadow: 0 12px 32px rgba(241, 103, 37, 0.1);
}

.home-hero__float-icon {
  background: var(--brand-soft);
  color: var(--brand);
}

.home-hero__services {
  display: grid;
  width: 100%;
  gap: 0.75rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .home-hero__services {
    gap: 1rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .home-hero__services {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .home-hero__services {
    gap: 1.25rem;
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.home-hero__service-card {
  border: 1px solid rgba(241, 103, 37, 0.1);
  background: #fff;
  box-shadow: 0 4px 16px rgba(241, 103, 37, 0.05);
}

.home-hero__service-card:hover {
  border-color: rgba(241, 103, 37, 0.35);
  box-shadow: 0 12px 28px rgba(241, 103, 37, 0.14);
}

.home-hero__service-desc {
  display: none;
}

.home-hero__logo {
  display: block;
  max-height: 35px;
  width: auto;
  height: auto;
}

.home-hero__service-title {
  font-weight: 700;
  line-height: 1.3;
}

.home-cta {
  --brand: #f16725;
  --brand-soft: #fff8f4;
}

.home-cta__shell {
  border: 1px solid rgba(241, 103, 37, 0.12);
  box-shadow: 0 16px 48px -20px rgba(241, 103, 37, 0.15);
  background: #fff;
}

.home-cta__content {
  background: linear-gradient(160deg, #ffffff 0%, var(--brand-soft) 100%);
}

.home-cta__content-pattern {
  opacity: 0.35;
  background-image: radial-gradient(rgba(241, 103, 37, 0.12) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, black 20%, transparent 95%);
}

.home-cta__eyebrow {
  color: var(--brand-dark);
}

.home-cta__eyebrow-line {
  width: 1.75rem;
  height: 2px;
  border-radius: 2px;
  background: linear-gradient(90deg, var(--brand), transparent);
}

.home-cta__check {
  background: linear-gradient(145deg, #f67a3d, #f16725);
  box-shadow: 0 2px 8px rgba(241, 103, 37, 0.25);
}

.home-cta__btn-primary {
  background: linear-gradient(135deg, #f67a3d 0%, #f16725 100%);
  box-shadow: 0 10px 28px -6px rgba(241, 103, 37, 0.4);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.home-cta__btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px -6px rgba(241, 103, 37, 0.62);
}

.home-cta__btn-ghost {
  color: var(--brand-dark);
  border: 2px solid rgba(241, 103, 37, 0.3);
  background: #fff;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.home-cta__btn-ghost:hover {
  background: var(--brand-soft);
  border-color: var(--brand);
}

.home-cta__visual {
  background: linear-gradient(180deg, #fffaf7 0%, #fff5ef 50%, #ffefe6 100%);
  border-top: 1px solid rgba(241, 103, 37, 0.08);
}

.home-cta__stat {
  border: 1px solid rgba(241, 103, 37, 0.1);
  background: #fff;
  box-shadow: 0 4px 14px rgba(241, 103, 37, 0.06);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.home-cta__stat:hover {
  border-color: rgba(241, 103, 37, 0.22);
  box-shadow: 0 8px 20px rgba(241, 103, 37, 0.1);
}

.home-cta__highlight {
  border: 1px solid rgba(241, 103, 37, 0.12);
  background: #fff;
  box-shadow: 0 4px 16px rgba(241, 103, 37, 0.06);
}

.home-cta__channel {
  color: #d85a1f;
  background: rgba(241, 103, 37, 0.08);
  border: 1px solid rgba(241, 103, 37, 0.14);
}

@media (min-width: 1024px) {
  .home-cta__shell {
    min-height: 22rem;
  }

  .home-cta__content {
    border-right: 1px solid rgba(241, 103, 37, 0.12);
  }

  .home-cta__visual {
    border-top: none;
    border-left: 1px solid rgba(241, 103, 37, 0.1);
  }
}

/* —— Ön yüz üst menü + mega menü —— */
.site-header__nav-link {
  letter-spacing: 0.01em;
}

.site-header__mega {
  max-height: min(70vh, 32rem);
  overflow-y: auto;
}

.site-header__mega-grid {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

@media (min-width: 640px) {
  .site-header__mega-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  .site-header__mega-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .site-header__mega-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (min-width: 1280px) {
  .site-header__mega-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
  }
}

.site-header__mega-item {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.5rem;
  padding: 0.875rem 1rem;
  border-radius: 1rem;
  border: 1px solid rgba(241, 103, 37, 0.08);
  background: linear-gradient(145deg, #ffffff, #fffaf7);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.site-header__mega-item-top {
  display: flex;
  width: 100%;
  align-items: center;
  gap: 0.625rem;
}

.site-header__mega-heading {
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.25;
}

.site-header__mega-desc {
  display: -webkit-box;
  width: 100%;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 0.75rem;
  line-height: 1.45;
  color: #64748b;
}

.site-header__mega-item:hover {
  border-color: rgba(241, 103, 37, 0.28);
  background: #fff8f4;
  box-shadow: 0 8px 24px rgba(241, 103, 37, 0.1);
}

.site-header__mega-icon {
  display: flex;
  height: 1.75rem;
  width: 1.75rem;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(241, 103, 37, 0.12);
}

.site-header__mega-icon .category-theme-icon--sm {
  width: 1.75rem;
  height: 1.75rem;
  font-size: 0.95rem;
  border-radius: 0.5rem;
}

.site-header__mega-icon img {
  width: 1.75rem !important;
  height: 1.75rem !important;
}

.site-header__mobile-service-icon .category-theme-icon--sm,
.site-header__mobile-service-icon img {
  width: 2rem !important;
  height: 2rem !important;
  font-size: 1rem;
  border-radius: 0.5rem;
}