.header-wrapper{
  position: sticky;
  padding: 20px 80px;
}
.property-intro h3, .features h3{
  font-size: 30px;
  margin-bottom: 5px;
  margin-top: 0px;
  color: var(--text-blue);
}
.property-intro p{
  margin: 0px;
  line-height: 1.8;
  color: var(--my-grey);
}
.property-intro p{
    color: var(--my-grey);
    font-size: 22px;
    font-weight: 600;
}
.property-top {
  gap: 50px;
  margin: 0px 50px;
  padding-bottom: 40px;
  display: block;
}

.property-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin: 0 auto;
  margin-bottom: 40px;
}

.property-intro {
  flex: 1 1 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
.feature-image {
    width: 100%;
    height: auto;
    display: grid;;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    grid-template-rows: auto auto;
    border-radius: 25px;
}
.property-hero{
  border-radius: 16px;
  overflow: hidden;
  height: 35vw;
}
.property-hero a{
  width: 100%;
  margin-bottom: 10px;
}
.property-hero img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 16px;
  height: 35vw
}
.thumbnail-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr); /* 2x2 grid */
  gap: 10px;
  height: 35vw;
}
.thumbnail-gallery a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 12px;
}
.thumbnail-gallery a,
.thumbnail-gallery .more-images {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: 100%; /* Γεμίζει κάθε grid κελί */
  font-weight: bold;
}
.thumbnail-gallery .thumb {
  display: none !important;
}
.thumbnail-gallery .thumb-1,
.thumbnail-gallery .thumb-2,
.thumbnail-gallery .thumb-3,
.thumbnail-gallery .thumb-4 {
  display: inline-block;
}
.more-images {
  display: none; 
  padding: 22px 5px;
  border-radius: 12px;
  background-color: #f0f0f0;
  color: var(--my-blue);
  font-size: 14px;
}
@media (min-width: 768px){
  .more-images{
    display: none !important;
  }
}
.feature-gallery{
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 10px;
    justify-content: center;
    max-width: 94%;
    padding-left: 20px;
}
.feature-gallery img {
    width: 100%;
    height: 15vw;
    object-fit: cover;
    border-radius: 20px;
    cursor: pointer;
}
.intro-details{
    display: flex;
    padding-left: 0px;
    margin-top: 0px;
}
.intro-details li{
    margin: auto 0;
    margin-right: 15px;
    color: #555;
    font-size: 15px;
}
span{
    margin-left: 5px;
}
.price-display {
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-display .strike-blue {
  text-decoration: line-through;
  text-decoration-color: var(--my-blue); /* μπλε γραμμή */
  text-decoration-thickness: 2px;
  color: #666;
}

.price-display .sold-tag {
  background-color: var(--my-blue); /* ίδιο μπλε με το theme σου */
  color: #fff;
  padding: 4px 10px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: bold;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.property-intro p::after {
  display: none;
}
.share-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  border: 1px solid var(--my-blue);
  border-radius: 20px;
  width: 110px;
  padding: 5px 20px;
  box-sizing: border-box;
  cursor: pointer;
  overflow: hidden;
  transition: padding-right 0.3s ease;
  background-color: #fff;
}

.share-button a {
  text-decoration: none;
  color: var(--my-blue);
  font-weight: 600;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.share-button a span {
  display: inline-block;
  width: 50px;
}

.share-icon {
  width: 18px;
  height: 18px;
  margin-left: 5px;
  transition: transform 0.3s ease;
  position: relative;
}

/* Hover animation */
.share-button:hover {
  padding-right: 25px;
}

.share-button:hover .share-icon {
  animation: jumpRight 0.8s ease forwards;
}

@keyframes jumpRight {
  0%   { transform: translateX(0); }
  50%  { transform: translateX(8px); }
  100% { transform: translateX(0); }
}

.share-options {
  display: none;
  position: absolute;
  bottom: 35px;
  left: -20px; /* δεξιά από το κουμπί */
  background: white;
  border: 1px solid #37247a30;
  padding: 5px 20px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  border-radius: 25px;
  z-index: 999;
}

.share-options ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
}
.share-options ul :last-child{
  margin-right: 0px;
}
.share-options li {
  margin-right: 15px;
  display: flex;
}
.share-options ul li{
  transition: transform 0.2s ease, background-color 0.2s ease;
}

.share-options ul li:hover {
  transform: scale(1.05);
  cursor: pointer;
}
.share-options li:last-child {
  margin-bottom: 0;
}

.share-options a {
  color: var(--my-blue);
  text-decoration: none;
  font-weight: 500;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  text-align: center;
}
.share-options li a img{
  width: 23px;
}
.share-button a span {
	margin-left: 0px;
}
/* .toggle-before-btn {
  position: absolute;
  top: 20px;
  left: 20px;
  z-index: 9999;
  background: white;
  color: black ;
  padding: 10px 30px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size: 15px;
} */
.property-description p{
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  color: var(--my-grey);
  line-height: 1.6;
  text-align: justify;
}

.property-chatacteristics, .features h3{
  margin: 20px 50px 0px 50px;
  font-size: 35px;
  color: var(--text-blue);

}
.property-wrapper {
  display: flex;
  gap: 40px;
  margin: 0px 50px;
  margin-bottom: 50px;
  align-items: stretch;
  margin-top: 30px;
}
.property-details {  
    display: flex;
    background-color: white;
    border-radius: 30px;
    gap: 45px;
    margin-right: 0px;
    /* margin-top: 50px; */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    padding: 10px 20px;
    max-width: 900px;
    margin: auto;
}

.property-details .column {
    width: 250px;
    list-style: none;
    padding: 0;
}

.property-details .column li:last-child {
    border-bottom: none;
    margin-bottom: 0px;
}
.property-image{
  margin: auto;
}
.property-image img{
  width: 80%;
  display: flex;
  margin: auto;
}
.property-details .label {
    display: block;
    font-weight: bold;
    color: #333;
    font-size: 15px;
}

.property-details .value {
    display: block;
    font-size: 15px;
    color: var(--my-grey);
}
.property-intro p::after{
  content: '€';
}
.property-description p::after{
  content: none;
}
.property-features-wrapper{
  display: flex;
  
}
.property-features{
  padding-bottom: 50px;
}
.features ul {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  list-style: none;
  padding-left: 0;
  margin-top: 20px;
  gap: 12px 30px;         /* Κάθετο και οριζόντιο κενό */
  max-width: 90%;       
  margin-top: 30px;
  margin-left: 50px;
}

.features ul li {
  display: flex;
  align-items: center;
  font-size: 18px;
}

.features ul li img.feature-icon {
  margin-right: 15px;
  width: 20px;
  flex-shrink: 0;
}
li{
    list-style: none;
}
.property-item {
  display: flex;
  align-items: center; /* οριζόντια στοίχιση */
  gap: 12px; /* απόσταση εικόνας και κειμένου */
  margin-bottom: 40px;
}

.property-item .icon {
  height: 100%; /* Θέλουμε να είναι ίσο με το ύψος του text-property */
  max-height: 60px; /* Όριο στο μέγιστο ύψος για να μην γίνει τεράστιο */
  object-fit: contain;
  width: 25px;
}

.property-item .text-property {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

.property-item .label {
  font-weight: 600;
  font-size: 15px;
}

.property-item .value {
  font-size: 15px;
  color: #333;
}
.property-features li img{
    width: 20px;
}
.swiper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
/* .{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    justify-content: center;
    padding: 40px 0px;
    max-width: 1500px;
    margin: 0 auto;
    margin-top: 50px;
} */

.before-after-item {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
  width: 100%;
  max-width: 800px;
  transition: box-shadow 0.3s ease;
  margin: auto;
}

.before-after-item:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
}

.before-after-item .swiper {
  height: 500px;
  border-radius: 12px 12px 0 0;
}

.before-after-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.swiper-slide {
  position: relative;
}
.slider-title {
  font-size: 15px;
  text-align: center;
  margin: 12px 0 16px;
  color: black;
}
.image-label {
  position: absolute;
  top: 12px;
  left: -5px;
  background-color: #ffffffc2;
  color: black;
  padding: 4px 10px;
  font-size: 15px;
  text-transform: uppercase;
  z-index: 10;
  pointer-events: none;
}

/* Arrows */
.before-after-item {
}

.before-after-item .swiper-button-prev,
.before-after-item .swiper-button-next {
  position: absolute;
  top: 60%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.796);
  color: black;
  padding: 0px 30px;
  font-size: 14px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
  z-index: 10;
  text-align: center;
  box-shadow: 0 3px 10px rgba(0,0,0,0.15);
  transition: background-color 0.3s ease;
}

.before-after-item .swiper-button-prev {
  left: 10px;
}

.before-after-item .swiper-button-next {
  right: 10px;
}

.before-after-item .swiper-button-prev::after,
.before-after-item .swiper-button-next::after {
  display: none;
}


.post-navigation {
  margin: 80px 50px 0px 50px;
}

.post-navigation .nav-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.post-navigation .nav-previous a,
.post-navigation .nav-next a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  color: black;
  text-decoration: none;
  border-radius: 999px;
  font-weight: 500;
  transition: all 0.3s ease;
  max-width: 100%;
  white-space: nowrap;
}

.post-navigation .nav-previous a:hover,
.post-navigation .nav-next a:hover {
  background-color: var(--my-blue);
  color: white;
}

.post-navigation .nav-subtitle {
  display: none; /* Προαιρετικά: απόκρυψη του "Previous:" / "Next:" */
}

.post-navigation .nav-title {
  font-size: 1rem;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.lb-prev, .lb-next{
  display: none !important;
}
@media screen and (max-width: 1024px) {
  .header-wrapper{
    position: sticky;
    padding: 20px 40px;
  }
  .property-container {
    margin: 20px 0px 0px 0px;
  }
  .property-top{
    margin: 0px 20px;
    gap: 20px;
  }
  .property-intro h3, .features h3 {
    font-size: 25px;
  }
  .property-description p {
    font-size: 14px;
  }
  .property-chatacteristics, .features h3 {
    margin: 20px;
    font-size: 28px;
  }
  .property-wrapper {
    flex-direction: column-reverse;
    align-items: center;
    gap: 40px;
    margin: 0px 20px;
  }

  .property-features-wrapper {
    margin-top: 80px;
    display: block
  }
  .property-details {
    align-items: center;
    max-width: 100%;
  }
  .property-features {
    padding-bottom: 0px;
  }
  .property-image img {
    width: 100%;
  }
  .features ul {
    max-width: 100%;
    margin-left: 30px;
    gap: 12px 0px;
  }
  .features ul li {
    font-size: 16px;
  }
  .share-button a{
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .property-container {
    margin: 0px;
  }
  .property-top {
    flex-direction: column;
    align-items: center;
    gap: 30px;
    padding-bottom: 15px;
  }
  .property-hero {
    height: 60vw;
  }
  .property-hero img {
    width: 100%;
    height: 100%;
  }
  .property-intro {
    align-items: left;
  }
  .property-intro h3 {
    font-size: 24px;
  }
  .property-intro p {
    text-align: left;
  }
  .intro-details {
    margin-bottom: 10px;
  }
  .property-description p {
    text-align:justify;
  }

  .property-images {
    display: block;
    width: 100%;
  }
  .thumbnail-gallery{
    display: flex;
    height: 15vw;
    gap: 5px;
    margin-top: 5px;
  }
  .more-images{
    display: block !important;
    font-size: 12px;
  }
  .share-options {
    left: -30px;
  }
  .share-icon {
    margin-left: 0px;
	}
  .property-features-wrapper {
    display: block;
  }
  .features ul {
    gap: 5px 0px;
    grid-template-columns: repeat(2, 1fr);
  }
  .features ul li img.feature-icon {
    margin-right: 5px;
    width: 15px;
  }
}
@media screen and (max-width: 480px) {
  .property-top {
    margin: 0px 10px;
    gap: 20px;
  }
  .thumbnail-gallery {
    gap: 5px;
  }
  .property-hero a {
    margin-bottom: 5px;
  }
  .property-intro h3 {
      font-size: 22px;
  }
  .property-intro p {
      font-size: 20px;
  }
  .share-button {
    width: 100px;
  }
  .property-chatacteristics, .features h3 {
    font-size: 25px;
    margin: 10px;
  }
  .property-description p {
    font-size: 14px;
    text-align: justify;
  }
  .property-details {
    padding: 10px;
    gap: 30px;
  }
  .property-item {
    gap: 5px;
    margin-bottom: 25px;
  }
  .property-item .icon {
    width: 20px;
  }
  .property-item .label {
    font-size: 13px;
  }
  .property-item .value {
    font-size: 13px;
    margin-top: 5px;
  }
  .property-wrapper {
    margin: 0px 10px;
  }
  .property-description{
    margin-top: 10px;
  }
  .property-details{
    gap: 40px;
  }
  .property-details .column {
    width: 150px;
  }
  .share-options {
    left: -25px;
  }
  .share-options li a img {
      width: 19px;
  }

  .features ul {
    margin-top: 25px;
    margin-left: 10px;
    gap: 5px 10px;
  }
  .features ul li {
    font-size: 14px;
  }
  #project-map{
    height: 350px;
  }
}