/* Components Styles - Éléments réutilisables */

.feature-list {
  padding-left: 0;
  margin-bottom: 30px;
  margin-top: 20px;
}

.feature-item {
  position: relative;
  padding-left: 32px;
  margin-bottom: 18px;
  list-style: none;
  font-weight: 400;
  line-height: 1.7;
}

.feature-item strong {
  display: block;
  margin-bottom: 6px;
}

.feature-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 16px;
  height: 16px;
  background-color: #e6f4eb;
  border: 2px solid #067F38;
  border-radius: 4px;
  transform: rotate(45deg);
}

.audio-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #2ecc40;
  border: none;
  color: white;
  cursor: pointer;
  margin-left: 16px;
  vertical-align: middle;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
  transition: all 0.15s ease;
  position: relative;
  top: -3px;
}

.audio-btn:hover {
  background: #29b739;
  transform: translateY(-2px);
  box-shadow: 0 3px 6px rgba(0,0,0,0.15);
}

.audio-btn:active {
  transform: translateY(1px);
  box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

.audio-btn.playing {
  background: #ff851b;
}

.audio-btn .icon-play,
.audio-btn .icon-pause {
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  margin-top: -5px;
}

.audio-btn .icon-pause {
  display: none;
}

.audio-btn.playing .icon-play {
  display: none;
}

.audio-btn.playing .icon-pause {
  display: flex;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  border-radius: 8px;
  overflow: hidden;
}

.pricing-table th {
  background: #067F38;
  color: white;
  padding: 15px 12px;
  text-align: left;
  font-weight: 500;
  font-size: 0.95em;
}

.pricing-table td {
  padding: 12px;
  border-bottom: 1px solid #eee;
  vertical-align: top;
  font-size: 0.9em;
}

.pricing-table tr:last-child td {
  border-bottom: none;
}

.pricing-table tr:nth-child(even) {
  background: #f9f9f9;
}

.pricing-table .price-range {
  font-weight: 500;
  color: #067F38;
}

.pricing-table .property-type {
  font-weight: 500;
  color: #333;
}

.pricing-table .remarks {
  color: #666;
  font-size: 0.80em;
  line-height: 1.4;
}

/* Styles spécifiques pour la section interdictions/limitations */
.prohibition-title {
  color: #b71c1c !important;
  font-weight: 600;
  border-left: 4px solid #b71c1c;
  padding-left: 12px;
  margin-bottom: 20px;
}

.prohibition-list {
  padding-left: 0;
  margin-bottom: 30px;
  margin-top: 20px;
  background-color: #ffeee6;
  border: 2px solid #b71c1c;
  border-radius: 8px;
  padding: 20px;
}

.prohibition-item {
  position: relative;
  padding-left: 32px;
  margin-bottom: 15px;
  list-style: none;
  font-weight: 500;
  line-height: 1.6;
  color: #b71c1c;
}

.prohibition-item::before {
  content: "✗";
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: #b71c1c;
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: bold;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}
