@charset "UTF-8";
body {
  margin: 0;
  font-family: "Inter", sans-serif;
  background: radial-gradient(circle at top left, #e0f2fe 0, #f4f7ff 40%, #f4f7ff 100%);
  color: #111827;
}

body > header,
body > main {
  width: min(1100px, 100% - 2rem);
  margin-inline: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 1.5rem 0 1rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.logo-badge {
  width: 46px;
  height: 46px;
  border-radius: 16px;
  background: linear-gradient(120deg, #38bdf8, #a855f7, #f97373);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-weight: 700;
  font-size: 1.1rem;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text strong {
  text-transform: uppercase;
  font-size: 1.1rem;
  letter-spacing: 0.08em;
}

.logo-text span {
  font-size: 0.8rem;
  color: #6b7280;
}

#hero {
  background: #ffffff;
  border-radius: 22px;
  border: 1px solid #e0e7ff;
  padding: 1.5rem;
  margin-bottom: 2rem;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
}
#hero p:first-of-type {
  display: inline-block;
  padding: 0.3rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 500;
  color: #38bdf8;
  border: 1px solid #38bdf8;
  border-radius: 999px;
  margin-bottom: 1rem;
}
#hero h1 {
  font-size: 1.8rem;
  margin: 0 0 1rem;
}
#hero .highlight {
  background: linear-gradient(120deg, #38bdf8, #a855f7, #f97373);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}
#hero p:nth-of-type(2) {
  color: #6b7280;
  font-size: 0.95rem;
  max-width: 35rem;
  margin-bottom: 1.4rem;
}

.btn-primary {
  padding: 0.7rem 1.6rem;
  border-radius: 999px;
  border: none;
  background: linear-gradient(120deg, #38bdf8, #a855f7, #f97373);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
  box-shadow: 0 12px 26px rgba(148, 163, 255, 0.6);
  transition: transform 0.15s ease, box-shadow 0.15s ease, filter 0.15s ease;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(129, 140, 248, 0.9);
  filter: brightness(1.05);
}
.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 8px 16px rgba(129, 140, 248, 0.7);
}

.btn-primary--outline {
  background: #ffffff;
  color: #38bdf8;
  border: 1px solid #38bdf8;
  box-shadow: none;
}
.btn-primary--outline:hover {
  background: rgba(56, 189, 248, 0.08);
  box-shadow: 0 10px 24px rgba(148, 163, 255, 0.5);
}

#cartes-cadeaux {
  margin-bottom: 3rem;
}
#cartes-cadeaux h2 {
  margin-bottom: 1rem;
  font-size: 1.3rem;
}
#cartes-cadeaux .cards-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.8rem;
  margin-bottom: 1rem;
}
#cartes-cadeaux .gift-card {
  padding: 1rem;
  border-radius: 1rem;
  border: 1px solid #e0e7ff;
  background: #ffffff;
  box-shadow: 0 8px 18px rgba(15, 23, 42, 0.04);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}
#cartes-cadeaux .gift-card h3 {
  margin: 0 0 0.3rem;
  font-size: 1.1rem;
  transition: color 0.18s ease;
}
#cartes-cadeaux .gift-card p {
  margin: 0;
  font-size: 0.85rem;
  color: #6b7280;
  transition: color 0.18s ease;
}
#cartes-cadeaux .gift-card:not(.is-selected):hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.12);
  border-color: #38bdf8;
}
#cartes-cadeaux .gift-card.is-selected {
  background: linear-gradient(120deg, #38bdf8, #a855f7, #f97373);
  border-color: #a855f7;
  transform: translateY(-5px) scale(1.03);
  box-shadow: 0 18px 40px rgba(148, 163, 255, 0.55);
}
#cartes-cadeaux .gift-card.is-selected h3,
#cartes-cadeaux .gift-card.is-selected p {
  color: #ffffff !important;
}
#cartes-cadeaux .custom-amount {
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
  color: #6b7280;
}
#cartes-cadeaux .custom-amount input {
  width: 6rem;
  padding: 0.4rem 0.6rem;
  border-radius: 999px;
  border: 1px solid #e0e7ff;
  font-size: 0.9rem;
  margin-left: 0.4rem;
}
#cartes-cadeaux #btn-paiement {
  padding: 0.7rem 1.5rem;
  border-radius: 999px;
  border: 1px solid #38bdf8;
  background: #ffffff;
  color: #38bdf8;
  font-weight: 600;
  cursor: pointer;
  font-size: 0.95rem;
  box-shadow: none;
  display: inline-block;
  text-align: center;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
#cartes-cadeaux #btn-paiement:hover {
  transform: translateY(-2px);
  background: rgba(56, 189, 248, 0.06);
  box-shadow: 0 12px 26px rgba(148, 163, 255, 0.5);
}
#cartes-cadeaux #btn-paiement:active {
  transform: translateY(0);
  box-shadow: 0 6px 14px rgba(148, 163, 255, 0.5);
}

#contact {
  margin-bottom: 3rem;
}
#contact h2 {
  margin-bottom: 0.4rem;
  font-size: 1.3rem;
}
#contact .location {
  font-size: 0.9rem;
  color: #6b7280;
  margin-bottom: 1.4rem;
}
#contact .location strong {
  color: #111827;
}
#contact .contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.2rem;
}
#contact .contact-social,
#contact .contact-form {
  border-radius: 22px;
  border: 1px solid #e0e7ff;
  background: #ffffff;
  box-shadow: 0 18px 35px rgba(15, 23, 42, 0.08);
  padding: 1.2rem 1.4rem;
}
#contact .contact-social-title {
  margin: 0 0 0.8rem;
  font-size: 0.95rem;
  font-weight: 500;
}
#contact .socials {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}
#contact .social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.95rem;
  color: #111827;
}
#contact .social-link .iconify {
  font-size: 1.2rem;
  padding: 4px;
  border-radius: 999px;
  background: linear-gradient(120deg, #38bdf8, #a855f7, #f97373);
  color: #ffffff;
  box-shadow: 0 6px 16px rgba(148, 163, 255, 0.45);
}
#contact .social-link span {
  font-weight: 500;
}
#contact .contact-form h3 {
  margin: 0 0 0.8rem;
  font-size: 1.1rem;
}
#contact .contact-form form {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
#contact .contact-form form > div {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
#contact .contact-form form > div label {
  font-size: 0.85rem;
  color: #6b7280;
}
#contact .contact-form form > div input,
#contact .contact-form form > div select,
#contact .contact-form form > div textarea {
  padding: 0.55rem 0.7rem;
  border-radius: 0.8rem;
  border: 1px solid #e0e7ff;
  font-size: 0.9rem;
  font-family: inherit;
  outline: none;
}
#contact .contact-form form > div textarea {
  resize: vertical;
  min-height: 6rem;
}
#contact .contact-form form > div input:focus,
#contact .contact-form form > div select:focus,
#contact .contact-form form > div textarea:focus {
  border-color: #38bdf8;
  box-shadow: 0 0 0 1px #38bdf8;
}

.form-message {
  margin-top: 0.6rem;
  font-size: 0.85rem;
}

.form-message--error {
  color: #b91c1c;
}

.form-message--success {
  color: #15803d;
}

footer {
  margin-top: 2rem;
  padding-bottom: 2rem;
  text-align: center;
  font-size: 0.8rem;
  color: #6b7280;
}

/* ------------------------------------------
   PAGE PAIEMENT ICETEAX - mobile first
------------------------------------------- */
.page-paiement {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: radial-gradient(circle at top left, #f1f5ff 0%, #f9fbff 35%, #ffffff 100%);
  color: #101828;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Inter", sans-serif;
  padding: 1.25rem 1rem 2rem;
}
.page-paiement header {
  padding: 0 0 1rem;
}
.page-paiement h1 {
  font-size: 1.6rem;
  font-weight: 800;
  letter-spacing: 0.03em;
}
.page-paiement main {
  flex: 1;
  width: 100%;
  max-width: 100%;
}
.page-paiement section {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 1.25rem;
  padding: 1.25rem 1rem;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}
.page-paiement section + section {
  margin-top: 1rem;
}
.page-paiement section h2 {
  font-size: 1.2rem;
  margin-bottom: 0.75rem;
  font-weight: 700;
}

  /* Montant */

.page-paiement #montant-total {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  font-weight: 700;
  font-size: 1.05rem;
  padding: 0.2rem 0.75rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #4f46e5, #06b6d4);
  color: #ffffff;
}

  /* Formulaire client */

.page-paiement #customer-form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  max-width: 100%;
}
.page-paiement #customer-form .form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.page-paiement #customer-form label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #475569;
}
.page-paiement #customer-form input {
  border-radius: 0.9rem;
  border: 1px solid rgba(148, 163, 184, 0.7);
  padding: 0.5rem 0.75rem;
  font-size: 0.95rem;
  background: rgba(248, 250, 252, 0.9);
  outline: none;
  transition: border-color 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.page-paiement #customer-form input::placeholder {
  color: #9ca3af;
}
.page-paiement #customer-form input:focus {
  border-color: #4f46e5;
  box-shadow: 0 0 0 1px rgba(79, 70, 229, 0.35), 0 0 0 6px rgba(129, 140, 248, 0.2);
  background: #ffffff;
}

  /* Texte paiement sécurisé */

.page-paiement section:nth-of-type(3) p:first-of-type {
  font-size: 0.9rem;
  color: #64748b;
  line-height: 1.45;
  margin-bottom: 1rem;
}
.page-paiement #paypal-button-container {
  margin-top: 0.75rem;
  margin-bottom: 0.25rem;
}
.page-paiement #paypal-button-container button {
  border-radius: 999px !important;
  overflow: hidden;
}
.page-paiement .error-message {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: #b91c1c;
  background: #fee2e2;
  border-radius: 0.75rem;
  padding: 0.5rem 0.75rem;
  border: 1px solid rgba(248, 113, 113, 0.55);
}
.page-paiement footer {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.75rem;
  color: #94a3b8;
}

  /* ---------- Desktop / tablette ---------- */

@media (min-width: 768px) {
  .page-paiement {
    padding: 2rem 2rem 3rem;
  }
  .page-paiement header {
    padding: 0 0 1.5rem;
  }
  .page-paiement h1 {
    font-size: 2.1rem;
  }
  .page-paiement main {
    max-width: 960px;
    margin: 0 auto;
    padding: 1.5rem 1.75rem 2rem;
    border-radius: 1.75rem;
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
    backdrop-filter: blur(12px);
  }
  .page-paiement section {
    background: transparent;
    box-shadow: none;
    padding: 0;
  }
  .page-paiement section + section {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(148, 163, 184, 0.4);
  }
  .page-paiement #customer-form {
    max-width: 560px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.5rem;
  }
  .page-paiement #customer-form .form-group:nth-child(3),
  .page-paiement #customer-form .form-group:nth-child(4) {
    grid-column: span 2;
  }
  .page-paiement section:nth-of-type(3) {
    max-width: 640px;
  }
}

/* POPUP SUCCESS */
.popup-success {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.popup-content {
  background: #fff;
  padding: 2rem;
  width: 90%;
  max-width: 400px;
  border-radius: 14px;
  text-align: center;
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.2);
  animation: popup-appear 0.35s ease-out;
}

.popup-content h3 {
  margin-bottom: 0.5rem;
}

.popup-close-btn {
  margin-top: 1.5rem;
  padding: 0.8rem 1.2rem;
  background: #222;
  color: #fff;
  border: none;
  border-radius: 8px;
  cursor: pointer;
}

@keyframes popup-appear {
  from {
    transform: scale(0.7);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
.honeypot {
  position: absolute;
  left: -9999px;
  visibility: hidden;
}

/* Page légale – mise en page globale */
.legal-page {
  max-width: 900px;
  margin: 0 auto;
  padding: 6rem 1.5rem 4rem; /* un peu de marge avec le header */
  font-size: 0.95rem;
  line-height: 1.7;
}

/* Titre principal */
.legal-page h1 {
  font-size: 2rem;
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  /* color: var(--accent);  <- si tu as une variable de couleur */
}

/* Sous-titres (Articles, sections) */
.legal-page h2 {
  font-size: 1.2rem;
  margin-top: 2.5rem;
  margin-bottom: 0.8rem;
  font-weight: 600;
}

/* Paragraphes + listes */
.legal-page p {
  margin-bottom: 0.8rem;
}

.legal-page ul {
  margin: 0 0 1rem 1.2rem;
  padding: 0;
}

.legal-page li {
  margin-bottom: 0.4rem;
}

/* Petit block d’info en haut (dernière mise à jour) */
.legal-page em {
  font-size: 0.85rem;
  opacity: 0.8;
}

/* Liens */
.legal-page a {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
  /* color: var(--accent); */
}

/* Footer légal */
.site-footer {
  padding: 2rem 1.5rem;
  text-align: center;
  font-size: 0.85rem;
}

.footer-legal a {
  text-decoration: none;
  /* color: #fff; si ton footer est foncé */
}

.footer-legal a:hover {
  text-decoration: underline;
}

.footer-separator {
  margin: 0 0.5rem;
  opacity: 0.6;
}

/* Notes sous paiement / contact */
.payment-legal-note,
.contact-privacy-note {
  font-size: 0.8rem;
  opacity: 0.9;
  margin-top: 0.5rem;
}

.legal-hero {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  color: linear-gradient(120deg, #38bdf8, #a855f7, #f97373);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08); /* ou autre selon ton thème */
}

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