@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  height: 100%;
  width: 100%;
  overflow-x: hidden;
  font-family: "Satoshi", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

@font-face {
  font-family: "Satoshi Light";
  src: url("./fonts/Satoshi-Light.woff2") format("woff2"), url("./fonts/Satoshi-Light.woff") format("woff"), url("./fonts/Satoshi-Light.ttf") format("truetype");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi Regular";
  src: url("./fonts/Satoshi-Regular.woff2") format("woff2"), url("./fonts/Satoshi-Regular.woff") format("woff"), url("./fonts/Satoshi-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi Medium";
  src: url("./fonts/Satoshi-Medium.woff2") format("woff2"), url("./fonts/Satoshi-Medium.woff") format("woff"), url("./fonts/Satoshi-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi Bold";
  src: url("./fonts/Satoshi-Bold.woff2") format("woff2"), url("./fonts/Satoshi-Bold.woff") format("woff"), url("./fonts/Satoshi-Bold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi Black";
  src: url("./fonts/Satoshi-Black.woff2") format("woff2"), url("./fonts/Satoshi-Black.woff") format("woff"), url("./fonts/Satoshi-Black.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Satoshi";
  src: url("./fonts/Satoshi-Regular.woff2") format("woff2"), url("./fonts/Satoshi-Regular.woff") format("woff"), url("./fonts/Satoshi-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
:root {
  --province-default-fill: #6F9C76;
  --province-hover-fill: #008000;
  --province-stroke: #ffffff;
  --province-stroke-width: 1px;
  --province-stroke-hover: #006600;
  --transition-duration: 0.3s;
}

.topographic .topTags .typeTag {
  background-color: #E9C46A !important;
}
.topographic .topTags .typeTag p {
  color: #333 !important;
}

.orthophoto .topTags .typeTag {
  background-color: #82DDF0 !important;
}
.orthophoto .topTags .typeTag p {
  color: #333 !important;
}

.cadastral .topTags .typeTag {
  background-color: #472836 !important;
}

.nav-items a {
  font-family: "Satoshi Medium" !important;
}

.navigation a {
  font-family: "Satoshi Medium";
}
.navigation li {
  font-family: "Satoshi Medium";
}

.login-signup .login {
  font-family: "Satoshi Medium" !important;
}
.login-signup .make-account {
  font-family: "Satoshi Medium" !important;
}

.loaderContainer {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: #ffffff;
  z-index: 1000000000 !important;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: opacity 0.5s ease;
}

.loader {
  height: 10rem;
  width: 10rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.loaderContainer.fade-out {
  opacity: 0;
}

body.no-scroll {
  overflow: hidden;
}

.map-container {
  width: 50rem;
  height: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  right: 5rem;
}

.map-svg {
  max-width: 100%;
  max-height: 90vh;
  width: auto;
  height: 100%;
  cursor: default;
}
.map-svg path {
  fill: var(--province-default-fill);
  stroke: var(--province-stroke);
  stroke-width: var(--province-stroke-width);
  transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  cursor: pointer;
  transform-origin: center;
  position: relative;
  overflow: visible;
}
.map-svg path:hover {
  fill: var(--province-hover-fill);
  stroke: var(--province-stroke-hover);
  stroke-width: 2px;
  filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.3));
  transform: scale(1.05);
  animation: gradientShimmer 3.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.map-svg path:focus {
  outline: none;
  fill: var(--province-hover-fill);
  stroke: var(--province-stroke-hover);
  stroke-width: 2px;
  filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.3));
  transform: scale(1.05);
  animation: gradientShimmer 3.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.map-svg path:active {
  fill: #006600;
  transform: scale(1.02);
}
.map-svg path.grid-permanent {
  fill: url(#mashonalandGridDefault);
  transition: fill 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), stroke 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), stroke-width 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), filter 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), transform 0.7s cubic-bezier(0.23, 1, 0.32, 1);
}
.map-svg path.grid-permanent:hover, .map-svg path.grid-permanent.grid-hover-active {
  fill: url(#mashonalandGridHover);
  stroke: var(--province-stroke-hover);
  stroke-width: 2px;
  filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.3));
  transform: scale(1.05);
  animation: gradientShimmer 3.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.map-svg path.grid-permanent:focus {
  outline: none;
  fill: url(#mashonalandGridHover);
  stroke: var(--province-stroke-hover);
  stroke-width: 2px;
  filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.3));
  transform: scale(1.05);
  animation: gradientShimmer 3.5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}
.map-svg path.grid-permanent:active {
  fill: url(#mashonalandGridHover);
  transform: scale(1.02);
}

.province-tooltip {
  position: absolute;
  background: rgba(0, 0, 0, 0.9);
  color: white;
  padding: 12px 16px;
  border-radius: 8px;
  font-size: 14px;
  pointer-events: none;
  opacity: 0;
  transform: translateY(-10px);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 1000;
  min-width: 200px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}
.province-tooltip.visible {
  opacity: 1;
  transform: translateY(-8px);
}
.province-tooltip .province-name {
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 6px;
  color: #ffffff;
  line-height: 1.2;
}
.province-tooltip .province-area {
  font-weight: 400;
  font-size: 14px;
  color: #e0e0e0;
  margin-bottom: 4px;
  line-height: 1.3;
}
.province-tooltip .province-rank {
  font-weight: 500;
  font-size: 13px;
  color: #4ade80;
  line-height: 1.3;
}
.province-tooltip::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 6px solid transparent;
  border-top-color: rgba(0, 0, 0, 0.9);
}

@keyframes borderBeam {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes shimmerGlow {
  0%, 100% {
    box-shadow: 0 0 10px rgba(0, 128, 0, 0.4);
  }
  50% {
    box-shadow: 0 0 20px rgba(0, 200, 0, 0.8);
  }
}
@keyframes shimmerMove {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(50%, 50%) rotate(0deg);
  }
}
@keyframes gradientShimmer {
  0% {
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.3)) brightness(1) saturate(1) hue-rotate(0deg);
    opacity: 1;
  }
  10% {
    filter: drop-shadow(2px 2px 9px rgba(0, 80, 0, 0.35)) brightness(1.05) saturate(1.02) hue-rotate(2deg);
    opacity: 0.98;
  }
  25% {
    filter: drop-shadow(3px 3px 10px rgba(0, 128, 0, 0.4)) brightness(1.15) saturate(1.1) hue-rotate(5deg);
    opacity: 0.95;
  }
  40% {
    filter: drop-shadow(4px 4px 12px rgba(0, 180, 0, 0.5)) brightness(1.25) saturate(1.2) hue-rotate(8deg);
    opacity: 0.92;
  }
  50% {
    filter: drop-shadow(5px 5px 15px rgba(50, 220, 50, 0.55)) brightness(1.35) saturate(1.3) hue-rotate(12deg);
    opacity: 0.88;
  }
  60% {
    filter: drop-shadow(5px 5px 15px rgba(100, 255, 100, 0.6)) brightness(1.4) saturate(1.4) hue-rotate(15deg);
    opacity: 0.85;
  }
  75% {
    filter: drop-shadow(4px 4px 12px rgba(0, 200, 0, 0.5)) brightness(1.2) saturate(1.2) hue-rotate(8deg);
    opacity: 0.9;
  }
  90% {
    filter: drop-shadow(3px 3px 9px rgba(0, 100, 0, 0.4)) brightness(1.08) saturate(1.05) hue-rotate(3deg);
    opacity: 0.96;
  }
  100% {
    filter: drop-shadow(2px 2px 8px rgba(0, 0, 0, 0.3)) brightness(1) saturate(1) hue-rotate(0deg);
    opacity: 1;
  }
}
@media (min-width: 320px) and (max-width: 1240px) {
  .map-container {
    display: none;
  }
  .user-action {
    font-family: unset !important;
    font-family: "Satoshi Bold" !important;
  }
  .bannerContainerMain {
    position: relative;
    height: 70dvh;
    width: 100%;
    margin-top: -1rem;
  }
}
@media (min-width: 320px) and (max-width: 1240px) and (min-width: 768px) {
  .bannerContainerMain {
    height: 50dvh !important;
  }
}
@media (min-width: 320px) and (max-width: 1240px) {
  .bannerContainerMain .bannerBackgroundImage {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 2;
  }
  .bannerContainerMain .bannerBackgroundImage img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: bottom;
  }
  .bannerContainerMain .bannerImage {
    position: absolute;
    bottom: 0;
    height: 100%;
    width: 100%;
  }
  .bannerContainerMain .bannerImage::before {
    position: absolute;
    content: "";
    height: 100%;
    width: 100%;
    background: linear-gradient(to top, #fff 0%, rgba(255, 255, 255, 0) 100%);
    bottom: 0;
    left: 0;
  }
  .bannerContainerMain .bannerImage img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .bannerContainerMain .switcherMainWrapper {
    position: absolute;
    top: 3rem;
    z-index: 100 !important;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .bannerContainerMain .switcherMainWrapper .active {
    background: #008000;
    color: #fff;
  }
  .bannerContainerMain .switcherMainWrapper a {
    display: flex;
    align-items: center;
    text-wrap: nowrap;
    font-size: 0.75rem;
    height: 2.2rem;
    width: fit-content;
    background-color: #fff;
    text-decoration: none !important;
    color: #333;
    font-family: "Satoshi Medium";
    gap: 0.5rem;
    padding: 0.5rem;
    border-radius: 4px;
  }
  .bannerContainerMain .switcherMainWrapper .iconWrapper {
    display: flex;
    height: 1rem;
    width: 1rem;
    align-items: center;
    justify-content: center;
  }
  .bannerContainerMain .bannerContentContainer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    z-index: 3;
  }
  .bannerContainerMain .bannerContentContainer .contentWrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .bannerContainerMain .bannerContentContainer .contentWrapper .mainHeading {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 2.5rem;
    color: #008000;
    margin-inline: unset !important;
    margin: 0;
    font-family: "Satoshi Black";
  }
  .bannerContainerMain .bannerContentContainer .contentWrapper .mainHeading .logoContainer {
    height: 2.5rem;
    width: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .bannerContainerMain .bannerContentContainer .contentWrapper .descriptionText {
    font-size: 0.85rem;
    font-family: "Satoshi Bold";
    color: #333;
    width: 90%;
    margin-inline: auto;
    text-align: center;
  }
  .bannerContainerMain .bannerContentContainer .contentWrapper .searchWrapper {
    margin-top: 2rem;
    height: calc(3rem + 4px);
    position: relative;
    width: 100%;
    display: flex;
    align-items: center !important;
    justify-content: center;
    border-radius: 6px;
    padding: 2px;
    background: #f7f7f7;
    overflow: hidden;
  }
  .bannerContainerMain .bannerContentContainer .contentWrapper .searchWrapper::before {
    content: "";
    position: absolute;
    inset: -50%;
    background: conic-gradient(from 0deg, transparent 0%, transparent 60%, #008000 70%, #00B050 80%, #69f0ae 85%, #00B050 90%, #008000 95%, transparent 100%);
    animation: borderBeam 3s linear infinite;
  }
  .bannerContainerMain .bannerContentContainer .contentWrapper .searchWrapper .searchIcon {
    position: absolute;
    top: 50%;
    left: calc(0.5rem + 2px);
    transform: translateY(-50%);
    height: 1.5rem;
    width: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 3;
  }
  .bannerContainerMain .bannerContentContainer .contentWrapper .searchWrapper ::placeholder {
    font-size: 0.9rem;
    font-family: "Satoshi Medium";
  }
  .bannerContainerMain .bannerContentContainer .contentWrapper .searchWrapper input {
    height: 96%;
    width: 99.5%;
    padding-left: 4rem;
    border: none;
    background-color: #fff;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: "Satoshi Medium";
    outline: none;
    transition: box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
  }
  .bannerContainerMain .bannerContentContainer .contentWrapper .searchWrapper input:focus {
    box-shadow: 0 0 0 0.35rem rgba(0, 128, 0, 0.253);
  }
  .bannerContainerMain .bannerContentContainer .contentWrapper .searchWrapper .filterBtn {
    position: absolute;
    right: 0.3rem;
    height: 2.6rem;
    width: 2.6rem;
    background-color: #008000;
    border: none;
    border-radius: 4px;
    top: 50%;
    cursor: pointer;
    z-index: 2;
    transform: translateY(-50%);
    animation: shimmerGlow 3s ease-in-out infinite;
  }
  .bannerContainerMain .bannerContentContainer .contentWrapper .searchWrapper .filterBtn:hover {
    background-color: #006600;
    box-shadow: 0 0 20px rgba(0, 128, 0, 0.6);
  }
}
@media (min-width: 320px) and (max-width: 1240px) and (min-width: 668px) {
  .bannerContainerMain .bannerContentContainer {
    max-width: 30rem;
    margin-inline: auto;
  }
}
@media (min-width: 320px) and (max-width: 1240px) {
  .displayMaps {
    margin-top: 2rem;
  }
  .displayMaps .filterTopTab {
    display: flex;
    flex-direction: column;
    gap: 3rem;
  }
  .displayMaps .filterTopTab .filterCategory {
    height: 100%;
    padding-left: 1rem;
  }
  .displayMaps .filterTopTab .filterCategory .switcherWrapper {
    display: flex;
    height: 100%;
    gap: 1rem;
  }
  .displayMaps .filterTopTab .filterCategory .switcherWrapper button {
    height: 100%;
    font-family: "Satoshi Medium";
    border: 1.2px solid #dedede;
    color: #333;
    background: #f7f7f7;
    padding: 0 1rem;
    height: 2.2rem;
    cursor: pointer;
    border-radius: 4px;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease-in-out;
  }
  .displayMaps .filterTopTab .filterCategory .switcherWrapper button:hover {
    background-color: #008000;
    color: #fff;
  }
  .displayMaps .filterTopTab .filterCategory .switcherWrapper button .iconWrapper {
    display: none;
  }
  .displayMaps .filterTopTab .filterCategory .switcherWrapper .activeBtn {
    background-color: #C7E3C7 !important;
    color: #008000 !important;
    border: 1.2px solid #008000 !important;
    font-family: "Satoshi Bold";
    border-bottom: none;
  }
  .displayMaps .filterTopTab .filterView {
    background-color: #fff;
    border: 1.2px solid rgba(51, 51, 51, 0.1176470588);
    height: 100%;
    display: none;
    width: fit-content;
    margin-inline: auto;
    align-items: center;
    gap: 0.5rem;
    padding: 0 0.1rem;
    border-radius: 10rem;
  }
  .displayMaps .filterTopTab .filterView button {
    height: 2.5rem;
    border-radius: 10rem;
    border: 1.2px solid #f7f7f7;
    padding: 0 0.8rem;
    color: #333;
    gap: 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-family: "Satoshi Medium";
    cursor: pointer;
  }
  .displayMaps .filterTopTab .filterView button span {
    display: flex;
    height: 1.2rem;
    width: 1.2rem;
  }
  .displayMaps .filterTopTab .filterView .active {
    background-color: #C7E3C7;
    color: #008000;
    font-family: "Satoshi Bold";
    border: 1.2px solid #008000;
  }
  .viewContainer {
    width: 90%;
    margin: 2rem auto;
  }
  .viewContainer .cardWrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    width: 100%;
    transition: all 0.3s ease;
  }
  .viewContainer .cardWrapper.table-view {
    flex-direction: column;
    gap: 1.5rem;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer {
    width: 100%;
    max-width: 100%;
    display: flex;
    flex-direction: row;
    height: auto;
    overflow: hidden;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer .cardHeader {
    height: 180px;
    border-radius: 10px 0 0 10px;
    border-top-right-radius: 0;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer .cardHeader .headerCardBackground::after {
    background: none;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer .cardHeader .headerCardBackground img {
    border-radius: 10px 0 0 10px;
    border-top-right-radius: 0;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer .cardHeader .topTags {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: auto;
    flex-direction: column;
    gap: 0.5rem;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer .cardHeader .topTags .typeTag {
    width: fit-content;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer .cardHeader .topTags .previewBtn {
    display: none;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer .cardHeader .priceTag {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: auto;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer .cardMainContent {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 1.5rem;
    width: auto;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer .cardMainContent .cardMainHeading {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer .cardMainContent .cardDescription {
    margin-top: 0;
    margin-bottom: 1rem;
    -webkit-line-clamp: 2;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer .cardMainContent .cardTagsWrapper {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer .cardMainContent .cardCTABtns {
    margin-top: auto;
    justify-content: flex-start;
  }
  .viewContainer .mapCardContainer {
    width: 100%;
    border-radius: 10px;
    background-color: #f7f7f7;
    position: relative;
  }
  .viewContainer .mapCardContainer .headerCardBackground {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  .viewContainer .mapCardContainer .headerCardBackground::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 50%;
    width: 100%;
    background: linear-gradient(to top, #f7f7f7 0%, rgba(255, 255, 255, 0) 100%);
  }
  .viewContainer .mapCardContainer .headerCardBackground img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .viewContainer .mapCardContainer .cardHeader {
    display: flex;
    height: 12rem;
    flex-direction: column;
    background-color: #dedede;
    position: relative;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .viewContainer .mapCardContainer .cardHeader .priceTag {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background-color: rgba(0, 128, 0, 0.63);
    border: 1.2px solid rgba(0, 128, 0, 0.5215686275);
    color: #fff;
    font-size: 0.9rem;
    font-family: "Satoshi Bold";
    display: flex;
    padding: 0.2rem 1rem;
    border-radius: 10rem;
    align-items: center;
    justify-content: center;
  }
  .viewContainer .mapCardContainer .cardHeader .topTags {
    position: relative;
    width: 90%;
    margin-inline: auto;
    justify-content: space-between;
    display: flex;
    margin-top: 1rem;
    z-index: 2;
  }
  .viewContainer .mapCardContainer .cardHeader .topTags .typeTag {
    height: fit-content;
    background-color: #E26D5C;
    padding: 0 0.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10rem;
    gap: 0.2rem;
  }
  .viewContainer .mapCardContainer .cardHeader .topTags .typeTag span {
    height: 1rem;
    width: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  .viewContainer .mapCardContainer .cardHeader .topTags .typeTag p {
    font-family: "Satoshi Bold";
    font-size: 0.7rem;
    color: #fff;
  }
  .viewContainer .mapCardContainer .cardHeader .topTags .previewBtn {
    background-color: #D9E8D9;
    display: flex;
    height: 1.6rem;
    width: 1.6rem;
    border: none;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  .viewContainer .mapCardContainer .cardHeader .topTags .previewBtn:hover {
    background-color: #008000;
  }
  .viewContainer .mapCardContainer .cardHeader .topTags .previewBtn:hover .previewIcon path {
    fill: white;
  }
  .viewContainer .mapCardContainer .cardHeader .topTags .previewBtn .previewIconWrapper {
    display: flex;
    height: 1rem;
    width: 1rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  .viewContainer .mapCardContainer .cardHeader .topTags .previewBtn .previewIconWrapper .previewIcon {
    height: 100%;
    width: 100%;
  }
  .viewContainer .mapCardContainer .cardMainContent {
    margin: 1rem auto;
    width: 90%;
  }
  .viewContainer .mapCardContainer .cardMainContent .cardMainHeading {
    font-size: 1.2rem;
    color: #333;
    font-family: "Satoshi Bold";
  }
  .viewContainer .mapCardContainer .cardMainContent .cardDescription {
    font-family: "Satoshi Medium";
    margin-top: 0.5rem;
    color: #333;
    opacity: 0.9;
    font-size: 0.85rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
  }
  .viewContainer .mapCardContainer .cardMainContent .cardCTABtns {
    display: flex;
    margin-top: 2rem;
    gap: 1rem;
    height: 2.2rem;
    align-items: center;
    justify-content: center;
    width: fit-content;
  }
  .viewContainer .mapCardContainer .cardMainContent .cardCTABtns a {
    text-decoration: none;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .viewContainer .mapCardContainer .cardMainContent .cardCTABtns a span {
    height: 1.2rem;
    width: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .viewContainer .mapCardContainer .cardMainContent .cardCTABtns a span > svg {
    height: 100%;
    width: 100%;
  }
  .viewContainer .mapCardContainer .cardMainContent .cardCTABtns .buyNowBtn {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 1rem;
    background-color: #008000;
    border-radius: 4px;
    color: #fff;
    font-family: "Satoshi Bold";
    transition: all 0.3s ease-in-out;
  }
  .viewContainer .mapCardContainer .cardMainContent .cardCTABtns .buyNowBtn:hover {
    background: #003100;
    border-radius: 10rem;
  }
  .viewContainer .mapCardContainer .cardMainContent .cardCTABtns .detailsBtn {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 1rem;
    background-color: white;
    border-radius: 4px;
    color: #333;
    font-family: "Satoshi Bold";
    transition: all 0.3s ease-in-out;
  }
  .viewContainer .mapCardContainer .cardMainContent .cardCTABtns .detailsBtn:hover {
    background-color: #d4d4d4;
    border-radius: 10rem;
  }
  .viewContainer .mapCardContainer .cardMainContent .cardTagsWrapper {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .viewContainer .mapCardContainer .cardMainContent .cardTagsWrapper > div {
    background-color: #C7E3C7;
    color: #008000;
    height: 1.5rem;
    padding: 0 0.8rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 10rem;
  }
  .viewContainer .mapCardContainer .cardMainContent .cardTagsWrapper > div .iconWrapper {
    height: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .viewContainer .mapCardContainer .cardMainContent .cardTagsWrapper > div p {
    font-family: "Satoshi Bold";
    font-size: 0.7rem;
  }
}
@media (min-width: 320px) and (max-width: 1240px) {
  /* ================================
     Details Modal Styles
     ================================ */
  .details-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .details-modal.active {
    opacity: 1;
    pointer-events: all;
  }
  .details-modal .details-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    cursor: pointer;
  }
  .details-modal .details-container {
    position: relative;
    width: 90%;
    max-width: 500px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    scale: 0.85 !important;
    z-index: 10;
  }
  .details-modal .details-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #dc2626;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
  }
  .details-modal .details-close-btn svg {
    stroke: #fff;
    width: 20px;
    height: 20px;
  }
  .details-modal .details-close-btn:hover {
    background-color: #b91c1c;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
  }
  .details-modal .details-content {
    padding: 0.2rem;
  }
  .details-modal .details-image-wrapper {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .details-modal .details-map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .details-modal .details-map-image:hover {
    transform: scale(1.05);
  }
  .details-modal .details-title {
    font-family: "Satoshi Bold";
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
  }
  .details-modal .details-description {
    font-family: "Satoshi Regular";
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6b7280;
    text-align: center;
    margin-bottom: 1.75rem;
    padding: 0 1rem;
  }
  .details-modal .details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .details-modal .detail-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .details-modal .detail-item:hover {
    background: #f0fdf4;
    border-color: #C7E3C7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 128, 0, 0.1);
  }
  .details-modal .detail-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #C7E3C7;
    border-radius: 10px;
    flex-shrink: 0;
  }
  .details-modal .detail-icon svg {
    width: 24px;
    height: 24px;
    stroke: #008000;
  }
  .details-modal .detail-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
  }
  .details-modal .detail-label {
    font-family: "Satoshi Medium";
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .details-modal .detail-value {
    font-family: "Satoshi Bold";
    font-size: 1rem;
    color: #1a1a1a;
  }
  .details-modal .detail-value.detail-price {
    color: #008000;
    font-size: 1.125rem;
  }
  .details-modal .detail-item-price:hover {
    background: #f0fdf4;
    border-color: #C7E3C7;
  }
  .details-modal .details-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 1rem 1rem;
    margin-top: 1rem;
  }
  .details-modal .details-buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #008000 0%, #00B050 100%);
    border: none;
    border-radius: 10px;
    font-family: "Satoshi Bold";
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 128, 0, 0.2);
    width: 100%;
    max-width: 300px;
  }
  .details-modal .details-buy-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: currentColor;
  }
  .details-modal .details-buy-btn:hover {
    background: linear-gradient(135deg, #006600 0%, #008000 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 128, 0, 0.35);
  }
  .details-modal .details-buy-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 128, 0, 0.2);
  }
}
@media (min-width: 320px) and (max-width: 1240px) and (max-width: 640px) {
  .details-modal .details-container {
    width: 95%;
    max-width: none;
  }
  .details-modal .details-content {
    padding: 0.5rem;
  }
  .details-modal .details-image-wrapper {
    height: 150px;
    margin-bottom: 1.25rem;
  }
  .details-modal .details-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  .details-modal .details-description {
    font-size: 0.9rem;
    width: 90%;
    margin-inline: auto !important;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }
  .details-modal .details-grid {
    grid-template-columns: 2;
    gap: 1rem;
  }
  .details-modal .detail-item {
    padding: 1rem;
  }
  .details-modal .detail-icon {
    width: 40px;
    height: 40px;
  }
  .details-modal .detail-icon svg {
    width: 20px;
    height: 20px;
  }
  .details-modal .detail-label {
    font-size: 0.7rem;
  }
  .details-modal .detail-value {
    font-size: 0.9rem;
  }
  .details-modal .detail-value.detail-price {
    font-size: 1rem;
  }
  .details-modal .details-actions {
    padding: 1rem 0.5rem 0.75rem;
  }
  .details-modal .details-buy-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    max-width: 100%;
  }
  .details-modal .details-buy-btn svg {
    width: 18px;
    height: 18px;
  }
}
@media (min-width: 320px) and (max-width: 1240px) {
  .details-modal .spotlight-modal .spotlight-container {
    width: 95%;
    max-width: 95%;
    max-height: 90vh;
  }
  .details-modal .spotlight-modal .spotlight-header {
    padding: 1rem;
    padding-bottom: 0.5rem;
  }
  .details-modal .spotlight-modal .spotlight-search-wrapper {
    height: 48px;
  }
  .details-modal .spotlight-modal .spotlight-search-wrapper .spotlight-search-icon {
    width: 40px;
  }
  .details-modal .spotlight-modal .spotlight-search-wrapper .spotlight-search-icon svg {
    width: 18px;
    height: 18px;
  }
  .details-modal .spotlight-modal .spotlight-search-wrapper .spotlight-search-input {
    font-size: 0.9rem;
    padding-left: 45px;
  }
  .details-modal .spotlight-modal .spotlight-search-wrapper .spotlight-close-btn {
    width: 36px;
    height: 36px;
  }
  .details-modal .spotlight-modal .spotlight-search-wrapper .spotlight-close-btn svg {
    width: 18px;
    height: 18px;
  }
  .details-modal .spotlight-modal .spotlight-body {
    flex-direction: column;
  }
  .details-modal .spotlight-modal .spotlight-sidebar {
    width: 100%;
    padding: 1rem 0.75rem;
    border-bottom: 1px solid #e0e0e0;
    max-height: 120px;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .details-modal .spotlight-modal .spotlight-sidebar .spotlight-sidebar-title {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    padding: 0 0.25rem;
  }
  .details-modal .spotlight-modal .spotlight-sidebar .spotlight-switchers {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }
  .details-modal .spotlight-modal .spotlight-sidebar .spotlight-switchers::-webkit-scrollbar {
    height: 4px;
  }
  .details-modal .spotlight-modal .spotlight-sidebar .spotlight-switchers::-webkit-scrollbar-thumb {
    background: #008000;
    border-radius: 10px;
  }
  .details-modal .spotlight-modal .spotlight-sidebar .spotlight-switcher {
    flex-shrink: 0;
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    white-space: nowrap;
  }
  .details-modal .spotlight-modal .spotlight-sidebar .spotlight-switcher .spotlight-switcher-icon {
    width: 16px;
    height: 16px;
  }
  .details-modal .spotlight-modal .spotlight-sidebar .spotlight-switcher .spotlight-switcher-icon svg {
    width: 16px;
    height: 16px;
  }
  .details-modal .spotlight-modal .spotlight-sidebar .spotlight-switcher .spotlight-switcher-label {
    font-size: 0.8rem;
  }
  .details-modal .spotlight-modal .spotlight-content {
    width: 100%;
    padding-top: 1rem;
  }
  .details-modal .spotlight-modal .spotlight-filters {
    padding: 0.75rem;
    gap: 0.5rem;
    overflow-x: auto;
    flex-wrap: nowrap;
  }
  .details-modal .spotlight-modal .spotlight-filters::-webkit-scrollbar {
    height: 4px;
  }
  .details-modal .spotlight-modal .spotlight-filters::-webkit-scrollbar-thumb {
    background: #008000;
    border-radius: 10px;
  }
  .details-modal .spotlight-modal .spotlight-filters .spotlight-filter-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .details-modal .spotlight-modal .spotlight-filters .spotlight-filter-btn svg {
    width: 14px;
    height: 14px;
  }
  .details-modal .spotlight-modal .spotlight-results {
    padding: 1rem 0.75rem;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-result-item .result-image {
    height: 120px;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-result-item .result-body {
    padding: 0.75rem;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-result-item .result-title {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-result-item .result-description {
    font-size: 0.75rem;
    line-height: 1.3;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-result-item .result-meta {
    margin-top: 0.5rem;
    gap: 0.5rem;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-result-item .result-meta-item {
    font-size: 0.7rem;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-result-item .result-meta-item svg {
    width: 12px;
    height: 12px;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-result-item .result-footer {
    padding: 0.5rem 0.75rem;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-result-item .result-price {
    font-size: 0.9rem;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-result-item .result-btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-result-item .result-btn svg {
    width: 14px;
    height: 14px;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-results-list {
    gap: 0.75rem;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item {
    padding: 0.75rem;
    gap: 0.75rem;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .list-item-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .list-item-icon svg {
    width: 18px;
    height: 18px;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .list-item-content {
    flex: 1;
    min-width: 0;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .list-item-title {
    font-size: 0.85rem;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .list-item-description {
    font-size: 0.75rem;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .list-item-action {
    flex-shrink: 0;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .list-item-action svg {
    width: 16px;
    height: 16px;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-keywords-cloud {
    gap: 0.5rem;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-keywords-cloud .keyword-tag {
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-keywords-cloud .keyword-tag svg {
    width: 12px;
    height: 12px;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-empty-state {
    padding: 2rem 1rem;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-empty-state .empty-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-empty-state .empty-icon svg {
    width: 60px;
    height: 60px;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-empty-state .empty-title {
    font-size: 1rem;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-empty-state .empty-description {
    font-size: 0.85rem;
  }
  .details-modal .spotlight-modal .spotlight-footer {
    padding: 0.75rem;
  }
  .details-modal .spotlight-modal .spotlight-shortcuts {
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-start;
  }
  .details-modal .spotlight-modal .spotlight-shortcuts .shortcut-item {
    font-size: 0.7rem;
  }
  .details-modal .spotlight-modal .spotlight-shortcuts .shortcut-item .shortcut-key {
    padding: 0.15rem 0.35rem;
    font-size: 0.65rem;
  }
  .spotlight-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .spotlight-modal.active {
    opacity: 1;
    pointer-events: all;
  }
  .spotlight-modal .spotlight-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1;
  }
  .spotlight-modal .spotlight-container {
    position: relative;
    width: 95%;
    margin-top: 2rem;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 2;
    overflow: hidden;
    opacity: 0;
    display: flex;
    flex-direction: column;
    max-height: 80dvh;
  }
  .spotlight-modal .spotlight-header {
    padding: 0.5rem;
    background-color: #fff;
    flex-shrink: 0;
    padding-bottom: 0.5rem;
  }
  .spotlight-modal .spotlight-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 12px;
    height: 3rem;
    padding: 0 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
  }
  .spotlight-modal .spotlight-search-wrapper:focus-within {
    box-shadow: 0 0 0 3px rgba(0, 128, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.12);
  }
  .spotlight-modal .spotlight-search-wrapper .spotlight-search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1rem;
    width: 1rem;
    flex-shrink: 0;
    margin-right: 0.5rem;
  }
  .spotlight-modal .spotlight-search-wrapper .spotlight-search-icon img {
    height: 100%;
    width: 100%;
    object-fit: contain;
  }
  .spotlight-modal .spotlight-search-wrapper .spotlight-search-input {
    flex: 1;
    height: 100%;
    border: none;
    outline: none;
    font-size: 0.85rem;
    font-family: "Satoshi Medium";
    color: #333;
    background: transparent;
  }
  .spotlight-modal .spotlight-search-wrapper .spotlight-search-input::placeholder {
    color: #999;
  }
  .spotlight-modal .spotlight-search-wrapper .spotlight-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background-color: #dc2626;
    border-radius: 8px;
    cursor: pointer;
    color: #fff;
    transition: all 0.2s ease;
    flex-shrink: 0;
  }
  .spotlight-modal .spotlight-search-wrapper .spotlight-close-btn:hover {
    background-color: #b91c1c;
  }
  .spotlight-modal .spotlight-body {
    display: flex;
    flex: 1;
    overflow: hidden;
  }
  .spotlight-modal .spotlight-sidebar {
    width: fit-content;
    background-color: #fff;
    padding: 1rem 0.5rem;
    border-right: 1px solid #f0f0f0;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
    overflow-y: auto;
    flex-shrink: 0;
  }
  .spotlight-modal .spotlight-sidebar button span {
    display: none;
  }
}
@media (min-width: 320px) and (max-width: 1240px) and (min-width: 1024px) {
  .spotlight-modal .spotlight-sidebar button span {
    display: inline;
  }
}
@media (min-width: 320px) and (max-width: 1240px) {
  .spotlight-modal .spotlight-sidebar::-webkit-scrollbar {
    width: 6px;
  }
  .spotlight-modal .spotlight-sidebar::-webkit-scrollbar-track {
    background: transparent;
  }
  .spotlight-modal .spotlight-sidebar::-webkit-scrollbar-thumb {
    background: #dedede;
    border-radius: 10px;
  }
  .spotlight-modal .spotlight-sidebar .spotlight-switcher {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background-color: transparent;
    border: none;
    border-radius: 8px;
    font-family: "Satoshi Medium";
    font-size: 0.95rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
  }
  .spotlight-modal .spotlight-sidebar .spotlight-switcher svg {
    flex-shrink: 0;
    stroke: #666;
    transition: stroke 0.3s ease;
  }
  .spotlight-modal .spotlight-sidebar .spotlight-switcher span {
    flex: 1;
  }
  .spotlight-modal .spotlight-sidebar .spotlight-switcher:hover {
    background-color: #e8f5e8;
    color: #008000;
  }
  .spotlight-modal .spotlight-sidebar .spotlight-switcher:hover svg {
    stroke: #008000;
  }
  .spotlight-modal .spotlight-sidebar .spotlight-switcher.active {
    background-color: #C7E3C7;
    color: #008000;
    font-family: "Satoshi Bold";
  }
  .spotlight-modal .spotlight-sidebar .spotlight-switcher.active svg {
    stroke: #008000;
  }
  .spotlight-modal .spotlight-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #fff;
    padding-top: 1rem;
  }
  .spotlight-modal .spotlight-filters {
    display: flex;
    gap: 0.75rem;
    padding: 0.5rem 1rem;
    overflow-x: auto;
    flex-shrink: 0;
    background-color: #fff;
  }
  .spotlight-modal .spotlight-filters::-webkit-scrollbar {
    height: 4px;
  }
  .spotlight-modal .spotlight-filters::-webkit-scrollbar-track {
    background: transparent;
  }
  .spotlight-modal .spotlight-filters::-webkit-scrollbar-thumb {
    background: #dedede;
    border-radius: 10px;
  }
  .spotlight-modal .spotlight-filters .spotlight-filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 2.2rem;
    padding: 0 1rem;
    background-color: #fff;
    border: 1.2px solid #dedede;
    border-radius: 10rem;
    font-family: "Satoshi Medium";
    font-size: 0.75rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .spotlight-modal .spotlight-filters .spotlight-filter-btn .iconWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1.2rem;
    width: 1.2rem;
  }
  .spotlight-modal .spotlight-filters .spotlight-filter-btn .iconWrapper svg path {
    fill: #333;
  }
  .spotlight-modal .spotlight-filters .spotlight-filter-btn:hover {
    background-color: #008000;
    color: #fff;
    border-color: #008000;
    box-shadow: 0 2px 8px rgba(0, 128, 0, 0.2);
  }
  .spotlight-modal .spotlight-filters .spotlight-filter-btn:hover .iconWrapper svg path {
    fill: #fff;
  }
  .spotlight-modal .spotlight-filters .spotlight-filter-btn:hover .iconWrapper svg circle,
  .spotlight-modal .spotlight-filters .spotlight-filter-btn:hover .iconWrapper svg line,
  .spotlight-modal .spotlight-filters .spotlight-filter-btn:hover .iconWrapper svg rect {
    stroke: #fff;
  }
  .spotlight-modal .spotlight-filters .spotlight-filter-btn.active {
    background-color: #C7E3C7;
    color: #008000;
    border-color: #008000;
    font-family: "Satoshi Bold";
  }
  .spotlight-modal .spotlight-filters .spotlight-filter-btn.active svg path {
    fill: #008000;
  }
  .spotlight-modal .spotlight-results {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    background-color: #fff;
  }
  .spotlight-modal .spotlight-results::-webkit-scrollbar {
    width: 8px;
  }
  .spotlight-modal .spotlight-results::-webkit-scrollbar-track {
    background: #f7f7f7;
  }
  .spotlight-modal .spotlight-results::-webkit-scrollbar-thumb {
    background: #dedede;
    border-radius: 10px;
  }
  .spotlight-modal .spotlight-results::-webkit-scrollbar-thumb:hover {
    background: #c0c0c0;
  }
  .spotlight-modal .spotlight-results .spotlight-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    text-align: center;
  }
  .spotlight-modal .spotlight-results .spotlight-empty-state .empty-state-image {
    width: 200px;
    height: 200px;
    margin-bottom: 0.5rem;
  }
  .spotlight-modal .spotlight-results .spotlight-empty-state .empty-state-text {
    font-family: "Satoshi Medium";
    font-size: 0.9rem;
    color: #333;
  }
  .spotlight-modal .spotlight-results .spotlight-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  }
  .spotlight-modal .spotlight-results .spotlight-result-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
  }
  .spotlight-modal .spotlight-results .spotlight-result-item.map-result-item {
    padding: 1.25rem;
    cursor: pointer;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item.collection-item {
    padding: 0;
    cursor: default;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item.collection-item .collection-image {
    position: relative;
    height: 140px;
    overflow: hidden;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item.collection-item .collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .spotlight-modal .spotlight-results .spotlight-result-item.collection-item .collection-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    pointer-events: none;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item.collection-item:hover .collection-image img {
    transform: scale(1.05);
  }
  .spotlight-modal .spotlight-results .spotlight-result-item.collection-item .collection-content {
    padding: 1.25rem;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item.collection-item .collection-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-type {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.3rem 0.75rem;
    background-color: #E26D5C;
    color: #fff;
    border-radius: 10rem;
    font-family: "Satoshi Bold";
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-type .iconWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 0.9rem;
    width: 0.9rem;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-type .iconWrapper img {
    height: 100%;
    width: 100%;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-type .iconWrapper svg path,
  .spotlight-modal .spotlight-results .spotlight-result-item .result-type .iconWrapper svg g path {
    fill: currentColor;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-type.topographic {
    background-color: #E9C46A;
    color: #333;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-type.orthophoto {
    background-color: #82DDF0;
    color: #333;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-type.cadastral {
    background-color: #472836;
    color: #fff;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-type.street {
    background-color: #E26D5C;
    color: #fff;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-title {
    font-family: "Satoshi Bold";
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-description {
    font-family: "Satoshi Regular";
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-price {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background-color: rgba(0, 128, 0, 0.1);
    border: 1px solid rgba(0, 128, 0, 0.3);
    color: #008000;
    font-family: "Satoshi Bold";
    font-size: 1rem;
    border-radius: 20px;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-count {
    font-family: "Satoshi Medium";
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.75rem;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-footer .result-actions {
    display: flex;
    gap: 0.5rem;
  }
  .spotlight-modal .spotlight-results .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border: 1.5px solid #dedede;
    background-color: transparent;
    border-radius: 8px;
    font-family: "Satoshi Medium";
    font-size: 0.875rem;
    color: #333;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
  }
  .spotlight-modal .spotlight-results .cta-btn svg {
    flex-shrink: 0;
    stroke: currentColor;
    transition: stroke 0.25s ease;
  }
  .spotlight-modal .spotlight-results .cta-btn:hover {
    border-color: #008000;
    background-color: #008000;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 128, 0, 0.2);
  }
  .spotlight-modal .spotlight-results .cta-btn:active {
    transform: translateY(0);
  }
  .spotlight-modal .spotlight-results .cta-btn.cta-primary {
    background-color: #008000;
    border-color: #008000;
    color: #fff;
  }
  .spotlight-modal .spotlight-results .cta-btn.cta-primary:hover {
    background-color: #006600;
    border-color: #006600;
    box-shadow: 0 6px 16px rgba(0, 128, 0, 0.3);
  }
  .spotlight-modal .spotlight-results .cta-btn.cta-primary-sm {
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
    background-color: #008000;
    border-color: #008000;
    color: #fff;
  }
  .spotlight-modal .spotlight-results .cta-btn.cta-primary-sm:hover {
    background-color: #006600;
  }
  .spotlight-modal .spotlight-results .cta-btn.cta-ghost {
    padding: 0.625rem;
    border-color: #e0e0e0;
  }
  .spotlight-modal .spotlight-results .cta-btn.cta-ghost:hover {
    background-color: #f7f7f7;
    border-color: #008000;
    color: #008000;
    transform: scale(1.05);
  }
  .spotlight-modal .spotlight-results .cta-btn.cta-icon {
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
  }
  .spotlight-modal .spotlight-results .cta-btn.cta-icon-only {
    padding: 0.5rem;
    width: 2.25rem;
    height: 2.25rem;
  }
  .spotlight-modal .spotlight-results .cta-btn.cta-icon-only:hover {
    background-color: #f7f7f7;
    border-color: #008000;
    color: #008000;
    transform: scale(1.08);
  }
  .spotlight-modal .spotlight-results .spotlight-results-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
  }
  .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.25rem;
    background-color: #fff;
    border-radius: 12px;
    border: 1px solid #f0f0f0;
    position: relative;
    cursor: default;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
  }
  .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    border-color: #C7E3C7;
    transform: translateY(-2px);
  }
  .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item:hover .list-item-icon {
    background-color: #C7E3C7;
  }
  .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item:hover .list-item-icon svg {
    stroke: #008000;
  }
  .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .list-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #f7f7f7;
    border-radius: 10px;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
  }
  .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .list-item-icon svg {
    stroke: #666;
    transition: stroke 0.3s ease;
  }
  .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .list-item-content {
    flex: 1;
    min-width: 0;
  }
  .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .list-item-content .item-title {
    font-family: "Satoshi Bold";
    font-size: 0.95rem;
    color: #333;
    margin-bottom: 0.2rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .list-item-content .item-subtitle {
    font-family: "Satoshi Regular";
    font-size: 0.8rem;
    color: #999;
    text-transform: capitalize;
  }
  .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .list-item-meta {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-shrink: 0;
  }
  .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .item-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 1.75rem;
    height: 1.75rem;
    padding: 0 0.5rem;
    background-color: #C7E3C7;
    border-radius: 10rem;
    font-family: "Satoshi Bold";
    font-size: 0.75rem;
    color: #008000;
  }
  .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .item-count,
  .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .item-price {
    font-family: "Satoshi Bold";
    font-size: 0.875rem;
    color: #008000;
    background-color: rgba(0, 128, 0, 0.08);
    padding: 0.25rem 0.625rem;
    border-radius: 6px;
    flex-shrink: 0;
  }
  .spotlight-modal .spotlight-results .spotlight-keywords-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1rem 0;
  }
  .spotlight-modal .spotlight-results .spotlight-keywords-cloud .keyword-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background-color: #f7f7f7;
    border: 1.2px solid #dedede;
    border-radius: 10rem;
    font-family: "Satoshi Medium";
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .spotlight-modal .spotlight-results .spotlight-keywords-cloud .keyword-tag .keyword-text {
    font-size: 0.95rem;
    color: #333;
  }
  .spotlight-modal .spotlight-results .spotlight-keywords-cloud .keyword-tag .keyword-count {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    height: 1.5rem;
    padding: 0 0.4rem;
    background-color: #C7E3C7;
    border-radius: 10rem;
    font-size: 0.75rem;
    font-family: "Satoshi Bold";
    color: #008000;
  }
  .spotlight-modal .spotlight-results .spotlight-keywords-cloud .keyword-tag:hover {
    background-color: #C7E3C7;
    border-color: #008000;
    transform: scale(1.05);
  }
  .spotlight-modal .spotlight-results .spotlight-keywords-cloud .keyword-tag:hover .keyword-text {
    color: #008000;
  }
  .spotlight-modal .spotlight-results .spotlight-keywords-cloud .keyword-tag:hover .keyword-count {
    background-color: #008000;
    color: #fff;
  }
  .spotlight-modal .spotlight-results .spotlight-keywords-cloud .keyword-tag.selected {
    background-color: #008000;
    border-color: #008000;
  }
  .spotlight-modal .spotlight-results .spotlight-keywords-cloud .keyword-tag.selected .keyword-text {
    color: #fff;
  }
  .spotlight-modal .spotlight-results .spotlight-keywords-cloud .keyword-tag.selected .keyword-count {
    background-color: #fff;
    color: #008000;
  }
  .spotlight-modal .spotlight-footer {
    padding: 1rem 1.5rem;
    background-color: #f7f7f7;
    border-top: 1px solid #e0e0e0;
    flex-shrink: 0;
  }
  .spotlight-modal .spotlight-shortcuts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  .spotlight-modal .spotlight-shortcuts .shortcut-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .spotlight-modal .spotlight-shortcuts .shortcut-item kbd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    height: 1.75rem;
    padding: 0 0.5rem;
    background-color: #fff;
    border: 1px solid #dedede;
    border-radius: 6px;
    font-family: "Satoshi Bold";
    font-size: 0.85rem;
    color: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }
  .spotlight-modal .spotlight-shortcuts .shortcut-item span {
    font-family: "Satoshi Medium";
    font-size: 0.85rem;
    color: #666;
  }
  .pagination-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 1.5rem;
    margin-top: 2rem;
  }
  .pagination-container .pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #fff;
    border: 1.5px solid #dedede;
    border-radius: 8px;
    font-family: "Satoshi Bold";
    font-size: 0.85rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .pagination-container .pagination-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
  }
  .pagination-container .pagination-btn:hover:not(:disabled) {
    background-color: #008000;
    border-color: #008000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 128, 0, 0.2);
  }
  .pagination-container .pagination-btn:hover:not(:disabled) svg {
    stroke: #fff;
  }
  .pagination-container .pagination-btn:hover:not(:disabled).prev-btn svg {
    transform: translateX(-3px);
  }
  .pagination-container .pagination-btn:hover:not(:disabled).next-btn svg {
    transform: translateX(3px);
  }
  .pagination-container .pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background-color: #f5f5f5;
  }
  .pagination-container .pagination-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Satoshi Medium";
    font-size: 0.8rem;
    color: #333;
  }
  .pagination-container .pagination-info .current-page {
    font-family: "Satoshi Bold";
    color: #008000;
    font-size: 0.9rem;
  }
  .pagination-container .pagination-info .page-separator {
    color: #999;
  }
  .pagination-container .pagination-info .total-pages {
    color: #666;
  }
  .pagination-container.table-pagination {
    padding-top: 1.5rem;
    margin-top: 0;
    border-top: 1px solid #dedede;
  }
}
@media (min-width: 1240px) and (max-width: 1920px) {
  .map-container {
    width: 45rem;
    height: 85%;
    display: flex;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 0;
    right: 1rem;
  }
  .bannerContainerMain {
    height: 75dvh;
    width: 100%;
    position: relative;
  }
  .bannerContainerMain .switcherMainWrapper {
    display: flex;
    height: 2.5rem;
    width: fit-content;
    padding: 0 0.2rem;
    align-items: center;
    gap: 1rem;
    z-index: 3;
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
  }
  .bannerContainerMain .switcherMainWrapper .active {
    background-color: #008000 !important;
    color: #fff !important;
    font-family: "Satoshi Bold";
  }
  .bannerContainerMain .switcherMainWrapper a {
    height: 100%;
    padding: 0 1rem;
    gap: 0.5rem;
    font-family: "Satoshi Medium";
    border: 1.2px solid rgba(133, 133, 133, 0.2117647059);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    background-color: white;
    color: rgba(51, 51, 51, 0.662745098);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
  }
  .bannerContainerMain .switcherMainWrapper a:hover {
    background-color: #003100;
    color: #fff;
    border: 1.2px solid white;
    scale: 1.1;
    font-size: 0.9rem !important;
    border-radius: 10rem;
  }
  .bannerContainerMain .switcherMainWrapper a:hover svg path {
    fill: #fff !important;
    fill-opacity: 1 !important;
  }
  .bannerContainerMain .switcherMainWrapper a span {
    display: flex;
    height: 1.2rem;
    width: 1.2rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  .bannerContainerMain .bannerImage {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  .bannerContainerMain .bannerImage::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 60%;
    background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
    top: 0;
    left: 0;
  }
  .bannerContainerMain .bannerImage img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: bottom;
    transform: translateY(-2vh);
  }
  .bannerContainerMain .bannerContentContainer {
    position: absolute;
    top: 15%;
    left: 6.8rem;
    width: 90%;
    max-width: fit-content;
  }
  .bannerContainerMain .bannerContentContainer .contentWrapper {
    margin-top: 1rem;
  }
  .bannerContainerMain .bannerContentContainer .contentWrapper .mainHeading {
    width: fit-content;
    color: #008000;
    font-size: 3rem;
    font-family: "Satoshi Black";
    display: flex;
    align-items: center;
    margin-inline: unset !important;
    gap: 1rem;
  }
  .bannerContainerMain .bannerContentContainer .contentWrapper .mainHeading .logoContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4rem;
    width: 4rem;
  }
  .bannerContainerMain .bannerContentContainer .contentWrapper .mainHeading .logoContainer img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .bannerContainerMain .bannerContentContainer .contentWrapper .descriptionText {
    font-size: 0.9rem;
    width: 60%;
    color: #333;
    margin-top: 0.5rem;
    font-family: "Satoshi Bold";
  }
  .bannerContainerMain .bannerContentContainer .contentWrapper .searchWrapper {
    margin-top: 2rem;
    height: calc(3rem + 4px);
    position: relative;
    width: 60%;
    display: flex;
    align-items: center !important;
    justify-content: center;
    border-radius: 6px;
    padding: 2px;
    background: #f7f7f7;
    overflow: hidden;
  }
  .bannerContainerMain .bannerContentContainer .contentWrapper .searchWrapper::before {
    content: "";
    position: absolute;
    inset: -50%;
    background: conic-gradient(from 0deg, transparent 0%, transparent 60%, #008000 70%, #00B050 80%, #69f0ae 85%, #00B050 90%, #008000 95%, transparent 100%);
    animation: borderBeam 3s linear infinite;
  }
  .bannerContainerMain .bannerContentContainer .contentWrapper .searchWrapper .searchIcon {
    position: absolute;
    top: 50%;
    left: calc(0.5rem + 2px);
    transform: translateY(-50%);
    height: 1.5rem;
    width: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 3;
  }
  .bannerContainerMain .bannerContentContainer .contentWrapper .searchWrapper ::placeholder {
    font-size: 0.9rem;
    font-family: "Satoshi Medium";
  }
  .bannerContainerMain .bannerContentContainer .contentWrapper .searchWrapper input {
    height: 96%;
    width: 99.5%;
    padding-left: 4rem;
    border: none;
    background-color: #fff;
    border-radius: 4px;
    font-size: 0.9rem;
    font-family: "Satoshi Medium";
    outline: none;
    transition: box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
  }
  .bannerContainerMain .bannerContentContainer .contentWrapper .searchWrapper input:focus {
    box-shadow: 0 0 0 0.35rem rgba(0, 128, 0, 0.253);
  }
  .bannerContainerMain .bannerContentContainer .filterBtn {
    position: absolute;
    right: 0.3rem;
    height: 2.6rem;
    width: 2.6rem;
    background-color: #008000;
    border: none;
    border-radius: 4px;
    top: 50%;
    cursor: pointer;
    z-index: 2;
    transform: translateY(-50%);
    animation: shimmerGlow 3s ease-in-out infinite;
  }
  .bannerContainerMain .bannerContentContainer .filterBtn:hover {
    background-color: #006600;
    box-shadow: 0 0 20px rgba(0, 128, 0, 0.6);
  }
  .bannerContainerMain .bannerBackgroundImage {
    display: flex;
    height: 100%;
    width: 100%;
    position: relative;
  }
  .bannerContainerMain .bannerBackgroundImage img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: bottom left;
  }
  .displayMaps {
    margin-top: 3rem;
  }
  .displayMaps .filterTopTab {
    width: 90%;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0;
    height: 2.5rem;
    display: flex;
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
  .displayMaps .filterTopTab .filterCategory {
    height: 100%;
  }
  .displayMaps .filterTopTab .filterCategory .switcherWrapper {
    display: flex;
    height: 100%;
    gap: 1rem;
  }
  .displayMaps .filterTopTab .filterCategory .switcherWrapper button {
    height: 100%;
    font-family: "Satoshi Medium";
    border: 1.2px solid #dedede;
    color: #333;
    background: #f7f7f7;
    padding: 0 1rem;
    cursor: pointer;
    border-radius: 4px;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease-in-out;
  }
  .displayMaps .filterTopTab .filterCategory .switcherWrapper button:hover {
    background-color: #008000;
    color: #fff;
  }
  .displayMaps .filterTopTab .filterCategory .switcherWrapper button .iconWrapper {
    display: flex;
    height: 1.2rem;
    width: 1.2rem;
    align-items: center;
    justify-content: center;
  }
  .displayMaps .filterTopTab .filterCategory .switcherWrapper button .iconWrapper .mostPopular path {
    fill: #333 !important;
  }
  .displayMaps .filterTopTab .filterCategory .switcherWrapper button .iconWrapper .topRated path {
    fill: #333 !important;
  }
  .displayMaps .filterTopTab .filterCategory .switcherWrapper .activeBtn {
    background-color: #C7E3C7 !important;
    color: #008000 !important;
    border: 1.2px solid #008000 !important;
    font-family: "Satoshi Bold";
  }
  .displayMaps .filterTopTab .filterView {
    background-color: #fff;
    border: 1.2px solid rgba(51, 51, 51, 0.1176470588);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 0.1rem;
    border-radius: 10rem;
  }
  .displayMaps .filterTopTab .filterView button {
    height: 95%;
    border-radius: 10rem;
    border: 1.2px solid #f7f7f7;
    padding: 0 0.8rem;
    color: #333;
    gap: 0.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-family: "Satoshi Medium";
    cursor: pointer;
  }
  .displayMaps .filterTopTab .filterView button span {
    display: flex;
    height: 1.2rem;
    width: 1.2rem;
  }
  .displayMaps .filterTopTab .filterView .active {
    background-color: #C7E3C7;
    color: #008000;
    font-family: "Satoshi Bold";
    border: 1.2px solid #008000;
  }
  .viewContainer {
    width: 90%;
    max-width: 1300px;
    margin: 2rem auto;
  }
  .viewContainer .cardWrapper {
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
  }
  .viewContainer .cardWrapper.table-view {
    flex-direction: column;
    gap: 1.5rem;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer {
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: row;
    height: auto;
    overflow: hidden;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer .cardHeader {
    width: 200px;
    min-width: 200px;
    height: 180px;
    border-radius: 10px 0 0 10px;
    border-top-right-radius: 0;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer .cardHeader .headerCardBackground::after {
    background: none;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer .cardHeader .headerCardBackground img {
    border-radius: 10px 0 0 10px;
    border-top-right-radius: 0;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer .cardHeader .topTags {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: auto;
    flex-direction: column;
    gap: 0.5rem;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer .cardHeader .topTags .typeTag {
    width: fit-content;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer .cardHeader .topTags .previewBtn {
    display: none;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer .cardHeader .priceTag {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: auto;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer .cardMainContent {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 1.5rem;
    width: auto;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer .cardMainContent .cardMainHeading {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer .cardMainContent .cardDescription {
    margin-top: 0;
    margin-bottom: 1rem;
    -webkit-line-clamp: 2;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer .cardMainContent .cardTagsWrapper {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer .cardMainContent .cardCTABtns {
    margin-top: auto;
    justify-content: flex-start;
  }
  .viewContainer .mapCardContainer {
    width: 25rem;
    border-radius: 10px;
    background-color: #f7f7f7;
    position: relative;
  }
  .viewContainer .mapCardContainer .headerCardBackground {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  .viewContainer .mapCardContainer .headerCardBackground::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 50%;
    width: 100%;
    background: linear-gradient(to top, #f7f7f7 0%, rgba(255, 255, 255, 0) 100%);
  }
  .viewContainer .mapCardContainer .headerCardBackground img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .viewContainer .mapCardContainer .cardHeader {
    display: flex;
    height: 12rem;
    flex-direction: column;
    background-color: #dedede;
    position: relative;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .viewContainer .mapCardContainer .cardHeader .priceTag {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background-color: rgba(0, 128, 0, 0.63);
    border: 1.2px solid rgba(0, 128, 0, 0.5215686275);
    color: #fff;
    font-size: 0.9rem;
    font-family: "Satoshi Bold";
    display: flex;
    padding: 0.2rem 1rem;
    border-radius: 10rem;
    align-items: center;
    justify-content: center;
  }
  .viewContainer .mapCardContainer .cardHeader .topTags {
    position: relative;
    width: 90%;
    margin-inline: auto;
    justify-content: space-between;
    display: flex;
    margin-top: 1rem;
    z-index: 2;
  }
  .viewContainer .mapCardContainer .cardHeader .topTags .typeTag {
    height: fit-content;
    background-color: #E26D5C;
    padding: 0 0.5rem;
    height: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10rem;
    gap: 0.2rem;
  }
  .viewContainer .mapCardContainer .cardHeader .topTags .typeTag span {
    height: 1rem;
    width: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  .viewContainer .mapCardContainer .cardHeader .topTags .typeTag p {
    font-family: "Satoshi Bold";
    font-size: 0.7rem;
    color: #fff;
  }
  .viewContainer .mapCardContainer .cardHeader .topTags .previewBtn {
    background-color: #D9E8D9;
    display: flex;
    height: 1.6rem;
    width: 1.6rem;
    border: none;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  .viewContainer .mapCardContainer .cardHeader .topTags .previewBtn:hover {
    background-color: #008000;
  }
  .viewContainer .mapCardContainer .cardHeader .topTags .previewBtn:hover .previewIcon path {
    fill: white;
  }
  .viewContainer .mapCardContainer .cardHeader .topTags .previewBtn .previewIconWrapper {
    display: flex;
    height: 1rem;
    width: 1rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  .viewContainer .mapCardContainer .cardHeader .topTags .previewBtn .previewIconWrapper .previewIcon {
    height: 100%;
    width: 100%;
  }
  .viewContainer .mapCardContainer .cardMainContent {
    margin: 1rem auto;
    width: 90%;
  }
  .viewContainer .mapCardContainer .cardMainContent .cardMainHeading {
    font-size: 1.2rem;
    color: #333;
    font-family: "Satoshi Bold";
  }
  .viewContainer .mapCardContainer .cardMainContent .cardDescription {
    font-family: "Satoshi Medium";
    margin-top: 0.5rem;
    color: #333;
    opacity: 0.9;
    font-size: 0.85rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
  }
  .viewContainer .mapCardContainer .cardMainContent .cardCTABtns {
    display: flex;
    margin-top: 2rem;
    gap: 1rem;
    height: 2.2rem;
    align-items: center;
    justify-content: center;
    width: fit-content;
  }
  .viewContainer .mapCardContainer .cardMainContent .cardCTABtns a {
    text-decoration: none;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .viewContainer .mapCardContainer .cardMainContent .cardCTABtns a span {
    height: 1.2rem;
    width: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .viewContainer .mapCardContainer .cardMainContent .cardCTABtns a span > svg {
    height: 100%;
    width: 100%;
  }
  .viewContainer .mapCardContainer .cardMainContent .cardCTABtns .buyNowBtn {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 1rem;
    background-color: #008000;
    border-radius: 4px;
    color: #fff;
    font-family: "Satoshi Bold";
    transition: all 0.3s ease-in-out;
  }
  .viewContainer .mapCardContainer .cardMainContent .cardCTABtns .buyNowBtn:hover {
    background: #003100;
    border-radius: 10rem;
  }
  .viewContainer .mapCardContainer .cardMainContent .cardCTABtns .detailsBtn {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 1rem;
    background-color: white;
    border-radius: 4px;
    color: #333;
    font-family: "Satoshi Bold";
    transition: all 0.3s ease-in-out;
  }
  .viewContainer .mapCardContainer .cardMainContent .cardCTABtns .detailsBtn:hover {
    background-color: #d4d4d4;
    border-radius: 10rem;
  }
  .viewContainer .mapCardContainer .cardMainContent .cardTagsWrapper {
    margin-top: 1.5rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .viewContainer .mapCardContainer .cardMainContent .cardTagsWrapper > div {
    background-color: #C7E3C7;
    color: #008000;
    height: 1.5rem;
    padding: 0 0.8rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 10rem;
  }
  .viewContainer .mapCardContainer .cardMainContent .cardTagsWrapper > div .iconWrapper {
    height: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .viewContainer .mapCardContainer .cardMainContent .cardTagsWrapper > div p {
    font-family: "Satoshi Bold";
    font-size: 0.7rem;
  }
  /* ================================
  Table View Styles
  ================================ */
  .table-view-container {
    width: 100%;
    overflow-x: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  .table-view-container .maps-table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Satoshi Regular";
    table-layout: auto;
  }
  .table-view-container .maps-table thead {
    background: #f2f2f2;
    border-bottom: 2px solid #dee2e6;
  }
  .table-view-container .maps-table thead tr th {
    padding: 0.875rem 1.25rem;
    text-align: left;
    font-family: "Satoshi Bold";
    font-size: 0.8rem;
    color: #394F68;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
    border-right: 1px solid #dee2e6;
  }
  .table-view-container .maps-table thead tr th:last-child {
    border-right: none;
  }
  .table-view-container .maps-table tbody tr {
    border-bottom: 1px solid #dee2e6;
    transition: background-color 0.2s ease;
  }
  .table-view-container .maps-table tbody tr:hover {
    background-color: #f9fafb;
  }
  .table-view-container .maps-table tbody tr:last-child {
    border-bottom: none;
  }
  .table-view-container .maps-table tbody tr td {
    padding: 0.5rem 1.25rem;
    vertical-align: middle;
    border-right: 1px solid rgba(222, 226, 230, 0.6156862745);
  }
  .table-view-container .maps-table tbody tr td:last-child {
    border-right: none;
  }
  .table-view-container .maps-table .table-image-cell {
    width: 70px;
  }
  .table-view-container .maps-table .table-image-cell img {
    width: 56px;
    height: 40px;
    object-fit: cover;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  .table-view-container .maps-table .table-title-cell {
    font-family: "Satoshi Bold";
    font-size: 0.85rem;
    color: #1a1a1a;
    min-width: 160px;
    max-width: 220px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .table-view-container .maps-table .table-type-cell {
    white-space: nowrap;
  }
  .table-view-container .maps-table .table-type-cell .type-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.3rem 0.75rem;
    background-color: #E26D5C;
    color: #fff;
    font-family: "Satoshi Bold";
    font-size: 0.7rem;
    border-radius: 20px;
    white-space: nowrap;
  }
  .table-view-container .maps-table .table-type-cell .type-badge .iconWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1rem;
    width: 1rem;
  }
  .table-view-container .maps-table .table-type-cell .type-badge .iconWrapper svg {
    width: 100%;
    height: 100%;
  }
  .table-view-container .maps-table .table-type-cell .type-badge.topographic {
    background-color: #E9C46A;
    color: #333;
  }
  .table-view-container .maps-table .table-type-cell .type-badge.orthophoto {
    background-color: #82DDF0;
    color: #333;
  }
  .table-view-container .maps-table .table-type-cell .type-badge.cadastral {
    background-color: #472836;
    color: #fff;
  }
  .table-view-container .maps-table .table-format-cell {
    font-size: 0.8rem;
    color: #4b5563;
    white-space: nowrap;
    font-family: "Satoshi Medium";
  }
  .table-view-container .maps-table .table-price-cell {
    white-space: nowrap;
  }
  .table-view-container .maps-table .table-price-cell .price-badge {
    display: inline-block;
    padding: 0.3rem 0.875rem;
    background-color: rgba(0, 128, 0, 0.08);
    border: 1px solid rgba(0, 128, 0, 0.25);
    color: #008000;
    font-family: "Satoshi Bold";
    font-size: 0.85rem;
    border-radius: 20px;
    white-space: nowrap;
  }
  .table-view-container .maps-table .table-actions-cell {
    white-space: nowrap;
  }
  .table-view-container .maps-table .table-actions-cell .actions-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: flex-start;
  }
  .table-view-container .maps-table .table-actions-cell .table-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.45rem 0.875rem;
    border: none;
    border-radius: 6px;
    font-family: "Satoshi Bold";
    font-size: 0.75rem;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
  }
  .table-view-container .maps-table .table-actions-cell .table-btn span[uk-icon] {
    width: 15px;
    height: 15px;
  }
  .table-view-container .maps-table .table-actions-cell .table-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
  }
  .table-view-container .maps-table .table-actions-cell .table-btn.buy-btn {
    background-color: #008000;
    color: #fff;
  }
  .table-view-container .maps-table .table-actions-cell .table-btn.buy-btn:hover {
    background-color: #006600;
    box-shadow: 0 2px 8px rgba(0, 128, 0, 0.3);
  }
  .table-view-container .maps-table .table-actions-cell .table-btn.details-btn-table {
    background-color: #f4f4f4;
    color: #333;
    border: 1px solid #e0e0e0;
  }
  .table-view-container .maps-table .table-actions-cell .table-btn.details-btn-table:hover {
    background-color: #e8e8e8;
  }
  .pagination-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 1.5rem;
    margin-top: 2rem;
  }
  .pagination-container .pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #fff;
    border: 1.5px solid #dedede;
    border-radius: 8px;
    font-family: "Satoshi Bold";
    font-size: 0.85rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .pagination-container .pagination-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
  }
  .pagination-container .pagination-btn:hover:not(:disabled) {
    background-color: #008000;
    border-color: #008000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 128, 0, 0.2);
  }
  .pagination-container .pagination-btn:hover:not(:disabled) svg {
    stroke: #fff;
  }
  .pagination-container .pagination-btn:hover:not(:disabled).prev-btn svg {
    transform: translateX(-3px);
  }
  .pagination-container .pagination-btn:hover:not(:disabled).next-btn svg {
    transform: translateX(3px);
  }
  .pagination-container .pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background-color: #f5f5f5;
  }
  .pagination-container .pagination-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Satoshi Medium";
    font-size: 0.8rem;
    color: #333;
  }
  .pagination-container .pagination-info .current-page {
    font-family: "Satoshi Bold";
    color: #008000;
    font-size: 0.9rem;
  }
  .pagination-container .pagination-info .page-separator {
    color: #999;
  }
  .pagination-container .pagination-info .total-pages {
    color: #666;
  }
  .pagination-container.table-pagination {
    padding-top: 1.5rem;
    margin-top: 0;
    border-top: 1px solid #dedede;
  }
}
@media (min-width: 1240px) and (max-width: 1920px) and (max-width: 1024px) {
  .table-view-container .maps-table .table-description-cell {
    max-width: 200px;
  }
}
@media (min-width: 1240px) and (max-width: 1920px) {
  td.table-description-cell {
    transform: translateY(-1.5rem);
  }
}
@media (min-width: 1240px) and (max-width: 1920px) {
  /* ================================
     Details Modal Styles
     ================================ */
  .details-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .details-modal.active {
    opacity: 1;
    pointer-events: all;
  }
  .details-modal .details-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    cursor: pointer;
  }
  .details-modal .details-container {
    position: relative;
    width: 90%;
    max-width: 500px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    scale: 0.85 !important;
    z-index: 10;
  }
  .details-modal .details-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #dc2626;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
  }
  .details-modal .details-close-btn svg {
    stroke: #fff;
    width: 20px;
    height: 20px;
  }
  .details-modal .details-close-btn:hover {
    background-color: #b91c1c;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
  }
  .details-modal .details-content {
    padding: 0.5rem;
  }
  .details-modal .details-image-wrapper {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .details-modal .details-map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .details-modal .details-map-image:hover {
    transform: scale(1.05);
  }
  .details-modal .details-title {
    font-family: "Satoshi Bold";
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
  }
  .details-modal .details-description {
    font-family: "Satoshi Regular";
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6b7280;
    text-align: center;
    margin-bottom: 1.75rem;
    padding: 0 1rem;
  }
  .details-modal .details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .details-modal .detail-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .details-modal .detail-item:hover {
    background: #f0fdf4;
    border-color: #C7E3C7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 128, 0, 0.1);
  }
  .details-modal .detail-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #C7E3C7;
    border-radius: 10px;
    flex-shrink: 0;
  }
  .details-modal .detail-icon svg {
    width: 24px;
    height: 24px;
    stroke: #008000;
  }
  .details-modal .detail-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
  }
  .details-modal .detail-label {
    font-family: "Satoshi Medium";
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .details-modal .detail-value {
    font-family: "Satoshi Bold";
    font-size: 1rem;
    color: #1a1a1a;
  }
  .details-modal .detail-value.detail-price {
    color: #008000;
    font-size: 1.125rem;
  }
  .details-modal .detail-item-price:hover {
    background: #f0fdf4;
    border-color: #C7E3C7;
  }
  .details-modal .details-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 1rem 1rem;
    margin-top: 1rem;
  }
  .details-modal .details-buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #008000 0%, #00B050 100%);
    border: none;
    border-radius: 10px;
    font-family: "Satoshi Bold";
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 128, 0, 0.2);
    width: 100%;
    max-width: 300px;
  }
  .details-modal .details-buy-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: currentColor;
  }
  .details-modal .details-buy-btn:hover {
    background: linear-gradient(135deg, #006600 0%, #008000 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 128, 0, 0.35);
  }
  .details-modal .details-buy-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 128, 0, 0.2);
  }
}
@media (min-width: 1240px) and (max-width: 1920px) and (max-width: 640px) {
  .details-modal .details-container {
    width: 95%;
    max-width: none;
  }
  .details-modal .details-content {
    padding: 2rem 1.5rem 1.5rem;
  }
  .details-modal .details-image-wrapper {
    height: 150px;
    margin-bottom: 1.25rem;
  }
  .details-modal .details-title {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
  }
  .details-modal .details-description {
    font-size: 0.85rem;
    margin-bottom: 1.5rem;
    padding: 0 0.5rem;
  }
  .details-modal .details-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .details-modal .detail-item {
    padding: 1rem;
  }
  .details-modal .detail-icon {
    width: 40px;
    height: 40px;
  }
  .details-modal .detail-icon svg {
    width: 20px;
    height: 20px;
  }
  .details-modal .detail-label {
    font-size: 0.7rem;
  }
  .details-modal .detail-value {
    font-size: 0.9rem;
  }
  .details-modal .detail-value.detail-price {
    font-size: 1rem;
  }
  .details-modal .details-actions {
    padding: 1rem 0.5rem 0.75rem;
  }
  .details-modal .details-buy-btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
    max-width: 100%;
  }
  .details-modal .details-buy-btn svg {
    width: 18px;
    height: 18px;
  }
}
@media (min-width: 1240px) and (max-width: 1920px) {
  .details-modal .spotlight-modal .spotlight-container {
    width: 95%;
    max-width: 95%;
    max-height: 90vh;
  }
  .details-modal .spotlight-modal .spotlight-header {
    padding: 1rem;
    padding-bottom: 0.5rem;
  }
  .details-modal .spotlight-modal .spotlight-search-wrapper {
    height: 48px;
  }
  .details-modal .spotlight-modal .spotlight-search-wrapper .spotlight-search-icon {
    width: 40px;
  }
  .details-modal .spotlight-modal .spotlight-search-wrapper .spotlight-search-icon svg {
    width: 18px;
    height: 18px;
  }
  .details-modal .spotlight-modal .spotlight-search-wrapper .spotlight-search-input {
    font-size: 0.9rem;
    padding-left: 45px;
  }
  .details-modal .spotlight-modal .spotlight-search-wrapper .spotlight-close-btn {
    width: 36px;
    height: 36px;
  }
  .details-modal .spotlight-modal .spotlight-search-wrapper .spotlight-close-btn svg {
    width: 18px;
    height: 18px;
  }
  .details-modal .spotlight-modal .spotlight-body {
    flex-direction: column;
  }
  .details-modal .spotlight-modal .spotlight-sidebar {
    width: 100%;
    padding: 1rem 0.75rem;
    border-bottom: 1px solid #e0e0e0;
    max-height: 120px;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .details-modal .spotlight-modal .spotlight-sidebar .spotlight-sidebar-title {
    font-size: 0.75rem;
    margin-bottom: 0.5rem;
    padding: 0 0.25rem;
  }
  .details-modal .spotlight-modal .spotlight-sidebar .spotlight-switchers {
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.5rem;
  }
  .details-modal .spotlight-modal .spotlight-sidebar .spotlight-switchers::-webkit-scrollbar {
    height: 4px;
  }
  .details-modal .spotlight-modal .spotlight-sidebar .spotlight-switchers::-webkit-scrollbar-thumb {
    background: #008000;
    border-radius: 10px;
  }
  .details-modal .spotlight-modal .spotlight-sidebar .spotlight-switcher {
    flex-shrink: 0;
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    white-space: nowrap;
  }
  .details-modal .spotlight-modal .spotlight-sidebar .spotlight-switcher .spotlight-switcher-icon {
    width: 16px;
    height: 16px;
  }
  .details-modal .spotlight-modal .spotlight-sidebar .spotlight-switcher .spotlight-switcher-icon svg {
    width: 16px;
    height: 16px;
  }
  .details-modal .spotlight-modal .spotlight-sidebar .spotlight-switcher .spotlight-switcher-label {
    font-size: 0.8rem;
  }
  .details-modal .spotlight-modal .spotlight-content {
    width: 100%;
    padding-top: 1rem;
  }
  .details-modal .spotlight-modal .spotlight-filters {
    padding: 0.75rem;
    gap: 0.5rem;
    overflow-x: auto;
    flex-wrap: nowrap;
  }
  .details-modal .spotlight-modal .spotlight-filters::-webkit-scrollbar {
    height: 4px;
  }
  .details-modal .spotlight-modal .spotlight-filters::-webkit-scrollbar-thumb {
    background: #008000;
    border-radius: 10px;
  }
  .details-modal .spotlight-modal .spotlight-filters .spotlight-filter-btn {
    padding: 0.5rem 0.75rem;
    font-size: 0.8rem;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .details-modal .spotlight-modal .spotlight-filters .spotlight-filter-btn svg {
    width: 14px;
    height: 14px;
  }
  .details-modal .spotlight-modal .spotlight-results {
    padding: 1rem 0.75rem;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-results-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-result-item .result-image {
    height: 120px;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-result-item .result-body {
    padding: 0.75rem;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-result-item .result-title {
    font-size: 0.85rem;
    margin-bottom: 0.25rem;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-result-item .result-description {
    font-size: 0.75rem;
    line-height: 1.3;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-result-item .result-meta {
    margin-top: 0.5rem;
    gap: 0.5rem;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-result-item .result-meta-item {
    font-size: 0.7rem;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-result-item .result-meta-item svg {
    width: 12px;
    height: 12px;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-result-item .result-footer {
    padding: 0.5rem 0.75rem;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-result-item .result-price {
    font-size: 0.9rem;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-result-item .result-btn {
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-result-item .result-btn svg {
    width: 14px;
    height: 14px;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-results-list {
    gap: 0.75rem;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item {
    padding: 0.75rem;
    gap: 0.75rem;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .list-item-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .list-item-icon svg {
    width: 18px;
    height: 18px;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .list-item-content {
    flex: 1;
    min-width: 0;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .list-item-title {
    font-size: 0.85rem;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .list-item-description {
    font-size: 0.75rem;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .list-item-action {
    flex-shrink: 0;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .list-item-action svg {
    width: 16px;
    height: 16px;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-keywords-cloud {
    gap: 0.5rem;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-keywords-cloud .keyword-tag {
    padding: 0.4rem 0.75rem;
    font-size: 0.75rem;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-keywords-cloud .keyword-tag svg {
    width: 12px;
    height: 12px;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-empty-state {
    padding: 2rem 1rem;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-empty-state .empty-icon {
    width: 60px;
    height: 60px;
    margin-bottom: 1rem;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-empty-state .empty-icon svg {
    width: 60px;
    height: 60px;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-empty-state .empty-title {
    font-size: 1rem;
  }
  .details-modal .spotlight-modal .spotlight-results .spotlight-empty-state .empty-description {
    font-size: 0.85rem;
  }
  .details-modal .spotlight-modal .spotlight-footer {
    padding: 0.75rem;
  }
  .details-modal .spotlight-modal .spotlight-shortcuts {
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: flex-start;
  }
  .details-modal .spotlight-modal .spotlight-shortcuts .shortcut-item {
    font-size: 0.7rem;
  }
  .details-modal .spotlight-modal .spotlight-shortcuts .shortcut-item .shortcut-key {
    padding: 0.15rem 0.35rem;
    font-size: 0.65rem;
  }
  .spotlight-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .spotlight-modal.active {
    opacity: 1;
    pointer-events: all;
  }
  .spotlight-modal .spotlight-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1;
  }
  .spotlight-modal .spotlight-container {
    position: relative;
    width: 90%;
    max-width: 1100px;
    margin-top: 8vh;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 2;
    overflow: hidden;
    transform: scale(0.9);
    opacity: 0;
    display: flex;
    flex-direction: column;
    max-height: 85vh;
    scale: 0.9 !important;
  }
  .spotlight-modal .spotlight-header {
    padding: 1.5rem;
    background-color: #fff;
    flex-shrink: 0;
    padding-bottom: 0.5rem;
  }
  .spotlight-modal .spotlight-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 12px;
    height: 3rem;
    padding: 0 0.5rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
  }
  .spotlight-modal .spotlight-search-wrapper:focus-within {
    box-shadow: 0 0 0 3px rgba(0, 128, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.12);
  }
  .spotlight-modal .spotlight-search-wrapper .spotlight-search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2rem;
    width: 2rem;
    flex-shrink: 0;
    margin-right: 0.75rem;
  }
  .spotlight-modal .spotlight-search-wrapper .spotlight-search-icon img {
    height: 100%;
    width: 100%;
    object-fit: contain;
  }
  .spotlight-modal .spotlight-search-wrapper .spotlight-search-input {
    flex: 1;
    height: 100%;
    border: none;
    outline: none;
    font-size: 1rem;
    font-family: "Satoshi Medium";
    color: #333;
    background: transparent;
  }
  .spotlight-modal .spotlight-search-wrapper .spotlight-search-input::placeholder {
    color: #999;
  }
  .spotlight-modal .spotlight-search-wrapper .spotlight-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background-color: #dc2626;
    border-radius: 8px;
    cursor: pointer;
    color: #fff;
    transition: all 0.2s ease;
    flex-shrink: 0;
  }
  .spotlight-modal .spotlight-search-wrapper .spotlight-close-btn:hover {
    background-color: #b91c1c;
  }
  .spotlight-modal .spotlight-body {
    display: flex;
    flex: 1;
    overflow: hidden;
  }
  .spotlight-modal .spotlight-sidebar {
    width: 250px;
    background-color: #fff;
    padding: 1.5rem 1rem;
    border-right: 1px solid #dedede;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow-y: auto;
    flex-shrink: 0;
  }
  .spotlight-modal .spotlight-sidebar::-webkit-scrollbar {
    width: 6px;
  }
  .spotlight-modal .spotlight-sidebar::-webkit-scrollbar-track {
    background: transparent;
  }
  .spotlight-modal .spotlight-sidebar::-webkit-scrollbar-thumb {
    background: #dedede;
    border-radius: 10px;
  }
  .spotlight-modal .spotlight-sidebar .spotlight-switcher {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background-color: transparent;
    border: none;
    border-radius: 8px;
    font-family: "Satoshi Medium";
    font-size: 0.95rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
  }
  .spotlight-modal .spotlight-sidebar .spotlight-switcher svg {
    flex-shrink: 0;
    stroke: #666;
    transition: stroke 0.3s ease;
  }
  .spotlight-modal .spotlight-sidebar .spotlight-switcher span {
    flex: 1;
  }
  .spotlight-modal .spotlight-sidebar .spotlight-switcher:hover {
    background-color: #e8f5e8;
    color: #008000;
  }
  .spotlight-modal .spotlight-sidebar .spotlight-switcher:hover svg {
    stroke: #008000;
  }
  .spotlight-modal .spotlight-sidebar .spotlight-switcher.active {
    background-color: #C7E3C7;
    color: #008000;
    font-family: "Satoshi Bold";
  }
  .spotlight-modal .spotlight-sidebar .spotlight-switcher.active svg {
    stroke: #008000;
  }
  .spotlight-modal .spotlight-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #fff;
    padding-top: 2rem;
  }
  .spotlight-modal .spotlight-filters {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    overflow-x: auto;
    flex-shrink: 0;
    background-color: #fff;
  }
  .spotlight-modal .spotlight-filters::-webkit-scrollbar {
    height: 4px;
  }
  .spotlight-modal .spotlight-filters::-webkit-scrollbar-track {
    background: transparent;
  }
  .spotlight-modal .spotlight-filters::-webkit-scrollbar-thumb {
    background: #dedede;
    border-radius: 10px;
  }
  .spotlight-modal .spotlight-filters .spotlight-filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    height: 2.5rem;
    padding: 0 1rem;
    background-color: #fff;
    border: 1.2px solid #dedede;
    border-radius: 10rem;
    font-family: "Satoshi Medium";
    font-size: 0.85rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .spotlight-modal .spotlight-filters .spotlight-filter-btn .iconWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1.2rem;
    width: 1.2rem;
  }
  .spotlight-modal .spotlight-filters .spotlight-filter-btn:hover {
    background-color: #008000;
    color: #fff;
    border-color: #008000;
    box-shadow: 0 2px 8px rgba(0, 128, 0, 0.2);
  }
  .spotlight-modal .spotlight-filters .spotlight-filter-btn:hover .iconWrapper svg path {
    fill: #fff;
  }
  .spotlight-modal .spotlight-filters .spotlight-filter-btn:hover .iconWrapper svg circle,
  .spotlight-modal .spotlight-filters .spotlight-filter-btn:hover .iconWrapper svg line,
  .spotlight-modal .spotlight-filters .spotlight-filter-btn:hover .iconWrapper svg rect {
    stroke: #fff;
  }
  .spotlight-modal .spotlight-filters .spotlight-filter-btn.active {
    background-color: #C7E3C7;
    color: #008000;
    border-color: #008000;
    font-family: "Satoshi Bold";
  }
  .spotlight-modal .spotlight-filters .spotlight-filter-btn.active svg path {
    fill: #008000;
  }
  .spotlight-modal .spotlight-results {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    background-color: #fff;
  }
  .spotlight-modal .spotlight-results::-webkit-scrollbar {
    width: 8px;
  }
  .spotlight-modal .spotlight-results::-webkit-scrollbar-track {
    background: #f7f7f7;
  }
  .spotlight-modal .spotlight-results::-webkit-scrollbar-thumb {
    background: #dedede;
    border-radius: 10px;
  }
  .spotlight-modal .spotlight-results::-webkit-scrollbar-thumb:hover {
    background: #c0c0c0;
  }
  .spotlight-modal .spotlight-results .spotlight-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    text-align: center;
  }
  .spotlight-modal .spotlight-results .spotlight-empty-state .empty-state-image {
    width: 300px;
    height: 300px;
    margin-bottom: 0.5rem;
  }
  .spotlight-modal .spotlight-results .spotlight-empty-state .empty-state-text {
    font-family: "Satoshi Medium";
    font-size: 1.1rem;
    color: #666;
  }
  .spotlight-modal .spotlight-results .spotlight-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  }
  .spotlight-modal .spotlight-results .spotlight-result-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
  }
  .spotlight-modal .spotlight-results .spotlight-result-item.map-result-item {
    padding: 1.25rem;
    cursor: pointer;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item.collection-item {
    padding: 0;
    cursor: default;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item.collection-item .collection-image {
    position: relative;
    height: 140px;
    overflow: hidden;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item.collection-item .collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .spotlight-modal .spotlight-results .spotlight-result-item.collection-item .collection-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    pointer-events: none;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item.collection-item:hover .collection-image img {
    transform: scale(1.05);
  }
  .spotlight-modal .spotlight-results .spotlight-result-item.collection-item .collection-content {
    padding: 1.25rem;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item.collection-item .collection-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-type {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.3rem 0.75rem;
    background-color: #E26D5C;
    color: #fff;
    border-radius: 10rem;
    font-family: "Satoshi Bold";
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-type .iconWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 0.9rem;
    width: 0.9rem;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-type .iconWrapper img {
    height: 100%;
    width: 100%;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-type .iconWrapper svg path,
  .spotlight-modal .spotlight-results .spotlight-result-item .result-type .iconWrapper svg g path {
    fill: currentColor;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-type.topographic {
    background-color: #E9C46A;
    color: #333;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-type.orthophoto {
    background-color: #82DDF0;
    color: #333;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-type.cadastral {
    background-color: #472836;
    color: #fff;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-type.street {
    background-color: #E26D5C;
    color: #fff;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-title {
    font-family: "Satoshi Bold";
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-description {
    font-family: "Satoshi Regular";
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-price {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background-color: rgba(0, 128, 0, 0.1);
    border: 1px solid rgba(0, 128, 0, 0.3);
    color: #008000;
    font-family: "Satoshi Bold";
    font-size: 1rem;
    border-radius: 20px;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-count {
    font-family: "Satoshi Medium";
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.75rem;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-footer .result-actions {
    display: flex;
    gap: 0.5rem;
  }
  .spotlight-modal .spotlight-results .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border: 1.5px solid #dedede;
    background-color: transparent;
    border-radius: 8px;
    font-family: "Satoshi Medium";
    font-size: 0.875rem;
    color: #333;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
  }
  .spotlight-modal .spotlight-results .cta-btn svg {
    flex-shrink: 0;
    stroke: currentColor;
    transition: stroke 0.25s ease;
  }
  .spotlight-modal .spotlight-results .cta-btn:hover {
    border-color: #008000;
    background-color: #008000;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 128, 0, 0.2);
  }
  .spotlight-modal .spotlight-results .cta-btn:active {
    transform: translateY(0);
  }
  .spotlight-modal .spotlight-results .cta-btn.cta-primary {
    background-color: #008000;
    border-color: #008000;
    color: #fff;
  }
  .spotlight-modal .spotlight-results .cta-btn.cta-primary:hover {
    background-color: #006600;
    border-color: #006600;
    box-shadow: 0 6px 16px rgba(0, 128, 0, 0.3);
  }
  .spotlight-modal .spotlight-results .cta-btn.cta-primary-sm {
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
    background-color: #008000;
    border-color: #008000;
    color: #fff;
  }
  .spotlight-modal .spotlight-results .cta-btn.cta-primary-sm:hover {
    background-color: #006600;
  }
  .spotlight-modal .spotlight-results .cta-btn.cta-ghost {
    padding: 0.625rem;
    border-color: #e0e0e0;
  }
  .spotlight-modal .spotlight-results .cta-btn.cta-ghost:hover {
    background-color: #f7f7f7;
    border-color: #008000;
    color: #008000;
    transform: scale(1.05);
  }
  .spotlight-modal .spotlight-results .cta-btn.cta-icon {
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
  }
  .spotlight-modal .spotlight-results .cta-btn.cta-icon-only {
    padding: 0.5rem;
    width: 2.25rem;
    height: 2.25rem;
  }
  .spotlight-modal .spotlight-results .cta-btn.cta-icon-only:hover {
    background-color: #f7f7f7;
    border-color: #008000;
    color: #008000;
    transform: scale(1.08);
  }
  .spotlight-modal .spotlight-results .spotlight-results-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
  }
  .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.125rem 1.375rem;
    background-color: #fff;
    border-radius: 12px;
    cursor: default;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  }
  .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateX(4px);
  }
  .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item:hover .list-item-icon svg {
    stroke: #008000;
  }
  .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .list-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #f7f7f7;
    border-radius: 10px;
    flex-shrink: 0;
  }
  .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .list-item-icon svg {
    stroke: #666;
    transition: stroke 0.3s ease;
  }
  .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .list-item-content {
    flex: 1;
    min-width: 0;
  }
  .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .list-item-content .item-title {
    font-family: "Satoshi Bold";
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .list-item-content .item-subtitle {
    font-family: "Satoshi Regular";
    font-size: 0.875rem;
    color: #666;
  }
  .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .list-item-meta {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    flex-shrink: 0;
  }
  .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .item-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2rem;
    padding: 0 0.75rem;
    background-color: #C7E3C7;
    border-radius: 10rem;
    font-family: "Satoshi Bold";
    font-size: 0.875rem;
    color: #008000;
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
  }
  .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .item-count,
  .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .item-price {
    font-family: "Satoshi Bold";
    font-size: 1rem;
    color: #008000;
    flex-shrink: 0;
  }
  .spotlight-modal .spotlight-results .spotlight-keywords-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1rem 0;
  }
  .spotlight-modal .spotlight-results .spotlight-keywords-cloud .keyword-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background-color: #f7f7f7;
    border: 1.2px solid #dedede;
    border-radius: 10rem;
    font-family: "Satoshi Medium";
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .spotlight-modal .spotlight-results .spotlight-keywords-cloud .keyword-tag .keyword-text {
    font-size: 0.95rem;
    color: #333;
  }
  .spotlight-modal .spotlight-results .spotlight-keywords-cloud .keyword-tag .keyword-count {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    height: 1.5rem;
    padding: 0 0.4rem;
    background-color: #C7E3C7;
    border-radius: 10rem;
    font-size: 0.75rem;
    font-family: "Satoshi Bold";
    color: #008000;
  }
  .spotlight-modal .spotlight-results .spotlight-keywords-cloud .keyword-tag:hover {
    background-color: #C7E3C7;
    border-color: #008000;
    transform: scale(1.05);
  }
  .spotlight-modal .spotlight-results .spotlight-keywords-cloud .keyword-tag:hover .keyword-text {
    color: #008000;
  }
  .spotlight-modal .spotlight-results .spotlight-keywords-cloud .keyword-tag:hover .keyword-count {
    background-color: #008000;
    color: #fff;
  }
  .spotlight-modal .spotlight-results .spotlight-keywords-cloud .keyword-tag.selected {
    background-color: #008000;
    border-color: #008000;
  }
  .spotlight-modal .spotlight-results .spotlight-keywords-cloud .keyword-tag.selected .keyword-text {
    color: #fff;
  }
  .spotlight-modal .spotlight-results .spotlight-keywords-cloud .keyword-tag.selected .keyword-count {
    background-color: #fff;
    color: #008000;
  }
  .spotlight-modal .spotlight-footer {
    padding: 1rem 1.5rem;
    background-color: #f7f7f7;
    border-top: 1px solid #e0e0e0;
    flex-shrink: 0;
  }
  .spotlight-modal .spotlight-shortcuts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  .spotlight-modal .spotlight-shortcuts .shortcut-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .spotlight-modal .spotlight-shortcuts .shortcut-item kbd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    height: 1.75rem;
    padding: 0 0.5rem;
    background-color: #fff;
    border: 1px solid #dedede;
    border-radius: 6px;
    font-family: "Satoshi Bold";
    font-size: 0.85rem;
    color: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }
  .spotlight-modal .spotlight-shortcuts .shortcut-item span {
    font-family: "Satoshi Medium";
    font-size: 0.85rem;
    color: #666;
  }
}
@media (min-width: 1920px) {
  .spotlight-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .spotlight-modal.active {
    opacity: 1;
    pointer-events: all;
  }
  .spotlight-modal .spotlight-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    z-index: 1;
  }
  .spotlight-modal .spotlight-container {
    position: relative;
    width: 90%;
    max-width: 1100px;
    margin-top: 8vh;
    background-color: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 2;
    overflow: hidden;
    transform: scale(0.9);
    opacity: 0;
    display: flex;
    flex-direction: column;
    max-height: 85vh;
  }
  .spotlight-modal .spotlight-header {
    padding: 1.5rem;
    background-color: #fff;
    flex-shrink: 0;
    padding-bottom: 0.5rem;
  }
  .spotlight-modal .spotlight-search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 12px;
    height: 4rem;
    padding: 0 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: box-shadow 0.3s ease;
  }
  .spotlight-modal .spotlight-search-wrapper:focus-within {
    box-shadow: 0 0 0 3px rgba(0, 128, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.12);
  }
  .spotlight-modal .spotlight-search-wrapper .spotlight-search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 2rem;
    width: 2rem;
    flex-shrink: 0;
    margin-right: 0.75rem;
  }
  .spotlight-modal .spotlight-search-wrapper .spotlight-search-icon img {
    height: 100%;
    width: 100%;
    object-fit: contain;
  }
  .spotlight-modal .spotlight-search-wrapper .spotlight-search-input {
    flex: 1;
    height: 100%;
    border: none;
    outline: none;
    font-size: 1.25rem;
    font-family: "Satoshi Medium";
    color: #333;
    background: transparent;
  }
  .spotlight-modal .spotlight-search-wrapper .spotlight-search-input::placeholder {
    color: #999;
  }
  .spotlight-modal .spotlight-search-wrapper .spotlight-close-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border: none;
    background-color: #dc2626;
    border-radius: 8px;
    cursor: pointer;
    color: #fff;
    transition: all 0.2s ease;
    flex-shrink: 0;
  }
  .spotlight-modal .spotlight-search-wrapper .spotlight-close-btn:hover {
    background-color: #b91c1c;
  }
  .spotlight-modal .spotlight-body {
    display: flex;
    flex: 1;
    overflow: hidden;
  }
  .spotlight-modal .spotlight-sidebar {
    width: 250px;
    background-color: #fff;
    padding: 1.5rem 1rem;
    border-right: 1px solid #dedede;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow-y: auto;
    flex-shrink: 0;
  }
  .spotlight-modal .spotlight-sidebar::-webkit-scrollbar {
    width: 6px;
  }
  .spotlight-modal .spotlight-sidebar::-webkit-scrollbar-track {
    background: transparent;
  }
  .spotlight-modal .spotlight-sidebar::-webkit-scrollbar-thumb {
    background: #dedede;
    border-radius: 10px;
  }
  .spotlight-modal .spotlight-sidebar .spotlight-switcher {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    background-color: transparent;
    border: none;
    border-radius: 8px;
    font-family: "Satoshi Medium";
    font-size: 0.95rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    width: 100%;
  }
  .spotlight-modal .spotlight-sidebar .spotlight-switcher svg {
    flex-shrink: 0;
    stroke: #666;
    transition: stroke 0.3s ease;
  }
  .spotlight-modal .spotlight-sidebar .spotlight-switcher span {
    flex: 1;
  }
  .spotlight-modal .spotlight-sidebar .spotlight-switcher:hover {
    background-color: #e8f5e8;
    color: #008000;
  }
  .spotlight-modal .spotlight-sidebar .spotlight-switcher:hover svg {
    stroke: #008000;
  }
  .spotlight-modal .spotlight-sidebar .spotlight-switcher.active {
    background-color: #C7E3C7;
    color: #008000;
    font-family: "Satoshi Bold";
  }
  .spotlight-modal .spotlight-sidebar .spotlight-switcher.active svg {
    stroke: #008000;
  }
  .spotlight-modal .spotlight-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #fff;
    padding-top: 2rem;
  }
  .spotlight-modal .spotlight-filters {
    display: flex;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    overflow-x: auto;
    flex-shrink: 0;
    background-color: #fff;
  }
  .spotlight-modal .spotlight-filters::-webkit-scrollbar {
    height: 4px;
  }
  .spotlight-modal .spotlight-filters::-webkit-scrollbar-track {
    background: transparent;
  }
  .spotlight-modal .spotlight-filters::-webkit-scrollbar-thumb {
    background: #dedede;
    border-radius: 10px;
  }
  .spotlight-modal .spotlight-filters .spotlight-filter-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background-color: #fff;
    border: 1.2px solid #dedede;
    border-radius: 10rem;
    font-family: "Satoshi Medium";
    font-size: 0.95rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
  }
  .spotlight-modal .spotlight-filters .spotlight-filter-btn .iconWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1.2rem;
    width: 1.2rem;
  }
  .spotlight-modal .spotlight-filters .spotlight-filter-btn .iconWrapper svg path {
    fill: #333;
  }
  .spotlight-modal .spotlight-filters .spotlight-filter-btn:hover {
    background-color: #008000;
    color: #fff;
    border-color: #008000;
    box-shadow: 0 2px 8px rgba(0, 128, 0, 0.2);
  }
  .spotlight-modal .spotlight-filters .spotlight-filter-btn:hover .iconWrapper svg path {
    fill: #fff;
  }
  .spotlight-modal .spotlight-filters .spotlight-filter-btn:hover .iconWrapper svg circle,
  .spotlight-modal .spotlight-filters .spotlight-filter-btn:hover .iconWrapper svg line,
  .spotlight-modal .spotlight-filters .spotlight-filter-btn:hover .iconWrapper svg rect {
    stroke: #fff;
  }
  .spotlight-modal .spotlight-filters .spotlight-filter-btn.active {
    background-color: #C7E3C7;
    color: #008000;
    border-color: #008000;
    font-family: "Satoshi Bold";
  }
  .spotlight-modal .spotlight-filters .spotlight-filter-btn.active svg path {
    fill: #008000;
  }
  .spotlight-modal .spotlight-results {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    background-color: #fff;
  }
  .spotlight-modal .spotlight-results::-webkit-scrollbar {
    width: 8px;
  }
  .spotlight-modal .spotlight-results::-webkit-scrollbar-track {
    background: #f7f7f7;
  }
  .spotlight-modal .spotlight-results::-webkit-scrollbar-thumb {
    background: #dedede;
    border-radius: 10px;
  }
  .spotlight-modal .spotlight-results::-webkit-scrollbar-thumb:hover {
    background: #c0c0c0;
  }
  .spotlight-modal .spotlight-results .spotlight-empty-state {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    text-align: center;
  }
  .spotlight-modal .spotlight-results .spotlight-empty-state .empty-state-image {
    width: 300px;
    height: 300px;
    margin-bottom: 0.5rem;
  }
  .spotlight-modal .spotlight-results .spotlight-empty-state .empty-state-text {
    font-family: "Satoshi Medium";
    font-size: 1.1rem;
    color: #666;
  }
  .spotlight-modal .spotlight-results .spotlight-results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 1.25rem;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  }
  .spotlight-modal .spotlight-results .spotlight-result-item:hover {
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-4px);
  }
  .spotlight-modal .spotlight-results .spotlight-result-item.map-result-item {
    padding: 1.25rem;
    cursor: pointer;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item.collection-item {
    padding: 0;
    cursor: default;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item.collection-item .collection-image {
    position: relative;
    height: 140px;
    overflow: hidden;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item.collection-item .collection-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .spotlight-modal .spotlight-results .spotlight-result-item.collection-item .collection-image .image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.4), transparent);
    pointer-events: none;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item.collection-item:hover .collection-image img {
    transform: scale(1.05);
  }
  .spotlight-modal .spotlight-results .spotlight-result-item.collection-item .collection-content {
    padding: 1.25rem;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item.collection-item .collection-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: 1rem;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-type {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.3rem 0.75rem;
    background-color: #E26D5C;
    color: #fff;
    border-radius: 10rem;
    font-family: "Satoshi Bold";
    font-size: 0.75rem;
    margin-bottom: 0.75rem;
    letter-spacing: 0.02em;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-type .iconWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 0.9rem;
    width: 0.9rem;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-type .iconWrapper img {
    height: 100%;
    width: 100%;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-type .iconWrapper svg path,
  .spotlight-modal .spotlight-results .spotlight-result-item .result-type .iconWrapper svg g path {
    fill: currentColor;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-type.topographic {
    background-color: #E9C46A;
    color: #333;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-type.orthophoto {
    background-color: #82DDF0;
    color: #333;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-type.cadastral {
    background-color: #472836;
    color: #fff;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-type.street {
    background-color: #E26D5C;
    color: #fff;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-title {
    font-family: "Satoshi Bold";
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.5rem;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-description {
    font-family: "Satoshi Regular";
    font-size: 0.85rem;
    color: #666;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-price {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background-color: rgba(0, 128, 0, 0.1);
    border: 1px solid rgba(0, 128, 0, 0.3);
    color: #008000;
    font-family: "Satoshi Bold";
    font-size: 1rem;
    border-radius: 20px;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-count {
    font-family: "Satoshi Medium";
    font-size: 0.85rem;
    color: #666;
    margin-top: 0.75rem;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #f0f0f0;
  }
  .spotlight-modal .spotlight-results .spotlight-result-item .result-footer .result-actions {
    display: flex;
    gap: 0.5rem;
  }
  .spotlight-modal .spotlight-results .cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    border: 1.5px solid #dedede;
    background-color: transparent;
    border-radius: 8px;
    font-family: "Satoshi Medium";
    font-size: 0.875rem;
    color: #333;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
  }
  .spotlight-modal .spotlight-results .cta-btn svg {
    flex-shrink: 0;
    stroke: currentColor;
    transition: stroke 0.25s ease;
  }
  .spotlight-modal .spotlight-results .cta-btn:hover {
    border-color: #008000;
    background-color: #008000;
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 128, 0, 0.2);
  }
  .spotlight-modal .spotlight-results .cta-btn:active {
    transform: translateY(0);
  }
  .spotlight-modal .spotlight-results .cta-btn.cta-primary {
    background-color: #008000;
    border-color: #008000;
    color: #fff;
  }
  .spotlight-modal .spotlight-results .cta-btn.cta-primary:hover {
    background-color: #006600;
    border-color: #006600;
    box-shadow: 0 6px 16px rgba(0, 128, 0, 0.3);
  }
  .spotlight-modal .spotlight-results .cta-btn.cta-primary-sm {
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
    background-color: #008000;
    border-color: #008000;
    color: #fff;
  }
  .spotlight-modal .spotlight-results .cta-btn.cta-primary-sm:hover {
    background-color: #006600;
  }
  .spotlight-modal .spotlight-results .cta-btn.cta-ghost {
    padding: 0.625rem;
    border-color: #e0e0e0;
  }
  .spotlight-modal .spotlight-results .cta-btn.cta-ghost:hover {
    background-color: #f7f7f7;
    border-color: #008000;
    color: #008000;
    transform: scale(1.05);
  }
  .spotlight-modal .spotlight-results .cta-btn.cta-icon {
    padding: 0.5rem 0.875rem;
    font-size: 0.8125rem;
  }
  .spotlight-modal .spotlight-results .cta-btn.cta-icon-only {
    padding: 0.5rem;
    width: 2.25rem;
    height: 2.25rem;
  }
  .spotlight-modal .spotlight-results .cta-btn.cta-icon-only:hover {
    background-color: #f7f7f7;
    border-color: #008000;
    color: #008000;
    transform: scale(1.08);
  }
  .spotlight-modal .spotlight-results .spotlight-results-list {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
  }
  .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.125rem 1.375rem;
    background-color: #fff;
    border-radius: 12px;
    cursor: default;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.06);
  }
  .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateX(4px);
  }
  .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item:hover .list-item-icon svg {
    stroke: #008000;
  }
  .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .list-item-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: #f7f7f7;
    border-radius: 10px;
    flex-shrink: 0;
  }
  .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .list-item-icon svg {
    stroke: #666;
    transition: stroke 0.3s ease;
  }
  .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .list-item-content {
    flex: 1;
    min-width: 0;
  }
  .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .list-item-content .item-title {
    font-family: "Satoshi Bold";
    font-size: 1rem;
    color: #333;
    margin-bottom: 0.25rem;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }
  .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .list-item-content .item-subtitle {
    font-family: "Satoshi Regular";
    font-size: 0.875rem;
    color: #666;
  }
  .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .list-item-meta {
    display: flex;
    align-items: center;
    gap: 0.875rem;
    flex-shrink: 0;
  }
  .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .item-count-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    height: 2rem;
    padding: 0 0.75rem;
    background-color: #C7E3C7;
    border-radius: 10rem;
    font-family: "Satoshi Bold";
    font-size: 0.875rem;
    color: #008000;
  }
  .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .item-count,
  .spotlight-modal .spotlight-results .spotlight-results-list .spotlight-list-item .item-price {
    font-family: "Satoshi Bold";
    font-size: 1rem;
    color: #008000;
    flex-shrink: 0;
  }
  .spotlight-modal .spotlight-results .spotlight-keywords-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    padding: 1rem 0;
  }
  .spotlight-modal .spotlight-results .spotlight-keywords-cloud .keyword-tag {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background-color: #f7f7f7;
    border: 1.2px solid #dedede;
    border-radius: 10rem;
    font-family: "Satoshi Medium";
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .spotlight-modal .spotlight-results .spotlight-keywords-cloud .keyword-tag .keyword-text {
    font-size: 0.95rem;
    color: #333;
  }
  .spotlight-modal .spotlight-results .spotlight-keywords-cloud .keyword-tag .keyword-count {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 1.5rem;
    height: 1.5rem;
    padding: 0 0.4rem;
    background-color: #C7E3C7;
    border-radius: 10rem;
    font-size: 0.75rem;
    font-family: "Satoshi Bold";
    color: #008000;
  }
  .spotlight-modal .spotlight-results .spotlight-keywords-cloud .keyword-tag:hover {
    background-color: #C7E3C7;
    border-color: #008000;
    transform: scale(1.05);
  }
  .spotlight-modal .spotlight-results .spotlight-keywords-cloud .keyword-tag:hover .keyword-text {
    color: #008000;
  }
  .spotlight-modal .spotlight-results .spotlight-keywords-cloud .keyword-tag:hover .keyword-count {
    background-color: #008000;
    color: #fff;
  }
  .spotlight-modal .spotlight-results .spotlight-keywords-cloud .keyword-tag.selected {
    background-color: #008000;
    border-color: #008000;
  }
  .spotlight-modal .spotlight-results .spotlight-keywords-cloud .keyword-tag.selected .keyword-text {
    color: #fff;
  }
  .spotlight-modal .spotlight-results .spotlight-keywords-cloud .keyword-tag.selected .keyword-count {
    background-color: #fff;
    color: #008000;
  }
  .spotlight-modal .spotlight-footer {
    padding: 1rem 1.5rem;
    background-color: #f7f7f7;
    border-top: 1px solid #e0e0e0;
    flex-shrink: 0;
  }
  .spotlight-modal .spotlight-shortcuts {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
  }
  .spotlight-modal .spotlight-shortcuts .shortcut-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .spotlight-modal .spotlight-shortcuts .shortcut-item kbd {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2rem;
    height: 1.75rem;
    padding: 0 0.5rem;
    background-color: #fff;
    border: 1px solid #dedede;
    border-radius: 6px;
    font-family: "Satoshi Bold";
    font-size: 0.85rem;
    color: #333;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
  }
  .spotlight-modal .spotlight-shortcuts .shortcut-item span {
    font-family: "Satoshi Medium";
    font-size: 0.85rem;
    color: #666;
  }
  /* ================================
     Details Modal Styles (1920px+)
     ================================ */
  .details-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .details-modal.active {
    opacity: 1;
    pointer-events: all;
  }
  .details-modal .details-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    cursor: pointer;
  }
  .details-modal .details-container {
    position: relative;
    width: 90%;
    max-width: 500px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    scale: 0.85 !important;
    z-index: 10;
  }
  .details-modal .details-close-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #dc2626;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
  }
  .details-modal .details-close-btn svg {
    stroke: #fff;
    width: 20px;
    height: 20px;
  }
  .details-modal .details-close-btn:hover {
    background-color: #b91c1c;
    transform: scale(1.05);
    box-shadow: 0 4px 12px rgba(220, 38, 38, 0.4);
  }
  .details-modal .details-content {
    padding: 0.5rem;
  }
  .details-modal .details-image-wrapper {
    width: 100%;
    height: 180px;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 1.5rem;
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .details-modal .details-map-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .details-modal .details-map-image:hover {
    transform: scale(1.05);
  }
  .details-modal .details-title {
    font-family: "Satoshi Bold";
    font-size: 1.5rem;
    color: #1a1a1a;
    margin-bottom: 1rem;
    text-align: center;
  }
  .details-modal .details-description {
    font-family: "Satoshi Regular";
    font-size: 0.9rem;
    line-height: 1.6;
    color: #6b7280;
    text-align: center;
    margin-bottom: 1.75rem;
    padding: 0 1rem;
  }
  .details-modal .details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
  .details-modal .detail-item {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .details-modal .detail-item:hover {
    background: #f0fdf4;
    border-color: #C7E3C7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 128, 0, 0.1);
  }
  .details-modal .detail-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #C7E3C7;
    border-radius: 10px;
    flex-shrink: 0;
  }
  .details-modal .detail-icon svg {
    width: 24px;
    height: 24px;
    stroke: #008000;
  }
  .details-modal .detail-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 0.25rem;
  }
  .details-modal .detail-label {
    font-family: "Satoshi Medium";
    font-size: 0.75rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
  }
  .details-modal .detail-value {
    font-family: "Satoshi Bold";
    font-size: 1rem;
    color: #1a1a1a;
  }
  .details-modal .detail-value.detail-price {
    color: #008000;
    font-size: 1.125rem;
  }
  .details-modal .detail-item-price:hover {
    background: #f0fdf4;
    border-color: #C7E3C7;
  }
  .details-modal .details-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 1rem 1rem;
    margin-top: 1rem;
  }
  .details-modal .details-buy-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 0.875rem 2rem;
    background: linear-gradient(135deg, #008000 0%, #00B050 100%);
    border: none;
    border-radius: 10px;
    font-family: "Satoshi Bold";
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(0, 128, 0, 0.2);
    width: 100%;
    max-width: 300px;
  }
  .details-modal .details-buy-btn svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    stroke: currentColor;
  }
  .details-modal .details-buy-btn:hover {
    background: linear-gradient(135deg, #006600 0%, #008000 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 128, 0, 0.35);
  }
  .details-modal .details-buy-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 128, 0, 0.2);
  }
  .bannerContainerMain {
    height: 65dvh;
    width: 100%;
    position: relative;
  }
  .bannerContainerMain .switcherMainWrapper {
    display: flex;
    height: 3rem;
    width: fit-content;
    padding: 0 0.2rem;
    align-items: center;
    gap: 1rem;
    z-index: 3;
    position: absolute;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
  }
  .bannerContainerMain .switcherMainWrapper .active {
    background-color: #008000 !important;
    color: #fff !important;
    font-family: "Satoshi Bold";
  }
  .bannerContainerMain .switcherMainWrapper a {
    height: 90%;
    padding: 0 1rem;
    gap: 0.5rem;
    font-family: "Satoshi Medium";
    border: 1.2px solid rgba(133, 133, 133, 0.2117647059);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    background-color: white;
    color: rgba(51, 51, 51, 0.662745098);
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
    text-decoration: none;
  }
  .bannerContainerMain .switcherMainWrapper a:hover {
    background-color: #003100;
    color: #fff;
    border: 1.2px solid white;
    scale: 1.1;
    font-size: 0.9rem !important;
    border-radius: 10rem;
  }
  .bannerContainerMain .switcherMainWrapper a:hover svg path {
    fill: #fff !important;
    fill-opacity: 1 !important;
  }
  .bannerContainerMain .switcherMainWrapper a span {
    display: flex;
    height: 1.2rem;
    width: 1.2rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  .bannerContainerMain .bannerImage {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  .bannerContainerMain .bannerImage::after {
    position: absolute;
    content: "";
    height: 100%;
    width: 60%;
    background: linear-gradient(to right, #fff 0%, rgba(255, 255, 255, 0) 100%);
    top: 0;
    left: 0;
  }
  .bannerContainerMain .bannerImage img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transform: translateY(-2vh);
    object-position: bottom;
  }
  .bannerContainerMain .bannerContentContainer {
    position: absolute;
    top: 10%;
    left: 10rem;
    width: 90%;
    max-width: fit-content;
  }
  .bannerContainerMain .bannerContentContainer .switcherMainWrapper {
    display: flex;
    height: 3rem;
    width: fit-content;
    padding: 0 0.2rem;
    align-items: center;
    gap: 0.5rem;
    background-color: #f7f7f7;
    border-radius: 10rem;
    border: 1.2px solid #dedede;
  }
  .bannerContainerMain .bannerContentContainer .switcherMainWrapper .active {
    background-color: #008000 !important;
    color: #fff !important;
    font-family: "Satoshi Bold";
  }
  .bannerContainerMain .bannerContentContainer .switcherMainWrapper button {
    height: 90%;
    padding: 0 1rem;
    gap: 0.5rem;
    font-family: "Satoshi Medium";
    border: 1.2px solid rgba(133, 133, 133, 0.2117647059);
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: white;
    color: rgba(51, 51, 51, 0.662745098);
    border-radius: 10rem;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  .bannerContainerMain .bannerContentContainer .switcherMainWrapper button:hover {
    background-color: #003100;
    color: #fff;
  }
  .bannerContainerMain .bannerContentContainer .switcherMainWrapper button:hover svg path {
    fill: #fff !important;
    fill-opacity: 1 !important;
  }
  .bannerContainerMain .bannerContentContainer .switcherMainWrapper button span {
    display: flex;
    height: 1.2rem;
    width: 1.2rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  .bannerContainerMain .bannerContentContainer .contentWrapper {
    margin-top: 1rem;
  }
  .bannerContainerMain .bannerContentContainer .contentWrapper .mainHeading {
    width: fit-content;
    color: #008000;
    font-size: 3.5rem;
    font-family: "Satoshi Black";
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-inline: unset !important;
  }
  .bannerContainerMain .bannerContentContainer .contentWrapper .mainHeading .logoContainer {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4rem;
    width: 4rem;
  }
  .bannerContainerMain .bannerContentContainer .contentWrapper .mainHeading .logoContainer img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
  .bannerContainerMain .bannerContentContainer .contentWrapper .descriptionText {
    font-size: 1rem;
    width: 60%;
    color: #333;
    margin-top: 0.5rem;
    font-family: "Satoshi Bold";
  }
  .bannerContainerMain .bannerContentContainer .contentWrapper .searchWrapper {
    margin-top: 2rem;
    height: calc(3.5rem + 4px);
    position: relative;
    width: 60%;
    display: flex;
    align-items: center !important;
    justify-content: center;
    border-radius: 6px;
    padding: 2px;
    background: #f7f7f7;
    border: 2px solid #d3d3d3 !important;
    overflow: hidden;
  }
  .bannerContainerMain .bannerContentContainer .contentWrapper .searchWrapper::before {
    content: "";
    position: absolute;
    inset: -50%;
    background: conic-gradient(from 0deg, transparent 0%, transparent 60%, #008000 70%, #00B050 80%, #69f0ae 85%, #00B050 90%, #008000 95%, transparent 100%);
    animation: borderBeam 3s linear infinite;
  }
  .bannerContainerMain .bannerContentContainer .contentWrapper .searchWrapper .searchIcon {
    position: absolute;
    top: 50%;
    left: calc(0.5rem + 2px);
    transform: translateY(-50%);
    height: 2rem;
    width: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    z-index: 3;
  }
  .bannerContainerMain .bannerContentContainer .contentWrapper .searchWrapper ::placeholder {
    font-size: 1rem;
    font-family: "Satoshi Medium";
  }
  .bannerContainerMain .bannerContentContainer .contentWrapper .searchWrapper input {
    height: 96%;
    width: 99.5%;
    padding-left: 4rem;
    border: none;
    background-color: #fff;
    border-radius: 4px;
    font-size: 1rem;
    font-family: "Satoshi Medium";
    outline: none;
    transition: box-shadow 0.3s ease;
    position: relative;
    z-index: 2;
  }
  .bannerContainerMain .bannerContentContainer .contentWrapper .searchWrapper input:focus {
    box-shadow: 0 0 0 0.35rem rgba(0, 128, 0, 0.253);
  }
  .bannerContainerMain .bannerContentContainer .filterBtn {
    position: absolute;
    right: 0.5rem;
    height: 2.8rem;
    width: 2.8rem;
    background-color: #008000;
    border: none;
    border-radius: 4px;
    top: 50%;
    cursor: pointer;
    z-index: 2;
    transform: translateY(-50%);
    animation: shimmerGlow 3s ease-in-out infinite;
  }
  .bannerContainerMain .bannerContentContainer .filterBtn:hover {
    background-color: #006600;
    box-shadow: 0 0 20px rgba(0, 128, 0, 0.6);
  }
  .bannerContainerMain .bannerBackgroundImage {
    display: flex;
    height: 100%;
    width: 100%;
    position: relative;
  }
  .bannerContainerMain .bannerBackgroundImage img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: bottom;
  }
  .displayMaps {
    margin-top: 2rem;
  }
  .displayMaps .filterTopTab {
    width: 90%;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0;
    height: 3rem;
    display: flex;
    align-items: center;
    display: flex;
    justify-content: space-between;
  }
  .displayMaps .filterTopTab .filterCategory {
    height: 100%;
  }
  .displayMaps .filterTopTab .filterCategory .switcherWrapper {
    display: flex;
    height: 100%;
    gap: 1rem;
  }
  .displayMaps .filterTopTab .filterCategory .switcherWrapper button {
    height: 100%;
    font-family: "Satoshi Medium";
    border: 1.2px solid #dedede;
    color: #333;
    background: #f7f7f7;
    padding: 0 1rem;
    cursor: pointer;
    border-radius: 4px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease-in-out;
  }
  .displayMaps .filterTopTab .filterCategory .switcherWrapper button:hover {
    background-color: #008000;
    color: #fff;
  }
  .displayMaps .filterTopTab .filterCategory .switcherWrapper button .iconWrapper {
    display: flex;
    height: 1.2rem;
    width: 1.2rem;
    align-items: center;
    justify-content: center;
  }
  .displayMaps .filterTopTab .filterCategory .switcherWrapper button .iconWrapper .mostPopular path {
    fill: #333 !important;
  }
  .displayMaps .filterTopTab .filterCategory .switcherWrapper button .iconWrapper .topRated path {
    fill: #333 !important;
  }
  .displayMaps .filterTopTab .filterCategory .switcherWrapper .activeBtn {
    background-color: #C7E3C7 !important;
    color: #008000 !important;
    border: 1.2px solid #008000 !important;
    font-family: "Satoshi Bold";
  }
  .displayMaps .filterTopTab .filterView {
    background-color: #fff;
    border: 1.2px solid rgba(51, 51, 51, 0.2);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0 0.2rem;
    border-radius: 10rem;
  }
  .displayMaps .filterTopTab .filterView button {
    height: 90%;
    border-radius: 10rem;
    border: 1.2px solid #f7f7f7;
    padding: 0 1rem;
    color: #333;
    gap: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-family: "Satoshi Medium";
    cursor: pointer;
  }
  .displayMaps .filterTopTab .filterView button span {
    display: flex;
    height: 1.2rem;
    width: 1.2rem;
  }
  .displayMaps .filterTopTab .filterView .active {
    background-color: #C7E3C7;
    color: #008000;
    font-family: "Satoshi Bold";
    border: 1.2px solid #008000;
  }
  .viewContainer {
    width: 90%;
    max-width: 1600px;
    margin: 2rem auto;
  }
  .viewContainer .cardWrapper {
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
  }
  .viewContainer .cardWrapper.table-view {
    flex-direction: column;
    gap: 1.5rem;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer {
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: row;
    height: auto;
    overflow: hidden;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer .cardHeader {
    width: 200px;
    min-width: 200px;
    height: 180px;
    border-radius: 10px 0 0 10px;
    border-top-right-radius: 0;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer .cardHeader .headerCardBackground::after {
    background: none;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer .cardHeader .headerCardBackground img {
    border-radius: 10px 0 0 10px;
    border-top-right-radius: 0;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer .cardHeader .topTags {
    position: absolute;
    top: 1rem;
    left: 1rem;
    width: auto;
    flex-direction: column;
    gap: 0.5rem;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer .cardHeader .topTags .typeTag {
    width: fit-content;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer .cardHeader .topTags .previewBtn {
    display: none;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer .cardHeader .priceTag {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: auto;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer .cardMainContent {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 1.5rem;
    width: auto;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer .cardMainContent .cardMainHeading {
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer .cardMainContent .cardDescription {
    margin-top: 0;
    margin-bottom: 1rem;
    -webkit-line-clamp: 2;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer .cardMainContent .cardTagsWrapper {
    margin-top: 0.75rem;
    margin-bottom: 0.75rem;
  }
  .viewContainer .cardWrapper.table-view .mapCardContainer .cardMainContent .cardCTABtns {
    margin-top: auto;
    justify-content: flex-start;
  }
  .viewContainer .mapCardContainer {
    width: 25rem;
    border-radius: 10px;
    background-color: #f7f7f7;
    position: relative;
  }
  .viewContainer .mapCardContainer .headerCardBackground {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
  }
  .viewContainer .mapCardContainer .headerCardBackground::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    height: 50%;
    width: 100%;
    background: linear-gradient(to top, #f7f7f7 0%, rgba(255, 255, 255, 0) 100%);
  }
  .viewContainer .mapCardContainer .headerCardBackground img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .viewContainer .mapCardContainer .cardHeader {
    display: flex;
    height: 15rem;
    flex-direction: column;
    background-color: #dedede;
    position: relative;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
  }
  .viewContainer .mapCardContainer .cardHeader .priceTag {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background-color: rgba(0, 128, 0, 0.63);
    border: 1.2px solid rgba(0, 128, 0, 0.5215686275);
    color: #fff;
    font-size: 1.1rem;
    font-family: "Satoshi Bold";
    display: flex;
    padding: 0.2rem 1rem;
    border-radius: 10rem;
    align-items: center;
    justify-content: center;
  }
  .viewContainer .mapCardContainer .cardHeader .topTags {
    position: relative;
    width: 90%;
    margin-inline: auto;
    justify-content: space-between;
    display: flex;
    margin-top: 1rem;
    z-index: 2;
  }
  .viewContainer .mapCardContainer .cardHeader .topTags .typeTag {
    height: fit-content;
    background-color: #E26D5C;
    padding: 0 0.5rem;
    height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10rem;
    gap: 0.2rem;
  }
  .viewContainer .mapCardContainer .cardHeader .topTags .typeTag span {
    height: 1rem;
    width: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  .viewContainer .mapCardContainer .cardHeader .topTags .typeTag p {
    font-family: "Satoshi Bold";
    font-size: 0.85rem;
    color: #fff;
  }
  .viewContainer .mapCardContainer .cardHeader .topTags .previewBtn {
    background-color: #D9E8D9;
    display: flex;
    height: 2rem;
    width: 2rem;
    border: none;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease-in-out;
  }
  .viewContainer .mapCardContainer .cardHeader .topTags .previewBtn:hover {
    background-color: #008000;
  }
  .viewContainer .mapCardContainer .cardHeader .topTags .previewBtn:hover .previewIcon path {
    fill: white;
  }
  .viewContainer .mapCardContainer .cardHeader .topTags .previewBtn .previewIconWrapper {
    display: flex;
    height: 1.2rem;
    width: 1.2rem;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
  }
  .viewContainer .mapCardContainer .cardHeader .topTags .previewBtn .previewIconWrapper .previewIcon {
    height: 100%;
    width: 100%;
  }
  .viewContainer .mapCardContainer .cardMainContent {
    margin: 1rem auto;
    width: 90%;
  }
  .viewContainer .mapCardContainer .cardMainContent .cardMainHeading {
    font-size: 1.3rem;
    color: #333;
    font-family: "Satoshi Bold";
  }
  .viewContainer .mapCardContainer .cardMainContent .cardDescription {
    font-family: "Satoshi Medium";
    margin-top: 1rem;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
  }
  .viewContainer .mapCardContainer .cardMainContent .cardCTABtns {
    display: flex;
    margin-top: 2rem;
    gap: 1rem;
    height: 2.5rem;
    align-items: center;
    justify-content: center;
    width: fit-content;
  }
  .viewContainer .mapCardContainer .cardMainContent .cardCTABtns a {
    text-decoration: none;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
  }
  .viewContainer .mapCardContainer .cardMainContent .cardCTABtns a span {
    height: 1.2rem;
    width: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .viewContainer .mapCardContainer .cardMainContent .cardCTABtns a span > svg {
    height: 100%;
    width: 100%;
  }
  .viewContainer .mapCardContainer .cardMainContent .cardCTABtns .buyNowBtn {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 1rem;
    background-color: #008000;
    border-radius: 4px;
    color: #fff;
    font-family: "Satoshi Bold";
    transition: all 0.3s ease-in-out;
  }
  .viewContainer .mapCardContainer .cardMainContent .cardCTABtns .buyNowBtn:hover {
    background: #003100;
    border-radius: 10rem;
  }
  .viewContainer .mapCardContainer .cardMainContent .cardCTABtns .detailsBtn {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 0 1rem;
    background-color: white;
    border-radius: 4px;
    color: #333;
    font-family: "Satoshi Bold";
    transition: all 0.3s ease-in-out;
  }
  .viewContainer .mapCardContainer .cardMainContent .cardCTABtns .detailsBtn:hover {
    background-color: #d4d4d4;
    border-radius: 10rem;
  }
  .viewContainer .mapCardContainer .cardMainContent .cardTagsWrapper {
    margin-top: 1rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }
  .viewContainer .mapCardContainer .cardMainContent .cardTagsWrapper > div {
    background-color: #C7E3C7;
    color: #008000;
    height: 1.5rem;
    padding: 0 0.8rem;
    display: flex;
    gap: 0.5rem;
    align-items: center;
    justify-content: center;
    border-radius: 10rem;
  }
  .viewContainer .mapCardContainer .cardMainContent .cardTagsWrapper > div p {
    font-family: "Satoshi Bold";
    font-size: 0.75rem;
  }
  .topographic .topTags .typeTag {
    background-color: #E9C46A !important;
  }
  .topographic .topTags .typeTag p {
    color: #333 !important;
  }
  .orthophoto .topTags .typeTag {
    background-color: #82DDF0 !important;
  }
  .orthophoto .topTags .typeTag p {
    color: #333 !important;
  }
  .cadastral .topTags .typeTag {
    background-color: #472836 !important;
  }
  /* ================================
     Table View Styles
     ================================ */
  .table-view-container {
    width: 100%;
    overflow-x: auto;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  .table-view-container .maps-table {
    width: 100%;
    border-collapse: collapse;
    font-family: "Satoshi Regular";
  }
  .table-view-container .maps-table thead {
    background: #f9fafb;
    border-bottom: 2px solid #e5e7eb;
  }
  .table-view-container .maps-table thead tr th {
    padding: 1rem 1.25rem;
    text-align: left;
    font-family: "Satoshi Bold";
    font-size: 0.875rem;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    white-space: nowrap;
  }
  .table-view-container .maps-table tbody tr {
    border-bottom: 1px solid #e5e7eb;
    transition: background-color 0.2s ease;
  }
  .table-view-container .maps-table tbody tr:hover {
    background-color: #f9fafb;
  }
  .table-view-container .maps-table tbody tr:last-child {
    border-bottom: none;
  }
  .table-view-container .maps-table tbody tr td {
    padding: 0.6rem 1.25rem;
    vertical-align: middle;
  }
  .table-view-container .maps-table .table-image-cell {
    width: 80px;
  }
  .table-view-container .maps-table .table-image-cell img {
    width: 60px;
    height: 44px;
    object-fit: cover;
    border-radius: 6px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }
  .table-view-container .maps-table .table-title-cell {
    font-family: "Satoshi Bold";
    font-size: 1rem;
    color: #1a1a1a;
    min-width: 180px;
  }
  .table-view-container .maps-table .table-description-cell {
    font-size: 0.875rem;
    color: #6b7280;
    max-width: 300px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .table-view-container .maps-table .table-type-cell .type-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.375rem 0.75rem;
    background-color: #E26D5C;
    color: #fff;
    font-family: "Satoshi Bold";
    font-size: 0.75rem;
    border-radius: 20px;
    white-space: nowrap;
  }
  .table-view-container .maps-table .table-type-cell .type-badge .iconWrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 1rem;
    width: 1rem;
  }
  .table-view-container .maps-table .table-type-cell .type-badge .iconWrapper svg {
    width: 100%;
    height: 100%;
  }
  .table-view-container .maps-table .table-type-cell .type-badge.topographic {
    background-color: #E9C46A;
    color: #333;
  }
  .table-view-container .maps-table .table-type-cell .type-badge.orthophoto {
    background-color: #82DDF0;
    color: #333;
  }
  .table-view-container .maps-table .table-type-cell .type-badge.cadastral {
    background-color: #472836;
    color: #fff;
  }
  .table-view-container .maps-table .table-scale-cell,
  .table-view-container .maps-table .table-format-cell {
    font-size: 0.875rem;
    color: #4b5563;
    white-space: nowrap;
  }
  .table-view-container .maps-table .table-price-cell .price-badge {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background-color: rgba(0, 128, 0, 0.1);
    border: 1px solid rgba(0, 128, 0, 0.3);
    color: #008000;
    font-family: "Satoshi Bold";
    font-size: 0.9rem;
    border-radius: 20px;
    white-space: nowrap;
  }
  .table-view-container .maps-table .table-actions-cell {
    white-space: nowrap;
  }
  .table-view-container .maps-table .table-actions-cell .actions-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: flex-start;
  }
  .table-view-container .maps-table .table-actions-cell .table-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    padding: 0.5rem 0.875rem;
    border: none;
    border-radius: 6px;
    font-family: "Satoshi Bold";
    font-size: 0.875rem;
    background: #fff;
    color: #333;
    cursor: pointer;
    transition: all 0.2s ease;
  }
  .table-view-container .maps-table .table-actions-cell .table-btn svg {
    width: 16px;
    height: 16px;
  }
  .table-view-container .maps-table .table-actions-cell .table-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  }
  .table-view-container .maps-table .table-actions-cell .table-btn.buy-btn {
    background-color: #008000;
    color: #fff;
  }
  .table-view-container .maps-table .table-actions-cell .table-btn.buy-btn:hover {
    background-color: #003100;
    box-shadow: 0 2px 8px rgba(0, 128, 0, 0.3);
  }
  .table-view-container .maps-table .table-actions-cell .table-btn.details-btn-table {
    background-color: #fff;
    color: #333;
  }
  .table-view-container .maps-table .table-actions-cell .table-btn.details-btn-table:hover {
    background-color: #d4d4d4;
  }
  .pagination-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    padding: 2rem 1.5rem;
    margin-top: 2rem;
  }
  .pagination-container .pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background-color: #fff;
    border: 1.5px solid #dedede;
    border-radius: 8px;
    font-family: "Satoshi Bold";
    font-size: 0.9rem;
    color: #333;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  .pagination-container .pagination-btn svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
  }
  .pagination-container .pagination-btn:hover:not(:disabled) {
    background-color: #008000;
    border-color: #008000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 128, 0, 0.2);
  }
  .pagination-container .pagination-btn:hover:not(:disabled) svg {
    stroke: #fff;
  }
  .pagination-container .pagination-btn:hover:not(:disabled).prev-btn svg {
    transform: translateX(-3px);
  }
  .pagination-container .pagination-btn:hover:not(:disabled).next-btn svg {
    transform: translateX(3px);
  }
  .pagination-container .pagination-btn:disabled {
    opacity: 0.4;
    cursor: not-allowed;
    background-color: #f5f5f5;
  }
  .pagination-container .pagination-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: "Satoshi Medium";
    font-size: 1rem;
    color: #333;
  }
  .pagination-container .pagination-info .current-page {
    font-family: "Satoshi Bold";
    color: #008000;
    font-size: 1.1rem;
  }
  .pagination-container .pagination-info .page-separator {
    color: #999;
  }
  .pagination-container .pagination-info .total-pages {
    color: #666;
  }
  .pagination-container.table-pagination {
    padding-top: 1.5rem;
    margin-top: 0;
    border-top: 1px solid #dedede;
  }
}
@media (min-width: 1920px) and (max-width: 1024px) {
  .table-view-container .maps-table .table-description-cell {
    max-width: 200px;
  }
}
@media (min-width: 1920px) {
  td.table-description-cell {
    transform: translateY(-1.5rem);
  }
}
#spotlightLoader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#spotlightLoader.active {
  opacity: 1;
  pointer-events: all;
}
#spotlightLoader .spotlight-loader-spinner {
  width: 2.5rem;
  height: 2.5rem;
  border: 3px solid #e0e0e0;
  border-top-color: #008000;
  border-radius: 50%;
  animation: spotlightSpin 0.8s linear infinite;
}
#spotlightLoader .spotlight-loader-text {
  font-family: "Satoshi Medium";
  font-size: 0.875rem;
  color: #666;
}

@keyframes spotlightSpin {
  to {
    transform: rotate(360deg);
  }
}
#spotlightFilterBadge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.3rem 0.35rem 0.3rem 0.6rem;
  margin-bottom: 0.75rem;
  background-color: #f0faf0;
  border: 1px solid rgba(0, 128, 0, 0.25);
  border-radius: 100px;
  width: fit-content;
  animation: badgeSlideIn 0.3s ease;
}
#spotlightFilterBadge .filter-badge-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  opacity: 0.7;
}
#spotlightFilterBadge .filter-badge-text {
  font-family: "Satoshi Regular";
  font-size: 0.78rem;
  color: #555;
  white-space: nowrap;
}
#spotlightFilterBadge .filter-badge-text strong {
  font-family: "Satoshi Bold";
  color: #008000;
}
#spotlightFilterBadge .filter-badge-clear {
  display: inline-flex;
  align-items: center;
  gap: 0.2rem;
  padding: 0.2rem 0.55rem;
  background-color: rgba(0, 128, 0, 0.08);
  border: none;
  border-radius: 100px;
  font-family: "Satoshi Medium";
  font-size: 0.72rem;
  color: #555;
  cursor: pointer;
  transition: all 0.15s ease;
  flex-shrink: 0;
  margin-left: 0.1rem;
}
#spotlightFilterBadge .filter-badge-clear:hover {
  background-color: #fee2e2;
  color: #dc2626;
}
#spotlightFilterBadge .filter-badge-clear:hover svg path {
  stroke: #dc2626;
}

@keyframes badgeSlideIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.nav-items {
  margin-bottom: 0 !important;
}

/* ================================
   Maps Table — Mobile Responsive
   (declared at root scope to avoid
   nesting inside parent media queries)
   ================================ */
@media (max-width: 768px) {
  .table-view-container {
    background: transparent;
    box-shadow: none;
    border-radius: 0;
    overflow-x: visible;
  }
  .table-view-container .maps-table {
    display: block;
    border-collapse: separate;
    border-spacing: 0;
    table-layout: auto;
    width: 100%;
    font-family: "Satoshi Regular";
  }
  .table-view-container .maps-table thead {
    display: none;
  }
  .table-view-container .maps-table tbody {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
  }
  .table-view-container .maps-table tbody tr {
    display: grid;
    grid-template-columns: 60px 1fr auto;
    grid-template-areas: "image title price" "image type  price" "actions actions actions";
    column-gap: 0.75rem;
    row-gap: 0.25rem;
    padding: 0.625rem;
    background: #fff;
    border-radius: 10px;
    border: 1px solid #ececef;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
    margin-bottom: 0;
  }
  .table-view-container .maps-table tbody tr:hover {
    background: #fff;
  }
  .table-view-container .maps-table tbody tr td {
    padding: 0;
    border: none;
    vertical-align: top;
  }
  .table-view-container .maps-table tbody tr td::before {
    content: none;
  }
  .table-view-container .maps-table tbody tr .table-image-cell {
    grid-area: image;
    width: 60px;
  }
  .table-view-container .maps-table tbody tr .table-image-cell img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.06);
  }
  .table-view-container .maps-table tbody tr .table-title-cell {
    grid-area: title;
    font-family: "Satoshi Bold";
    font-size: 0.875rem;
    line-height: 1.2;
    color: #1a1a1a;
    min-width: 0;
    max-width: 100%;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    word-break: break-word;
    align-self: start;
  }
  .table-view-container .maps-table tbody tr .table-description-cell {
    max-width: 100%;
    grid-column: 2/-1;
    transform: none;
  }
  .table-view-container .maps-table tbody tr .table-type-cell {
    grid-area: type;
    align-self: end;
  }
  .table-view-container .maps-table tbody tr .table-type-cell .type-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-family: "Satoshi Bold";
    font-size: 0.62rem;
    line-height: 1;
    padding: 0.22rem 0.5rem;
    border-radius: 999px;
    background-color: #E26D5C;
    color: #fff;
    white-space: nowrap;
  }
  .table-view-container .maps-table tbody tr .table-type-cell .type-badge .iconWrapper {
    width: 0.85rem;
    height: 0.85rem;
    display: inline-flex;
  }
  .table-view-container .maps-table tbody tr .table-type-cell .type-badge .iconWrapper svg {
    width: 100%;
    height: 100%;
  }
  .table-view-container .maps-table tbody tr .table-type-cell .type-badge.topographic {
    background-color: #E9C46A;
    color: #333;
  }
  .table-view-container .maps-table tbody tr .table-type-cell .type-badge.orthophoto {
    background-color: #82DDF0;
    color: #333;
  }
  .table-view-container .maps-table tbody tr .table-type-cell .type-badge.cadastral {
    background-color: #472836;
    color: #fff;
  }
  .table-view-container .maps-table tbody tr .table-price-cell {
    grid-area: price;
    justify-self: end;
    align-self: start;
  }
  .table-view-container .maps-table tbody tr .table-price-cell .price-badge {
    display: inline-block;
    font-family: "Satoshi Bold";
    font-size: 0.78rem;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
    background-color: rgba(0, 128, 0, 0.08);
    border: 1px solid rgba(0, 128, 0, 0.25);
    color: #008000;
    white-space: nowrap;
  }
  .table-view-container .maps-table tbody tr .table-format-cell {
    display: none;
  }
  .table-view-container .maps-table tbody tr .table-actions-cell {
    grid-area: actions;
    margin-top: 0.25rem;
    padding-top: 0.5rem;
    border-top: 1px solid #f1f1f4;
  }
  .table-view-container .maps-table tbody tr .table-actions-cell .actions-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    width: 100%;
  }
  .table-view-container .maps-table tbody tr .table-actions-cell .table-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.3rem;
    width: fit-content;
    font-family: "Satoshi Bold";
    font-size: 0.75rem;
    line-height: 1;
    padding: 0.55rem 1rem;
    border-radius: 7px;
    border: none;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.2s ease, color 0.2s ease;
  }
  .table-view-container .maps-table tbody tr .table-actions-cell .table-btn:hover {
    transform: none;
    box-shadow: none;
  }
  .table-view-container .maps-table tbody tr .table-actions-cell .table-btn.buy-btn {
    background-color: #008000;
    color: #fff;
  }
  .table-view-container .maps-table tbody tr .table-actions-cell .table-btn.buy-btn:hover {
    background-color: #006600;
  }
  .table-view-container .maps-table tbody tr .table-actions-cell .table-btn.details-btn-table {
    background-color: #f4f4f6;
    color: #333;
    border: 1px solid #e5e7eb;
  }
  .table-view-container .maps-table tbody tr .table-actions-cell .table-btn.details-btn-table:hover {
    background-color: #e8e8ea;
  }
  .pagination-container.table-pagination {
    gap: 0.75rem;
    padding: 1rem 0.5rem;
    border-top: none;
  }
  .pagination-container.table-pagination .pagination-btn {
    padding: 0.5rem 0.85rem;
    font-family: "Satoshi Bold";
    font-size: 0.78rem;
  }
  .pagination-container.table-pagination .pagination-btn svg {
    width: 16px;
    height: 16px;
  }
  .pagination-container.table-pagination .pagination-info {
    font-family: "Satoshi Medium";
    font-size: 0.78rem;
  }
}
@media (max-width: 480px) {
  .table-view-container .maps-table tbody tr {
    grid-template-columns: 52px 1fr auto;
    column-gap: 0.625rem;
    padding: 0.55rem;
  }
  .table-view-container .maps-table tbody tr .table-image-cell,
  .table-view-container .maps-table tbody tr .table-image-cell img {
    width: 52px;
    height: 52px;
  }
  .table-view-container .maps-table tbody tr .table-title-cell {
    font-size: 0.83rem;
  }
  .table-view-container .maps-table tbody tr .table-actions-cell .table-btn {
    padding: 0.5rem 1rem;
    font-size: 0.72rem;
  }
}
