/* Pricing PaxKids */
.pk-pricing-section {
  text-align: center;
  padding: 60px 20px;
  background: #fbfbfe;
}
.pk-pricing-section h2 { font-size: 28px; margin-bottom: 30px; }

.pk-pricing-container {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  max-width: 1100px;
  margin: 0 auto;
}

.pk-pricing-card {
  background: #fff;
  padding: 28px;
  width: 320px;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  text-align: left;
}

.pk-pricing-card h3 { margin: 0 0 8px; font-size: 20px; text-transform: uppercase; }
.pk-price { font-size: 30px; font-weight: 700; margin: 6px 0 8px; }
.pk-pricing-card ul { margin: 12px 0 16px; padding-left: 18px; }
.pk-pricing-card li { margin-bottom: 8px; }

.pk-btn, .pk-hero-btn {
  display: inline-block;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  background: #6b5bff;
  color: #fff;
}

.pk-btn-highlight {
  background: linear-gradient(90deg, #6b5bff, #a660ff);
  box-shadow: 0 6px 18px rgba(106,84,255,0.18);
}

.pk-pricing-card.free { border-top: 4px solid #3085d6; }
.pk-pricing-card.standard { border-top: 4px solid #f2b300; }
.pk-pricing-card.premium { border-top: 4px solid #089c2c; }

/* Responsive */
@media (max-width: 900px) {
  .pk-pricing-container { flex-direction: column; align-items: center; }
  .pk-pricing-card { width: 90%; max-width: 420px; }
}

.bouton-conteneur {
    display: flex;
    justify-content: center; /* Centre horizontalement */
}
/* Style du bouton Play Store */
.play-store-btn {
    /* Styles pour la couleur du bouton Play Store (simulée) */
    background-color: #48b789; /* Couleur verte Google/Play */
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none; /* Enlève le soulignement par défaut des liens */
    font-weight: bold;
    display: inline-block; /* Pour s'assurer qu'il réagit bien au text-align: center du parent */
}

/* Votre conteneur pour le centrage */
.bouton-conteneur {
    text-align: center;
}
/*
Theme Name: Astra Child
Theme URI: https://wp-astra.com/
Template: astra
Author: Votre Nom
Description: Thème enfant pour Astra.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
*/

/*******************************************************
 * Styles spécifiques à la page Demande de Code
 ******************************************************/

.container-request-code {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}

.request-code-form label {
    display: block;
    margin-top: 15px;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.request-code-form input[type="text"],
.request-code-form input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box; 
    font-size: 16px;
}

.request-code-form button[type="submit"] {
    background-color: #0073aa; /* Couleur primaire WordPress */
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 25px;
    width: 100%;
    font-size: 18px;
    transition: background-color 0.3s;
}

.request-code-form button[type="submit"]:hover {
    background-color: #005a87;
}

/* Affichage du code généré */
.code-output {
    background-color: #e6ffe6;
    border: 1px solid #a8e8a8;
    padding: 30px;
    text-align: center;
    margin-top: 30px;
    border-radius: 6px;
}

.code-output p {
    font-size: 1.1em;
    margin-bottom: 10px;
}

.code {
    font-family: monospace;
    font-size: 1.3em;
    font-weight: bold;
    color: #008000;
    word-break: break-all;
    display: block;
    padding: 10px;
    background: #d4ffd4;
    border-radius: 4px;
    user-select: all; /* Permet de sélectionner facilement le code */
}

/* Message d'erreur */
.error {
    color: #cc0000;
    font-weight: 600;
    border: 1px solid #ffcccc;
    padding: 15px;
    margin-bottom: 20px;
    background-color: #fff0f0;
    border-radius: 4px;
}