.elementor-1839 .elementor-element.elementor-element-f165817{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1839 .elementor-element.elementor-element-0315dd0{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1839 .elementor-element.elementor-element-e07aba3{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1839 .elementor-element.elementor-element-e07aba3:not(.elementor-motion-effects-element-type-background), .elementor-1839 .elementor-element.elementor-element-e07aba3 > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#1B0E0F;}.elementor-1839 .elementor-element.elementor-element-cb15d38{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1839 .elementor-element.elementor-element-4fd664d{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-1839 .elementor-element.elementor-element-4fd664d:not(.elementor-motion-effects-element-type-background), .elementor-1839 .elementor-element.elementor-element-4fd664d > .elementor-motion-effects-container > .elementor-motion-effects-layer{background-color:#0D0000;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-f11c660 *//* ---------- NAV SIMPLE PAGE BIEN DÉTAILLÉ ---------- */

.page-header-simple {
  width: 100%;
  padding: 16px 20px 10px;
  background: var(--bg-page); /* même fond beige que le site */
}

.page-nav {
  max-width: 1180px;
  margin: 0 auto 20px;
  background: var(--nav-bg);              /* même pilule que sur le hero */
  border-radius: 999px;
  padding: 10px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 16px;
  box-shadow: 0 14px 40px rgba(13,0,0,0.18);
}

/* On réutilise tes classes existantes .nav-logo, .nav-links, .nav-cta, .nav-toggle */
/* Si tu les as déjà dans ton CSS global, pas besoin de les recopier. 
   Sinon, tu peux remettre ce que tu avais pour la nav du hero. */

/* Version mobile : nav en pilule + menu déroulant */
@media (max-width: 900px) {
  .page-nav {
    padding-inline: 16px;
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  .nav-cta {
    padding: 7px 14px;
    font-size: 12px;
  }

  .nav-links.is-open {
    display:flex;
    flex-direction:column;
    row-gap:10px;
    position:absolute;
    top:100%;
    left:50%;
    transform:translateX(-50%);
    margin-top:8px;
    background:var(--nav-bg);
    border-radius:18px;
    padding:10px 18px;
    width:min(96vw,300px);
    box-shadow:0 16px 40px rgba(13,0,0,0.25);
    z-index:10;
  }
}
/* Version mobile : nav en pilule + menu déroulant */
@media (max-width: 900px) {
  .page-nav {
    padding-inline: 16px;
    position: relative; /* pour que le menu se positionne par rapport à la pilule */
  }

  .nav-links {
    display: none;
  }

  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;              /* taille homogène */
    height: 32px;
    border-radius: 999px;
  }

  /* Menu déroulant CENTRÉ sous la pilule pour cette nav simple */
  .page-nav .nav-links.is-open {
    display: flex;
    flex-direction: column;
    row-gap: 10px;
    position: absolute;
    top: 100%;
    left: 50% !important;         /* on force le centrage */
    right: auto !important;
    transform: translateX(-50%) !important;
    margin-top: 8px;
    background: var(--nav-bg);
    border-radius: 18px;
    padding: 10px 18px;
    width: min(96vw, 300px);
    box-shadow: 0 16px 40px rgba(13,0,0,0.25);
    z-index: 10;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-882c76a *//* ---------- OVERVIEW PROPERTY + AVIS ---------- */

.po-wrapper {
  width: 100%;
  padding: 60px 20px 70px;
  background: var(--bg-page);
}

.po-top {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 34px;
  align-items: start;
}

/* Galerie */

.po-gallery {
  width: 100%;
}

.po-main {
  margin: 0;
  border-radius: 24px;
  overflow: hidden;
  background: var(--card-bg);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.14);
}

.po-main-img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.po-thumbs {
  margin-top: 14px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.po-thumb {
  border: 0;
  padding: 0;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  background: transparent;
  opacity: 0.65;
  transition: opacity .15s ease, transform .15s ease, box-shadow .15s ease;
}

.po-thumb img {
  width: 100%;
  height: 78px;
  object-fit: cover;
  display: block;
}

.po-thumb:hover,
.po-thumb.is-active {
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18);
}

/* Overview droite */

.po-overview {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.10);
}

.po-title {
  margin: 0 0 10px;
  font-size: 30px;
  line-height: 1.2;
  font-weight: 600;
  color: var(--text-dark);
}

.bien-price {
  margin-bottom: 22px;
  font-size: 22px;
  font-weight: 700;
  color: var(--primary);
}

.po-specs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 22px;
  margin-bottom: 26px;
}

.po-spec-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.po-spec-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted-dark);
  line-height: 1.35;
}

.po-dot {
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--primary);
  flex: 0 0 auto;
}

.po-description {
  margin-top: 8px;
}

.po-description h3 {
  margin: 0 0 12px;
  font-size: 18px;
  color: var(--text-dark);
}

.po-description p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.65;
  color: var(--text-muted-dark);
}

.po-more-btn {
  margin-top: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 24px;
  border-radius: 999px;
  background: var(--primary);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 14px 35px rgba(15, 23, 42, 0.16);
  transition: background .15s ease, transform .15s ease, box-shadow .15s ease;
}

.po-more-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.24);
}

/* Avis client */

.po-bottom {
  max-width: 1180px;
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 28px;
  align-items: center;
  background: #1A0F0F;
  color: #fff;
  border-radius: 28px;
  padding: 34px;
}

.po-mini-tag {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-beige);
  margin-bottom: 10px;
}

.po-bottom-title {
  margin: 0;
  font-size: 26px;
  line-height: 1.3;
}

.po-bottom-title span {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent-beige);
}

.po-testimonial {
  position: relative;
  background: #251515;
  border-radius: 22px;
  padding: 24px;
  border: 1px solid rgba(241, 208, 182, 0.18);
}

.po-testimonial-quote {
  position: absolute;
  top: 0;
  right: 0;
  background: var(--primary);
  color: #fff;
  font-size: 22px;
  padding: 10px 15px;
  border-bottom-left-radius: 24px;
}

.po-testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.po-avatar {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: rgba(241, 208, 182, 0.18);
  color: var(--accent-beige);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
}

.po-testimonial-name {
  font-size: 14px;
  font-weight: 600;
}

.po-testimonial-role {
  font-size: 12px;
  color: #b7aaa0;
}

.po-testimonial-stars {
  color: var(--accent-beige);
  font-size: 13px;
  margin-bottom: 10px;
}

.po-testimonial-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.65;
  color: #e5e7eb;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 980px) {
  .po-top {
    grid-template-columns: 1fr;
  }

  .po-main-img {
    height: 440px;
  }

  .po-bottom {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .po-wrapper {
    padding: 40px 16px 60px;
  }

  .po-main-img {
    height: 330px;
  }

  .po-thumbs {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .po-thumb img {
    height: 72px;
  }

  .po-overview {
    padding: 22px 18px;
  }

  .po-title {
    font-size: 24px;
  }

  .po-specs {
    grid-template-columns: 1fr;
  }

  .po-bottom {
    padding: 24px 18px;
  }

  .po-bottom-title {
    font-size: 22px;
  }

  .po-more-btn {
    width: 100%;
  }
}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-c64a97b *//* ---------- BIENS LIÉS ---------- */

.property-related-wrapper {
  padding: 50px 20px 60px;
  background: #1A0F0F;
  color: var(--text-light);
}

.property-related-section {
  max-width: 1180px;
  margin: 0 auto;
}

.pr-head {
  display: flex;
  flex-direction: column;
  row-gap: 6px;
  margin-bottom: 20px;
}

.pr-tag {
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-beige);
}

.pr-title {
  margin: 0;
  font-size: 24px;
  line-height: 1.3;
}

.pr-title span {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 400;
  color: var(--accent-beige);
}

.pr-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 18px;
}

.pr-card {
  background: #131010;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(241,208,182,0.16);
  display: flex;
  flex-direction: column;
  box-shadow: 0 20px 55px rgba(0,0,0,0.6);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}

.pr-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 26px 70px rgba(0,0,0,0.75);
  border-color: rgba(241,208,182,0.4);
}

.pr-image {
  height: 170px;
  background-size: cover;
  background-position: center;
}

.pr-body {
  padding: 14px 16px 14px;
  font-size: 13px;
}

.pr-name {
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 600;
}

.pr-price {
  margin: 0 0 8px;
  font-size: 13px;
  color: var(--accent-beige);
}

.pr-desc {
  margin: 0 0 10px;
  color: #e5e7eb;
  font-size: 13px;
}

.pr-meta {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 11px;
  color: #9ca3af;
}

/* ---------- RESPONSIVE ---------- */

@media (max-width: 960px) {
  .property-main-layout {
    grid-template-columns: minmax(0,1fr);
  }

  .property-testimonial-layout {
    grid-template-columns: minmax(0,1fr);
  }

  .pr-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 720px) {
  .pg-thumbs {
    grid-template-columns: repeat(4, minmax(0,1fr));
  }

  .pr-grid {
    grid-template-columns: minmax(0,1fr);
  }

  .property-main-wrapper,
  .property-testimonial-wrapper,
  .property-related-wrapper {
    padding-inline: 16px;
  }
}

@media (max-width: 560px) {
  .pg-main-image img {
    max-height: 320px;
  }
}
.pr-card {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

/* ---------- BOUTON TOUS LES BIENS ---------- */

.pr-footer {
  margin-top: 28px;
  display: flex;
  justify-content: center;
}

.pr-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 26px;
  border-radius: 999px;
  background: transparent;
  border: 1px solid rgba(241,208,182,0.6);
  color: var(--accent-beige);
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color .15s ease, transform .15s ease, box-shadow .15s ease, color .15s ease;
}

.pr-btn:hover {
  background: var(--primary);
  color: var(--text-light);
  transform: translateY(-1px);
  box-shadow: 0 14px 35px rgba(13,0,0,0.45);
}/* End custom CSS */
/* Start custom CSS for container, class: .elementor-element-4fd664d */.footer-gb-logo {
  margin-bottom: 12px;
  display: flex;
  justify-content: flex-start;
}

.footer-gb-logo img {
  max-width: 110px;
  height: auto;
  display: block;
}/* End custom CSS */