/**
 * LiveBroker - fiche produit conversion.
 * Chargé uniquement sur les pages produit.
 */

.lb-quote-primary {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.35rem !important;
  border: 2px solid #111 !important;
  border-radius: 4px;
  background: #111 !important;
  color: #fff !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  line-height: 1.2;
  text-align: center;
  text-decoration: none !important;
  box-shadow: none;
  cursor: pointer;
}

.lb-quote-primary:hover,
.lb-quote-primary:focus {
  background: #fff !important;
  color: #111 !important;
  outline: 2px solid #111;
  outline-offset: 2px;
}

.lb-quote-microcopy {
  display: block;
  margin-top: 0.55rem;
  max-width: 34rem;
  color: #555;
  font-size: 0.88rem;
  line-height: 1.45;
}

.lb-existing-trust-block,
.lb-quote-reassurance {
  margin-top: 1rem !important;
  padding: 1rem 1.1rem !important;
  border: 1px solid #ddd;
  border-radius: 6px;
  background: #fafafa;
}

.lb-quote-reassurance {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
}

.lb-quote-reassurance__item {
  display: flex;
  gap: 0.55rem;
  align-items: flex-start;
  color: #222;
  font-size: 0.92rem;
  line-height: 1.35;
}

.lb-quote-reassurance__check {
  flex: 0 0 auto;
  font-weight: 800;
}

.lb-phone-link {
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.lb-mobile-quote-bar {
  display: none;
}

@media (max-width: 767px) {
  .lb-quote-primary {
    width: 100%;
    min-height: 54px;
  }

  .lb-quote-reassurance {
    grid-template-columns: 1fr;
  }

  body.lb-product-conversion-active {
    padding-bottom: 78px;
  }

  .lb-mobile-quote-bar {
    position: fixed;
    z-index: 1040;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    gap: 0.55rem;
    align-items: center;
    padding: 0.65rem;
    border-top: 1px solid #d8d8d8;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.12);
  }

  .lb-mobile-quote-bar__quote {
    flex: 1 1 auto;
    min-height: 48px;
    border: 2px solid #111;
    border-radius: 4px;
    background: #111;
    color: #fff;
    font-weight: 700;
  }

  .lb-mobile-quote-bar__phone {
    display: inline-flex;
    flex: 0 0 48px;
    width: 48px;
    height: 48px;
    align-items: center;
    justify-content: center;
    border: 1px solid #bbb;
    border-radius: 4px;
    background: #fff;
    color: #111;
    font-size: 1.2rem;
    text-decoration: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lb-quote-primary,
  .lb-mobile-quote-bar__quote {
    scroll-behavior: auto;
  }
}