/* =============================
   Fairy Hint Bubble
   ============================= */

.fee-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 1rem 0;
}
.fee-wrapper img {
  height: auto;
  width: auto;
  max-height: 100px;
  max-width: 100px;
  object-fit: contain;
  flex-shrink: 0;
}
.bulle {
  position: relative;
  background: rgba(0, 149, 137, 0.08);
  border: 2px solid #009589;
  border-radius: 16px;
  padding: 1.1rem 1.3rem;
  font-size: inherit;
  line-height: inherit;
}
.bulle p {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}
.bulle::before {
  content: '';
  position: absolute;
  top: 24px; left: -14px;
  border-width: 8px 14px 8px 0;
  border-style: solid;
  border-color: transparent #009589 transparent transparent;
}
.bulle::after {
  content: '';
  position: absolute;
  top: 27px; left: -9px;
  border-width: 5px 10px 5px 0;
  border-style: solid;
  border-color: transparent rgba(0, 149, 137, 0.08) transparent transparent;
}
.bulle-label {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: #009589;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

/* =============================
   Fairy Hint Bubble — Feo Ul
   ============================= */
.feo-ul-wrapper { display: flex; align-items: center; gap: 16px; padding: 1rem 0; }
.feo-ul-wrapper img { height: auto; width: auto; max-height: 100px; max-width: 100px; object-fit: contain; flex-shrink: 0; }
.feo-ul-wrapper .bulle { position: relative; background: rgba(232, 77, 14, 0.08); border: 2px solid #e84d0e; border-radius: 16px; padding: 1.1rem 1.3rem; font-size: inherit; line-height: inherit; }
.feo-ul-wrapper .bulle::before { content: ''; position: absolute; top: 24px; left: -14px; border-width: 8px 14px 8px 0; border-style: solid; border-color: transparent #e84d0e transparent transparent; }
.feo-ul-wrapper .bulle::after { content: ''; position: absolute; top: 27px; left: -9px; border-width: 5px 10px 5px 0; border-style: solid; border-color: transparent rgba(232, 77, 14, 0.08) transparent transparent; }
.feo-ul-wrapper .bulle-label { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; color: #e84d0e; font-weight: 600; margin-bottom: 0.5rem; }
.feo-ul-wrapper .bulle p { margin: 0; font-size: inherit; line-height: inherit; }