.elementor-kit-13{--e-global-color-primary:#EE762C;--e-global-color-secondary:#D6B18A;--e-global-color-text:#727272;--e-global-color-accent:#FFFFFF;--e-global-typography-primary-font-family:"Roboto";--e-global-typography-primary-font-weight:600;--e-global-typography-secondary-font-family:"Roboto Slab";--e-global-typography-secondary-font-weight:400;--e-global-typography-text-font-family:"Roboto";--e-global-typography-text-font-weight:400;--e-global-typography-accent-font-family:"Roboto";--e-global-typography-accent-font-weight:500;}.elementor-kit-13 e-page-transition{background-color:#FFBC7D;}.elementor-section.elementor-section-boxed > .elementor-container{max-width:1140px;}.e-con{--container-max-width:1140px;}.elementor-widget:not(:last-child){--kit-widget-spacing:20px;}.elementor-element{--widgets-spacing:20px 20px;--widgets-spacing-row:20px;--widgets-spacing-column:20px;}{}h1.entry-title{display:var(--page-title-display);}.site-header .site-branding{flex-direction:column;align-items:stretch;}.site-header{padding-inline-end:0px;padding-inline-start:0px;}.site-footer .site-branding{flex-direction:column;align-items:stretch;}@media(max-width:1024px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:1024px;}.e-con{--container-max-width:1024px;}}@media(max-width:767px){.elementor-section.elementor-section-boxed > .elementor-container{max-width:767px;}.e-con{--container-max-width:767px;}}/* Start custom CSS *//* ========================================
   NOTY ANNONCES - STYLES COMPLETS
   ======================================== */

/* ===== GRILLE DE CARTES ===== */
.noty-grid {
  display: grid;
  background: transparent;
  grid-template-columns: repeat(auto-fill, minmax(420px, 1fr));
  gap: 24px;
  padding: 10px 0;
}

/* ===== CARTE INDIVIDUELLE ===== */
.noty-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 200px 1fr;
  min-height: 220px;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}

.noty-card:hover {
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

/* ===== IMAGE + BADGE ===== */
.noty-card__media {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #e8e8e8 0%, #f5f5f5 100%);
}

.noty-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}

.noty-card:hover .noty-card__media img {
  transform: scale(1.05);
}

/* Badge en bas à gauche de l'image */
.noty-card__badge {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
}

.noty-card__badge--location {
  background: linear-gradient(135deg, #b8860b 0%, #d4a017 100%);
}

.noty-card__badge-icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* ===== CONTENU DROITE ===== */
.noty-card__content {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
}

/* Localisation */
.noty-card__location {
  font-size: 15px;
  font-weight: 600;
  color: #1e3a5f;
  letter-spacing: 0.3px;
}

.noty-card__location span {
  font-weight: 400;
  color: #5a7a9a;
}

/* Type de bien */
.noty-card__type {
  font-size: 17px;
  font-weight: 700;
  color: #222;
  margin-top: 2px;
}

/* Détails (pièces, surface) */
.noty-card__details {
  font-size: 14px;
  color: #555;
  margin-bottom: 8px;
}

/* ===== BLOC PRIX ===== */
.noty-card__price-block {
  background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
  color: #fff;
  padding: 14px 16px;
  border-radius: 10px;
  margin-top: auto;
}

.noty-card__price-block--location {
  background: linear-gradient(135deg, #b8860b 0%, #d4a017 100%);
}

.noty-card__price {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 6px;
}

.noty-card__price-details {
  font-size: 11px;
  text-align: center;
  opacity: 0.92;
  display: flex;
  flex-direction: column;
  gap: 1px;
  line-height: 1.4;
}

/* ===== RESPONSIVE CARTES ===== */
@media (max-width: 900px) {
  .noty-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 500px) {
  .noty-card {
    grid-template-columns: 1fr;
    grid-template-rows: 180px auto;
  }
  
  .noty-card__media {
    height: 180px;
  }
  
  .noty-card__badge {
    border-radius: 0;
  }
}

/* ===== BOUTON "AFFICHER PLUS" ===== */
.noty-more {
  margin-top: 32px;
  text-align: center;
  grid-column: 1 / -1;
}

.noty-more__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 10px;
  border: 2px solid #1e3a5f;
  background: #fff;
  color: #1e3a5f;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}

.noty-more__btn:hover {
  background: #1e3a5f;
  color: #fff;
}

/* ========================================
   FILTRES
   ======================================== */

.noty-filters {
  margin: 0 0 28px 0;
  background: #f8fafc;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #e2e8f0;
}

/* Filtres principaux */
.noty-filters__main {
  display: grid;
  grid-template-columns: 1fr 1fr 1.5fr auto;
  gap: 16px;
  align-items: end;
}

.noty-filters__actions {
  display: flex;
  gap: 10px;
  align-items: flex-end;
}

/* Filtres avancés */
.noty-filters__advanced {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px dashed #cbd5e1;
  animation: notySlideDown 0.3s ease;
}

@keyframes notySlideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.noty-filters__row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 16px;
}

.noty-filters__row--actions {
  margin-bottom: 0;
  margin-top: 8px;
  display: flex;
  justify-content: flex-start;
}

/* Champs */
.noty-filters__field {
  display: flex;
  flex-direction: column;
}

.noty-filters__field--spacer {
  visibility: hidden;
}

.noty-filters__field span {
  font-size: 12px;
  font-weight: 500;
  color: #64748b;
  margin-bottom: 6px;
}

.noty-filters__field input,
.noty-filters__field select {
  width: 100%;
  height: 46px;
  padding: 10px 14px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  box-sizing: border-box;
  font-size: 14px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.noty-filters__field input:focus,
.noty-filters__field select:focus {
  outline: none;
  border-color: #1e3a5f;
  box-shadow: 0 0 0 3px rgba(30, 58, 95, 0.1);
}

.noty-filters__field input::placeholder {
  color: #94a3b8;
}

/* Boutons */
.noty-filters__btn {
  height: 46px;
  padding: 0 20px;
  border-radius: 10px;
  border: none;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.25s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.noty-btn-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.noty-filters__btn--search {
  background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
  color: #fff;
  min-width: 140px;
}

.noty-filters__btn--search:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(30, 58, 95, 0.3);
}

.noty-filters__btn--toggle {
  background: #fff;
  border: 1px solid #cbd5e1;
  color: #475569;
  min-width: 180px;
}

.noty-filters__btn--toggle:hover {
  background: #f1f5f9;
  border-color: #94a3b8;
}

.noty-filters__btn--toggle.noty-filters__btn--active {
  background: #e2e8f0;
  border-color: #1e3a5f;
  color: #1e3a5f;
}

.noty-toggle-icon {
  width: 16px;
  height: 16px;
  transition: transform 0.3s ease;
}

.noty-filters__btn--reset {
  background: #fff;
  border: 2px solid #ef4444;
  color: #ef4444;
  padding: 0 24px;
}

.noty-filters__btn--reset:hover {
  background: #ef4444;
  color: #fff;
}

/* ========================================
   ÉTATS (loading, empty, error)
   ======================================== */

.noty-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  text-align: center;
  padding: 60px 20px;
  color: #64748b;
  font-size: 16px;
}

.noty-spinner {
  width: 40px;
  height: 40px;
  border: 3px solid #e2e8f0;
  border-top-color: #1e3a5f;
  border-radius: 50%;
  animation: notySpin 0.8s linear infinite;
}

@keyframes notySpin {
  to { transform: rotate(360deg); }
}

.noty-empty {
  text-align: center;
  padding: 60px 20px;
  color: #64748b;
  font-size: 16px;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px dashed #cbd5e1;
}

.noty-error {
  text-align: center;
  padding: 40px 20px;
  color: #dc2626;
  font-size: 14px;
  background: #fef2f2;
  border-radius: 12px;
  border: 1px solid #fecaca;
}

.noty-results-count {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 16px;
  font-weight: 500;
}

/* ========================================
   RESPONSIVE FILTRES
   ======================================== */

@media (max-width: 1100px) {
  .noty-filters__main {
    grid-template-columns: 1fr 1fr;
  }
  
  .noty-filters__field--lieu {
    grid-column: 1 / -1;
  }
  
  .noty-filters__actions {
    grid-column: 1 / -1;
    justify-content: stretch;
  }
  
  .noty-filters__btn {
    flex: 1;
  }
  
  .noty-filters__row {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .noty-filters__field--spacer {
    display: none;
  }
}

@media (max-width: 600px) {
  .noty-filters {
    padding: 16px;
  }
  
  .noty-filters__main {
    grid-template-columns: 1fr;
  }
  
  .noty-filters__row {
    grid-template-columns: 1fr;
  }
  
  .noty-filters__actions {
    flex-direction: column;
  }
  
  .noty-filters__btn {
    width: 100%;
  }
}

/* ========================================
   NOTY PREVIEW - COMPOSANT PAGE D'ACCUEIL
   ======================================== */

.noty-preview {
  padding: 60px 20px;
  background: transparent; /* <-- FOND TRANSPARENT */
  width: 100%;
  box-sizing: border-box;
}

/* Container interne */
.noty-preview__inner {
  max-width: 1400px;
  margin: 0 auto;
  width: 100%;
}

/* Header */
.noty-preview__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
  flex-wrap: wrap;
  gap: 16px;
}

.noty-preview__titles {
  flex: 1;
  min-width: 200px;
}

.noty-preview__title {
  font-size: 32px;
  font-weight: 700;
  color: #1e3a5f;
  margin: 0 0 8px 0;
  line-height: 1.2;
}

.noty-preview__subtitle {
  font-size: 16px;
  color: #64748b;
  margin: 0;
}

.noty-preview__count {
  background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
  color: #fff;
  padding: 10px 20px;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

/* Grille des cartes - FULL WIDTH */
.noty-preview__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-bottom: 40px;
  width: 100%;
}

/* ===== CARTE PREVIEW ===== */
.noty-preview-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  cursor: pointer;
  width: 100%;
  min-width: 0;
}

.noty-preview-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

/* Image */
.noty-preview-card__media {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.noty-preview-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.noty-preview-card:hover .noty-preview-card__media img {
  transform: scale(1.08);
}

/* Tag Vente/Location */
.noty-preview-card__tag {
  position: absolute;
  top: 16px;
  left: 16px;
  background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
  color: #fff;
  padding: 8px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.noty-preview-card__tag--location {
  background: linear-gradient(135deg, #b8860b 0%, #d4a017 100%);
}

/* Prix sur l'image */
.noty-preview-card__price {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  color: #1e3a5f;
  padding: 12px 18px;
  border-radius: 12px;
  font-size: 20px;
  font-weight: 700;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

/* Contenu */
.noty-preview-card__content {
  padding: 24px;
}

.noty-preview-card__location {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #64748b;
  margin-bottom: 10px;
}

.noty-preview-card__icon {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

.noty-preview-card__type {
  font-size: 22px;
  font-weight: 700;
  color: #1e293b;
  margin: 0 0 14px 0;
  line-height: 1.3;
}

/* Caractéristiques */
.noty-preview-card__features {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.noty-preview-card__feature {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #475569;
  background: #f1f5f9;
  padding: 8px 14px;
  border-radius: 8px;
  white-space: nowrap;
}

.noty-preview-card__feature svg {
  width: 16px;
  height: 16px;
  stroke: #1e3a5f;
  flex-shrink: 0;
}

/* ===== BOUTON CTA ===== */
.noty-preview__cta {
  text-align: center;
}

.noty-preview__btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 36px;
  background: linear-gradient(135deg, #1e3a5f 0%, #2d4a6f 100%);
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  text-decoration: none;
  border-radius: 12px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(30, 58, 95, 0.3);
}

.noty-preview__btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(30, 58, 95, 0.4);
  color: #fff;
}

.noty-preview__btn-icon {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.noty-preview__btn:hover .noty-preview__btn-icon {
  transform: translateX(4px);
}

/* ========================================
   RESPONSIVE PREVIEW
   ======================================== */

@media (max-width: 1100px) {
  .noty-preview__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
  
  .noty-preview-card__media {
    height: 180px;
  }
  
  .noty-preview-card__content {
    padding: 18px;
  }
  
  .noty-preview-card__type {
    font-size: 18px;
  }
  
  .noty-preview-card__price {
    font-size: 16px;
    padding: 10px 14px;
  }
}

@media (max-width: 900px) {
  .noty-preview__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  
  .noty-preview-card__media {
    height: 200px;
  }
}

@media (max-width: 600px) {
  .noty-preview {
    padding: 40px 16px;
  }
  
  .noty-preview__header {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 24px;
  }
  
  .noty-preview__title {
    font-size: 26px;
  }
  
  .noty-preview__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .noty-preview-card__media {
    height: 200px;
  }
  
  .noty-preview__btn {
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   VARIANTE AVEC FOND SOMBRE (optionnel)
   ======================================== */

.noty-preview--dark {
  background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
  padding: 80px 20px;
}

.noty-preview--dark .noty-preview__title {
  color: #fff;
}

.noty-preview--dark .noty-preview__subtitle {
  color: #94a3b8;
}

.noty-preview--dark .noty-preview__count {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
}

.noty-preview--dark .noty-preview__btn {
  background: #fff;
  color: #1e3a5f;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}

.noty-preview--dark .noty-preview__btn:hover {
  background: #f8fafc;
}/* End custom CSS */