@font-face {
    font-family: IRANYekanXVFaNumVF;
    src: url("../fonts/IRANYekanXVFaNumVF.woff2") format("woff2"), url("../fonts/IRANYekanXVFaNumVF.woff") format("woff");
    font-display: swap;
}

:root {
  --body-font-family: IRANYekanXVFaNumVF, serif;
  --body-bg-color: #ffffff;
  --body-font-size: 1rem;
  --body-font-weight: 400;
  --body-line-height: 1.5;
  --body-text-align: right;
  --body-color: #212529;
  --border-color: #eeeeee;
  --border-radius: 0;
  --color-primary: #212121;
  --color-secondary: #f5f5f5;
  --color-success: #06a31d;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--body-font-family);
  font-size: var(--body-font-size);
  font-weight: var(--body-font-weight);
  line-height: var(--body-line-height);
  text-align: var(--body-text-align);
  background-color: var(--body-bg-color);
  color: var(--body-color);
}

a {
  text-decoration: none;
}

textarea {
  font-family: var(--body-font-family);
  width: 100%;
  resize: vertical;
}

img {
  max-width: 100%;
}

input[type=text], input[type=number], input[type=password] {
  width: 100%;
  font-family: var(--body-font-family);
  outline: 0;
}

button {
  font-family: var(--body-font-family);
}

h1, h2, h3, h4, h5, h6 {
  /*margin: 0;*/
}

hr {
  color: var(--border-color);
  border: 0;
  border-top: 1px solid;
}



.container {
  width: 100%;
  margin: 0 auto;
  max-width: 1400px;
}

.full-width {
  width: 100%;
}

@media screen and (max-width: 480px) {
  .container {
    max-width: 480px;
    padding: 0 0.75rem;
  }
}
input {
  /*border: 1px solid var(--border-color);*/
  /*padding: 0.35rem 1rem;*/
}

textarea {
  /*border: 1px solid var(--border-color);*/
}

.header.header--main {
  position: sticky;
  top: 0;
  background-color: #ffffff;
  border-bottom: 1px solid var(--border-color);
  padding: 0.5rem 0;
  z-index: 100;
}
.header.header--main .header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 65px;
}
.header.header--main .header__column {
  display: flex;
  align-items: center;
}
.header.header--main .header__column.header__column--mobile {
  display: none;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.header.header--main .header__icon {
  padding: 0.25rem;
  border: none;
  background-color: inherit;
}
.header.header--main .header__logo {
  width: 150px;
  margin-left: 40px;
}
.header.header--main .header__nav {
  display: flex;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
.header.header--main .header__search {
  width: 200px;
  margin-left: 1.5rem;
}

@media screen and (max-width: 480px) {
  .header.header--main .header__wrapper {
    height: 50px;
  }
  .header.header--main .header__nav {
    display: none;
  }
  .header.header--main .header__column.header__column--left {
    display: none;
  }
  .header.header--main .header__column.header__column--mobile {
    display: flex;
  }
  .header.header--main .header__logo {
    width: 120px;
    margin-left: 0;
  }
}
.button {
  display: flex;
  justify-content: center;
  align-items: center;
  border-width: 1px;
  border-style: solid;
  border-radius: var(--border-radius);
  padding: 0.3rem 1.2rem;
  font-size: 0.85rem;
  cursor: pointer;
}
.button.button--primary {
  background-color: var(--color-primary);
  border-color: var(--color-primary);
  color: #ffffff;
}
.button.button--secondary {
  background-color: var(--color-secondary);
  border-color: var(--color-secondary);
  color: #333;
}
.button.button--success {
  background-color: var(--color-success);
  border-color: var(--color-success);
  color: #ffffff;
}
.button__flasher {
  content: "";
  position: absolute;
  background: rgba(255, 255, 255, 0.75);
  width: 29.9px;
  height: 120%;
  right: -3rem;
  top: 0px;
  opacity: 0.75;
  transform: rotate(22deg);
  filter: blur(15px);
  transition: right 0.75s ease-out;
}
.button__flasher.active {
  right: calc(100% + 3rem);
}

.property-filters {
  position: sticky;
  top: 60px;
  background-color: #ffffff;
  padding-top: 1rem;
  z-index: 100;
}
.property-filters__row {
  display: flex;
  padding: 1rem 0;
}
.property-filters__row.property-filters__row--top {
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  border-bottom: 1px solid var(--border-color);
}
.property-filters__row.property-filters__row--top .property-filters__item {
  border: 1px solid #e0e0e0;
  padding: 0.3rem 1.2rem;
  cursor: pointer;
}
.property-filters__row.property-filters__row--top .property-filters__item--active {
  background-color: #f8f8f8;
  border-color: #131b1f;
}
.property-filters__row.property-filters__row--bottom {
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
.property-filters__row.property-filters__row--bottom .property-filters__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  border-bottom: 2px solid transparent;
  opacity: 1;
  cursor: pointer;
  padding-bottom: 0.5rem;
}
.property-filters__row.property-filters__row--bottom .property-filters__item--active {
  opacity: 1;
  border-color: #131b1f;
}
@media screen and (max-width: 768px) {
  .property-filters {
    z-index: 1000;
  }
  .property-filters__row.property-filters__row--top.property-filters__row--top-scrollable {
    flex-wrap: nowrap;
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .property-filters__row.property-filters__row--top.property-filters__row--top-scrollable::-webkit-scrollbar {
    display: none;
  }
  .property-filters__row.property-filters__row--top.property-filters__row--top-scrollable > div {
    flex: 0 0 auto;
  }
}

.carousel {
  overflow-x: auto;
}
.carousel .carousel__header {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.carousel .carousel__header .carousel__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}
.carousel .carousel__header .carousel__subtitle {
  font-size: 0.9rem;
  opacity: 0.8;
}
.carousel .carousel__header .carousel__column.carousel__column--end {
  display: flex;
  justify-content: end;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}
.carousel .carousel__header .carousel__button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  border: 1px solid var(--border-color);
  min-width: 35px;
  height: 35px;
  padding: 0.5rem;
  cursor: pointer;
  background-color: inherit;
}
.carousel .carousel__list {
  overflow-x: auto;
  display: flex;
  align-items: flex-start;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  flex-wrap: nowrap;
  list-style: none;
  width: 100%;
  padding: 0;
}
.carousel.carousel--city .carousel__item {
  margin-left: 1.5rem;
  min-width: calc((100% - 9rem) / 6.3);
}
.carousel.carousel--city .carousel__item:last-child {
  margin-left: 0;
}
.carousel.carousel--property {
  margin: 3rem 0;
}
.carousel.carousel--property .carousel__item {
  margin-left: 1rem;
  min-width: calc((100% - 3rem) / 4.3);
}
.carousel.carousel--property .carousel__item:last-child {
  margin-left: 0;
}
.carousel.carousel--product .carousel__list {
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.carousel.carousel--product .carousel__item {
  min-width: calc((100% - 3rem) / 4);
}

@media screen and (max-width: 480px) {
  .carousel.carousel--product .carousel__list {
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
  .carousel.carousel--product .carousel__item {
    min-width: calc((100% - 1rem) / 3);
  }
}
.info-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  padding: 3rem 0;
}
.info-box__item {
  display: flex;
  justify-content: start;
  align-items: center;
  background-color: var(--color-secondary);
  border: 1px solid var(--border-color);
  padding: 1.5rem 2.5rem;
}
.info-box__icon {
  width: 100px;
}
.info-box__title {
  font-size: 1rem;
  font-weight: 500;
}
.info-box__description {
  color: #999999;
  margin: 1rem 0 0;
  font-size: 0.85rem;
}

@media (max-width: 640px) {
  .info-box {
    grid-template-columns: 1fr;
    row-gap: 1rem;
  }
}

.property-contact {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border-color);
  padding: 1rem;
  height: 518px;
}
.property-contact__title {
  text-align: center;
  font-size: 1rem;
  font-weight: 600;
  margin: 1rem 0 1.5rem;
}
.property-contact__code {
  display: flex;
  align-items: center;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
.property-contact__code-title {
  font-size: 0.9rem;
  font-weight: 600;
}
.property-contact__code-number {
  color: #777777;
  font-size: 0.85rem;
  font-weight: 500;
}
.property-contact__description {
  font-size: 0.92rem;
  font-weight: 450;
  color: #777777;
  text-align: justify;
  line-height: 1.8;
}
.property-contact__person-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}
.property-contact__person-column {
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
}
.property-contact__person-image {
  width: 50px;
  height: 50px;
  border-radius: 10rem;
}
.property-contact__person-name {
  font-size: 0.85rem;
  font-weight: 500;
  margin-bottom: 0.5rem;
}
.property-contact__person-phone {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  color: #777777;
}
.property-contact__button {
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.8;
}
.property-contact__address {
  width: 100%;
  padding: 0.5rem 1.2rem;
}

@media screen and (max-width: 480px) {
  .property-contact {
    padding: 0.75rem;
    height: auto;
  }
  .property-contact__title {
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    margin: 0.75rem 0 1rem;
  }
  .property-contact__code {
    -moz-column-gap: 1rem;
         column-gap: 1rem;
    margin-bottom: 0.5rem;
  }
  .property-contact__code-title {
    font-size: 0.85rem;
  }
  .property-contact__code-number {
    font-size: 0.8rem;
  }
  .property-contact__description {
    font-size: 0.85rem;
  }
  .property-contact__person-container {
    flex-direction: column;
    row-gap: 1rem;
    align-items: start;
  }
  .property-contact__button {
    width: 100%;
  }
}
.property-reserve {
  position: sticky;
  top: 100px;
  border: 1px solid var(--border-color);
  padding: 1rem;
}
.property-reserve__price-container {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 0.85rem;
  font-weight: 500;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  margin: 1rem 0;
}
.property-reserve__price-currency {
  font-size: 0.8rem;
  color: #777;
}
.property-reserve__price-per {
  color: #777;
}
.property-reserve__price-unit {
  color: #777;
}
.property-reserve__inputs {
  border: 1px solid var(--border-color);
  margin-bottom: 2rem;
}
.property-reserve__calendar {
  display: grid;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.85rem;
  font-weight: 500;
  text-align: center;
  cursor: pointer;
}
.property-reserve__calendar-checkin {
  padding: 0.5rem 1rem;
  border-left: 1px solid var(--border-color);
}
.property-reserve__calendar-checkout {
  padding: 0.5rem 1rem;
}
.property-reserve__calendar-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: #777;
  margin-bottom: 0.5rem;
}
.property-reserve__calendar-value {
  font-size: 0.85rem;
  font-weight: 600;
}
.property-reserve__passengers {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding: 0.5rem 1rem;
}
.property-reserve__passengers-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: #777;
  margin-bottom: 0.5rem;
}
.property-reserve__passengers-description {
  font-size: 0.85rem;
  font-weight: 600;
}
.property-reserve__passengers-counter {
  display: flex;
  align-items: center;
}
.property-reserve__passengers-counter-button {
  background-color: inherit;
  border: none;
  width: 2rem;
  height: 1.5rem;
  padding: 0;
}
.property-reserve__passengers-counter-value {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 600;
  width: 1.5rem;
}
.property-reserve__fullname {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-width: 0 0 1px 0;
  min-height: 65px;
}
.property-reserve__fullname::-moz-placeholder {
  font-size: 0.85rem;
  font-weight: 500;
  color: #777;
}
.property-reserve__fullname::placeholder {
  font-size: 0.85rem;
  font-weight: 500;
  color: #777;
}
.property-reserve__phone {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-width: 0;
  min-height: 65px;
}
.property-reserve__phone::-moz-placeholder {
  font-size: 0.85rem;
  font-weight: 500;
  color: #777;
}
.property-reserve__phone::placeholder {
  font-size: 0.85rem;
  font-weight: 500;
  color: #777;
}
.property-reserve__shop {
  margin-bottom: 1rem;
}
.property-reserve__shop-title {
  font-size: 0.9rem;
  font-weight: 500;
}
.property-reserve__shop-description {
  color: #777;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0.5rem 0 1rem 0;
}
.property-reserve__button {
  position: relative;
  font-size: 1rem;
  width: 100%;
  padding: 0.75rem 1rem;
  overflow: hidden;
}
.property-reserve__notice {
  font-size: 0.8rem;
  font-weight: 500;
  color: #777;
  text-align: center;
  margin-top: 0.75rem;
}

@media screen and (max-width: 480px) {
  .property-reserve__shop-description {
    font-size: 0.8rem;
  }
}
.breadcrumb {
  display: flex;
  align-items: center;
  -moz-column-gap: 1.4rem;
       column-gap: 1.4rem;
  margin-top: 2rem;
}
.breadcrumb__item {
  font-size: 0.9rem;
  color: #777;
  font-weight: 500;
}
.breadcrumb__link {
  position: relative;
}
.breadcrumb__link::after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='24' viewBox='0 -960 960 960' width='24' fill='%23999999'%3E%3Cpath d='M560-267.69 347.69-480 560-692.31 588.31-664l-184 184 184 184L560-267.69Z'/%3E%3C/svg%3E");
  position: absolute;
}

@media screen and (max-width: 480px) {
  .breadcrumb__item {
    font-size: 0.8rem;
  }
  .breadcrumb__link::after {
    top: -3px;
  }
}
.property-features {
  margin-bottom: 3rem;
}
.property-features__item {
  display: flex;
  align-items: center;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  margin-bottom: 1rem;
}

.property-features__item--1-col {
  width: calc(100% / 4 - 0.75rem);
}

.property-features__item--2-col {
  width: calc(100% / 2 - 0.75rem);
}

.property-features__item--3-col {
  width: calc(100% / 4 * 3 - 0.75rem);
}
.property-features__title {
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.property-features__description {
  font-size: 0.85rem;
  color: #777;
}

@media screen and (max-width: 480px) {
  .property-features__title {
    font-size: 0.8rem;
  }
  .property-features__description {
    font-size: 0.8rem;
  }
}
.property-price {
  margin-bottom: 3rem;
}
.property-price__item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border-color);
  padding: 0.75rem 0;
}
.property-price__item:last-child {
  border-bottom: 0;
}
.property-price__notice {
  color: #999;
  font-size: 0.85rem;
  margin-right: 0.25rem;
}
.property-price__amount {
  font-weight: 600;
}
.property-price__currency {
  color: #999;
  font-size: 0.85rem;
  margin-right: 0.25rem;
}
.property-price__description {
  color: #666;
  font-size: 0.95rem;
  margin-top: 1.5rem;
  line-height: 2;
}
.property-price__button {
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

@media screen and (max-width: 480px) {
  .property-price__title {
    font-size: 0.9rem;
  }
  .property-price__notice {
    font-size: 0.8rem;
  }
  .property-price__amount {
    font-size: 0.95rem;
  }
  .property-price__currency {
    font-size: 0.8rem;
  }
  .property-price__description {
    font-size: 0.85rem;
    margin-top: 1rem;
  }
}
.property-description {
  margin-bottom: 3rem;
}
.property-description__container {
  position: relative;
  line-height: 2;
  color: #666;
  font-size: 0.95rem;
  max-height: 120px;
  overflow: hidden;
  transition: max-height 0.25s ease-in;
}
.property-description__gradient {
  position: absolute;
  width: 100%;
  bottom: 0;
  height: 2.2rem;
  max-height: 2.2rem;
  background: linear-gradient(to top, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.3));
  transition: max-height 0.25s;
}
.property-description__more {
  background-color: inherit;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  font-weight: 500;
  font-size: 0.85rem;
  border: none;
  padding-right: 0;
}
.property-description__more-icon {
  transform: rotate(90deg);
  transition: transform 0.3s;
}

@media screen and (max-width: 480px) {
  .property-description__container {
    font-size: 0.9rem;
  }
}
.property-amenities {
  margin-bottom: 3rem;
}
.property-amenities__list {
  display: grid;
  grid-template-columns: repeat(2, 40%);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.property-amenities__item {
  display: flex;
  /* Keep the icon aligned with the first line when the text wraps. */
  align-items: flex-start;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
.property-amenities__item img,
.property-amenities__icon {
  flex: 0 0 auto;
  margin-top: 0.2rem;
}
.property-amenities__icon {
  width: 26px;
  height: 26px;
}
.property-amenities__name {
  font-size: 0.95rem;
  color: #333;
  line-height: 1.7;
}
.property-amenities__label {
  font-weight: 700;
  color: #111;
}
.property-amenities__sep {
  color: #999;
}
.property-amenities__value {
  color: #555;
}
.property-amenities__button {
  padding: 0.5rem 1.4rem;
}

@media screen and (max-width: 480px) {
  .property-amenities__item {
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
  .property-amenities__name {
    font-size: 0.85rem;
  }
  .property-amenities__icon {
    width: 24px;
    height: 24px;
  }
  .property-amenities__button {
    padding: 0.5rem 1rem;
  }
}
.property-rules {
  margin-bottom: 3rem;
}
.property-rules__title {
  font-size: 0.9rem;
  font-weight: 650;
  margin-bottom: 1rem;
}
.property-rules__times {
  display: flex;
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  margin-bottom: 2rem;
}
.property-rules__layout {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}
.property-rules__list {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.property-rules__item {
  display: flex;
  align-items: center;
  font-size: 0.9rem;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

@media screen and (max-width: 480px) {
  .property-rules__times {
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }
  .property-rules__title {
    margin-bottom: 1rem;
  }
  .property-rules__layout {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 2rem;
  }
  .property-rules__item {
    font-size: 0.85rem;
    -moz-column-gap: 0.5rem;
         column-gap: 0.5rem;
  }
}
.property-cancellation-policy__list {
  display: flex;
  flex-direction: column;
  row-gap: 1rem;
}
.property-cancellation-policy__item {
  display: flex;
  flex-direction: column;
  row-gap: 0.3rem;
}
.property-cancellation-policy__date {
  font-size: 0.9rem;
  font-weight: 500;
}
.property-cancellation-policy__description {
  color: #777;
  font-size: 0.9rem;
}

@media screen and (max-width: 480px) {
  .property-cancellation-policy__date {
    font-size: 0.85rem;
  }
  .property-cancellation-policy__description {
    font-size: 0.8rem;
  }
}
.property-map {
  margin-bottom: 3rem;
}
.property-map__description {
  color: #777;
  font-size: 0.9rem;
}
.property-map #map {
  height: 325px;
  width: 100%;
}
.property-map__button {
  margin-top: 1rem;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
}

@media screen and (max-width: 480px) {
  .property-map__description {
    font-size: 0.85rem;
  }
  .property-map #map {
    height: 250px;
  }
}
.property-rate {
  margin-bottom: 3rem;
}
.property-rate__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
.property-rate__item {
  border: 1px solid var(--border-color);
  padding: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 1rem;
}
.property-rate__title {
  font-size: 0.9rem;
}
.property-rate__value {
  font-weight: 600;
  font-size: 0.85rem;
}

@media screen and (max-width: 480px) {
  .property-rate__list {
    overflow-x: auto;
    grid-template-columns: repeat(5, 40%);
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }
  .property-rate__item {
    padding: 0.75rem;
  }
  .property-rate__title {
    font-size: 0.825rem;
  }
}
.property-comments__list {
  display: flex;
  flex-direction: column;
  row-gap: 1.5rem;
}

@media screen and (max-width: 480px) {
  .property-comments__list {
    row-gap: 1rem;
  }
}
.slider {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.slider__list {
  display: flex;
  height: 100%;
  transition: transform 0.7s cubic-bezier(0.25, 0.1, 0.25, 1);
  cursor: grab;
}
.slider__list.slider_list--grabbing {
  cursor: grabbing;
  transition: none;
}
.slider__item {
  min-width: 100%;
  height: 100%;
}
.slider__image {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
  aspect-ratio: 16/9;
  background-color: #000;
}
.slider__controls {
  position: absolute;
  top: 50%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  transform: translateY(-50%);
}
.slider__button {
  display: flex;
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  padding: 0.3rem;
  cursor: pointer;
  z-index: 10;
  transition: background-color 0.3s;
}
.slider__button.slider__button--prev {
  right: 1rem;
}
.slider__button.slider__button--next {
  left: 1rem;
}
.slider__button.slider__button--next .icon {
  transform: rotate(180deg);
}
.slider__button:hover {
  background-color: rgba(255, 255, 255, 0.75);
}
.slider__dots {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
}
.slider__dot {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: width 0.3s, height 0.3s;
}
.slider__dot.slider__dot--active {
  background-color: #ffffff;
  width: 0.75rem;
  height: 0.75rem;
}

.tab__content {
  position: relative;
  width: 100%;
}
.tab__pane {
  position: absolute;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s;
  width: 100%;
}
.tab__pane--active {
  opacity: 1;
  visibility: visible;
  position: relative;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1010;
  transition: opacity 0.2s linear;
  justify-content: center;
  align-items: center;
  opacity: 0;
}
.modal__dialog {
  position: relative;
  max-width: 90%;
  background-color: #fff;
  margin-top: -5rem;
  transition: margin-top 0.2s ease-in-out, transform 0.2s ease-in-out;
}
.modal .modal__close {
  display: flex;
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem;
  cursor: pointer;
  background-color: var(--color-secondary);
}
.modal .modal__body {
  padding: 1rem;
}

.property-card {
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}
.property-card__figure {
  position: relative;
  display: flex;
  margin: 0;
  padding: 0;
}
.property-card__image {
  aspect-ratio: 16/9;
  height: 100%;
}
.property-card__location {
  position: absolute;
  top: 0.75rem;
  right: 0;
  font-size: 0.8rem;
  background-color: rgba(255, 255, 255, 0.65);
  border-radius: 0.3rem 0 0 0.3rem;
  padding: 0.25rem 0.75rem;
}
.property-card__toolbar {
  position: absolute;
  top: 0.75rem;
  left: 0;
  color: #ffffff;
  padding: 0 0.75rem;
}
.property-card__play {
  position: absolute;
  top: 50%;
  right: 50%;
  width: 60px;
  height: 60px;
  opacity: 0.6;
  transform: translate(30px, -30px);
}
.property-card__body {
  padding: 1rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.property-card__title {
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 0.625rem;
}
.property-card__info {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.property-card__info-item {
  text-align: center;
  border-left: 1px solid var(--border-color);
  font-size: 0.85rem;
  color: #666666;
  line-height: 2;
}
.property-card__info-item:last-child {
  border-left: 0;
}
.property-card__price {
  text-align: center;
  font-weight: 600;
  margin-top: 1rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 0.5rem;
}
.product-card__title {
  font-size: 0.9rem;
  font-weight: 500;
}
.product-card__unit {
  font-size: 0.65rem;
  font-weight: 500;
  color: #777;
}
.product-card__price {
  font-size: 0.7rem;
  font-weight: 500;
  color: #777;
}
.product-card__counter {
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 0.2rem;
       column-gap: 0.2rem;
  min-height: 1.5rem;
  border: 1px solid var(--border-color);
  line-height: 1;
}
.product-card__counter-button {
  padding: 0;
  height: 1.5rem;
  width: 1.25rem;
  background-color: inherit;
  border: none;
}
.product-card__counter-value {
  font-size: 0.8rem;
  min-width: 1.5rem;
  text-align: center;
  padding-top: 2px;
  line-height: 1;
}

.comment-card {
  padding: 1rem 1.25rem;
  border: 1px solid var(--border-color);
}
.comment-card__header {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.5rem;
}
.comment-card__column {
  display: flex;
}
.comment-card__column.comment-card__column--start {
  flex-direction: row;
  align-items: center;
  -moz-column-gap: 1.25rem;
       column-gap: 1.25rem;
}
.comment-card__column.comment-card__column--end {
  flex-direction: column;
  justify-content: center;
  row-gap: 0.5rem;
}
.comment-card__image {
  width: 45px;
  height: 45px;
  border-radius: 10rem;
}
.comment-card__name {
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.comment-card__duration {
  color: #777;
  font-size: 0.8rem;
  font-weight: 500;
}
.comment-card__rate {
  display: flex;
  justify-content: end;
  align-items: start;
  -moz-column-gap: 0.25rem;
       column-gap: 0.25rem;
  font-size: 0.8rem;
  font-weight: 500;
}
.comment-card__icon {
  width: 16px;
  height: 16px;
}
.comment-card__date {
  text-align: left;
  font-size: 0.8rem;
  color: #777;
  font-weight: 500;
}
.comment-card__body {
  display: flex;
  flex-direction: column;
  row-gap: 0.75rem;
}
.comment-card__content {
  font-size: 0.85rem;
  font-weight: 500;
  color: #444;
  line-height: 1.8;
}
.comment-card.comment-card--answer {
  background-color: #fafafa;
  border: 0;
  margin-right: 50px;
}
.comment-card.comment-card--answer .comment-card__name {
  margin-bottom: 0;
}

@media screen and (max-width: 480px) {
  .comment-card {
    padding: 0.75rem 1rem;
  }
  .comment-card__column.comment-card__column--start {
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
  }
  .comment-card__column.comment-card__column--end {
    row-gap: 0.25rem;
  }
  .comment-card__image {
    width: 35px;
    height: 35px;
  }
  .comment-card__name {
    font-size: 0.8rem;
    margin-bottom: 0.25rem;
  }
  .comment-card__duration {
    font-size: 0.75rem;
  }
  .comment-card__date {
    font-size: 0.75rem;
  }
  .comment-card__rate {
    -moz-column-gap: 0.25rem;
         column-gap: 0.25rem;
    font-size: 0.75rem;
    margin-bottom: 0.25rem;
  }
  .comment-card__content {
    font-size: 0.8rem;
  }
  .comment-card.comment-card--answer {
    margin-right: 0;
  }
}
.city-card__body {
  display: flex;
  align-items: center;
  margin-top: 0.5rem;
}
.city-card__title {
  font-size: 1rem;
  font-weight: 500;
}
.city-card__subtitle {
  color: #777777;
  font-size: 0.9rem;
  margin-right: 0.5rem;
}

.time-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid var(--border-color);
  row-gap: 1rem;
  padding: 1rem 2rem;
}
.time-card__title {
  font-size: 0.9rem;
}
.time-card__value {
  color: #777;
  font-size: 0.9rem;
}

@media screen and (max-width: 480px) {
  .time-card {
    padding: 0.75rem 1.25rem;
  }
}
.modal.modal--property-guarantee .modal__dialog {
  position: relative;
  width: 700px;
}
.modal.modal--property-guarantee .modal__body {
  padding: 3rem;
}
.modal.modal--property-guarantee .modal__close {
  display: flex;
  position: absolute;
  top: 1rem;
  left: 1rem;
  padding: 0.25rem;
  cursor: pointer;
  background-color: var(--color-secondary);
}

/* Sale property «ویژگی‌های تکمیلی» modal: full-screen sheet on mobile only */
@media screen and (max-width: 768px) {
  .modal.modal--fullscreen-mobile {
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    background-color: #ffffff;
    overflow: hidden;
  }

  .modal.modal--fullscreen-mobile .sale-dynamic-features-modal__dialog {
    width: 100%;
    max-width: none;
    height: 100%;
    max-height: none;
    min-height: 100vh;
    min-height: 100dvh;
    margin: 0 !important;
    margin-top: 0 !important;
    border-radius: 0;
    direction: rtl;
  }

  .modal.modal--fullscreen-mobile .sale-dynamic-features-modal__sheet-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-shrink: 0;
    padding: 0.75rem 1rem;
    border-bottom: 1px solid #e4e4e7;
    background-color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 2;
  }

  .modal.modal--fullscreen-mobile .sale-dynamic-features-modal__sheet-title {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #18181b;
    line-height: 1.4;
  }

  .modal.modal--fullscreen-mobile .sale-dynamic-features-modal__sheet-close {
    position: static;
    flex-shrink: 0;
  }

  .modal.modal--fullscreen-mobile .modal__body {
    flex: 1;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1rem;
  }
}

@media screen and (min-width: 769px) {
  .modal.modal--fullscreen-mobile .sale-dynamic-features-modal__sheet-head {
    display: block;
    position: static;
    height: 0;
    margin: 0;
    padding: 0;
    border: none;
    overflow: visible;
  }

  .modal.modal--fullscreen-mobile .sale-dynamic-features-modal__sheet-title {
    display: none;
  }

  .modal.modal--fullscreen-mobile .sale-dynamic-features-modal__sheet-close {
    position: absolute;
    top: 1rem;
    left: 1rem;
  }
}

.property-archive-page__header {
  padding: 1rem 0 0.5rem 0;
}
.property-archive-page__title {
  font-size: 1.5rem;
}
.property-archive-page__subtitle {
  font-size: 0.9rem;
  opacity: 0.8;
}
.property-archive-page__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 1.5rem;
}
@media screen and (max-width: 768px) {
  .property-archive-page__list {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
.property-archive-page__more {
  text-align: center;
  padding: 2rem 0 4rem;
}
.property-archive-page__more .button {
  font-size: 1rem;
  padding: 0.5rem 1.5rem;
}

.property-landing-page__hero {
  display: flex;
  background-image: url("../images/villa.jpg");
  background-size: cover;
  height: 300px;
}

.location-landing-page__hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  background-size: cover;
  background-position: center;
  min-height: 360px;
}
.location-landing-page__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.25));
}
.location-landing-page__hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 2.5rem 0 3rem;
  color: #ffffff;
}
.location-landing-page__breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.85);
}
.location-landing-page__breadcrumb a {
  color: #ffffff;
}
.location-landing-page__title {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.location-landing-page__subtitle {
  max-width: 42rem;
  font-size: 1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: 1.5rem;
}
.location-landing-page__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.khazarshahr-landing-page__zone--north {
  border-top: 4px solid #0284c7;
}
.khazarshahr-landing-page__zone--south {
  border-top: 4px solid #059669;
}
.khazarshahr-landing-page__header-image img {
  box-shadow: 12px 12px 0 rgba(24, 24, 27, 0.08);
}
.property-landing-page__header {
  padding: 1rem 0 0.5rem 0;
}
.property-landing-page__title {
  font-size: 1.5rem;
}
.property-landing-page__subtitle {
  font-size: 0.9rem;
  opacity: 0.8;
}

.property-categories {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  align-items: start;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  padding: 3rem 0;
}
.property-categories__item {
  border: 1px solid var(--border-color);
  text-align: center;
  padding: 1rem;
  color: #777777;
}
.property-categories__title {
  margin-top: 0.5rem;
}

@media screen and (max-width: 480px) {
  .property-categories {
    grid-template-columns: repeat(4, 1fr);
    -moz-column-gap: 0.75rem;
         column-gap: 0.75rem;
    row-gap: 0.75rem;
  }
}

.property-single-page {
  padding: 3rem 0 5rem;
}
.property-single-page__layout {
  display: grid;
  grid-template-columns: 1fr 430px;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
}
.property-single-page__sidebar {
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  row-gap: 2rem;
}
.property-single-page__tab-nav {
  display: flex;
  -moz-column-gap: 0.75rem;
       column-gap: 0.75rem;
  margin-bottom: 0.75rem;
}
.property-single-page__tab-button {
  border: 1px solid var(--border-color);
  padding: 0.4rem 1.25rem;
  font-size: 0.95rem;
  cursor: pointer;
  color: #666666;
}
.property-single-page__tab-button.tab__button--active {
  border-color: #999999;
  color: #444444;
}
.property-single-page__media {
  /* max-height: 518px; */
}
.property-single-page__video {
  width: 100%;
  aspect-ratio: 16/9;
}
.property-single-page__titlebar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem 0;
}
.property-single-page__title {
  font-size: 1.2rem;
  font-weight: 600;
}
.property-single-page__rating {
  display: flex;
  align-items: center;
  -moz-column-gap: 0.5rem;
       column-gap: 0.5rem;
  cursor: pointer;
}
.property-single-page__rating-score {
  font-size: 0.9rem;
  font-weight: 600;
}
.property-single-page__rating-count {
  color: #777;
  font-size: 0.8rem;
}
.property-single-page__h2 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1.25rem;
}

@media screen and (max-width: 480px) {
  .property-single-page {
    padding: 2rem 0 3rem;
  }
  .property-single-page__layout {
    display: grid;
    grid-template-columns: 100%;
    -moz-column-gap: 0;
         column-gap: 0;
  }
  .property-single-page__sidebar {
    row-gap: 1.5rem;
    margin-top: 2rem;
  }
  .property-single-page__tab-button {
    padding: 0.3rem 1rem;
    font-size: 0.85rem;
  }
  .property-single-page__media {
    height: auto;
  }
  .property-single-page__titlebar {
    flex-direction: column;
    align-items: start;
    row-gap: 1rem;
  }
  .property-single-page__title {
    font-size: 1.1rem;
    line-height: 1.8;
  }
  .property-single-page__h2 {
    font-size: 1rem;
  }
}
/* Slider: hide location nav on mobile */
@media screen and (max-width: 480px) {
  .location-prev-slide,
  .location-next-slide { display: none !important; }

  .property-archive-page__list--sale-mobile-stack {
    grid-template-columns: 1fr;
  }
}

/* View-all button style */
.view-all-button,
.flex.justify-end.items-end.gap-x-2 > a > .flex.justify-center.items-center.text-sm.font-medium.border.border-zinc-200.h-8.p-2.cursor-pointer,
.flex.justify-end.items-end.gap-x-2 > .flex.justify-center.items-center.text-sm.font-medium.border.border-zinc-200.h-8.p-2.cursor-pointer {
  background-color: #fff;
  border: 1px solid #d8d8d8;
  border-radius: .5rem;
  color: #0e1011;
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  padding: 8.67px 10px;
}

/* Landing page titles and subtitles */
.property-landing-page h2 {
  color: #213743 !important;
  font-size: 16px !important;
  font-weight: 700 !important;
}
.property-landing-page .text-sm.text-gray-500 {
  color: #213743 !important;
  font-size: 12px !important;
  font-weight: 300 !important;
}

.custom-scroll {
    /* برای Firefox */
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;

    /* برای Chrome, Edge, Safari */
}

.custom-scroll::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}

.custom-scroll::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.custom-scroll::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 20px;
    border: 1px solid #f1f1f1; /* ایجاد فاصله ظاهری */
}

/* Site top announcement (admin-managed) */
.site-top-announcement {
  width: 100%;
  min-height: 38px;
  max-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  box-sizing: border-box;
  overflow: hidden;
  direction: rtl;
  position: relative;
  z-index: 20;
  margin: 0;
  font-family: var(--body-font-family, IRANYekanXVFaNumVF, serif);
}

.site-top-announcement__inner {
  width: 100%;
  max-width: 1280px;
  height: 38px;
  max-height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0 auto;
  color: inherit;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
  text-align: center;
  box-sizing: border-box;
  min-width: 0;
}

a.site-top-announcement__inner {
  transition: opacity 0.15s ease;
}

a.site-top-announcement__inner:hover {
  opacity: 0.9;
}

.site-top-announcement__text {
  flex: 1 1 auto;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: center;
}

.site-top-announcement__cta {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 22px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .site-top-announcement {
    min-height: 34px;
    max-height: 36px;
    padding: 0 12px;
  }

  .site-top-announcement__inner {
    height: 34px;
    font-size: 12px;
    gap: 0;
  }

  .site-top-announcement__cta {
    display: none;
  }
}


/*# sourceMappingURL=main.css.map */
