/* Landing Buttons Plugin - Frontend Styles */

.lb-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem 1rem;
}

.lb-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 3rem 2.5rem;
  max-width: 400px;
  width: 100%;
  text-align: center;
  box-shadow: 0 8px 40px rgba(0,0,0,.10);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

/* Logo initiales */
.lb-logo--initials {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: #eef2ff;
  font-size: 26px;
  font-weight: 600;
  color: #4338ca;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: -0.5px;
}

/* Logo image */
.lb-logo--img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  overflow: hidden;
}
.lb-logo--img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.lb-title {
  font-size: 22px !important;
  font-weight: 600 !important;
  color: #111111 !important;
  margin: 0 !important;
  line-height: 1.3 !important;
}

.lb-desc {
  font-size: 15px;
  color: #666666;
  line-height: 1.6;
  margin: 0;
  max-width: 300px;
}

.lb-buttons {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.lb-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 24px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none !important;
  transition: opacity .15s ease, transform .1s ease;
  cursor: pointer;
  border: none;
}

.lb-btn:hover  { opacity: .88; transform: translateY(-1px); }
.lb-btn:active { opacity: .80; transform: scale(.98); }

/* Bouton site web */
.lb-btn--website {
  color: #ffffff !important;
}
.lb-btn--website svg {
  flex-shrink: 0;
}

/* Bouton Google */
.lb-btn--google {
  background: #ffffff;
  color: #3c3c3c !important;
  border: 1.5px solid #e0e0e0 !important;
}

.lb-google-dots {
  display: flex;
  gap: 3px;
  flex-shrink: 0;
}
.lb-google-dots span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  display: block;
}

/* Responsive mobile */
@media (max-width: 480px) {
  .lb-card {
    padding: 2rem 1.5rem;
    border-radius: 18px;
  }
  .lb-title { font-size: 19px !important; }
  .lb-btn   { padding: 13px 18px; font-size: 14px; }
}
