@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap");

/* ---------------- Basic css ------------------ */
:root {
  scroll-behavior: smooth;
  --white: #ffffff;
  --black: #000000;
  --default: #222222;
  --muted: #879590;
  --accent: #13a25d;
  --accentDark: #036a38;
  --lightBorder: #f1f4f3;

  --white_img: brightness(0) saturate(100%) invert(99%) sepia(0%)
    saturate(7498%) hue-rotate(67deg) brightness(112%) contrast(100%);
  --black_img: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(16%);

  --primaryfont: "Manrope", sans-serif;

  --menuHeight: 8rem;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
}

html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
strong,
i,
ol,
ul,
li,
form,
label,
footer,
header,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}

ol,
ul {
  list-style: none;
}

a {
  text-decoration: none !important;
  transition: 200ms;
  color: inherit;
}

.f-right {
  float: right;
}
button:focus,
a:focus,
input:focus,
textarea:focus {
  outline: none;
}

img {
  width: 100%;
}

button {
  background: none;
  border: none;
  outline: none;
  padding: 0;
}

/* body */
body {
  font-size: 1.8rem;
  line-height: 1.45;
  font-weight: 400;
  color: #879590;
  overflow-x: hidden;
  font-family: var(--primaryfont);
  background: var(--white);
}

.container {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  margin: 0 auto;
}

main {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.figure img,
.figure {
  width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--primaryfont);
  font-weight: 700;
}

/* image colros */
.white_img {
  -webkit-filter: brightness(0) saturate(100%) invert(99%) sepia(0%)
    saturate(7498%) hue-rotate(67deg) brightness(112%) contrast(100%);
  filter: brightness(0) saturate(100%) invert(99%) sepia(0%) saturate(7498%)
    hue-rotate(67deg) brightness(112%) contrast(100%);
}
.black_img {
  -webkit-filter: brightness(0) saturate(100%) invert(0%) sepia(0%)
    saturate(16%) hue-rotate(309deg) brightness(93%) contrast(107%);
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(16%)
    hue-rotate(309deg) brightness(93%) contrast(107%);
}

/* text colors */
.text_default {
  color: var(--default) !important;
}

.text_black {
  color: var(--black) !important;
}

.text_muted {
  color: var(--muted) !important;
}

.text_accent {
  color: var(--accent) !important;
}

.text_lightBorder {
  color: var(--lightBorder) !important;
}

.text_accentDark {
  color: var(--accentDark) !important;
}

.text_white {
  color: var(--white) !important;
}

/* bg colors */
.bg_default {
  background-color: var(--default) !important;
}

.bg_black {
  background-color: var(--black) !important;
}

.bg_muted {
  background-color: var(--muted) !important;
}

.bg_accent {
  background-color: var(--accent) !important;
}

.bg_lightBorder {
  background-color: var(--lightBorder) !important;
}

.bg_accentDark {
  background-color: var(--accentDark) !important;
}

.bg_white {
  background-color: var(--white) !important;
}

/* Font Weights */
.f_300 {
  font-weight: 300 !important;
}
.f_400 {
  font-weight: 400 !important;
}
.f_500 {
  font-weight: 500 !important;
}
.f_600 {
  font-weight: 600 !important;
}
.f_700 {
  font-weight: 700 !important;
}
.f_800 {
  font-weight: 800 !important;
}
.f_900 {
  font-weight: 900 !important;
}

/* titles */
.title_50 {
  font-size: 5rem;
  line-height: 5.5rem;
  color: var(--black);
}

.title_32 {
  font-size: 3.2rem;
  line-height: 3.8rem;
  color: var(--black);
  letter-spacing: 0.05em;
}

.title_24 {
  font-size: 2.4rem;
  line-height: 3.2rem;
  color: var(--black);
}

/* texts */
.text_xl {
  font-size: 2rem;
}
.text_lg {
  font-size: 1.8rem;
}
.text_md {
  font-size: 1.6rem;
}
.text_sm {
  font-size: 1.4rem;
}
.text_xsm {
  font-size: 1.2rem;
}

/* mx-auto */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* -------------- Header Styles by Sahriar --------------- */
.site_header {
  padding: 0;
  position: sticky;
  z-index: 999999;
  width: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  background: var(--white);
  height: var(--menuHeight);
  display: flex;
  align-items: center;
}

.site_header.sticky {
  box-shadow: 0 0.35rem 1.5rem 0 rgb(0, 0, 0, 0.1);
}

.main_menu {
  gap: 4rem;
}

.main_menu li a {
  font-size: 1.6rem;
  color: var(--default);
  font-weight: 400;
  line-height: 2.4rem;
  letter-spacing: -0.003em;
  padding: 0.25rem 0.5rem;
  border-bottom: 0.2rem solid var(--white);
}

.main_menu li a:hover,
.main_menu li a.active {
  color: var(--accent);
  border-bottom: 0.1rem solid var(--accent);
}

.logo {
  display: flex;
}

.logo img {
  width: 14rem;
}

/* ============= header-component ================= */
.header-component * {
  font-family: var(--primaryfont);
}

.header-component {
  display: flex;
  align-items: center;
  width: fit-content;
}

.selector {
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: background 0.2s;
  position: relative;
  gap: 1.2rem;
}

.selectors {
  gap: 3.6rem;
}

.selector svg {
  width: 2.4rem;
  height: 2.4rem;
}

.selector span {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1;
  padding-top: 0.35rem;
}

#selectedLanguage,
#selectedLanguage2,
#selectedCurrency,
#selectedCurrency2 {
  width: 2.5rem;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  background: white;
  border-radius: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  min-width: 15rem;
  padding: 0.5rem 0;
  z-index: 1000;
  max-height: 15rem;
  overflow: auto;
  transition: 0.35s ease;
  transform: translateY(-1rem);
  opacity: 0;
  pointer-events: none;
}

.dropdown.active {
  pointer-events: all;
  opacity: 1;
  transform: translateY(0);
}

.dropdown-item {
  padding: 0.75rem 1rem;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 1.4rem;
  color: var(--accentDark);
}

.dropdown-item:hover {
  background: #f8f8f8;
}

.dropdown-item.selected {
  background: #e8f5e9;
  color: #10b981;
  font-weight: 500;
}

.dropdown.up {
  bottom: calc(100% + 0.5rem);
  top: auto;
}

/* Firefox */
* {
  scrollbar-width: thin;
  scrollbar-color: #b5b5b5 transparent;
}

/* Chrome, Edge, Safari */
*::-webkit-scrollbar {
  width: 0.4rem;
  height: 0.4rem;
}

*::-webkit-scrollbar-track {
  background: transparent;
}

*::-webkit-scrollbar-thumb {
  background-color: #b5b5b5;
  border-radius: 1rem;
}

*::-webkit-scrollbar-thumb:hover {
  background-color: #9a9a9a;
}

.divider {
  width: 0.0625rem;
  height: 1.5rem;
  background: #e0e0e0;
}

.sign-in-btn {
  background: transparent;
  border: none;
  color: var(--default);
  font-weight: 500;
  cursor: pointer;
  border-radius: 0.375rem;
  transition: background 0.2s;
  white-space: nowrap;
  height: 4.8rem;
  padding: 0 2rem;
  margin: 0 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.sign-in-btn:hover {
  background: #f8f8f8;
}

.add-listing-btn {
  background: var(--accent);
  color: var(--white);
  border: none;
  padding: 0 2rem;
  border-radius: 0.5rem;
  font-size: 1.4rem;
  font-weight: 700;
  height: 4.8rem;
  cursor: pointer;
  transition: background 0.2s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
}

.add-listing-btn:hover {
  background: var(--accentDark);
}

/* =============== hero_area =============== */
.hero_section {
  position: relative;
  overflow: hidden;
}

.hero_section * {
  font-family: var(--primaryfont);
}

.hero_section .container {
  height: calc(100vh - 13rem);
  max-height: 76rem;
}

.hero_content {
  position: relative;
  height: 100%;
  width: 100%;
  z-index: 2;
  background: url("../img/hero_img.png") center/cover no-repeat;
  border-radius: 3rem;
  display: flex;
  align-items: center;
  padding-left: 25rem;
}

.hero_card {
  background: var(--accent);
  border-radius: 2rem;
  padding: 5rem 7.2rem 7.2rem 8rem;
  max-width: 53rem;
}

.hero_icon {
  width: 4.8rem;
  height: 4.8rem;
  display: flex;
  align-items: center;
  margin-bottom: 3rem;
}

.hero_icon img {
  width: 100%;
}

.hero_content .title_50 {
  margin-bottom: 3rem;
  color: var(--white);
  font-weight: 500;
}

/* Search Form */
.search_form {
  border-radius: 1rem;
  display: flex;
  margin-bottom: 2rem;
  align-items: center;
  height: 8rem;
  position: relative;
  width: fit-content;
}

.tab_buttons {
  display: flex;
  gap: 0;
  background-color: #036a38;
  padding: 1rem;
  border-bottom-left-radius: 1rem;
  border-top-left-radius: 1rem;
}

.tab_btn {
  border: none;
  color: var(--white);
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  border-radius: 0.5rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  min-width: 9rem;
  height: 6rem;
}

.tab_btn.active {
  background: var(--accent);
}

.search_input_wrapper {
  height: 100%;
  flex: 1;
  display: flex;
  align-items: center;
}

.search_input {
  flex: 1;
  border: none;
  font-size: 1.6rem;
  height: 100%;
  width: 75rem;
  padding: 0 13rem 0 3rem;
  background: var(--white);
  outline: none;
  color: #879590;
  background: var(--white);
  border-bottom-right-radius: 1rem;
  border-top-right-radius: 1rem;
}

.search_input::placeholder {
  color: #9ca3af;
}

.search_btn {
  background: #13a25d;
  color: var(--white);
  border: none;
  border-radius: 0.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
  position: absolute;
  height: 6rem;
  width: 11rem;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

.search_btn:hover {
  background: #15803d;
}

/* Filter Options */
.filter_options {
  display: flex;
  gap: 1.5rem;
  padding: 1rem 1rem 1rem 2rem;
  border-radius: 0.5rem;
  border: 0.1rem solid #036a38;
}

/* Custom Select */
.custom_select {
  position: relative;
  min-width: 7.3rem;
}

.select_trigger {
  background: transparent;
  color: var(--white);
  line-height: 2.6rem;
  border-right: 0.1rem solid var(--accentDark);
  font-size: 1.6rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s ease;
  user-select: none;
  white-space: nowrap;
  height: 2.8rem;
  position: relative;
}

.select_arrow {
  position: absolute;
  right: 1rem;
  top: calc(50% - 0.2rem);
  width: 0.7rem;
  height: 0.7rem;
  border-right: 0.125rem solid white;
  border-bottom: 0.125rem solid white;
  transform: translateY(-50%) rotate(45deg);
  transition: all 0.3s ease;
  pointer-events: none;
}

.select_trigger.active .select_arrow {
  transform: translateY(0.0625rem) rotate(-135deg);
}

.select_dropdown {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  background: white;
  border-radius: 0.625rem;
  box-shadow: 0 0.625rem 1.875rem rgba(0, 0, 0, 0.15);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-0.625rem) translateX(-50%);
  transition: all 0.3s ease;
  z-index: 100;
  max-height: 14rem;
  width: 12rem;
  overflow-y: auto;
}

.select_dropdown.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) translateX(-50%);
}

.select_option {
  padding: 0.75rem 1.25rem;
  cursor: pointer;
  transition: all 0.2s ease;
  font-size: 1.4rem;
}

.select_option:hover {
  background: #f3f4f6;
}

.select_option.selected {
  color: #16a34a;
  font-weight: 600;
}

.select_option:first-child {
  border-radius: 0.625rem 0.625rem 0 0;
}

.select_option:last-child {
  border-radius: 0 0 0.625rem 0.625rem;
}

/* update */
.select_text {
  line-height: 1;
  font-weight: 300;
  padding-right: 3rem;
  max-width: 10ch;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.custom_select:last-child .select_trigger {
  border-right: 0;
}

/* ================= brands area ================ */
.brands {
  padding: 3.2rem 8rem;
  justify-content: space-between !important;
  gap: 2rem;
  flex-wrap: wrap;
}

.brands a {
  opacity: 0.3;
  display: block;
}

.brands a:hover {
  opacity: 1;
}

.brands a img {
  width: auto;
  height: 24px;
  max-width: 120px;
}

/* ================= brands area ================ */
.explore_over {
  color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.explore_img img {
  object-fit: cover;
  border-radius: 2rem;
  height: 52rem;
  transition: 0.35s ease;
}

.explore_img:hover img {
  transform: scale(1.05);
}

.explore_img {
  display: flex;
  overflow: hidden;
  border-radius: 2rem;
}

.explore_card.v1 {
  width: 62rem;
}

.explore_card {
  position: relative;
  display: block;
}

.explore_cards {
  display: grid;
  gap: 4rem;
}

.explore_card.v2 .explore_img img {
  height: 24rem;
}

.autoSwiper .swiper-slide {
  width: fit-content;
}

.explore_card.v3 {
  width: 32rem;
}

.explore_card.v4 {
  width: 42rem;
}

.autoSwiper {
  overflow: visible;
  margin-left: -2rem;
}

.explore_title {
  color: var(--white);
}

.link {
  color: #13a25d;
  text-decoration: underline !important;
}

.link:hover {
  color: var(--accentDark);
  text-decoration: none !important;
}

/* ============== price-card ================ */
.price-card {
  background: white;
  border-radius: 1rem;
  width: 100%;
  max-width: 41rem;
}

.price-card * {
  font-family: var(--primaryfont);
}

.price-card .card-title {
  font-weight: 700;
  color: var(--default);
  position: relative;
  display: inline-block;
}

.custom_underline {
  position: relative;
}

.custom_underline::after {
  content: "";
  position: absolute;
  bottom: 0;
  display: block;
  left: 0;
  width: 100%;
  height: 0.1rem;
  border-bottom: 0.1rem dashed var(--default);
}

.price-card .tabs {
  display: flex;
  gap: 4rem;
  align-items: center;
}

.price-card .tabs .tab {
  color: var(--default);
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  position: relative;
  font-weight: 500;
  transition: color 0.2s;
}

.price-card .tabs .tab:hover {
  color: #1a1a1a;
}

.price-card .tabs .tab.active {
  color: #10b981;
  font-weight: 600;
  text-decoration: underline;
}

.price-card .price-range {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.price-card .price-range .range-bar {
  background: linear-gradient(to bottom, #2ab185, #bfe4d8);
  border-radius: 5rem;
  position: relative;
  padding: 2rem 0.4rem;
  height: 20rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-card .range-bar svg {
  width: 1.2rem;
}

.price-card .price-range .price-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.price-card .price-range .price-info .price-item {
  display: flex;
  flex-direction: column;
}

.price-card .disclaimer {
  margin-top: 2rem;
}

.price-card .disclaimer::before {
  content: "* ";
}

/* price_content */
.price_content {
  border-radius: 2rem;
}

.price-card-top {
  padding: 4rem 3.4rem 2rem 5rem;
  border-bottom: 0.1rem solid #f1f4f3;
}

.price-card-top-bottom > a {
  color: #222222;
  position: relative;
}

.price-card-top-bottom > a::before {
  content: "";
  width: 100%;
  height: 0.1rem;
  border-bottom: 0.1rem dashed #222222;
  position: absolute;
  bottom: 0;
}

/* ================= specials_area ================= */
.specials_content {
  height: 56rem;
  border-radius: 2rem;
  overflow: hidden;
  display: flex;
  align-items: end;
}

.specials_text {
  background: #ffffff70;
  border-top-right-radius: 2rem;
  backdrop-filter: blur(1rem);
}

/* ================= Collectors_area ================= */
.tab_navs {
  display: grid;
  gap: 3.2rem;
  align-items: flex-start;
}

.tab_nav {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  cursor: pointer;
  transition: all 0.3s;
  color: var(--accent);
  text-decoration: underline;
}

.tab_nav img {
  width: 2.4rem;
  height: 2.4rem;
  filter: brightness(0) saturate(100%) invert(39%) sepia(83%) saturate(910%)
    hue-rotate(115deg) brightness(97%) contrast(85%);
}

.tab_nav.active {
  color: var(--default);
  text-decoration: none;
}

.tab_nav.active img {
  filter: brightness(0) saturate(100%) invert(0%) sepia(0%) saturate(12%)
    hue-rotate(257deg) brightness(104%) contrast(104%);
}

.tab_pane {
  display: none;
}

.tab_pane.active {
  display: block;
}

.collectors_links a {
  text-decoration: underline !important;
  color: #13a25d;
  line-height: 5.4rem;
}

.collectors_links a:hover {
  color: var(--default);
  text-decoration: none !important;
}

.rounded_20 {
  border-radius: 2rem;
}

.icon_24 {
  width: 2.4rem;
}

/* ================ button ================ */
.button {
  height: 6rem;
  min-width: 15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.5rem;
  font-size: 1.6rem;
  font-weight: 700;
  text-transform: uppercase;
  font-family: var(--primaryfont);
  background: var(--accent);
  max-width: 40rem;
  cursor: pointer;
  transition: 0.25s ease;
  color: var(--white);
}

.button:hover {
  background: var(--accentDark);
}

.button_black {
  background: var(--default);
  color: var(--white);
}

.button_black:hover {
  background: #000000;
}

/* ============== subscribe_area ================== */

.subscribe_content {
  gap: 2.2rem;
}

.subscribe_content input {
  height: 6rem;
  padding: 2.5rem;
  width: 100%;
  font-size: 1.6rem;
  color: var(--black);
  border: none;
  border-radius: 0.5rem;
  border: 0.1rem solid var(--white);
}

.subscribe_content input::placeholder {
  font-size: 1.6rem;
  color: var(--black);
}

.subscribe_content input:focus {
  border: 0.1rem solid var(--black);
}

/* =============== footer_area ============== */
.footer_section {
  padding: 9.5rem 0 13rem;
}

.footer_col_inner {
  grid-template-columns: 1fr 1fr;
}

.footer_links {
  display: grid;
  gap: 1rem;
}

.footer_links a:hover {
  color: var(--accent) !important;
}

.social_icons {
  gap: 5rem;
}

.social_icons a:hover {
  opacity: 0.75;
}

.footer_logo img {
  width: 4.8rem;
}

.btn_to_top {
  text-align: end;
  display: block;
  color: var(--default);
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: fit-content;
  margin-left: auto;
  gap: 1rem;
  cursor: pointer;
}

.btn_to_top:hover {
  color: var(--accent);
}

/* =================== story_area ================== */

.card_row {
  --bs-gutter-x: 4rem;
}

.card_info {
  min-height: 26rem;
  display: grid;
  align-content: space-between;
}

.site_card:hover .title_24 {
  color: var(--accent);
}

.site_card .title_24 {
  color: var(--default);
  transition: 0.25s ease;
}

.site_card {
  display: block;
  border-radius: 1rem;
  overflow: hidden;
  border: 0.1rem solid #f1f4f3;
}

.card_type {
  font-size: 1.4rem;
  opacity: 0.5;
  position: absolute;
  left: 2.5rem;
  top: 2.5rem;
  color: var(--black);
}

.card_img {
  height: 24rem;
  object-fit: cover;
  transition: 0.25s ease;
}

.card_top {
  position: relative;
  display: flex;
}

.card_img_wrap,
.site_card.v2 .card_top {
  display: flex;
  width: 100%;
  overflow: hidden;
  border-top-left-radius: 1rem;
  border-top-right-radius: 1rem;
  position: relative;
}

.site_card.v2 .card_top .swiper {
  transition: 0.25s ease;
}

.site_card:hover .card_img_wrap img,
.site_card.v2:hover .card_top .swiper {
  transform: scale(1.05);
}

/* ================= featured_area ================== */
.swiper-pagination-bullet {
  width: 2.5rem;
  height: 0.5rem;
  border-radius: 0;
  background: rgb(0, 0, 0, 0.3);
  opacity: 1;
  margin: 0 !important;
  padding: 0;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: var(--white);
}

.swiper-pagination {
  bottom: 1.5rem !important;
  top: auto;
  left: 2.3rem !important;
  display: flex;
  align-items: center;
  width: fit-content !important;
  margin: 0 !important;
  gap: 0.5rem;
}

.site_card.v2 .swiper-slide {
  display: flex;
  position: relative;
}

.site_card.v2 .card_info {
  min-height: 14.7rem;
  padding: 1.5rem 2rem 2.4rem 2rem;
}

.site_card.v2 .card_info_top > p {
  display: -webkit-box; /* Needed for line clamping */
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1; /* Show only 1 line */
  overflow: hidden; /* Hide overflow text */
  text-overflow: ellipsis; /* Add "..." */
  margin: 0.25rem 0;
}

/* heart_toggle */
.heart_toggle {
  position: absolute;
  z-index: 1;
  width: 6.4rem;
  height: 6.4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  right: -0.1rem;
  bottom: -0.1rem;
  cursor: pointer;
}

.heart_toggle img {
  width: 2.4rem;
}

.heart_toggle .curvy_hearts {
  position: absolute;
  width: 9rem;
  height: 9rem;
  right: -0.1rem;
  bottom: -0.1rem;
  z-index: 1;
  transition: 0.5s ease;
  visibility: hidden;
  transform: translate(5rem, 5rem) scale(0.5);
}

.heart_one1,
.heart_one2 {
  position: relative;
  z-index: 2;
}

.heart_toggle.active .heart_one2 {
  display: block !important;
}

.heart_toggle.active .heart_one1 {
  display: none;
}

.heart_toggle.active .curvy_hearts {
  visibility: visible;
  transform: translate(0, 0) scale(1);
}

/* slider_arrows */
.swiper-button-next,
.swiper-button-prev {
  position: static;
  margin: 0;
  font-size: 1rem;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  border-radius: 0.5rem;
  border: 0.1rem solid #eceeed;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 1.6rem;
  color: var(--black);
  opacity: 1;
}

.slider_arrows {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

/* slider_gap */
.slide_inner {
  padding: 0 2rem;
}
.slider_gap {
  width: calc(100% + 4rem);
  margin-left: -2rem;
}

/* ================ offers_area ================== */
.accent_img {
  filter: brightness(0) saturate(100%) invert(46%) sepia(33%) saturate(1003%)
    hue-rotate(99deg) brightness(91%) contrast(83%);
}

.offer_top img {
  width: 4.4rem;
}

.offer_input input,
.offer_input input::placeholder {
  font-size: 2.4rem;
  line-height: 3.2rem;
  color: var(--black);
  font-weight: 700;
}

.offer_input input {
  border: 0;
  border-bottom: 0.1rem dashed #000;
  width: 100%;
  padding-bottom: 0.5rem;
}

.offer_input {
  position: relative;
}

.edit_icon {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.offer_left_card .row {
  --bs-gutter-x: 4.3rem;
  --bs-gutter-y: 4.5rem;
}

.offers_area {
  padding: 9rem 0;
}

.offers_content {
  padding: 4rem 0 0 5rem;
}

.offers_content .offers_slider {
  width: calc(100% + 8.5rem);
}

.offers_area .row {
  --bs-gutter-x: 4rem;
}

.offer_left_card {
  padding-left: 5rem;
}

.offer_left_card .button {
  max-width: 100%;
}

/* =============== map_area ============== */
.map_row {
  --bs-gutter-x: 3.4rem;
}

.card_row2 {
  --bs-gutter-x: 2rem;
  --bs-gutter-y: 2rem;
}

.map_img {
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}

.icon_20 {
  width: 2rem;
}

.pagination a {
  height: 4.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f1f4f3;
  padding: 0 2.2rem;
  border-radius: 0.5rem;
  gap: 0;
  color: var(--default);
}

.pagination {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.pagination a:not(.dots):hover {
  background: var(--white);
  color: var(--muted) !important;
}

.pagination a.dots {
  background: transparent;
}

/* ============== fillter_area ============= */
.fillter_area {
  padding: 2.6rem 0 3.6rem;
}

.filter_options.v2 {
  background: #f1f4f3;
  border: 0;
  width: fit-content;
  margin: 0 auto;
}

.custom_select.v2 .select_arrow {
  border-right: 0.125rem solid #222222;
  border-bottom: 0.125rem solid #222222;
  right: 1.35rem;
}

.custom_select.v2 .select_trigger {
  border-color: var(--white);
}

.custom_select.v2 .select_text {
  margin-left: 0.8rem;
  padding-right: 4rem;
}

.custom_select.v2 .select_dropdown {
  width: 22rem;
}

.fillter_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 4.8rem;
  border-radius: 0.5rem;
  background: var(--lightBorder);
  padding: 0 1.2rem;
  transition: 0.35s ease;
  gap: 0.6rem;
  cursor: pointer;
  border: 0.1rem solid var(--lightBorder);
}

.fillter_icon:hover {
  border: 0.1rem solid var(--default);
  background: transparent;
}

.fillter_icons {
  gap: 1rem;
}

.custom_select.v2 .select_text {
  max-width: 15ch; /* limits text to ~15 characters */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}

.custom_select.v2 .sellect_btn {
  line-height: 1;
  display: flex;
}

.mr_0 {
  margin-right: 0 !important;
}

/* =============== Popup slider ================ */
.gallery_popup_slider {
  position: relative;
}

.property_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  transition: 0.3s ease;
  border-radius: 0.5rem;
}

.property_img:hover {
  filter: brightness(0.5);
}

.property_images .property_img {
  height: 33.6rem;
}

.gallery_popup_slider > .row > .col-lg-6:first-child .property_img {
  height: 68rem;
}

.gallery_popup_slider .button {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  width: 14rem;
  height: 6rem;
  background: rgba(255, 255, 255, 0.9);
  color: var(--default);
  border: 0.1rem solid var(--white);
  z-index: 999;
  gap: 0.6rem;
  pointer-events: none;
}

.gallery_popup_slider .button:hover {
  background: var(--white);
}

/* ========== Gallery Popup Styles ========== */
.popup_overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.95);
  z-index: 999999;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.popup_overlay.active {
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 1;
}

.popup_content {
  position: relative;
  width: 90%;
  max-width: 75rem;
  max-height: 90vh;
}

.popup_close {
  position: absolute;
  top: -5rem;
  right: -1rem;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  z-index: 10001;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.popup_close:hover {
  transform: scale(1.1);
}

.popup_close svg {
  width: 3rem;
  height: 3rem;
}

.slider_container {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 0.5rem;
}

.slider_track {
  display: flex;
  transition: transform 0.5s ease;
}

.slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.slide img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
}

.slider_nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--default);
  border: none;
  color: white;
  width: 4rem;
  height: 4rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  border-radius: 50%;
  transition: background 0.3s ease;
  z-index: 10000;
}

.slider_nav:hover {
  background: #000000;
}

.slider_nav.prev {
  left: 1rem;
}

.slider_nav.next {
  right: 1rem;
}

.slider_nav svg {
  width: 1.5rem;
  height: 1.5rem;
}

.slider_counter {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(0, 0, 0, 0.6);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 1.5rem;
  z-index: 10000;
}

/* ============================================= */
.property_area .row {
  --bs-gutter-x: 0.8rem;
}

.icon_40 {
  width: 4rem;
}

.flex_none {
  flex: 0 0 auto;
}

.border_b {
  border-bottom: 0.1rem solid var(--lightBorder);
}

.border_t {
  border-top: 0.1rem solid var(--lightBorder);
}

.border {
  border: 0;
}

.text_end {
  text-align: end !important;
}

/* ============= Collapse wrap ============= */
.collapse_btn {
  cursor: pointer;
  padding: 1.5rem 0.5rem;
}

.collapse_arrow img {
  transition: transform 0.3s ease;
}

.collapse_wrap.open .collapse_btn .collapse_arrow img {
  transform: rotate(180deg);
}

.collapse_content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.75s ease;
}

.collapse_wrap.open .collapse_content {
  max-height: 200rem;
}

.collapse_content > div {
  padding: 2rem 0 4rem;
}

.collapse_list li {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  line-height: 3.5rem;
}

.collapse_content .col_gap_70 {
  --bs-gutter-x: 7rem;
}

.collapse_content > {
  padding: 2rem 0 4rem;
}

.collapse_wrap.open .fillter_icon {
  background: transparent;
  border-color: transparent;
}

.collapse_list.v2 li {
  display: flex;
  justify-content: space-between;
}

/* =============== contact_form ================ */
.form_group label {
  display: block;
}

.form_control {
  background: #f1f4f3;
  height: 4.8rem;
  width: 100%;
  border: 0.1rem solid #879590;
  border-radius: 0.5rem;
  padding: 0 2rem;
}

.contact_form .row {
  --bs-gutter-x: 5rem;
  --bs-gutter-y: 2.5rem;
}

.check {
  display: flex;
  align-items: center;
}

.form_bottom {
  padding-top: 4rem;
}

.form_bottom .button {
  margin-left: auto;
}

.checkbox label {
  cursor: pointer;
}

.check input {
  width: 2rem;
  height: 2rem;
  background-color: #000000 !important;
}

.checkbox p {
  line-height: 1;
}

/* map_content */
.map_content {
  position: relative;
  padding: 0 !important;
  margin: 2rem 0 4rem 0;
}

.map_content .tab_navs {
  background: #fff;
  width: 41.5rem;
  border-radius: 1rem;
  position: absolute;
  left: 3rem;
  top: 3rem;
  padding: 5.3rem 16rem 5rem 5rem;
}

/* ================= property_info_right ================ */
.pir_top_person > img {
  width: 9rem;
  height: 9rem;
  object-fit: cover;
  border-radius: 10rem;
}

.contact_links {
  margin-top: 4rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact_link {
  height: 6rem;
  padding: 0 1.2rem;
  background: #f1f4f3;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.3rem;
}

.contact_link span {
  width: 8.2rem;
  text-align: center;
  color: var(--muted) !important;
}

.contact_link.active span,
.contact_link:hover span {
  color: var(--white) !important;
  font-weight: 700;
}

.contact_link:first-child span {
  width: 11.2rem;
  text-transform: uppercase;
}

.contact_link.active,
.contact_link:hover {
  background: var(--accent);
}

.pir_top {
  border: 0.1rem solid var(--lightBorder);
  border-radius: 1rem;
}

.omeraas_img {
  width: 13rem;
}

.property_info_right .offer_left_card {
  padding: 4.2rem 2.5rem 2.5rem 3.5rem;
}

.property_info_right .offer_top h3 {
  padding: 1rem 0 1.2rem;
}

.contact_link img {
  filter: brightness(0) saturate(100%) invert(63%) sepia(2%) saturate(1399%)
    hue-rotate(107deg) brightness(90%) contrast(97%);
  transition: 0.25s ease;
}

.contact_link.active img,
.contact_link:hover img {
  filter: brightness(0) saturate(100%) invert(6%) sepia(8%) saturate(7%)
    hue-rotate(314deg) brightness(94%) contrast(82%);
}

.property_info .container > .row {
  --bs-gutter-x: 7.5rem;
}

/* =============== Auth Forms =============== */
.auth_area {
  min-height: calc(100vh - 20rem);
  display: flex;
  align-items: center;
}

.auth_card {
  background: var(--white);
  border-radius: 1.5rem;
  padding: 4rem;
  box-shadow: 0 0.2rem 1rem rgba(0, 0, 0, 0.05);
}

.auth_header {
  text-align: left;
}

.auth_logo_img {
  height: 3.2rem;
  width: auto;
}

.auth_form .form_label {
  display: block;
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--default);
}

.auth_form .form_control {
  width: 100%;
  height: 5rem;
  border: 1px solid var(--lightBorder);
  border-radius: 0.8rem;
  padding: 0 1.6rem;
  font-size: 1.4rem;
  transition: border-color 0.2s;
}

.auth_form .form_control:focus {
  outline: none;
  border-color: var(--accent);
}

.auth_form .form_control::placeholder {
  color: var(--muted);
  font-size: 1.4rem;
}

.auth_form .form_control.is-invalid {
  border-color: #dc3545;
}

.auth_form .form_error {
  display: block;
  color: #dc3545;
  font-size: 1.2rem;
  margin-top: 0.5rem;
}

.auth_divider {
  text-align: center;
  position: relative;
  margin: 2.5rem 0;
}

.auth_divider::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--lightBorder);
}

.auth_divider span {
  background: var(--white);
  padding: 0 1.5rem;
  position: relative;
  color: var(--muted);
  font-size: 1.4rem;
}

.social_login {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.social_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  height: 5rem;
  border: 1px solid var(--lightBorder);
  border-radius: 0.8rem;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--default);
  background: var(--white);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.social_btn:hover {
  background: #f8f8f8;
  border-color: var(--muted);
}

.social_btn.magic_link svg {
  stroke: var(--muted);
}

.alert {
  padding: 1.2rem 1.6rem;
  border-radius: 0.8rem;
  font-size: 1.4rem;
}

.alert_error {
  background: #fee2e2;
  color: #dc2626;
  border: 1px solid #fecaca;
}

.alert_success {
  background: #dcfce7;
  color: #16a34a;
  border: 1px solid #bbf7d0;
}
