 /* Variables couleurs */
    :root {
      --primary-color: #38633B;
      --primary-dark: #4c8c4a;
      --primary-light: #6e9c6b;
      --dark-color: #333;
      --light-color: #fff;
      --beige: #f5f5f5;
      --gray-200: #e9e9e9;
      --border: #bdbdbd;
      --font-main: 'Montserrat', sans-serif;
      --radius-md: 10px;
      --radius-rounded: 50%;
      --spacing-xs: 4px;
      --spacing-sm: 8px;
      --spacing-md: 16px;
      --spacing-lg: 24px;
      --spacing-xl: 32px;
      --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
      --shadow-md: 0 4px 8px rgba(0,0,0,0.08);
      --transition-fast: 0.2s ease;
      --transition-normal: 0.3s ease;
      --font-weight-medium: 500;
      --font-weight-bold: 700;
      --header-height: 80px;
    }
    
    /* Reset et base */
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }
    
    body {
      font-family: var(--font-main);
      background: var(--beige);
      color: var(--dark-color);
      min-width: 320px;
      line-height: 1.6;
    }

    .container {
      width: 100%;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 var(--spacing-md);
    }
    
    a {
      text-decoration: none;
      color: var(--primary-color);
    }
    
    ul {
      list-style: none;
    }
    
    img {
      max-width: 100%;
    }
    
    h1, h2, h3 {
      color: var(--primary-color);
      margin-bottom: var(--spacing-md);
    }
    
   
    
    
    
    /* Styles de la page produit */
    .produit-container {
      margin-top: 30px;
      margin-bottom: 80px;
    }
    
    .breadcrumb {
      color: #888;
      font-size: 0.95rem;
      margin-bottom: 18px;
    }
    
    .breadcrumb a {
      color: var(--primary-color);
      transition: color 0.2s;
    }
    
    .breadcrumb a:hover {
      color: var(--primary-dark);
    }
    
    .titre-produit {
      text-align: center;
      color: var(--primary-color);
      font-size: 2.5rem;
      margin-bottom: 35px;
      font-weight: 600;
    }
    
    .grid-produit {
      display: grid;
      grid-template-columns: 3fr 6fr 3fr;
      gap: 25px;
      margin-bottom: 40px;
      align-items: start;
    }
    
    .col-gauche {
      background: #fff;
      border-radius: var(--radius-md);
      padding: 24px 20px;
      box-shadow: var(--shadow-sm);
    }
    
    .bien-a-louer h2 {
      font-size: 1.3rem;
      color: var(--primary-color);
      margin-bottom: 15px;
      border-bottom: 2px solid var(--primary-light);
      padding-bottom: 8px;
    }
    
    .bien-a-louer ul {
      color: var(--dark-color);
      font-size: 1.05rem;
      padding-left: 10px;
    }
    
    .bien-a-louer li {
      margin-bottom: 10px;
      position: relative;
      padding-left: 20px;
    }
    
    .bien-a-louer li:before {
      content: "•";
      color: var(--primary-color);
      position: absolute;
      left: 0;
    }
    
    .col-centre {
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .carousel {
      position: relative;
      width: 100%;
      height: 380px;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .carousel img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-md);
    }
    
    .carousel-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      background: var(--primary-color);
      color: var(--light-color);
      border: none;
      border-radius: 50%;
      width: 44px;
      height: 44px;
      font-size: 1.5rem;
      cursor: pointer;
      z-index: 2;
      opacity: 0.8;
      transition: background 0.2s, opacity 0.2s;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .carousel-btn:hover {
      background: var(--primary-dark);
      opacity: 1;
    }
    
    .carousel-btn.left { left: -18px; }
    .carousel-btn.right { right: -18px; }
    
    .col-droite {
      background: #fff;
      border-radius: var(--radius-md);
      padding: 24px 20px;
      box-shadow: var(--shadow-sm);
    }
    
    .actions-produit {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    
    .prix-produit {
      font-size: 1.8rem;
      font-weight: 600;
      color: var(--primary-color);
      text-align: center;
      margin-bottom: 20px;
    }
    
    .btn-action {
      display: block;
      background: var(--primary-color);
      color: var(--light-color);
      text-align: center;
      padding: 12px;
      border-radius: var(--radius-md);
      font-weight: 500;
      transition: background 0.2s;
    }
    
    .btn-action:hover {
      background: var(--primary-dark);
    }
    
    .btn-devis {
      background: #fff;
      color: var(--primary-color);
      border: 2px solid var(--primary-color);
    }
    
    .btn-devis:hover {
      background: #f0f7f0;
    }
    
    .description-produit {
      background: #fff;
      border-radius: var(--radius-md);
      padding: 25px;
      margin-bottom: 40px;
      font-size: 1.1rem;
      color: var(--dark-color);
      box-shadow: var(--shadow-sm);
      line-height: 1.8;
    }
    
    .description-title {
      font-size: 1.5rem;
      border-bottom: 2px solid var(--primary-light);
      padding-bottom: 10px;
      margin-bottom: 20px;
    }
    
    .section-title {
      font-size: 1.5rem;
      border-bottom: 2px solid var(--primary-light);
      padding-bottom: 10px;
      margin: 40px 0 20px;
    }
    
    .localisation {
      margin-bottom: 40px;
      text-align: center;
    }
    
    .localisation img {
      width: 100%;
      max-width: 800px;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-md);
    }
    
    .caracteristiques-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
      gap: 20px;
      background: #fff;
      border-radius: var(--radius-md);
      padding: 25px;
      font-size: 1.1rem;
      color: var(--dark-color);
      margin-bottom: 40px;
      box-shadow: var(--shadow-sm);
    }
    
    .caracteristique-item {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    
    .caracteristique-icon {
      width: 40px;
      height: 40px;
      background: var(--primary-light);
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: white;
    }
    
    /* Avantages */
    .avantages-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 25px;
      margin-bottom: 40px;
    }
    
    .avantage-item {
      background: #fff;
      border-radius: var(--radius-md);
      padding: 25px;
      text-align: center;
      box-shadow: var(--shadow-sm);
      transition: transform 0.3s;
    }
    
    .avantage-item:hover {
      transform: translateY(-5px);
    }
    
    .avantage-icon {
      font-size: 2.5rem;
      color: var(--primary-color);
      margin-bottom: 15px;
    }
    
    .avantage-title {
      font-size: 1.2rem;
      margin-bottom: 10px;
      color: var(--primary-color);
    }
    
    /* CTA section */
    .cta-section {
      background: var(--primary-color);
      color: white;
      border-radius: var(--radius-md);
      padding: 40px;
      text-align: center;
      margin-bottom: 60px;
    }
    
    .cta-title {
      color: white;
      font-size: 2rem;
      margin-bottom: 20px;
    }
    
    .cta-buttons {
      display: flex;
      justify-content: center;
      gap: 20px;
      margin-top: 30px;
    }
    
    .cta-btn {
      background: white;
      color: var(--primary-color);
      padding: 12px 30px;
      border-radius: var(--radius-md);
      font-weight: 600;
      transition: background 0.2s;
    }
    
    .cta-btn:hover {
      background: #f0f0f0;
    }
    
    .cta-btn.outline {
      background: transparent;
      border: 2px solid white;
      color: white;
    }
    
    .cta-btn.outline:hover {
      background: rgba(255,255,255,0.1);
    }
    
    /* Footer */
    footer {
      background: var(--dark-color);
      color: #fff;
      padding: 50px 0 25px;
    }
    
    .footer-container {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 30px;
    }
    
    .footer-col h3 {
      color: #fff;
      font-size: 1.2rem;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
    }
    
    .footer-col h3::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: 0;
      width: 50px;
      height: 2px;
      background: var(--primary-color);
    }
    
    .footer-col ul li {
      margin-bottom: 10px;
    }
    
    .footer-col ul li a {
      color: #ccc;
      transition: color 0.2s;
    }
    
    .footer-col ul li a:hover {
      color: var(--primary-light);
    }
    
    .footer-logo img {
      height: 60px;
      margin-bottom: 15px;
    }
    
    .footer-description {
      color: #aaa;
      font-size: 0.9rem;
    }
    
    .footer-bottom {
      margin-top: 40px;
      padding-top: 20px;
      border-top: 1px solid #444;
      text-align: center;
      font-size: 0.9rem;
      color: #888;
    }
    
    .footer-bottom a {
      color: #aaa;
    }
    
    /* Responsivité */
    @media (max-width: 992px) {
     .grid-produit {
        grid-template-columns: 1fr;
      }
      
      .carousel {
        height: 300px;
      }
      
      .avantages-grid {
        grid-template-columns: 1fr;
      }
      
      .footer-container {
        grid-template-columns: 1fr 1fr;
      }
    }
    
    @media (max-width: 768px) {
      .cta-buttons {
        flex-direction: column;
        gap: 15px;
      }
      
      .caracteristiques-grid {
        grid-template-columns: 1fr;
      }
      
      .footer-container {
        grid-template-columns: 1fr;
      }
    }
