chocolat-quizz {
  display: block;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 1rem;
  font-family: Georgia, "Times New Roman", serif;
  color: #3E2723;
  background: #FFF8F0;
  border-radius: 12px;
  box-sizing: border-box;
}

.lcq-progress {
  height: 6px;
  background: #EFEBE9;
  border-radius: 3px;
  margin-bottom: 2rem;
  overflow: hidden;
}

.lcq-progress-bar {
  height: 100%;
  background: #795548;
  border-radius: 3px;
  transition: width 0.4s ease;
  width: 0%;
}

.lcq-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.lcq-left {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lcq-step {
  font-size: 0.85rem;
  color: #6D4C41;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.lcq-question {
  font-size: 1.4rem;
  font-weight: 400;
  line-height: 1.4;
  margin: 0;
  color: #3E2723;
}

.lcq-right {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.lcq-choice {
  display: block;
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 2px solid #D7CCC8;
  border-radius: 8px;
  background: #FFFFFF;
  color: #3E2723;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  cursor: pointer;
  text-align: left;
  transition: all 0.2s ease;
}

.lcq-choice:hover {
  background: #795548;
  color: #FFFFFF;
  border-color: #795548;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(62, 39, 35, 0.15);
}

.lcq-choice:active {
  transform: translateY(0);
}

.lcq-result {
  display: none;
}

.lcq-result-name {
  font-size: 1.6rem;
  font-weight: 400;
  margin: 0;
  color: #3E2723;
  line-height: 1.3;
}

.lcq-result-profil {
  display: inline-block;
  background: #EFEBE9;
  color: #795548;
  padding: 0.3rem 0.8rem;
  border-radius: 20px;
  font-size: 0.85rem;
  margin: 0;
  width: fit-content;
}

.lcq-result-explanation {
  font-size: 1rem;
  line-height: 1.6;
  color: #6D4C41;
  margin: 0.5rem 0 0;
}

.lcq-result-story {
  font-size: 0.95rem;
  line-height: 1.6;
  font-style: italic;
  color: #795548;
  margin: 0;
  padding-left: 1rem;
  border-left: 3px solid #D7CCC8;
}

.lcq-product-image {
  margin-bottom: 1rem;
}

.lcq-product-image img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 2px 12px rgba(62, 39, 35, 0.1);
}

.lcq-product-placeholder {
  background: #EFEBE9;
  border-radius: 8px;
  padding: 3rem 1rem;
  text-align: center;
  color: #6D4C41;
  font-style: italic;
}

.lcq-loading {
  background: #EFEBE9;
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  color: #6D4C41;
}

.lcq-product-price {
  font-size: 1.2rem;
  color: #795548;
  margin: 0.5rem 0;
  font-weight: 600;
  text-align: center;
}

.lcq-buy-link {
  display: inline-block;
  background: #795548;
  color: #FFFFFF !important;
  padding: 0.8rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1rem;
  transition: all 0.2s ease;
  margin-top: 0.5rem;
  text-align: center;
}

.lcq-buy-link:hover {
  background: #5D4037;
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(62, 39, 35, 0.2);
  color: #FFFFFF;
}

.lcq-restart-wrapper {
  text-align: center;
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #D7CCC8;
}

.lcq-restart {
  background: none;
  border: 2px solid #D7CCC8;
  color: #6D4C41;
  padding: 0.6rem 1.5rem;
  border-radius: 8px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 0.9rem;
  cursor: pointer;
  transition: all 0.2s ease;
}

.lcq-restart:hover {
  border-color: #795548;
  color: #795548;
}

@media (max-width: 768px) {
  chocolat-quizz {
    padding: 1.5rem 1rem;
  }
  .lcq-columns {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  .lcq-question {
    font-size: 1.2rem;
  }
  .lcq-result-name {
    font-size: 1.3rem;
  }
}

/*# sourceMappingURL=style.css.map */
