
    
    /* Progress Steps - ULTRA COMPACT */
    .progress-section {
      background: transparent;
      border: none;
      box-shadow: none;
      padding: 0.75rem 0;
    }
    
    .progress-container {
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
      max-width: 500px;
      margin: 0 auto;
      padding: 0.5rem;
    }
    
    .progress-line {
      position: absolute;
      top: 50%;
      left: calc(16.66% + 20px);
      right: calc(16.66% + 20px);
      height: 2px;
      background: #e5e7eb;
      z-index: 0;
      transform: translateY(-50%);
      border-radius: 1px;
    }
    
    .progress-line-fill {
      height: 100%;
      background: linear-gradient(90deg, var(--success), var(--primary));
      width: 50%;
      border-radius: 1px;
      box-shadow: 0 1px 4px rgba(16, 185, 129, 0.3);
      transition: width 0.8s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .progress-step {
      display: flex;
      flex-direction: column;
      align-items: center;
      position: relative;
      flex: 1;
      z-index: 2;
    }
    
    .step-circle {
      width: 36px;
      height: 36px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-weight: 700;
      font-size: 0.8rem;
      background-color: white;
      color: #9ca3af;
      position: relative;
      z-index: 2;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
      border: 2px solid #e5e7eb;
    }
    
    .progress-step.completed .step-circle {
      background: linear-gradient(135deg, var(--success), #059669);
      color: white;
      box-shadow: 0 4px 8px rgba(16, 185, 129, 0.25);
      border-color: var(--success);
    }
    
    .progress-step.active .step-circle {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: white;
      box-shadow: 0 4px 8px rgba(30, 64, 175, 0.25);
      border-color: var(--primary);
    }
    
    .step-label {
      margin-top: 0.5rem;
      font-size: 0.65rem;
      font-weight: 600;
      color: #6b7280;
      text-align: center;
      white-space: nowrap;
      transition: color 0.3s ease;
      max-width: 90px;
      line-height: 1.2;
    }
    
    .progress-step.completed .step-label,
    .progress-step.active .step-label {
      color: var(--text-primary);
      font-weight: 700;
    }
    
    /* Button styles - identique à la landing */
    .btn {
      position: relative;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-weight: 600;
      border-radius: 0.75rem;
      overflow: hidden;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      white-space: nowrap;
      text-decoration: none;
      border: none;
      cursor: pointer;
    }
    
    .btn::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2));
      transform: translateY(100%);
      transition: transform 0.65s cubic-bezier(0.16, 1, 0.3, 1);
      z-index: 1;
    }
    
    .btn:hover::before {
      transform: translateY(0);
    }
    
    .btn-primary {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      color: white;
      box-shadow: 0 4px 12px -2px rgba(30, 64, 175, 0.25);
    }
    
    .btn-primary:hover {
      box-shadow: 0 8px 16px -2px rgba(30, 64, 175, 0.35);
      transform: translateY(-2px);
    }
    
    .btn-secondary {
      background-color: white;
      border: 1.5px solid var(--primary-light);
      color: var(--primary);
      box-shadow: 0 4px 12px -4px rgba(30, 64, 175, 0.1);
    }
    
    .btn-secondary:hover {
      border-color: var(--primary);
      background-color: rgba(59, 130, 246, 0.04);
      box-shadow: 0 8px 16px -4px rgba(30, 64, 175, 0.15);
      transform: translateY(-2px);
    }
    
    .btn-accent {
      background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      color: white;
      box-shadow: 0 4px 12px -2px rgba(245, 158, 11, 0.25);
    }
    
    .btn-accent:hover {
      box-shadow: 0 8px 16px -2px rgba(245, 158, 11, 0.35);
      transform: translateY(-2px);
    }
    
    .btn-sm {
      font-size: 0.875rem;
      padding: 0.5rem 1rem;
    }
    
    .btn-md {
      font-size: 0.938rem;
      padding: 0.625rem 1.25rem;
    }
    
    .btn-lg {
      font-size: 1rem;
      padding: 0.75rem 1.5rem;
    }
    
    .btn-xl {
      font-size: 1.125rem;
      padding: 1rem 2rem;
    }
    
    .btn-2xl {
      font-size: 1.25rem;
      padding: 1.25rem 2.5rem;
    }
    
    .btn span {
      position: relative;
      z-index: 2;
    }
    
    /* Form styles - VERSION ULTRA COMPACTE */
    .form-group {
      margin-bottom: 0.75rem;
    }
    
    .form-label {
      display: block;
      font-size: 0.75rem;
      font-weight: 600;
      color: var(--text-primary);
      margin-bottom: 0.25rem;
    }
    
    .form-label .required {
      color: var(--error);
      margin-left: 0.25rem;
    }
    
    .form-input, .form-select {
      width: 100%;
      padding: 0.625rem 0.75rem;
      border: 1.5px solid #e5e7eb;
      border-radius: 0.5rem;
      font-size: 0.8rem;
      transition: all 0.3s ease;
      background-color: white;
      color: var(--text-primary);
      box-shadow: 0 1px 3px -1px rgba(0, 0, 0, 0.05);
    }
    
    .form-input:focus, .form-select:focus {
      outline: none;
      border-color: var(--primary);
      box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
    }
    
    .form-input.error {
      border-color: var(--error);
      box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1);
    }
    
    .form-error {
      font-size: 0.7rem;
      color: var(--error);
      margin-top: 0.25rem;
    }
    
    .form-hint {
      font-size: 0.7rem;
      color: var(--text-secondary);
      margin-top: 0.25rem;
    }
    
    /* Card styles - COMPACTES */
    .card {
      border-radius: 8px;
      background-color: white;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
      border: 1px solid rgba(226, 232, 240, 0.6);
      overflow: hidden;
    }
    
    .card:hover {
      border-color: rgba(30, 64, 175, 0.08);
    }
    
    .shadow-soft {
      box-shadow: 0 4px 12px -2px rgba(0, 0, 0, 0.04), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
    }
    
    .shadow-medium {
      box-shadow: 0 12px 20px -5px rgba(0, 0, 0, 0.06), 0 4px 12px -2p rgba(0, 0, 0, 0.03);
    }
    
    /* SECTIONS COMPACTES */
    .section-compact {
      padding: 1rem;
    }
    
    .section-header {
      display: flex;
      align-items: center;
      margin-bottom: 1rem;
    }
    
    .section-number {
      width: 28px;
      height: 28px;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      margin-right: 0.75rem;
      box-shadow: 0 3px 6px rgba(30, 64, 175, 0.2);
    }
    
    .section-title {
      font-size: 1rem;
      font-weight: 700;
      color: var(--text-primary);
    }
    
    /* Express checkout COMPACT */
    .express-section {
      background: linear-gradient(135deg, #ffc439, #ffb700);
      border-radius: 8px;
      padding: 1rem;
      margin-bottom: 1rem;
      text-align: center;
    }
    
    .express-button {
      background: rgba(255, 255, 255, 0.95);
      color: #333;
      font-weight: 700;
      padding: 0.875rem 1.5rem;
      border-radius: 0.75rem;
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
      border: none;
      width: 100%;
    }
    
    .express-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }
    
    /* Divider COMPACT */
    .divider {
      text-align: center;
      margin: 1rem 0;
      font-size: 0.75rem;
      color: var(--text-hint);
      font-weight: 500;
    }
    
    /* Payment method styles COMPACT */
    .payment-method {
      border: 2px solid #e5e7eb;
      border-radius: 0.75rem;
      padding: 1rem;
      cursor: pointer;
      transition: all 0.3s ease;
      position: relative;
      background: white;
      margin-bottom: 0.75rem;
    }
    
    .payment-method:hover {
      border-color: #d1d5db;
      background-color: #f9fafb;
      transform: translateY(-1px);
      box-shadow: 0 4px 8px -4px rgba(0, 0, 0, 0.1);
    }
    
    .payment-method.selected {
      border-color: var(--primary);
      background: linear-gradient(135deg, #eff6ff, #f0f9ff);
      box-shadow: 0 4px 8px -4px rgba(30, 64, 175, 0.2);
    }
    
    .payment-method.selected::after {
      content: '\f00c';
      font-family: 'Font Awesome 6 Free';
      font-weight: 900;
      position: absolute;
      top: 50%;
      right: 1rem;
      transform: translateY(-50%);
      color: white;
      font-size: 0.7rem;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-radius: 50%;
      width: 1.25rem;
      height: 1.25rem;
      display: flex;
      align-items: center;
      justify-content: center;
    }
    
    .payment-icons {
      display: flex;
      align-items: center;
      gap: 0.5rem;
      margin-left: auto;
      /* Position pour ne pas interférer avec le bouton de validation */
      margin-right: 2rem;
    }
    
    .payment-icons img {
      height: 24px;
      opacity: 0.8;
      transition: opacity 0.3s ease;
    }
    
    .payment-method.selected .payment-icons img {
      opacity: 1;
    }
    
    /* Conditions ULTRA COMPACT */
    .conditions-compact {
      background: rgba(59, 130, 246, 0.03);
      border-radius: 0.75rem;
      padding: 0.875rem;
      border: 1px solid rgba(59, 130, 246, 0.08);
      margin-bottom: 1rem;
    }
    
    /* Checkbox styles - COMPACT */
    .custom-checkbox {
      position: relative;
      display: inline-flex;
      align-items: flex-start;
      cursor: pointer;
      margin-bottom: 0.5rem;
    }
    
    .custom-checkbox input[type="checkbox"] {
      position: absolute;
      opacity: 0;
      cursor: pointer;
    }
    
    .checkmark {
      position: relative;
      top: 1px;
      height: 16px;
      width: 16px;
      background-color: white;
      border: 2px solid #d1d5db;
      border-radius: 0.25rem;
      margin-right: 0.5rem;
      flex-shrink: 0;
      transition: all 0.3s ease;
    }
    
    .custom-checkbox:hover .checkmark {
      border-color: var(--primary-light);
    }
    
    .custom-checkbox input:checked ~ .checkmark {
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      border-color: var(--primary);
    }
    
    .checkmark:after {
      content: "";
      position: absolute;
      display: none;
      left: 4px;
      top: 0px;
      width: 4px;
      height: 8px;
      border: solid white;
      border-width: 0 2px 2px 0;
      transform: rotate(45deg);
    }
    
    .custom-checkbox input:checked ~ .checkmark:after {
      display: block;
    }
    
    .checkbox-text {
      font-size: 0.75rem;
      color: var(--text-primary);
      line-height: 1.3;
    }
    
    .checkbox-text a {
      color: var(--primary);
      text-decoration: none;
      font-weight: 500;
    }
    
    .checkbox-text a:hover {
      text-decoration: underline;
    }
    
    .required-indicator {
      color: var(--error);
      font-weight: 600;
    }
    
    /* Order summary COMPACT */
    .order-item {
      display: flex;
      align-items: center;
      padding: 0.875rem 0;
      border-bottom: 1px solid #f3f4f6;
    }
    
    .order-item:last-child {
      border-bottom: none;
    }
    
    .order-item-image {
      width: 50px;
      height: 50px;
      object-fit: contain;
      border-radius: 0.5rem;
      background-color: #f8fafc;
      padding: 0.5rem;
      margin-right: 0.75rem;
    }
    
    /* Loading spinner */
    .spinner {
      border: 3px solid #f3f4f6;
      border-top: 3px solid var(--primary);
      border-radius: 50%;
      width: 20px;
      height: 20px;
      animation: spin 1s linear infinite;
      margin-right: 0.5rem;
    }
    
    @keyframes spin {
      0% { transform: rotate(0deg); }
      100% { transform: rotate(360deg); }
    }
    
    /* Price styling */
    .price-highlight {
      font-size: 1.5rem;
      font-weight: 800;
      background: linear-gradient(135deg, var(--primary), var(--secondary));
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    
    /* STICKY CTA - DESIGN INTÉGRÉ AU SITE */
    .sticky-cta {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      background: var(--primary);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      box-shadow: 0 -8px 32px -8px rgba(30, 64, 175, 0.4);
      z-index: 200;
      padding: 0.875rem;
      border-top: 1px solid rgba(59, 130, 246, 0.2);
      transform: translateY(0);
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    
    .sticky-cta.hidden {
      transform: translateY(100%);
    }
    
    .sticky-cta-content {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      color: white;
      gap: 1rem;
    }
    
    .sticky-cta-info {
      display: flex;
      align-items: center;
      gap: 1.5rem;
    }
    
    .sticky-cta-price {
      font-size: 1.25rem;
      font-weight: 800;
    }
    
    .sticky-cta-savings {
      font-size: 0.8rem;
      opacity: 0.9;
    }
    
    .sticky-cta-features {
      display: flex;
      align-items: center;
      gap: 1rem;
      font-size: 0.75rem;
      opacity: 0.95;
    }
    
    .sticky-cta-button {
      background: white;
      color: var(--primary);
      font-weight: 700;
      padding: 0.75rem 1.5rem;
      border-radius: 0.5rem;
      border: none;
      cursor: pointer;
      transition: all 0.3s ease;
      box-shadow: 0 3px 8px rgba(0, 0, 0, 0.15);
      font-size: 0.875rem;
      white-space: nowrap;
    }
    
    .sticky-cta-button:hover {
      transform: translateY(-2px);
      box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
    }
    
    /* Trust badges COMPACT */
    .trust-mini {
      display: flex;
      justify-content: center;
      gap: 1rem;
      margin: 1rem 0;
      padding: 0.75rem;
      background: rgba(59, 130, 246, 0.03);
      border-radius: 0.75rem;
      border: 1px solid rgba(59, 130, 246, 0.08);
    }
    
    .trust-mini-item {
      display: flex;
      align-items: center;
      font-size: 0.7rem;
      color: var(--text-secondary);
      font-weight: 500;
    }
    
    .trust-mini-item i {
      margin-right: 0.375rem;
      color: var(--primary);
      font-size: 0.75rem;
    }
    
    /* Account creation COMPACT */
    .account-option {
      background: linear-gradient(135deg, #f0f7ff, #eff6ff);
      border: 1px solid rgba(59, 130, 246, 0.1);
      border-radius: 0.75rem;
      padding: 0.875rem;
      margin: 0.75rem 0;
    }
    
    .account-toggle {
      display: flex;
      align-items: flex-start;
      cursor: pointer;
    }
    
    .account-toggle input {
      margin-top: 0.125rem;
      margin-right: 0.75rem;
      width: 16px;
      height: 16px;
    }
    
    .account-info h4 {
      font-size: 0.875rem;
      font-weight: 700;
      color: var(--primary-dark);
      margin-bottom: 0.25rem;
    }
    
    .account-info p {
      font-size: 0.75rem;
      color: var(--text-secondary);
    }
    
    .password-fields {
      margin-top: 0.75rem;
      display: none !important;
      grid-template-columns: 1fr 1fr;
      gap: 0.75rem;
    }

    .password-fields.show {
      display: grid !important;
    }

    #passwordField.show {
      display: grid !important;
    }

    #passwordField[style*="display: grid"] {
      display: grid !important;
    }
    
    /* Mobile adjustments */
    @media (max-width: 768px) {
      .sticky-cta-content {
        flex-direction: column;
        gap: 0.75rem;
        align-items: stretch;
      }
      
      .sticky-cta-info {
        justify-content: space-between;
        gap: 1rem;
      }
      
      .sticky-cta-features {
        display: none;
      }
      
      .sticky-cta-button {
        width: 100%;
        text-align: center;
      }
      
      .progress-container {
        padding: 0.5rem;
        max-width: 400px;
      }
      
      .step-circle {
        width: 32px;
        height: 32px;
        font-size: 0.75rem;
      }
      
      .step-label {
        font-size: 0.6rem;
        margin-top: 0.375rem;
        max-width: 80px;
      }
      
      .payment-icons {
        margin-right: 1.5rem;
      }
      
      .password-fields {
        grid-template-columns: 1fr;
      }
    }
    
    /* Marginal adjustment for sticky button */
.woocommerce-checkout main#main .woocommerce{
    margin: 80px auto;
    margin-top: 140px
}



.checkout-error-box {
    color: #ff3b3b;
    padding: 10px;
    margin-top: 10px;
    background: #ffecec;
    border: 1px solid #ffb5b5;
    border-radius: 5px;
}

/* Card Fields Container */
.card-fields-container {
    margin-top: 0.75rem;
}

.card-fields-container .form-input {
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.card-fields-container input[type="text"]::placeholder {
    font-family: inherit;
    letter-spacing: normal;
}

/* Payment method selection - styles supplémentaires */
/* Note: Les styles principaux de .payment-method sont définis plus haut (lignes 343-403) */

/* Card icons */
.payment-icons img {
    height: 24px;
    width: auto;
}

/* Responsive card fields */
@media (max-width: 640px) {
    .card-fields-container .grid-cols-2 {
        grid-template-columns: 1fr;
    }
}
