/* [project]/src/components/BreakingNews/BreakingNews.module.css [app-client] (css) */
.BreakingNews-module__Uj6eBa__breakingBanner {
  background: linear-gradient(135deg, #101727 0%, #151e30 100%);
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  display: flex;
  position: relative;
  overflow: hidden;
}

.BreakingNews-module__Uj6eBa__breakingBanner:before {
  content: "";
  pointer-events: none;
  background: radial-gradient(100% 100% at 100% 0, #28a5451f 0%, #0000 50%);
  position: absolute;
  inset: 0;
}

.BreakingNews-module__Uj6eBa__container {
  z-index: 1;
  align-items: center;
  gap: 16px;
  width: 100%;
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 16px;
  display: flex;
  position: relative;
}

.BreakingNews-module__Uj6eBa__breakingLabel {
  background: var(--primary);
  color: #fff;
  text-transform: uppercase;
  letter-spacing: .5px;
  border-radius: 6px;
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  display: flex;
}

.BreakingNews-module__Uj6eBa__breakingDot {
  background: #fff;
  border-radius: 50%;
  width: 6px;
  height: 6px;
  animation: 1.5s ease-in-out infinite BreakingNews-module__Uj6eBa__pulse;
}

@keyframes BreakingNews-module__Uj6eBa__pulse {
  0%, 100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: .5;
    transform: scale(1.3);
  }
}

.BreakingNews-module__Uj6eBa__breakingScroll {
  flex: 1;
  position: relative;
  overflow: hidden;
}

.BreakingNews-module__Uj6eBa__breakingTrack {
  gap: 48px;
  width: max-content;
  animation: 35s linear infinite BreakingNews-module__Uj6eBa__scroll;
  display: flex;
}

.BreakingNews-module__Uj6eBa__breakingTrack:hover {
  animation-play-state: paused;
}

@keyframes BreakingNews-module__Uj6eBa__scroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.BreakingNews-module__Uj6eBa__breakingItem {
  white-space: nowrap;
  cursor: pointer;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: opacity .2s;
  display: flex;
}

.BreakingNews-module__Uj6eBa__breakingItem:hover {
  opacity: .8;
}

.BreakingNews-module__Uj6eBa__breakingCategory {
  color: var(--primary);
  text-transform: uppercase;
  letter-spacing: .3px;
  font-size: 10px;
  font-weight: 600;
}

.BreakingNews-module__Uj6eBa__breakingTitle {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

.BreakingNews-module__Uj6eBa__breakingDivider {
  background: #ffffff4d;
  border-radius: 50%;
  flex-shrink: 0;
  width: 4px;
  height: 4px;
}

.BreakingNews-module__Uj6eBa__hidden {
  display: none;
}

@media (max-width: 768px) {
  .BreakingNews-module__Uj6eBa__breakingBanner {
    padding: 8px 0;
  }

  .BreakingNews-module__Uj6eBa__breakingLabel {
    padding: 5px 10px;
    font-size: 10px;
  }

  .BreakingNews-module__Uj6eBa__breakingTitle {
    font-size: 12px;
  }
}

@media (max-width: 480px) {
  .BreakingNews-module__Uj6eBa__container {
    gap: 12px;
  }

  .BreakingNews-module__Uj6eBa__breakingLabel span:last-child {
    display: none;
  }
}

/* [project]/src/components/Header/Header.module.css [app-client] (css) */
.Header-module__ldgnoG__headerWrapper {
  z-index: 1000;
  flex-direction: column;
  display: flex;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.Header-module__ldgnoG__header {
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--gray-200);
  background: #ffffffeb;
  border-radius: 16px;
  width: calc(100% - 32px);
  max-width: 1320px;
  margin: 12px auto;
  transition: margin .35s cubic-bezier(.4, 0, .2, 1), background .3s, border-color .3s;
}

.Header-module__ldgnoG__scrolled {
  border-color: var(--gray-200);
  background: #fffffffa;
  margin-top: 8px;
}

.Header-module__ldgnoG__container {
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  max-width: 100%;
  height: 76px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
}

.Header-module__ldgnoG__logo {
  flex-shrink: 0;
  align-items: center;
  gap: 2px;
  text-decoration: none;
  transition: transform .2s, opacity .2s;
  display: flex;
}

.Header-module__ldgnoG__logo:hover, .Header-module__ldgnoG__logo:active {
  transform: none;
}

.Header-module__ldgnoG__logo img {
  object-fit: contain;
  height: auto;
}

.Header-module__ldgnoG__nav {
  flex: 1;
  justify-content: center;
  align-items: center;
  display: flex;
}

.Header-module__ldgnoG__navInner {
  align-items: center;
  gap: 4px;
  display: flex;
}

.Header-module__ldgnoG__navLink {
  white-space: nowrap;
  color: var(--gray-600);
  border-radius: 10px;
  align-items: center;
  gap: 6px;
  padding: 10px 14px;
  text-decoration: none;
  transition: color .25s, transform .2s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.Header-module__ldgnoG__navLink:before {
  content: "";
  opacity: 0;
  background: linear-gradient(135deg, #28a54514 0%, #28a5450a 100%);
  border-radius: 10px;
  transition: opacity .25s;
  position: absolute;
  inset: 0;
}

.Header-module__ldgnoG__navLink:hover:before {
  opacity: 1;
}

.Header-module__ldgnoG__navLink:hover {
  color: var(--primary);
  transform: translateY(-1px);
}

.Header-module__ldgnoG__navLink:active {
  transform: translateY(0)scale(.98);
}

.Header-module__ldgnoG__navIcon {
  color: inherit;
  justify-content: center;
  align-items: center;
  transition: transform .25s;
  display: flex;
}

.Header-module__ldgnoG__navIcon svg {
  width: 18px;
  height: 18px;
}

.Header-module__ldgnoG__navLink:hover .Header-module__ldgnoG__navIcon {
  transform: scale(1.1);
}

.Header-module__ldgnoG__navDropdown {
  position: relative;
}

.Header-module__ldgnoG__navDropdown .Header-module__ldgnoG__navLink {
  cursor: pointer;
  background: none;
  border: none;
  font-family: inherit;
}

.Header-module__ldgnoG__dropdownIcon {
  margin-left: 4px;
  transition: transform .3s;
}

.Header-module__ldgnoG__navDropdown:hover .Header-module__ldgnoG__dropdownIcon {
  transform: rotate(180deg);
}

.Header-module__ldgnoG__dropdownMenu {
  border: 1px solid var(--gray-200);
  z-index: 1000;
  background: #fff;
  border-radius: 12px;
  min-width: 240px;
  padding: 8px;
  animation: .2s Header-module__ldgnoG__dropdownFadeIn;
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
}

@keyframes Header-module__ldgnoG__dropdownFadeIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.Header-module__ldgnoG__dropdownItem {
  color: var(--gray-700);
  border-radius: 8px;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.Header-module__ldgnoG__dropdownItem:hover {
  background: var(--gray-50);
  color: var(--primary);
}

.Header-module__ldgnoG__navDropdownGreen .Header-module__ldgnoG__navLink {
  background: var(--primary);
  color: #fff;
  border-radius: 10px;
  padding: 10px 14px;
  transition: background .2s, transform .2s;
}

.Header-module__ldgnoG__navDropdownGreen .Header-module__ldgnoG__navLink:hover {
  background: var(--primary-dark);
}

.Header-module__ldgnoG__navDropdownGreen .Header-module__ldgnoG__navIcon {
  color: #fff;
  background: none;
}

.Header-module__ldgnoG__navDropdownGreen .Header-module__ldgnoG__navTitle {
  color: #fff;
}

.Header-module__ldgnoG__dropdownMenuGreen {
  animation: .2s Header-module__ldgnoG__dropdownFadeInCenter;
  left: 50%;
  transform: translateX(-50%);
}

@keyframes Header-module__ldgnoG__dropdownFadeInCenter {
  from {
    opacity: 0;
    transform: translateX(-50%)translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateX(-50%)translateY(0);
  }
}

.Header-module__ldgnoG__dropdownMenuGreen .Header-module__ldgnoG__dropdownItem:hover {
  color: var(--primary);
  background: #28a54514;
}

.Header-module__ldgnoG__mobileAccordionGreen .Header-module__ldgnoG__mobileNavItem {
  border-left: 3px solid var(--primary);
}

.Header-module__ldgnoG__mobileAccordionGreen .Header-module__ldgnoG__mobileNavItemActive {
  background: #28a5450f;
}

.Header-module__ldgnoG__mobileAccordionGreen .Header-module__ldgnoG__mobileSubItem:hover {
  color: var(--primary);
  background: #28a5450f;
}

.Header-module__ldgnoG__dropdownItem svg {
  color: var(--gray-500);
  flex-shrink: 0;
  transition: color .2s;
}

.Header-module__ldgnoG__dropdownItem:hover svg {
  color: var(--primary);
}

.Header-module__ldgnoG__dropdownTitle {
  color: inherit;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}

.Header-module__ldgnoG__dropdownDesc {
  color: var(--gray-500);
  margin-top: 2px;
  font-size: 12px;
  line-height: 1.2;
}

.Header-module__ldgnoG__navText {
  flex-direction: column;
  display: flex;
}

.Header-module__ldgnoG__navTitle {
  color: inherit;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}

.Header-module__ldgnoG__navDesc {
  display: none;
}

.Header-module__ldgnoG__actions {
  flex-shrink: 0;
  align-items: center;
  gap: 8px;
  display: flex;
}

.Header-module__ldgnoG__loginBtn {
  color: var(--secondary);
  border: 1px solid var(--secondary);
  background: none;
  border-radius: 10px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s;
}

.Header-module__ldgnoG__loginBtn:hover {
  color: #fff;
  background: var(--secondary);
}

.Header-module__ldgnoG__loginBtn:active {
  transform: scale(.98);
}

.Header-module__ldgnoG__registerBtn {
  color: #fff;
  background: var(--primary);
  border-radius: 10px;
  align-items: center;
  gap: 6px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  transition: all .25s;
  display: flex;
}

.Header-module__ldgnoG__registerBtn:hover {
  background: var(--primary-dark);
  gap: 10px;
}

.Header-module__ldgnoG__registerBtn:active {
  transform: scale(.98);
}

.Header-module__ldgnoG__registerBtn svg {
  transition: transform .25s;
}

.Header-module__ldgnoG__registerBtn:hover svg {
  transform: translateX(3px);
}

.Header-module__ldgnoG__profileWrapper {
  position: relative;
}

.Header-module__ldgnoG__profileBtn {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  cursor: pointer;
  border-radius: 50px;
  align-items: center;
  gap: 10px;
  padding: 6px 12px 6px 6px;
  transition: all .2s;
  display: flex;
}

.Header-module__ldgnoG__profileBtn:hover {
  background: var(--gray-100);
  border-color: var(--gray-300);
}

.Header-module__ldgnoG__profileAvatar {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  color: #fff;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: 14px;
  font-weight: 600;
  display: flex;
}

.Header-module__ldgnoG__profileName {
  color: var(--gray-700);
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 120px;
  font-size: 14px;
  font-weight: 500;
  overflow: hidden;
}

.Header-module__ldgnoG__profileBtn svg {
  color: var(--gray-500);
  transition: transform .2s;
}

.Header-module__ldgnoG__profileBtn:hover svg {
  color: var(--gray-700);
}

.Header-module__ldgnoG__profileMenu {
  border: 1px solid var(--gray-200);
  z-index: 100;
  background: #fff;
  border-radius: 12px;
  min-width: 220px;
  padding: 8px;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  box-shadow: 0 10px 40px #1017271a;
}

.Header-module__ldgnoG__profileMenuItem {
  width: 100%;
  color: var(--gray-700);
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 8px;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all .15s;
  display: flex;
}

.Header-module__ldgnoG__profileMenuItem:hover {
  background: var(--gray-50);
  color: var(--gray-900);
}

.Header-module__ldgnoG__profileMenuItem svg {
  color: var(--gray-500);
}

.Header-module__ldgnoG__profileMenuItem:hover svg {
  color: var(--primary);
}

.Header-module__ldgnoG__notifWrapper {
  position: relative;
}

.Header-module__ldgnoG__notifBtn {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  cursor: pointer;
  width: 40px;
  height: 40px;
  color: var(--gray-600);
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  transition: all .2s;
  display: flex;
  position: relative;
}

.Header-module__ldgnoG__notifBtn:hover {
  background: var(--gray-100);
  border-color: var(--gray-300);
  color: var(--gray-800);
}

.Header-module__ldgnoG__notifBadge {
  color: #fff;
  background: #ef4444;
  border: 2px solid #fff;
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  font-size: 10px;
  font-weight: 700;
  display: flex;
  position: absolute;
  top: -2px;
  right: -2px;
}

.Header-module__ldgnoG__notifDropdown {
  border: 1px solid var(--gray-200);
  z-index: 100;
  background: #fff;
  border-radius: 14px;
  width: 340px;
  position: absolute;
  top: calc(100% + 8px);
  right: 0;
  overflow: hidden;
  box-shadow: 0 10px 40px #1017271f;
}

.Header-module__ldgnoG__notifDropdownHeader {
  border-bottom: 1px solid var(--gray-100);
  justify-content: space-between;
  align-items: center;
  padding: 14px 16px;
  display: flex;
}

.Header-module__ldgnoG__notifDropdownTitle {
  color: var(--gray-900);
  font-size: 15px;
  font-weight: 600;
}

.Header-module__ldgnoG__notifMarkAll {
  color: var(--primary);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  font-size: 12px;
  font-weight: 600;
  transition: opacity .15s;
}

.Header-module__ldgnoG__notifMarkAll:hover {
  opacity: .7;
}

.Header-module__ldgnoG__notifDropdownList {
  max-height: 300px;
  overflow-y: auto;
}

.Header-module__ldgnoG__notifEmpty {
  text-align: center;
  color: var(--gray-400);
  padding: 32px 16px;
  font-size: 13px;
}

.Header-module__ldgnoG__notifItem {
  border-bottom: 1px solid var(--gray-50);
  padding: 12px 16px;
  text-decoration: none;
  transition: background .15s;
  display: block;
}

.Header-module__ldgnoG__notifItem:hover {
  background: var(--gray-50);
}

.Header-module__ldgnoG__notifItemUnread {
  background: #f0fdf4;
}

.Header-module__ldgnoG__notifItemUnread:hover {
  background: #dcfce7;
}

.Header-module__ldgnoG__notifItemTitle {
  color: var(--gray-900);
  margin-bottom: 2px;
  font-size: 13px;
  font-weight: 600;
}

.Header-module__ldgnoG__notifItemMsg {
  color: var(--gray-500);
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  font-size: 12px;
  display: -webkit-box;
  overflow: hidden;
}

.Header-module__ldgnoG__notifDropdownFooter {
  text-align: center;
  color: var(--primary);
  border-top: 1px solid var(--gray-100);
  padding: 12px 16px;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  transition: background .15s;
  display: block;
}

.Header-module__ldgnoG__notifDropdownFooter:hover {
  background: var(--gray-50);
}

.Header-module__ldgnoG__profileMenuDivider {
  background: var(--gray-100);
  height: 1px;
  margin: 4px 0;
}

.Header-module__ldgnoG__menuBadge {
  color: #fff;
  background: #ef4444;
  border-radius: 9px;
  justify-content: center;
  align-items: center;
  min-width: 18px;
  height: 18px;
  margin-left: auto;
  padding: 0 5px;
  font-size: 10px;
  font-weight: 700;
  display: inline-flex;
}

.Header-module__ldgnoG__menuToggle {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  cursor: pointer;
  border-radius: 12px;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 12px;
  transition: all .2s;
  display: none;
}

.Header-module__ldgnoG__menuToggle:hover {
  background: var(--gray-100);
}

.Header-module__ldgnoG__menuToggle span {
  background: var(--gray-600);
  transform-origin: center;
  border-radius: 2px;
  width: 100%;
  height: 2px;
  transition: all .3s;
}

.Header-module__ldgnoG__menuOpen span:first-child {
  transform: rotate(45deg)translate(5px, 5px);
}

.Header-module__ldgnoG__menuOpen span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.Header-module__ldgnoG__menuOpen span:nth-child(3) {
  transform: rotate(-45deg)translate(5px, -5px);
}

.Header-module__ldgnoG__mobileMenu {
  z-index: 9999;
  opacity: 0;
  background: #fff;
  flex-direction: column;
  width: 100%;
  height: 100%;
  transition: transform .4s cubic-bezier(.4, 0, .2, 1), opacity .3s;
  display: none;
  position: fixed;
  inset: 0;
  transform: translateX(100%);
}

.Header-module__ldgnoG__mobileMenuOpen {
  opacity: 1;
  transform: translateX(0);
}

.Header-module__ldgnoG__mobileMenuHeader {
  border-bottom: 1px solid var(--gray-100);
  flex-shrink: 0;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  display: flex;
}

.Header-module__ldgnoG__closeBtn {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  cursor: pointer;
  width: 44px;
  height: 44px;
  color: var(--gray-600);
  border-radius: 12px;
  justify-content: center;
  align-items: center;
  transition: all .2s;
  display: flex;
}

.Header-module__ldgnoG__closeBtn:hover {
  background: var(--gray-100);
  color: var(--gray-900);
}

.Header-module__ldgnoG__mobileMenuContent {
  -webkit-overflow-scrolling: touch;
  flex: 1;
  padding: 16px 20px;
  overflow-y: auto;
}

.Header-module__ldgnoG__mobileNavList {
  flex-direction: column;
  gap: 8px;
  display: flex;
}

.Header-module__ldgnoG__mobileNavItem {
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  color: var(--gray-700);
  cursor: pointer;
  text-align: left;
  border-radius: 14px;
  align-items: center;
  gap: 14px;
  width: 100%;
  padding: 16px;
  font-family: inherit;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.Header-module__ldgnoG__mobileNavItem:hover, .Header-module__ldgnoG__mobileNavItem:active {
  background: var(--gray-100);
  border-color: var(--gray-200);
}

.Header-module__ldgnoG__mobileNavItemActive {
  background: #28a54514;
  border-color: #28a54533;
}

.Header-module__ldgnoG__mobileNavIcon {
  width: 48px;
  height: 48px;
  color: var(--primary);
  background: #fff;
  border-radius: 12px;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  display: flex;
}

.Header-module__ldgnoG__mobileNavText {
  flex-direction: column;
  flex: 1;
  gap: 2px;
  display: flex;
}

.Header-module__ldgnoG__mobileNavTitle {
  color: var(--gray-900);
  font-size: 16px;
  font-weight: 600;
}

.Header-module__ldgnoG__mobileNavDesc {
  color: var(--gray-500);
  font-size: 13px;
}

.Header-module__ldgnoG__mobileNavArrow {
  color: var(--gray-400);
  flex-shrink: 0;
  transition: transform .2s;
}

.Header-module__ldgnoG__mobileNavItem:hover .Header-module__ldgnoG__mobileNavArrow {
  color: var(--primary);
  transform: translateX(4px);
}

.Header-module__ldgnoG__mobileAccordion {
  flex-direction: column;
  display: flex;
}

.Header-module__ldgnoG__mobileAccordionIcon {
  color: var(--gray-400);
  flex-shrink: 0;
  transition: transform .3s;
}

.Header-module__ldgnoG__mobileAccordionIconOpen {
  color: var(--primary);
  transform: rotate(180deg);
}

.Header-module__ldgnoG__mobileAccordionContent {
  max-height: 0;
  transition: max-height .3s;
  overflow: hidden;
}

.Header-module__ldgnoG__mobileAccordionContentOpen {
  max-height: 300px;
}

.Header-module__ldgnoG__mobileSubList {
  flex-direction: column;
  gap: 6px;
  padding: 10px 0 0;
  display: flex;
}

.Header-module__ldgnoG__mobileSubItem {
  color: var(--gray-700);
  border: 1px solid var(--gray-100);
  background: #fff;
  border-radius: 10px;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.Header-module__ldgnoG__mobileSubItem:hover {
  background: var(--gray-50);
  border-color: var(--gray-200);
  color: var(--primary);
}

.Header-module__ldgnoG__mobileSubItem svg {
  width: 18px;
  height: 18px;
  color: var(--primary);
  flex-shrink: 0;
}

.Header-module__ldgnoG__mobileSubItem span {
  flex: 1;
}

.Header-module__ldgnoG__mobileMenuFooter {
  border-top: 1px solid var(--gray-100);
  background: var(--gray-50);
  flex-direction: column;
  flex-shrink: 0;
  gap: 12px;
  padding: 20px;
  display: flex;
}

.Header-module__ldgnoG__mobileLoginBtn {
  color: var(--gray-700);
  border: 1px solid var(--gray-200);
  background: #fff;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.Header-module__ldgnoG__mobileLoginBtn:hover {
  background: var(--gray-100);
  border-color: var(--gray-300);
}

.Header-module__ldgnoG__mobileLoginBtn svg {
  color: var(--gray-500);
}

.Header-module__ldgnoG__mobileRegisterBtn {
  color: #fff;
  background: var(--primary);
  cursor: pointer;
  border: none;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all .2s;
  display: flex;
}

.Header-module__ldgnoG__mobileRegisterBtn:hover {
  background: var(--primary-dark);
}

.Header-module__ldgnoG__mobileLogoutBtn {
  color: #dc2626;
  cursor: pointer;
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 16px 24px;
  font-size: 16px;
  font-weight: 600;
  transition: all .2s;
  display: flex;
}

.Header-module__ldgnoG__mobileLogoutBtn:hover {
  background: #fee2e2;
}

.Header-module__ldgnoG__overlay {
  display: none;
}

@media (max-width: 1200px) {
  .Header-module__ldgnoG__navLink {
    padding: 8px 10px;
  }

  .Header-module__ldgnoG__navTitle {
    font-size: 13px;
  }
}

@media (max-width: 1024px) {
  .Header-module__ldgnoG__container {
    height: 64px;
    padding: 0 20px;
  }

  .Header-module__ldgnoG__nav {
    display: none;
  }

  .Header-module__ldgnoG__mobileMenu, .Header-module__ldgnoG__menuToggle {
    display: flex;
  }

  .Header-module__ldgnoG__actions {
    display: none;
  }
}

@media (max-width: 768px) {
  .Header-module__ldgnoG__logo img {
    width: 130px;
  }

  .Header-module__ldgnoG__mobileMenuHeader {
    padding: 14px 16px;
  }

  .Header-module__ldgnoG__mobileMenuContent {
    padding: 12px 16px;
  }

  .Header-module__ldgnoG__mobileNavItem {
    padding: 14px;
  }

  .Header-module__ldgnoG__mobileNavIcon {
    width: 44px;
    height: 44px;
  }

  .Header-module__ldgnoG__mobileNavTitle {
    font-size: 15px;
  }

  .Header-module__ldgnoG__mobileSubItem {
    padding: 10px 14px;
  }

  .Header-module__ldgnoG__mobileMenuFooter {
    padding: 16px;
  }
}

@media (max-width: 600px) {
  .Header-module__ldgnoG__header {
    width: calc(100% - 24px);
    margin: 8px auto;
  }

  .Header-module__ldgnoG__container {
    height: 56px;
    padding: 0 16px;
  }

  .Header-module__ldgnoG__logo img {
    width: 120px;
  }

  .Header-module__ldgnoG__menuToggle {
    border-radius: 10px;
    width: 40px;
    height: 40px;
    padding: 10px;
  }

  .Header-module__ldgnoG__mobileMenuHeader {
    padding: 12px 16px;
  }

  .Header-module__ldgnoG__closeBtn {
    width: 40px;
    height: 40px;
  }

  .Header-module__ldgnoG__mobileMenuContent {
    padding: 12px 16px;
  }

  .Header-module__ldgnoG__mobileNavList {
    gap: 6px;
  }

  .Header-module__ldgnoG__mobileNavItem {
    border-radius: 12px;
    gap: 12px;
    padding: 12px;
  }

  .Header-module__ldgnoG__mobileNavIcon {
    border-radius: 10px;
    width: 40px;
    height: 40px;
  }

  .Header-module__ldgnoG__mobileNavIcon svg {
    width: 20px;
    height: 20px;
  }

  .Header-module__ldgnoG__mobileNavTitle {
    font-size: 14px;
  }

  .Header-module__ldgnoG__mobileNavDesc {
    font-size: 12px;
  }

  .Header-module__ldgnoG__mobileSubItem {
    padding: 10px 12px;
    font-size: 13px;
  }

  .Header-module__ldgnoG__mobileMenuFooter {
    gap: 10px;
    padding: 16px;
  }

  .Header-module__ldgnoG__mobileLoginBtn, .Header-module__ldgnoG__mobileRegisterBtn, .Header-module__ldgnoG__mobileLogoutBtn {
    border-radius: 12px;
    padding: 14px 20px;
    font-size: 15px;
  }
}

@media (max-width: 375px) {
  .Header-module__ldgnoG__container {
    height: 56px;
    padding: 0 12px;
  }

  .Header-module__ldgnoG__logo img {
    width: 110px;
  }

  .Header-module__ldgnoG__menuToggle {
    width: 36px;
    height: 36px;
    padding: 8px;
  }

  .Header-module__ldgnoG__mobileMenuHeader {
    padding: 10px 12px;
  }

  .Header-module__ldgnoG__closeBtn {
    border-radius: 10px;
    width: 36px;
    height: 36px;
  }

  .Header-module__ldgnoG__mobileMenuContent {
    padding: 10px 12px;
  }

  .Header-module__ldgnoG__mobileNavItem {
    gap: 10px;
    padding: 10px;
  }

  .Header-module__ldgnoG__mobileNavIcon {
    width: 36px;
    height: 36px;
  }

  .Header-module__ldgnoG__mobileNavTitle {
    font-size: 13px;
  }

  .Header-module__ldgnoG__mobileNavDesc {
    font-size: 11px;
  }

  .Header-module__ldgnoG__mobileSubItem {
    padding: 8px 10px;
    font-size: 12px;
  }

  .Header-module__ldgnoG__mobileMenuFooter {
    gap: 8px;
    padding: 12px;
  }

  .Header-module__ldgnoG__mobileLoginBtn, .Header-module__ldgnoG__mobileRegisterBtn, .Header-module__ldgnoG__mobileLogoutBtn {
    padding: 12px 16px;
    font-size: 14px;
  }
}

@media (hover: none) and (pointer: coarse) {
  .Header-module__ldgnoG__navLink, .Header-module__ldgnoG__loginBtn, .Header-module__ldgnoG__registerBtn, .Header-module__ldgnoG__mobileLoginBtn, .Header-module__ldgnoG__mobileRegisterBtn, .Header-module__ldgnoG__mobileLogoutBtn, .Header-module__ldgnoG__mobileNavItem, .Header-module__ldgnoG__mobileSubItem, .Header-module__ldgnoG__menuToggle, .Header-module__ldgnoG__closeBtn {
    -webkit-tap-highlight-color: transparent;
  }

  .Header-module__ldgnoG__mobileNavItem:active {
    transform: scale(.98);
  }
}

@media (max-height: 500px) and (orientation: landscape) {
  .Header-module__ldgnoG__container {
    height: 48px;
  }

  .Header-module__ldgnoG__mobileMenuHeader, .Header-module__ldgnoG__mobileMenuContent {
    padding: 8px 12px;
  }

  .Header-module__ldgnoG__mobileNavList {
    gap: 4px;
  }

  .Header-module__ldgnoG__mobileNavItem {
    padding: 8px 10px;
  }

  .Header-module__ldgnoG__mobileNavIcon {
    width: 32px;
    height: 32px;
  }

  .Header-module__ldgnoG__mobileNavTitle {
    font-size: 13px;
  }

  .Header-module__ldgnoG__mobileNavDesc {
    display: none;
  }

  .Header-module__ldgnoG__mobileSubItem {
    padding: 6px 10px;
    font-size: 12px;
  }

  .Header-module__ldgnoG__mobileMenuFooter {
    flex-direction: row;
    gap: 8px;
    padding: 10px 12px;
  }

  .Header-module__ldgnoG__mobileLoginBtn, .Header-module__ldgnoG__mobileRegisterBtn, .Header-module__ldgnoG__mobileLogoutBtn {
    flex: 1;
    padding: 10px 16px;
    font-size: 13px;
  }
}

@supports (padding-bottom: env(safe-area-inset-bottom)) {
  @media (max-width: 1024px) {
    .Header-module__ldgnoG__mobileMenuFooter {
      padding-bottom: calc(20px + env(safe-area-inset-bottom));
    }
  }
}

/* [project]/src/components/ui/Select/Select.module.css [app-client] (css) */
.Select-module__BWx2JW__select {
  width: 100%;
  position: relative;
}

.Select-module__BWx2JW__trigger {
  border: 1px solid var(--gray-200);
  width: 100%;
  color: var(--gray-700);
  cursor: pointer;
  text-align: left;
  background: #fff;
  border-radius: 8px;
  justify-content: space-between;
  align-items: center;
  height: 42px;
  min-height: 42px;
  padding: 0 14px;
  font-size: 14px;
  transition: all .2s;
  display: flex;
}

.Select-module__BWx2JW__trigger:hover:not(:disabled) {
  border-color: var(--gray-300);
}

.Select-module__BWx2JW__trigger:focus, .Select-module__BWx2JW__trigger.Select-module__BWx2JW__open {
  border-color: var(--primary);
  outline: none;
}

.Select-module__BWx2JW__trigger:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.Select-module__BWx2JW__selectedValue {
  color: var(--gray-900);
  font-weight: 500;
}

.Select-module__BWx2JW__placeholder {
  color: var(--gray-400);
}

.Select-module__BWx2JW__chevron {
  color: var(--gray-400);
  flex-shrink: 0;
  transition: transform .2s;
}

.Select-module__BWx2JW__chevron.Select-module__BWx2JW__rotated {
  transform: rotate(180deg);
}

.Select-module__BWx2JW__dropdown {
  border: 1px solid var(--gray-200);
  z-index: 1000;
  background: #fff;
  border-radius: 8px;
  animation: .2s cubic-bezier(.16, 1, .3, 1) Select-module__BWx2JW__dropdownIn;
  position: absolute;
  top: calc(100% + 4px);
  left: 0;
  right: 0;
  overflow: hidden;
  box-shadow: 0 10px 40px -10px #10172726;
}

@keyframes Select-module__BWx2JW__dropdownIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.Select-module__BWx2JW__searchWrapper {
  border-bottom: 1px solid var(--gray-200);
  padding: 8px;
}

.Select-module__BWx2JW__search {
  border: 1px solid var(--gray-200);
  width: 100%;
  color: var(--gray-700);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 14px;
  transition: all .2s;
}

.Select-module__BWx2JW__search:focus {
  border-color: var(--primary);
  outline: none;
}

.Select-module__BWx2JW__options {
  max-height: 240px;
  padding: 4px;
  overflow-y: auto;
}

.Select-module__BWx2JW__options::-webkit-scrollbar {
  width: 6px;
}

.Select-module__BWx2JW__options::-webkit-scrollbar-track {
  background: none;
}

.Select-module__BWx2JW__options::-webkit-scrollbar-thumb {
  background: var(--gray-300);
  border-radius: 3px;
}

.Select-module__BWx2JW__options::-webkit-scrollbar-thumb:hover {
  background: var(--gray-400);
}

.Select-module__BWx2JW__option {
  width: 100%;
  color: var(--gray-700);
  text-align: left;
  cursor: pointer;
  background: none;
  border: none;
  border-radius: 8px;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  font-size: 14px;
  transition: all .15s;
  display: flex;
}

.Select-module__BWx2JW__option:hover {
  background: var(--gray-50);
  color: var(--gray-900);
}

.Select-module__BWx2JW__option.Select-module__BWx2JW__selected {
  color: var(--primary);
  background: #28a54514;
  font-weight: 500;
}

.Select-module__BWx2JW__option svg {
  color: var(--primary);
  flex-shrink: 0;
}

.Select-module__BWx2JW__noResults {
  text-align: center;
  color: var(--gray-500);
  padding: 20px;
  font-size: 14px;
}

@media (max-width: 600px) {
  .Select-module__BWx2JW__dropdown {
    border-radius: 20px 20px 0 0;
    max-height: 70vh;
    position: fixed;
    inset: auto 0 0;
  }

  .Select-module__BWx2JW__options {
    max-height: calc(70vh - 60px);
  }
}

/* [project]/src/app/ilan-olustur/page.module.css [app-client] (css) */
.page-module__Ghj6BW__main {
  background: var(--gray-50);
  min-height: 100vh;
  padding-top: 150px;
  padding-bottom: 60px;
}

.page-module__Ghj6BW__hero {
  border: 1px solid var(--gray-200);
  background: #fff;
  border-radius: 24px;
  width: calc(100% - 32px);
  max-width: 900px;
  margin: 16px auto 24px;
  padding: 48px;
  position: relative;
  overflow: hidden;
}

.page-module__Ghj6BW__heroBackground {
  pointer-events: none;
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.page-module__Ghj6BW__heroShape1 {
  background: linear-gradient(135deg, #28a54514 0%, #0000 70%);
  border-radius: 50%;
  width: 300px;
  height: 300px;
  position: absolute;
  top: -100px;
  right: -100px;
}

.page-module__Ghj6BW__heroShape2 {
  background: linear-gradient(135deg, #1017270f 0%, #0000 70%);
  border-radius: 50%;
  width: 200px;
  height: 200px;
  position: absolute;
  bottom: -80px;
  left: -80px;
}

.page-module__Ghj6BW__heroGrid, .page-module__Ghj6BW__heroStats, .page-module__Ghj6BW__statItem, .page-module__Ghj6BW__statNumber, .page-module__Ghj6BW__statLabel, .page-module__Ghj6BW__statDivider {
  display: none;
}

.page-module__Ghj6BW__heroContent {
  z-index: 1;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
  display: flex;
  position: relative;
}

.page-module__Ghj6BW__heroLeft {
  flex: 1;
}

.page-module__Ghj6BW__heroBadge, .page-module__Ghj6BW__badgeDot {
  display: none;
}

.page-module__Ghj6BW__heroTitle {
  flex-flow: wrap;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 12px;
  display: flex;
}

.page-module__Ghj6BW__titleLine {
  color: var(--gray-900);
  letter-spacing: -.03em;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.page-module__Ghj6BW__titleHighlight {
  color: var(--primary);
  letter-spacing: -.03em;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}

.page-module__Ghj6BW__heroSubtitle {
  color: var(--gray-500);
  max-width: 400px;
  font-size: 15px;
  line-height: 1.6;
}

.page-module__Ghj6BW__formContainer {
  width: calc(100% - 32px);
  max-width: 900px;
  margin: 0 auto;
}

.page-module__Ghj6BW__formCard {
  border: 1px solid var(--gray-200);
  background: #fff;
  border-radius: 24px;
  min-height: 500px;
  padding: 40px;
  overflow: visible;
}

.page-module__Ghj6BW__progressContainer {
  margin-bottom: 40px;
}

.page-module__Ghj6BW__progressBar {
  background: var(--gray-200);
  border-radius: 100px;
  height: 8px;
  overflow: hidden;
}

.page-module__Ghj6BW__progressFill {
  background: var(--primary);
  border-radius: 100px;
  height: 100%;
  transition: width .4s cubic-bezier(.4, 0, .2, 1);
}

.page-module__Ghj6BW__progressText {
  text-align: center;
  color: var(--gray-500);
  margin-top: 12px;
  font-size: 14px;
  font-weight: 500;
}

.page-module__Ghj6BW__stepContent {
  min-height: 320px;
  position: relative;
}

.page-module__Ghj6BW__stepPanel {
  animation: .4s cubic-bezier(.4, 0, .2, 1) page-module__Ghj6BW__slideIn;
}

.page-module__Ghj6BW__stepPanel.page-module__Ghj6BW__next {
  animation-name: page-module__Ghj6BW__slideInRight;
}

.page-module__Ghj6BW__stepPanel.page-module__Ghj6BW__prev {
  animation-name: page-module__Ghj6BW__slideInLeft;
}

@keyframes page-module__Ghj6BW__slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }

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

@keyframes page-module__Ghj6BW__slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }

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

.page-module__Ghj6BW__stepInner {
  padding: 0 20px;
  overflow: visible;
}

.page-module__Ghj6BW__stepTitle {
  color: var(--gray-900);
  text-align: center;
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 700;
}

.page-module__Ghj6BW__stepDescription {
  color: var(--gray-500);
  text-align: center;
  margin-bottom: 32px;
  font-size: 15px;
}

.page-module__Ghj6BW__propertyTypeGrid {
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
  margin-bottom: 32px;
  display: grid;
}

.page-module__Ghj6BW__propertyTypeCard {
  background: var(--gray-50);
  border: 2px solid var(--gray-200);
  cursor: pointer;
  border-radius: 16px;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 24px 12px;
  transition: all .25s cubic-bezier(.4, 0, .2, 1);
  display: flex;
}

.page-module__Ghj6BW__propertyTypeCard:hover {
  border-color: var(--primary);
  transform: translateY(-3px);
}

.page-module__Ghj6BW__propertyTypeCard.page-module__Ghj6BW__selected {
  border-color: var(--primary);
  background: #28a5450f;
}

.page-module__Ghj6BW__propertyIconWrapper {
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  transition: transform .25s;
  display: flex;
}

.page-module__Ghj6BW__propertyIconWrapper svg {
  width: 36px;
  height: 36px;
  stroke: var(--gray-500);
  transition: stroke .25s;
}

.page-module__Ghj6BW__propertyTypeCard:hover .page-module__Ghj6BW__propertyIconWrapper, .page-module__Ghj6BW__propertyTypeCard.page-module__Ghj6BW__selected .page-module__Ghj6BW__propertyIconWrapper {
  transform: scale(1.1);
}

.page-module__Ghj6BW__propertyTypeCard:hover .page-module__Ghj6BW__propertyIconWrapper svg, .page-module__Ghj6BW__propertyTypeCard.page-module__Ghj6BW__selected .page-module__Ghj6BW__propertyIconWrapper svg {
  stroke: var(--primary);
}

.page-module__Ghj6BW__propertyLabel {
  color: var(--gray-700);
  font-size: 13px;
  font-weight: 600;
}

.page-module__Ghj6BW__roomCountSection {
  z-index: 10;
  max-width: 300px;
  margin: 0 auto;
  position: relative;
}

.page-module__Ghj6BW__fieldLabel {
  color: var(--gray-700);
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 600;
  display: block;
}

.page-module__Ghj6BW__required {
  color: #ef4444;
}

.page-module__Ghj6BW__locationFields {
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
}

.page-module__Ghj6BW__fieldGroup {
  flex-direction: column;
  display: flex;
}

.page-module__Ghj6BW__fieldRow {
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  display: grid;
}

.page-module__Ghj6BW__fieldRow:has( > :only-child) {
  grid-template-columns: 1fr;
}

.page-module__Ghj6BW__input {
  border: 2px solid var(--gray-200);
  color: var(--gray-700);
  background: #fff;
  border-radius: 12px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  transition: all .2s;
}

.page-module__Ghj6BW__input:focus {
  border-color: var(--primary);
  outline: none;
}

.page-module__Ghj6BW__input::placeholder {
  color: var(--gray-400);
}

.page-module__Ghj6BW__budgetSection {
  flex-direction: column;
  gap: 28px;
  max-width: 500px;
  margin: 0 auto;
  display: flex;
}

.page-module__Ghj6BW__rangeGroup {
  flex-direction: column;
  display: flex;
}

.page-module__Ghj6BW__rangeInputs {
  align-items: center;
  gap: 12px;
  display: flex;
}

.page-module__Ghj6BW__rangeInput {
  flex: 1;
  position: relative;
}

.page-module__Ghj6BW__rangeLabel {
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: .5px;
  background: #fff;
  padding: 0 6px;
  font-size: 11px;
  font-weight: 600;
  position: absolute;
  top: -8px;
  left: 12px;
}

.page-module__Ghj6BW__rangeSeparator {
  color: var(--gray-400);
  font-weight: 300;
}

.page-module__Ghj6BW__additionalFields {
  max-width: 400px;
  margin: 0 auto;
}

.page-module__Ghj6BW__checkboxGroup {
  justify-content: center;
  margin-top: 8px;
  display: flex;
}

.page-module__Ghj6BW__checkbox {
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  align-items: center;
  gap: 10px;
  display: flex;
}

.page-module__Ghj6BW__checkbox input {
  display: none;
}

.page-module__Ghj6BW__checkboxMark {
  border: 2px solid var(--gray-300);
  background: #fff;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 22px;
  height: 22px;
  transition: all .2s;
  display: flex;
}

.page-module__Ghj6BW__checkbox input:checked + .page-module__Ghj6BW__checkboxMark {
  background: var(--primary);
  border-color: var(--primary);
}

.page-module__Ghj6BW__checkbox input:checked + .page-module__Ghj6BW__checkboxMark:after {
  content: "";
  border: 2px solid #fff;
  border-width: 0 2px 2px 0;
  width: 6px;
  height: 10px;
  margin-bottom: 2px;
  transform: rotate(45deg);
}

.page-module__Ghj6BW__checkboxLabel {
  color: var(--gray-700);
  font-size: 15px;
  font-weight: 500;
}

.page-module__Ghj6BW__detailsSection {
  flex-direction: column;
  gap: 20px;
  max-width: 600px;
  margin: 0 auto 24px;
  display: flex;
}

.page-module__Ghj6BW__textarea {
  border: 2px solid var(--gray-200);
  color: var(--gray-700);
  resize: vertical;
  background: #fff;
  border-radius: 12px;
  min-height: 80px;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 15px;
  transition: all .2s;
}

.page-module__Ghj6BW__textarea:focus {
  border-color: var(--primary);
  outline: none;
}

.page-module__Ghj6BW__textarea::placeholder {
  color: var(--gray-400);
}

.page-module__Ghj6BW__summaryCard {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  max-width: 600px;
  margin: 0 auto;
  padding: 24px;
}

.page-module__Ghj6BW__summaryCard h3 {
  color: var(--gray-900);
  margin-bottom: 16px;
  font-size: 16px;
  font-weight: 600;
}

.page-module__Ghj6BW__summaryGrid {
  flex-direction: column;
  display: flex;
}

.page-module__Ghj6BW__summaryItem {
  border-bottom: 1px solid var(--gray-200);
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  display: flex;
}

.page-module__Ghj6BW__summaryItem:last-child {
  border-bottom: none;
}

.page-module__Ghj6BW__summaryItemFull {
  border-bottom: 1px solid var(--gray-200);
  flex-direction: column;
  gap: 6px;
  padding: 12px 0;
  display: flex;
}

.page-module__Ghj6BW__summaryItemFull:last-child {
  border-bottom: none;
}

.page-module__Ghj6BW__summaryLabel {
  color: var(--gray-600);
  font-size: 14px;
}

.page-module__Ghj6BW__summaryValue {
  color: var(--gray-900);
  font-size: 15px;
  font-weight: 600;
}

.page-module__Ghj6BW__imageSizeHint {
  color: var(--gray-500);
  margin-bottom: 12px;
  font-size: 13px;
  font-style: italic;
}

.page-module__Ghj6BW__imageUpload {
  margin-bottom: 16px;
}

.page-module__Ghj6BW__uploadButton {
  background: var(--gray-50);
  border: 2px dashed var(--gray-300);
  color: var(--gray-700);
  cursor: pointer;
  border-radius: 12px;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 14px;
  font-weight: 500;
  transition: all .2s;
  display: inline-flex;
}

.page-module__Ghj6BW__uploadButton:hover {
  background: var(--gray-100);
  border-color: var(--primary);
}

.page-module__Ghj6BW__imagePreviewGrid {
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 12px;
  margin-top: 16px;
  display: grid;
}

.page-module__Ghj6BW__imagePreviewItem {
  aspect-ratio: 1;
  border: 1px solid var(--gray-200);
  border-radius: 12px;
  position: relative;
  overflow: hidden;
}

.page-module__Ghj6BW__imagePreviewItem img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

.page-module__Ghj6BW__removeImageButton {
  color: #fff;
  cursor: pointer;
  background: #101727b3;
  border: none;
  border-radius: 6px;
  justify-content: center;
  align-items: center;
  width: 28px;
  height: 28px;
  transition: all .2s;
  display: flex;
  position: absolute;
  top: 6px;
  right: 6px;
}

.page-module__Ghj6BW__removeImageButton:hover {
  background: var(--primary);
  transform: scale(1.1);
}

.page-module__Ghj6BW__formActions {
  border-top: 1px solid var(--gray-200);
  z-index: 1;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  padding-top: 24px;
  display: flex;
  position: relative;
}

.page-module__Ghj6BW__btnPrimary, .page-module__Ghj6BW__btnSecondary {
  cursor: pointer;
  border: none;
  border-radius: 12px;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 15px;
  font-weight: 600;
  transition: all .25s cubic-bezier(.4, 0, .2, 1);
  display: inline-flex;
}

.page-module__Ghj6BW__btnPrimary {
  background: var(--primary);
  color: #fff;
  margin-left: auto;
}

.page-module__Ghj6BW__btnPrimary:hover:not(:disabled) {
  background: #1e8a38;
  transform: translateY(-2px);
}

.page-module__Ghj6BW__btnPrimary:disabled {
  opacity: .5;
  cursor: not-allowed;
}

.page-module__Ghj6BW__btnPrimary svg {
  width: 18px;
  height: 18px;
}

.page-module__Ghj6BW__btnSecondary {
  background: var(--gray-100);
  color: var(--gray-700);
}

.page-module__Ghj6BW__btnSecondary:hover {
  background: var(--gray-200);
}

.page-module__Ghj6BW__btnSecondary svg {
  width: 18px;
  height: 18px;
}

.page-module__Ghj6BW__btnSpinner {
  border: 2px solid #ffffff4d;
  border-top-color: #fff;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  animation: .8s linear infinite page-module__Ghj6BW__spin;
}

@keyframes page-module__Ghj6BW__spin {
  to {
    transform: rotate(360deg);
  }
}

.page-module__Ghj6BW__successContainer {
  text-align: center;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 48px 40px;
  animation: .6s ease-out page-module__Ghj6BW__fadeIn;
  display: flex;
}

@keyframes page-module__Ghj6BW__fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.page-module__Ghj6BW__successIconWrapper {
  margin-bottom: 24px;
  animation: .6s cubic-bezier(.68, -.55, .265, 1.55) page-module__Ghj6BW__scaleIn;
}

.page-module__Ghj6BW__successIconCircle {
  background: linear-gradient(135deg, #10b9811a 0%, #10b9810d 100%);
  border: 3px solid #10b98133;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  display: flex;
  position: relative;
}

.page-module__Ghj6BW__successIconCircle:before {
  content: "";
  z-index: -1;
  background: linear-gradient(135deg, #10b9810d 0%, #0000 100%);
  border-radius: 50%;
  position: absolute;
  inset: -8px;
}

@keyframes page-module__Ghj6BW__scaleIn {
  0% {
    opacity: 0;
    transform: scale(0)rotate(-180deg);
  }

  50% {
    transform: scale(1.1)rotate(10deg);
  }

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

.page-module__Ghj6BW__successIconCircle svg {
  stroke: #10b981;
  stroke-width: 3px;
  filter: drop-shadow(0 2px 8px #10b9814d);
  width: 48px;
  height: 48px;
}

.page-module__Ghj6BW__successTitle {
  color: var(--gray-900);
  letter-spacing: -.02em;
  margin-bottom: 12px;
  font-size: 28px;
  font-weight: 700;
}

.page-module__Ghj6BW__successText {
  color: var(--gray-600);
  max-width: 480px;
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 1.6;
}

.page-module__Ghj6BW__successActions {
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  display: flex;
}

.page-module__Ghj6BW__loadingContainer {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  min-height: 400px;
  display: flex;
}

@media (max-width: 600px) {
  .page-module__Ghj6BW__successContainer {
    padding: 60px 24px;
  }

  .page-module__Ghj6BW__successIconCircle {
    width: 80px;
    height: 80px;
  }

  .page-module__Ghj6BW__successIconCircle svg {
    width: 40px;
    height: 40px;
  }

  .page-module__Ghj6BW__successTitle {
    font-size: 24px;
  }

  .page-module__Ghj6BW__successText {
    font-size: 14px;
  }

  .page-module__Ghj6BW__successActions {
    flex-direction: column;
    width: 100%;
  }

  .page-module__Ghj6BW__successActions button {
    width: 100%;
  }
}

.page-module__Ghj6BW__loadingSpinner {
  border: 3px solid var(--gray-200);
  border-top-color: var(--primary);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: .8s linear infinite page-module__Ghj6BW__spin;
}

.page-module__Ghj6BW__loadingContainer p {
  color: var(--gray-500);
  font-size: 15px;
}

@media (max-width: 768px) {
  .page-module__Ghj6BW__main {
    padding-top: 90px;
  }

  .page-module__Ghj6BW__hero {
    padding: 32px 24px;
  }

  .page-module__Ghj6BW__heroContent {
    flex-direction: column;
    gap: 20px;
  }

  .page-module__Ghj6BW__titleLine, .page-module__Ghj6BW__titleHighlight {
    font-size: 26px;
  }

  .page-module__Ghj6BW__heroSubtitle {
    max-width: 100%;
  }

  .page-module__Ghj6BW__formCard {
    padding: 24px 16px;
  }

  .page-module__Ghj6BW__progressContainer {
    margin-bottom: 32px;
  }

  .page-module__Ghj6BW__propertyTypeGrid {
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }

  .page-module__Ghj6BW__propertyTypeCard {
    padding: 18px 8px;
  }

  .page-module__Ghj6BW__propertyIconWrapper {
    width: 40px;
    height: 40px;
  }

  .page-module__Ghj6BW__propertyIconWrapper svg {
    width: 28px;
    height: 28px;
  }

  .page-module__Ghj6BW__propertyLabel {
    font-size: 12px;
  }

  .page-module__Ghj6BW__fieldRow {
    grid-template-columns: 1fr;
  }

  .page-module__Ghj6BW__rangeInputs {
    flex-direction: column;
    gap: 16px;
  }

  .page-module__Ghj6BW__rangeInput {
    width: 100%;
  }

  .page-module__Ghj6BW__rangeSeparator {
    display: none;
  }

  .page-module__Ghj6BW__summaryGrid {
    grid-template-columns: 1fr;
  }

  .page-module__Ghj6BW__formActions {
    flex-direction: column-reverse;
    gap: 12px;
  }

  .page-module__Ghj6BW__btnPrimary, .page-module__Ghj6BW__btnSecondary {
    justify-content: center;
    width: 100%;
  }

  .page-module__Ghj6BW__btnPrimary {
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .page-module__Ghj6BW__propertyTypeGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-module__Ghj6BW__stepTitle {
    font-size: 20px;
  }

  .page-module__Ghj6BW__stepDescription {
    font-size: 14px;
  }

  .page-module__Ghj6BW__titleLine, .page-module__Ghj6BW__titleHighlight {
    font-size: 18px;
  }

  .page-module__Ghj6BW__heroBadge {
    padding: 5px 10px;
    font-size: 11px;
  }
}

/*# sourceMappingURL=src_76d7b5b8._.css.map*/