:root {
  --primary-color: #ff9e3e;
  --secondary-color: #bd0000;
  --font-header: Arial, Helvetica, sans-serif;
  --font-body: Arial, sans-serif;
  --max-content-width: 1200px;
}

body {
  font-family: var(--font-body);
  color: #000000;
  background-color: #ffffff;
  overflow-x: hidden;
}


/* Centered site wrap with margins */
.site-wrap {
    margin: 50px;
}

@media (min-width: 1200px) {
    .site-wrap {
        margin: 5px 7% 50px;
    }
}
/* ========================================
   HEADER STYLES
   ======================================== */

/* Header principal */
.site-header {
    padding: 10px 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-text {
    font-family: 'Ysabeau', serif;
    font-weight: 700;
    font-size: 28px;
    color: #111;
}

.logo-icon {
    width: 48px;
    height: 48px;
}

/* Navigation principale (desktop) */
.main-nav {
    display: flex;
    gap: 40px;
    flex: 1;
    justify-content: center;
    margin-top: 20px;
}

.nav-link {
    font-size: 16px;
    text-decoration: none;
    color: #222;
    letter-spacing: 0.02em;
}

/* Header right section */
.header-right {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 20px;
}

.small-link {
    font-size: 15px;
    color: #000;
    text-decoration: none;
}

.lang-btn {
    border: none;
    background: transparent;
    font-size: 18px;
    cursor: pointer;
}

/* ========================================
   MOBILE MENU (OFF-CANVAS)
   ======================================== */

/* Bouton hamburger - masqué par défaut sur grand écran */
.hamburger-btn {
    display: none;
    border: none;
    background: none;
    font-size: 2em;
    cursor: pointer;
    z-index: 1002;
}

/* Conteneur du menu mobile (Off-Canvas) */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    right: -300px; /* Menu hors écran initialement */
    width: 300px;
    height: 100%;
    background-color: #fff;
    box-shadow: -2px 0 5px rgba(0, 0, 0, 0.2);
    transition: right 0.3s ease-in-out;
    z-index: 1001;
    padding: 20px;
}

/* Navigation mobile */
.main-nav-mobile {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding-top: 60px;
}

.main-nav-mobile .nav-link {
    font-size: 1.1em;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
}

/* Menu ouvert */
.mobile-menu-overlay.open {
    right: 0;
}

/* ========================================
   FOOTER STYLES
   ======================================== */

.site-footer {
    margin-top: 50px;
    padding: 40px 0;
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 1px solid #eee;
    padding-top: 20px;
}

.logo-small {
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-center {
    flex: 1;
    text-align: center;
    display: none !important;
}

.footer-right {
    display: flex;
    gap: 90px;
    align-items: center;
    margin-top: 52px;
}

.footer-right a {
    text-decoration: none;
    color: #000;
}

.footer-right a:hover {
    color: #ff9e3e;
}

/* ========================================
   MEDIA QUERIES - RESPONSIVE
   ======================================== */

/* Tablettes et petits écrans (991px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .site-footer .footer-inner {
        display: grid !important;
        grid-template-columns: 25% 25% 50%;
        place-items: center;
    }

    .site-footer .footer-inner .footer-left .logo-small img {
        width: 90%;
    }

    .site-footer .footer-inner .footer-right a {
        font-size: 12px !important;
    }
}

/* Mobile et tablettes (≤ 991px) */
@media (max-width: 991px) {
    /* Header */
    .hamburger-btn {
        display: block;
        margin: 0 0 0 auto;
    }

    .main-nav {
        display: none;
    }

    .header-right .small-link {
        display: none;
    }

    .site-header .header-inner {
        justify-content: space-between;
    }

    /* Footer */
    .site-footer .footer-inner {
        display: flex !important;
        gap: 10px;
        justify-content: center;
        align-items: center;
        flex-direction: column;
    }

    .footer-right {
        flex-direction: column;
        gap: 10px;
        align-items: center;
    }
}

/* Mobile uniquement (≤ 768px) */
@media (max-width: 768px) {
    .footer-inner {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .footer-center {
        order: 3;
    }
}
/* ==================== BASE STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}





.titre-abonnement {
    font-size: 40px !important;
    font-weight: bold !important;
}

.titre-credits-supp {
    font-size: 35px !important;
    font-weight: bold !important;
}

.titre-tarif {
    font-size: 4rem;
    font-weight: bold;
    padding-top: 8%;
}

h1 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 40px;
}

/* ==================== SECTION TITLE ==================== */
.section-title {
    font-size: 40px;
    font-weight: 700;
    color: #161616;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-left: 3%; 
    line-height: 1;
}

.section-title2 {
    font-size: 20px;
    font-weight: 700;
    color: #161616;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-left: 3%; 
}

.manu {
    display: inline-block;
    margin-left: 4%;
}

/* ==================== SUBTITLE & VIDEO ==================== */
.subtitle {
    font-size: 40px;
    font-weight: 600;
    color: #1b1b1b;
    margin-bottom: 30px;
    margin-left: 7%;
}

.video-btn {
    display: inline-block;
    padding: 8px 20px;
    border: 2px solid #000;
    border-radius: 25px;
    background: #fff;
    text-decoration: none;
    color: #000;
    font-size: 14px;
    font-weight: 500;
    margin-left: 15px;
    cursor: pointer;
}

.video-btn:hover {
    background-color: #ffb575;
}

.description {
    font-size: 25px;
    font-weight: 500;
    line-height: 1.6;
    margin-bottom: 40px;
    color: #333;
    margin-left: 1%;
}

/* ==================== PRICING CONTAINER ==================== */
.pricing-container {
    display: flex;
    justify-content: flex-start;
    align-items: stretch;
    gap: 20px;
    margin-bottom: 0px;
}

.pricing-card {
    flex: 1;
    border: 2px solid #1d1c1c;
    padding: 20px;
    padding-bottom: 0;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    min-height: 150px;
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.credits-card {
    flex: 1.4;
}

.pricing-card h3 {
    font-size: 22px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 25px;
    color: #333;
}

#pricing-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    transition: opacity 0.3s ease;
    text-align: center;
    margin: 0 auto;
}
.pricing-card *:last-child {
    margin-bottom: 0;
}


/* ==================== TOGGLE BUTTONS ==================== */
.toggle-container {
    display: flex;
    gap: 180px;
    margin-bottom: 30px;
    margin-left: 3%;
    justify-content: flex-start;
    align-items: center;
}

.toggle-btn {
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: all 0.3s ease;
    outline: none;
}

.toggle-btn img {
    display: block;
    max-width: 200px;
    height: auto;
    transition: all 0.3s ease;
}

.toggle-btn:hover:not(.active)::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 105%;
    height: 105%;
    background: rgba(255, 165, 0, 0.3);
    border-radius: 12px;
    z-index: -1;
    animation: pulseHover 0.3s ease;
}

.toggle-btn.active::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 110%;
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    border-radius: 12px;
    z-index: -1;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.4);
}

@keyframes pulseHover {
    0% {
        transform: translate(-50%, -50%) scale(0.95);
        opacity: 0;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }
}

.toggle-btn:hover {
    transform: translateY(-2px);
}

.toggle-btn.active img {
    filter: brightness(1.1);
}

/* ==================== PRICE DISPLAY ==================== */
.price {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #000;
    line-height: 1;
}

.price-subtitle {
    font-size: 14px;
    color: #999;
    margin-bottom: 20px;
}

.price-details {
    font-size: 30px;
    font-weight: 500;
    margin-bottom: 5px;
    color: #000;
    line-height: 1;
}

.price-note {
    text-align: center;
}

.economy-badge {
    background: linear-gradient(135deg, #e8f5e9, #c8e6c9);
    padding: 15px 20px;
    border-radius: 10px;
    margin: 20px 0;
    text-align: center;
}

.economy-badge span {
    font-size: 18px;
    font-weight: 700;
    color: #2e7d32;
}

/* ==================== WARNING BOX ==================== */
.warning-box {
    background: #ffffff;
    border: 1px solid #ffffff;
    border-radius: 6px;
    padding: 5px; 
    padding-top: 0px; 
    margin-top: 0px;
    font-size: 15px;
    line-height: 1.6;
    color: #1c1b1b;
}

.warning-box strong {
    display: block;
    margin-bottom: 8px;
    color: #000;
}

/* ==================== CREDITS SECTION ==================== */
.credit-explanation {
    text-align: center;
    margin-bottom: 1px;
    padding: 1px;
}

.credit-explanation p {
    font-size: 15px;
    color: #333;
    line-height: 1.4;
    margin: 2px 0;
}

.credit-pricing-tiers {
    border: 2px solid #ffffff;
    padding: 5px;
    margin-bottom: 5px;
    text-align: center;
}

.credit-pricing-tiers p {
    font-size: 15px;
    color: #000;
    line-height: 1.4;
    margin: 2px 0;
}

.tier-title {
    margin-bottom: 15px !important;
}

.savings-badge {
    color: #2e7d32;
    font-weight: 600;
}

/* ==================== CREDIT CALCULATOR ==================== */
.credit-calculator {
    border: 2px solid #ffffff;
    padding: 20px 20px;
    margin-bottom: 25px;
}

.calculator-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2px;
    margin: 2px 0;
}

.calculator-row label {
    font-size: 14px;
    color: #000;
    white-space: nowrap;
}

.calculator-row input {
    width: 120px;
    padding: 6px 8px;
    border: 1px solid #000;
    font-size: 14px;
    text-align: center;
}

.montant-a-regler {
    transform: translateX(50px);
}

.unlimited-notice {
    text-align: center;
    font-size: 14px;
    color: #000;
    margin: 2px 0;
    transform: translateX(-55px);
}

.price-display {
    width: 120px;
    padding: 6px 8px;
    border: 1px solid #000;
    background: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transform: translateX(52px);
}

#price-display-value {
    font-size: 14px;
    font-weight: 600;
    color: #000;
}

.currency {
    font-size: 12px;
    color: #666;
}

.credit-note {
    text-align: left;
    margin-bottom: 10px;
    padding: 10px;
}

.credit-note p {
    font-size: 15px;
    color: #333;
    line-height: 1.6;
}

/* ==================== PROMO BANNER ==================== */
.promo-banner {
    margin-top: 0px;
    margin-bottom: 2px;
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    border-radius: 10px;
    padding: 1px;
    box-shadow: 0 4px 15px rgba(255, 165, 0, 0.3);
    border: 2px solid #000; /* ✅ Cadre noir */
}

.promo-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.promo-text {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
}

.promo-title {
    font-size: 35px;
    font-weight: bold;
    text-shadow: 6px 6px 6px rgba(0, 0, 0, 0.3);
    color: #000;
}

.promo-highlight {
    font-size: 35px;
    font-weight: bold;
    color: #000;
    line-height: 1.4;
}

.promo-note {
    font-size: 16px;
    color: #1a1a1a;
    font-weight: 500;
    line-height: 1.5;
}

/* ==================== BUTTONS ==================== */
.button-container {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 30px;
}

.action-btn {
    padding: 12px 30px;
    border: 2px solid #ffffff;
    border-radius: 25px;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    color: #000;
    display: inline-block;
}

.action-btn:hover {
    background: #f0f0f0;
}

.add-to-cart-btn {
    background: transparent !important;
    border: none !important;
    outline: none !important;
    padding: 0 !important;
    margin: 0;
    box-shadow: none;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    cursor: pointer;
    display: inline-block;
}

/* ==================== ENTERPRISE SECTION ==================== */
.enterprise-section {
    margin-top: 60px;
}

.enterprise-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 20px;
    margin-left: 3%;
}

.enterprise-description {
    font-size: 30px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.highlight {
    color: red;
    font-weight: bold;
}

/* ==================== CONTACT FORM ==================== */
.custom-contact-section {
    margin-top: 100px;
}

.custom-form-title {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
}

.custom-contact-form {
    border: 2px solid #202020 !important;
    border-radius: 25px !important;
    padding: 20px !important;
    padding-top: 50px !important;
    max-width: 700px !important;
    margin: 4px auto !important;
    background: white !important;
}

.custom-form-row {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 5px !important;
    gap: 1px !important;
}

.custom-form-row label {
    min-width: 100px !important;
    font-size: 16px !important;
    font-weight: 500 !important;
    color: #000 !important;
}

.custom-form-row input,
.custom-form-row textarea {
    flex: 1 !important;
    padding: 5px 0 !important;
    border: none !important;
    border-bottom: 2px solid #000 !important;
    font-size: 15px !important;
    background: transparent !important;
    outline: none !important;
}

.custom-form-row input:focus,
.custom-form-row textarea:focus {
    border-bottom-color: #ff0000 !important;
}

.custom-form-row textarea {
    min-height: 120px !important;
    border: 2px solid #000 !important;
    border-radius: 10px !important;
    padding: 20px !important;
    resize: vertical !important;
    margin-top: 20px;
}

.custom-required {
    color: red !important;
    font-weight: bold !important;
}

.custom-required-note {
    text-align: center !important;
    font-size: 14px !important;
    color: #666 !important;
    margin-right: 500px !important;
}

.custom-submit-wrapper {
    text-align: right !important;
    margin-top: 30px !important;
}

.custom-submit-btn {
    padding: 5px 30px !important;
    border: 3px solid #ffffff !important;
    border-radius: 25px !important;
    background: #fff !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.2s !important;
}

.custom-submit-btn:hover {
    background: #ffffff !important;
    color: #fff !important;
    transform: scale(1.05) !important;
}

.submit-btn {
    padding: 5px 5px;
    border: 2px solid #ffffff;
    border-radius: 25px;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    float: right;
    margin-top: 20px;
}

.submit-btn:hover {
    transform: scale(1.05);
    opacity: 0.9;
}

.submit-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.center-btn {
    text-align: center;
    margin: 30px 0;
}

/* ==================== MODAL STYLES ==================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 1000;
}

.modal-overlay.active {
    display: flex;
}

.modal-container {
    background: white;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    width: 100%;
    animation: slideUp 0.3s ease-out;
    overflow: hidden;
}

@keyframes slideUp {
    from {
        transform: translateY(30px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.modal-header {
    background: linear-gradient(135deg, #ffffff 0%, #ffffff 100%);
    color: rgb(0, 0, 0);
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-header h2 {
    font-size: 24px;
    font-weight: 600;
}

.modal-close {
    background: none;
    border: none;
    color: rgb(0, 0, 0);
    font-size: 28px;
    cursor: pointer;
    transition: transform 0.2s;
}

.modal-close:hover {
    transform: scale(1.2);
}

.modal-body {
    padding: 40px;
    max-height: 70vh;
    overflow-y: auto;
}

/* Steps Indicator */
.steps-indicator {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 10px;
}

.step {
    flex: 1;
    height: 4px;
    background: #e0e0e0;
    border-radius: 2px;
    transition: background 0.3s;
}

.step.active {
    background: #000000;
}

.step.completed {
    background: #4caf50;
}

/* Form Sections */
.form-section {
    display: none;
    animation: fadeIn 0.3s ease-in;
}

.form-section.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Form Groups */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    margin-bottom: 8px;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="time"],
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #ffdd00;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.optional-badge {
    font-size: 12px;
    color: #999;
    margin-left: 5px;
}

/* Slot Grid */
.slot-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin-bottom: 20px;
}

.time-slot {
    padding: 12px;
    border: 2px solid #ddd;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    background: white;
    font-size: 13px;
    font-weight: 500;
}

.time-slot:hover:not(.disabled) {
    border-color: #667eea;
    background: #f0f4ff;
}

.time-slot.selected {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

/* Choice Buttons */
.choice-buttons {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.choice-btn {
    flex: 1;
    padding: 12px;
    border: 2px solid #ddd;
    background: white;
    border-radius: 6px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s;
}

.choice-btn.active {
    background: #667eea;
    color: white;
    border-color: #667eea;
}

/* Modal Footer */
.modal-footer {
    padding: 20px 40px;
    display: flex;
    gap: 12px;
    border-top: 1px solid #e0e0e0;
    background: #fafafa;
}

.btn {
    flex: 1;
    padding: 12px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}

.btn-secondary {
    background: #e0e0e0;
    color: #333;
}

.btn-secondary:hover {
    background: #d0d0d0;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(102, 126, 234, 0.3);
}

.btn-primary:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* Success Container */
.success-container {
    text-align: center;
    padding: 40px 20px;
}

.success-icon {
    font-size: 64px;
    color: #4caf50;
    margin-bottom: 20px;
}

.success-title {
    font-size: 24px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
}

.success-message {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.meet-link-container {
    background: #f0f4ff;
    padding: 15px;
    border-radius: 6px;
    margin: 20px 0;
}

.meet-link {
    font-size: 14px;
    font-weight: 500;
    color: #eabe66;
    display: flex;
    align-items: center;
    gap: 10px;
}

.copy-btn {
    background: #ffa600;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 12px;
}

/* Error Message */
.error-message {
    background: #ffebee;
    color: #c62828;
    padding: 12px;
    border-radius: 6px;
    font-size: 13px;
    margin-bottom: 15px;
    display: none;
}

.error-message.show {
    display: block;
}

/* Loading */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid white;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* ==================== FORM MESSAGES ==================== */
.form-message {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 16px;
    font-weight: 500;
    animation: slideDown 0.3s ease;
}

.form-message-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.form-message-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==================== VIDEO CONTAINER ==================== */
#video-container {
    text-align: center;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
    margin-top: 20px;
}

#video-container iframe {
    max-width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

/* ==================== TRANSLATION ==================== */
.goog-te-banner-frame {
    display: none !important;
}

body {
    top: 0 !important;
}

#google_translate_element {
    display: none !important;
}

.language-menu {
    position: absolute;
    right: 0;
    top: 100%;
    margin-top: 10px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 10px 0;
    width: 150px;
    display: none;
    z-index: 9999;
}

.language-menu div {
    padding: 10px 15px;
    cursor: pointer;
    transition: 0.2s;
}

.language-menu div:hover {
    background: #f0f0f0;
}

/* ==================== FLOATING CART ==================== */
.floating-cart {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 9999;
}

.cart-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #FFA500 0%, #FF8C00 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(255, 165, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
}

.cart-icon:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(255, 165, 0, 0.6);
}

.cart-icon i {
    font-size: 24px;
    color: white;
}

.cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #ff0000;
    color: white;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: bold;
    border: 2px solid white;
    animation: pulse 0.5s ease;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

/* DROPDOWN CART */
.cart-dropdown {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 380px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: none;
    animation: slideUp 0.3s ease;
}

.cart-dropdown.active {
    display: block;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid #e0e0e0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 0;
}

.close-cart {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    transition: color 0.2s;
}

.close-cart:hover {
    color: #000;
}

/* CART ITEMS */
.cart-items {
    max-height: 350px;
    overflow-y: auto;
    padding: 15px;
}

.empty-cart {
    text-align: center;
    color: #999;
    padding: 40px 20px;
    font-size: 14px;
}

.cart-item {
    padding: 15px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    margin-bottom: 10px;
    position: relative;
    background: #fafafa;
    transition: all 0.2s;
}

.cart-item:hover {box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}
.cart-item-header {
display: flex;
justify-content: space-between;
align-items: start;
margin-bottom: 8px;
}
.cart-item-title {
font-weight: 600;
font-size: 15px;
color: #333;
}
.cart-item-badge {
background: #FFA500;
color: white;
padding: 4px 10px;
border-radius: 12px;
font-size: 11px;
font-weight: 600;
text-transform: uppercase;
}
.cart-item-badge.annuel {
background: #4caf50;
}
.cart-item-details {
font-size: 13px;
color: #666;
margin-bottom: 8px;
}
.cart-item-footer {
display: flex;
justify-content: space-between;
align-items: center;
}
.cart-item-price {
font-size: 16px;
font-weight: 700;
color: #FF8C00;
}
.remove-item {
background: #ff4444;
color: white;
border: none;
padding: 6px 12px;
border-radius: 4px;
font-size: 12px;
cursor: pointer;
transition: all 0.2s;
}
.remove-item:hover {
background: #cc0000;
}
/* CART FOOTER */
.cart-footer {
padding: 20px;
border-top: 2px solid #e0e0e0;
background: #fafafa;
}
.cart-total {
display: flex;
justify-content: space-between;
font-size: 18px;
font-weight: 700;
margin-bottom: 15px;
color: #333;
}
.cart-total span:last-child {
color: #FF8C00;
}
.checkout-btn {
width: 100%;
padding: 14px;
background: linear-gradient(135deg, #4caf50 0%, #45a049 100%);
color: white;
border: none;
border-radius: 8px;
font-size: 16px;
font-weight: 600;
cursor: pointer;
transition: all 0.3s ease;
}
.checkout-btn:hover:not(:disabled) {
transform: translateY(-2px);
box-shadow: 0 6px 20px rgba(76, 175, 80, 0.4);
}
.checkout-btn:disabled {
background: #cccccc;
cursor: not-allowed;
}
/* CART ALERTS */
.cart-alert {
position: fixed;
top: 20px;
right: 20px;
background: white;
padding: 16px 20px;
border-radius: 8px;
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
display: flex;
align-items: center;
gap: 12px;
z-index: 10000;
animation: slideInRight 0.3s ease;
}
@keyframes slideInRight {
from {
transform: translateX(400px);
opacity: 0;
}
to {
transform: translateX(0);
opacity: 1;
}
}
.cart-alert.success {
border-left: 4px solid #4caf50;
}
.cart-alert.error {
border-left: 4px solid #ff4444;
}
.cart-alert.warning {
border-left: 4px solid #ff9800;
}
.cart-alert i {
font-size: 20px;
}
.cart-alert.success i {
color: #4caf50;
}
.cart-alert.error i {
color: #ff4444;
}
.cart-alert.warning i {
color: #ff9800;
}
/* ==================== RESPONSIVE ==================== */
@media (max-width: 768px) {
.pricing-container {
flex-direction: column;
}
.button-container {
    flex-direction: column;
}

.promo-banner {
    padding: 20px;
}

.promo-content {
    flex-direction: column;
    align-items: flex-start;
}

.promo-title {
    font-size: 22px;
}

.promo-highlight {
    font-size: 18px;
}

.promo-note {
    font-size: 12px;
}

.toggle-container {
    flex-direction: column;
    gap: 15px;
    align-items: flex-start;
}

.toggle-btn img {
    max-width: 150px;
}
}
@media (max-width: 600px) {
.modal-body {
padding: 20px;
}
.modal-header {
    padding: 20px;
}

.modal-footer {
    padding: 15px 20px;
}

.slot-grid {
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
}
}
@media (max-width: 480px) {
.cart-dropdown {
width: calc(100vw - 40px);
right: -150px;
}
.floating-cart {
    bottom: 20px;
    right: 20px;
}
}
/* ==================== RESPONSIVE IMPROVEMENTS ==================== */

/* Tablettes (768px - 991px) */
@media (max-width: 991px) {
    .site-wrap {
        margin: 20px;
    }
    
    .titre-tarif {
        font-size: 2.5rem;
        padding-top: 5%;
    }
    
    .section-title {
        font-size: 28px;
        margin-left: 0;
    }
    
    .manu {
        margin-left: 0;
    }
    
    .subtitle {
        font-size: 28px;
        margin-left: 0;
    }
    
    .description {
        font-size: 18px;
        margin-left: 0;
    }
    
    .titre-abonnement {
        font-size: 28px !important;
    }
    
    .titre-credits-supp {
        font-size: 24px !important;
    }
    
    .toggle-container {
        gap: 80px;
        margin-left: 0;
        justify-content: center;
    }
    
    .enterprise-title {
        font-size: 28px;
        margin-left: 0;
    }
    
    .enterprise-description {
        font-size: 20px;
    }
    
    .custom-form-title {
        font-size: 28px;
    }
}

/* Mobile (≤ 768px) */
@media (max-width: 768px) {
    .site-wrap {
        margin: 15px;
    }
    
    .titre-tarif {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .subtitle {
        font-size: 20px;
        text-align: center;
    }
    
    .description {
        font-size: 16px;
        text-align: left;
    }
    
    .pricing-card {
        padding: 15px;
    }
    
    .titre-abonnement,
    .titre-credits-supp {
        font-size: 22px !important;
    }
    
    .toggle-container {
        gap: 30px;
        flex-wrap: wrap;
    }
    
    .toggle-btn img {
        max-width: 120px;
    }
    
    .price {
        font-size: 32px;
    }
    
    .price-details {
        font-size: 20px;
    }
    
    .warning-box,
    .credit-explanation p,
    .credit-pricing-tiers p,
    .credit-note p {
        font-size: 13px;
    }
    
    /* Calculator adjustments */
    .calculator-row {
        flex-direction: column;
        gap: 10px;
    }
    
    .montant-a-regler {
        transform: translateX(0);
    }
    
    .unlimited-notice {
        transform: translateX(0);
        text-align: center;
    }
    
    .price-display {
        transform: translateX(0);
        width: 100%;
        max-width: 200px;
    }
    
    /* Promo banner */
    .promo-title,
    .promo-highlight {
        font-size: 20px;
    }
    
    .promo-note {
        font-size: 14px;
    }
    
    /* Enterprise section */
    .enterprise-title {
        font-size: 22px;
    }
    
    .enterprise-description {
        font-size: 16px;
    }
    
    /* Contact form */
    .custom-form-title {
        font-size: 24px;
    }
    
    .custom-contact-form {
        padding: 15px !important;
        padding-top: 30px !important;
    }
    
    .custom-form-row {
        flex-direction: column;
        align-items: flex-start !important;
    }
    
    .custom-form-row label {
        margin-bottom: 5px;
    }
    
    .custom-required-note {
        margin-right: 0 !important;
        text-align: left !important;
    }
    
    .custom-submit-wrapper {
        text-align: center !important;
    }
}

/* Petits mobiles (≤ 480px) */
@media (max-width: 480px) {
    .site-wrap {
        margin: 10px;
    }
    
    .titre-tarif {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 20px;
    }
    
    .toggle-btn img {
        max-width: 100px;
    }
    
    .button-container {
        gap: 10px;
    }
    
    .action-btn img {
        max-width: 100%;
        height: auto;
    }
    
    .promo-title,
    .promo-highlight {
        font-size: 16px;
    }
    
    .promo-note {
        font-size: 12px;
    }
}

/* Très petits écrans (≤ 375px) */
@media (max-width: 375px) {
    .titre-tarif {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 18px;
    }
    
    .pricing-card {
        padding: 10px;
    }
    
    .titre-abonnement,
    .titre-credits-supp {
        font-size: 18px !important;
    }
}