/* =========================================================
   FOOTER SST — compact avec avis mis en valeur
========================================================= */

.site-footer {
    background: #ffffff;
    border-top: 1px solid rgba(15, 23, 42, .08);
    padding: 22px 0 24px;
    color: #0f172a;
  }
  
  .footer-inner {
    display: grid;
    gap: 14px;
  }
  
  .footer-main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 16px 18px;
    border: 1px solid rgba(15, 23, 42, .08);
    background: #f8fafc;
    border-radius: 12px;
  }
  
  .footer-brand {
    display: grid;
    gap: 3px;
  }
  
  .footer-brand strong {
    font-size: 15px;
    font-weight: 900;
    color: #0f172a;
  }
  
  .footer-brand span {
    font-size: 13px;
    color: #64748b;
  }
  
  .footer-links {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
  }
  
  .footer-links a {
    color: #475569;
    font-size: 13px;
    font-weight: 750;
    text-decoration: none;
  }
  
  .footer-links a:hover {
    color: #06784f;
  }
  
  /* Bloc avis compact */
  
  .footer-review-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    padding: 12px 14px;
    border: 1px solid rgba(10, 163, 106, .16);
    background: linear-gradient(180deg, #ffffff, #f8fffb);
    border-radius: 12px;
  }
  
  .footer-rating {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    color: inherit;
    text-decoration: none;
    min-width: 0;
  }
  
  .footer-stars {
    display: inline-flex;
    color: #f5b301;
    font-size: 15px;
    letter-spacing: 1px;
    line-height: 1;
    white-space: nowrap;
  }
  
  .footer-rating-text {
    display: grid;
    gap: 2px;
    min-width: 0;
  }
  
  .footer-rating-text strong {
    font-size: 14px;
    font-weight: 900;
    color: #0f172a;
  }
  
  .footer-rating-text span {
    font-size: 13px;
    color: #64748b;
  }
  
  .footer-rating-empty .footer-stars {
    color: #cbd5e1;
  }
  
  .footer-review-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 34px;
    padding: 7px 11px;
    border-radius: 8px;
    background: #ffffff;
    border: 1px solid rgba(10, 163, 106, .24);
    color: #06784f;
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
    white-space: nowrap;
  }
  
  .footer-review-link:hover {
    background: rgba(10, 163, 106, .07);
  }
  
  .footer-bottom {
    display: flex;
    justify-content: center;
    color: #64748b;
    font-size: 12px;
  }
  
  /* Responsive */
  
  @media (max-width: 760px) {
    .footer-main,
    .footer-review-box {
      align-items: flex-start;
      flex-direction: column;
    }
  
    .footer-links {
      gap: 10px;
    }
  
    .footer-review-link {
      width: 100%;
    }
  }