/*init*/

    /* ----- FAQ GoldBeaut&eacute; PREMIUM ----- */

.faq-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
  gap: 32px;
  padding: 32px;
  background: #191919;
}

.faq-tile {
  background: #fff;
  border-radius: 1.25rem;
  box-shadow: 0 4px 32px rgba(0,0,0,0.10);
  padding: 2rem;
  transition: transform .12s cubic-bezier(.43,.41,.22,.91), box-shadow .12s;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: 280px;
  position: relative;
  border: 1px solid #eee;
}

.faq-tile:hover {
  transform: translateY(-8px) scale(1.015);
  box-shadow: 0 10px 48px 0 rgba(80,65,36,0.13);
  border-color: #e6c16c;
}

.faq-tile .faq-title {
  font-size: 1.18rem;
  font-weight: 700;
  color: #b8963c;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: .8em;
}

.faq-tile .faq-title i {
  font-size: 1.35em;
  color: #b8963c;
}

.faq-tile .faq-list {
  flex: 1 1 auto;
  margin-bottom: 1.5em;
}

.faq-tile .faq-list li {
  margin-bottom: .7em;
  font-size: 1.02em;
  color: #333;
  list-style: none;
}

.faq-tile .faq-link {
  display: inline-block;
  margin-top: auto;
  color: #b8963c;
  font-weight: 600;
  font-size: 1em;
  text-decoration: underline;
  transition: color .2s;
}

.faq-tile .faq-link:hover {
  color: #e6c16c;
}

/* Recherche et CTA */
.faq-header {
  max-width: 1000px;
  margin: 0 auto 2rem auto;
  text-align: center;
  padding: 2rem 0 1rem 0;
}
.faq-header h1 {
  font-size: 2.5rem;
  font-weight: 900;
  color: #b8963c;
  margin-bottom: 1.25rem;
}
.faq-search-bar {
  padding: 0.7em 1.5em;
  font-size: 1.1rem;
  border-radius: 2em;
  border: 1.5px solid #b8963c;
  width: 80%;
  max-width: 600px;
  outline: none;
}
.faq-cta-expert {
  margin: 3rem auto 0 auto;
  max-width: 540px;
  background: #f4efd8;
  border-radius: 1.2rem;
  color: #5b4400;
  font-weight: 700;
  text-align: center;
  padding: 1.5rem 2.5rem;
  font-size: 1.15em;
  box-shadow: 0 2px 10px rgba(185,150,60,0.07);
}

/* Responsive&nbsp;*/
@media (max-width: 767px) {
  .faq-container { grid-template-columns: 1fr; padding: 1rem;}
  .faq-header h1 { font-size: 1.35rem;}
  .faq-tile { padding: 1.1em; min-height: 190px;}
  .faq-cta-expert { font-size: 1em; padding: 1em;}
}

