/**
 * Cekonay Contact Form - Styles
 * Couleur principale: #fdc662 (jaune)
 */

.cek-contact-wrap {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    max-width: 600px;
    margin: 0 auto;
}

.cek-contact-box {
    background: linear-gradient(145deg, #1a1a2e 0%, #16213e 100%);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
}

.cek-contact-header {
    text-align: center;
    margin-bottom: 28px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cek-contact-header h3 {
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    margin: 0 0 8px 0;
    letter-spacing: -0.3px;
}

.cek-contact-header p {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin: 0;
}

.cek-contact-logo {
    display: block;
    max-width: 160px;
    height: auto;
    margin: 0 auto 8px;
}

/* Champs de formulaire */
.cek-field {
    margin-bottom: 20px;
}

.cek-field label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.2px;
}

.cek-field input[type="text"],
.cek-field input[type="email"],
.cek-field input[type="tel"],
.cek-field select,
.cek-field textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    color: #fff;
    font-size: 15px;
    transition: all 0.2s ease;
    box-sizing: border-box;
}

.cek-field input:focus,
.cek-field select:focus,
.cek-field textarea:focus {
    outline: none;
    border-color: #fdc662;
    background: rgba(253, 198, 98, 0.05);
    box-shadow: 0 0 0 3px rgba(253, 198, 98, 0.15);
}

.cek-field input::placeholder,
.cek-field textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.cek-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23ffffff' fill-opacity='0.5' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
}

.cek-field select option {
    background: #1a1a2e;
    color: #fff;
}

.cek-field textarea {
    min-height: 120px;
    resize: vertical;
    line-height: 1.5;
}

.cek-row {
    display: flex;
    gap: 16px;
}

.cek-row .cek-field {
    flex: 1;
}

/* Zone upload */
.cek-upload-zone {
    border: 2px dashed rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    padding: 24px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    margin-bottom: 20px;
}

.cek-upload-zone:hover,
.cek-upload-zone.dragover {
    border-color: #fdc662;
    background: rgba(253, 198, 98, 0.05);
}

.cek-upload-zone input[type="file"] {
    display: none;
}

.cek-upload-icon {
    font-size: 32px;
    margin-bottom: 8px;
    opacity: 0.5;
    color: #fdc662;
}

.cek-upload-text {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
}

.cek-upload-text span {
    color: #fdc662;
    font-weight: 500;
}

.cek-upload-hint {
    color: rgba(255, 255, 255, 0.4);
    font-size: 12px;
    margin-top: 8px;
}

/* Liste fichiers */
.cek-files-list {
    margin-bottom: 20px;
}

.cek-file-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 8px;
    margin-bottom: 8px;
}

.cek-file-icon {
    width: 32px;
    height: 32px;
    background: rgba(253, 198, 98, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    color: #fdc662;
    font-weight: 600;
}

.cek-file-info {
    flex: 1;
    min-width: 0;
}

.cek-file-name {
    color: #fff;
    font-size: 13px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cek-file-size {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
}

.cek-file-remove {
    width: 28px;
    height: 28px;
    background: rgba(255, 107, 107, 0.2);
    border: none;
    border-radius: 6px;
    color: #ff6b6b;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
}

.cek-file-remove:hover {
    background: rgba(255, 107, 107, 0.3);
}

/* Question math */
.cek-math {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 20px;
}

.cek-math-q {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    white-space: nowrap;
}

.cek-math-q span {
    color: #fdc662;
    font-weight: 600;
    font-size: 16px;
}

.cek-math input {
    flex: 1;
    max-width: 100px;
    text-align: center;
    padding: 10px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    color: #fff !important;
    font-size: 16px;
    font-weight: 600;
    -webkit-text-fill-color: #fff !important;
}

.cek-math input:focus {
    border-color: #fdc662;
    box-shadow: 0 0 0 3px rgba(253, 198, 98, 0.15);
    outline: none;
}

/* RGPD */
.cek-rgpd {
    margin-bottom: 24px;
}

.cek-rgpd label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 1.5;
}

.cek-rgpd input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: #fdc662;
    cursor: pointer;
}

.cek-rgpd a {
    color: #fdc662;
    text-decoration: none;
}

.cek-rgpd a:hover {
    text-decoration: underline;
}

/* Bouton principal */
.cek-btn {
    width: 100%;
    padding: 16px 24px;
    background: linear-gradient(135deg, #fdc662 0%, #f0b429 100%);
    border: none;
    border-radius: 10px;
    color: #0a0a0a;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    letter-spacing: 0.3px;
    box-shadow: 0 4px 15px rgba(253, 198, 98, 0.3);
}

.cek-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(253, 198, 98, 0.4);
}

.cek-btn:active {
    transform: translateY(0);
}

.cek-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.cek-btn-loading {
    position: relative;
    color: transparent;
}

.cek-btn-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid rgba(0, 0, 0, 0.2);
    border-top-color: #0a0a0a;
    border-radius: 50%;
    animation: cek-spin 0.6s linear infinite;
}

@keyframes cek-spin {
    to {
        transform: rotate(360deg);
    }
}

/* Messages */
.cek-msg {
    padding: 14px 18px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    display: none;
}

.cek-msg-success {
    background: rgba(253, 198, 98, 0.15);
    border: 1px solid rgba(253, 198, 98, 0.3);
    color: #fdc662;
}

.cek-msg-error {
    background: rgba(255, 107, 107, 0.15);
    border: 1px solid rgba(255, 107, 107, 0.3);
    color: #ff6b6b;
}

.cek-msg-info {
    background: rgba(100, 181, 246, 0.15);
    border: 1px solid rgba(100, 181, 246, 0.3);
    color: #64b5f6;
}

/* Preview formulaire pour non-connectés */
.cek-form-preview {
    pointer-events: auto;
    user-select: none;
    transition: filter 0.4s ease, opacity 0.4s ease;
    position: relative;
}

.cek-form-preview::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    cursor: pointer;
}

/* Slide connexion */
.cek-login-slide {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1),
                opacity 0.4s ease,
                margin 0.4s ease;
    margin-bottom: 0;
}

.cek-login-slide.is-visible {
    max-height: 200px;
    opacity: 1;
    margin-bottom: 24px;
}

.cek-login-slide-content {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
}

.cek-login-slide-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    background: rgba(253, 198, 98, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fdc662;
}

.cek-login-slide-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin: 0 0 20px 0;
    font-weight: 400;
}

.cek-login-slide-content .cek-btn {
    width: auto;
    display: inline-block;
    padding: 14px 40px;
}

/* Quand le slide est visible, appliquer le blur */
.cek-login-slide.is-visible + .cek-form-preview {
    filter: blur(4px);
    opacity: 0.5;
}

/* Honeypot */
.cek-hp {
    position: absolute;
    left: -9999px;
}

/* Zone de verification SMS/Email */
.cek-verify-zone {
    background: rgba(18, 26, 46, 0.95);
    border: 1px solid rgba(253, 198, 98, 0.35);
    border-radius: 12px;
    padding: 24px;
    width: 90%;
    max-width: 420px;
    text-align: center;
    box-shadow: 0 18px 44px rgba(0,0,0,0.35);
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 5;
}

.cek-verify-zone h4 {
    color: #f5bc41 !important;
    font-size: 16px;
    margin: 0 0 12px 0;
    font-weight: 600;
}

.cek-verify-zone p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    margin: 0 0 16px 0;
    line-height: 1.5;
}

.cek-verify-zone .cek-phone-masked {
    color: #fdc662;
    font-weight: 600;
}

.cek-code-input {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.cek-code-input input {
    width: 45px;
    height: 55px;
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    color: #fff;
    -webkit-text-fill-color: #fff;
    transition: all 0.2s ease;
}

.cek-code-input input:focus {
    border-color: #fdc662;
    background: rgba(253, 198, 98, 0.1);
    box-shadow: 0 0 0 3px rgba(253, 198, 98, 0.15);
    outline: none;
}

.cek-code-input input.is-filled {
    border-color: #fdc662;
    background: rgba(253, 198, 98, 0.15);
}

.cek-verify-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

.cek-btn-verify {
    padding: 12px 24px;
    background: linear-gradient(135deg, #fdc662 0%, #f0b429 100%);
    border: none;
    border-radius: 8px;
    color: #0a0a0a;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cek-btn-verify:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(253, 198, 98, 0.3);
}

.cek-btn-verify:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.cek-btn-resend {
    padding: 12px 24px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
    cursor: pointer;
    transition: all 0.2s ease;
}

.cek-btn-resend:hover {
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
}

.cek-btn-resend:disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.cek-timer {
    color: rgba(255, 255, 255, 0.5);
    font-size: 13px;
    margin-top: 12px;
}

.cek-timer span {
    color: #fdc662;
    font-weight: 600;
}

/* Blocage du formulaire pendant la vérification */
.cek-contact-box.is-locked form {
    filter: blur(2px);
    pointer-events: none;
    user-select: none;
}

/* Cooldown anti-spam */
.cek-cooldown-notice {
    background: rgba(253, 198, 98, 0.1);
    border: 1px solid rgba(253, 198, 98, 0.25);
    border-radius: 10px;
    padding: 20px;
    text-align: center;
    margin-bottom: 20px;
}

.cek-cooldown-notice p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    margin: 0 0 8px 0;
}

.cek-cooldown-notice .cek-countdown {
    color: #fdc662;
    font-size: 24px;
    font-weight: 700;
}

/* Bloc Express - Estimation IA */
.cek-express-block {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: linear-gradient(135deg, rgba(70, 180, 80, 0.15) 0%, rgba(70, 180, 80, 0.05) 100%);
    border: 1px solid rgba(70, 180, 80, 0.4);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.cek-express-icon {
    font-size: 32px;
    line-height: 1;
    flex-shrink: 0;
}

.cek-express-content {
    flex: 1;
}

.cek-express-title {
    font-weight: 600;
    font-size: 16px;
    color: #fff;
    margin-bottom: 8px;
}

.cek-express-desc {
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 14px 0;
}

/* Bloc Pro */
.cek-pro-block {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
}

.cek-pro-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.cek-pro-icon {
    width: 40px;
    height: 40px;
    background: rgba(253, 198, 98, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cek-pro-icon svg {
    color: #fdc662;
}

.cek-pro-title {
    font-size: 16px;
    font-weight: 600;
    color: #fff;
}

.cek-pro-desc {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    line-height: 1.5;
    margin: 0 0 20px 0;
}

.cek-checkbox-group {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.cek-checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    cursor: pointer;
}

.cek-checkbox-label input[type="radio"],
.cek-checkbox-label input[type="checkbox"] {
    accent-color: #fdc662;
    width: 16px;
    height: 16px;
    cursor: pointer;
}

.cek-pro-upload-section {
    background: rgba(253, 198, 98, 0.05);
    border: 1px dashed rgba(253, 198, 98, 0.3);
    border-radius: 10px;
    padding: 16px;
    margin-top: 20px;
    text-align: center;
}

.cek-pro-upload-title {
    color: #fdc662;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
}

.cek-pro-upload-hint {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    margin: 0;
}

/* Bulle info express - sous le bloc express */
.cek-express-info {
    margin-top: -10px;
    margin-bottom: 20px;
}

.cek-btn-express {
    background: linear-gradient(135deg, #46b450 0%, #3a9a42 100%) !important;
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    text-decoration: none;
}

.cek-btn-express:hover {
    box-shadow: 0 8px 24px rgba(70, 180, 80, 0.4);
}

/* Bloc Modèle */
.cek-modele-block {
    background: rgba(155, 89, 182, 0.05);
    border: 1px solid rgba(155, 89, 182, 0.2);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
}

/* Bloc Échantillons */
.cek-echantillon-block {
    background: rgba(230, 126, 34, 0.05);
    border: 1px solid rgba(230, 126, 34, 0.2);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
}

/* Adresse de livraison pour échantillons */
.cek-echantillon-address {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(230, 126, 34, 0.2);
}

.cek-echantillon-address > label {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    font-weight: 500;
    margin-bottom: 10px;
}

.cek-address-display {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 14px 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

.cek-address-type-label {
    display: block;
    font-size: 11px;
    color: #e67e22;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    font-weight: 600;
}

.cek-address-edit-link {
    display: inline-block;
    color: #e67e22;
    font-size: 13px;
    text-decoration: none;
    transition: color 0.2s;
}

.cek-address-edit-link:hover {
    color: #fdc662;
    text-decoration: underline;
}

.cek-address-missing {
    background: rgba(231, 76, 60, 0.1);
    border: 1px solid rgba(231, 76, 60, 0.3);
    border-radius: 8px;
    padding: 16px;
    text-align: center;
}

.cek-address-warning {
    color: #e74c3c;
    font-size: 14px;
    margin: 0 0 12px 0;
}

.cek-btn-address {
    display: inline-block;
    background: linear-gradient(135deg, #e67e22 0%, #d35400 100%);
    color: #fff !important;
    padding: 10px 20px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none !important;
    transition: transform 0.2s, box-shadow 0.2s;
}

.cek-btn-address:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(230, 126, 34, 0.3);
}

/* Autocomplétion produits */
.cek-autocomplete-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #1a1a2e;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 8px;
    margin-top: 4px;
    max-height: 200px;
    overflow-y: auto;
    z-index: 100;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.cek-autocomplete-item {
    padding: 12px 16px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    cursor: pointer;
    transition: background 0.15s;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.cek-autocomplete-item:last-child {
    border-bottom: none;
}

.cek-autocomplete-item:hover {
    background: rgba(253, 198, 98, 0.1);
    color: #fdc662;
}

/* Zone messages mobile (cachée sur desktop) */
.cek-msg-mobile-zone {
    display: none;
}

/* Responsive */
@media (max-width: 600px) {
    .cek-contact-box {
        padding: 24px 20px;
        border-radius: 12px;
    }

    .cek-row {
        flex-direction: column;
        gap: 0;
    }

    .cek-math {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .cek-math input {
        max-width: none;
    }

    .cek-upload-zone {
        padding: 20px 16px;
    }

    .cek-code-input input {
        width: 40px;
        height: 50px;
        font-size: 20px;
    }

    .cek-verify-actions {
        flex-direction: column;
    }

    .cek-btn-verify,
    .cek-btn-resend {
        width: 100%;
    }

    /* Messages près du bouton en mobile */
    .cek-msg-mobile-zone {
        display: block;
        margin-bottom: 16px;
    }

    /* Cacher les messages du haut en mobile */
    #cek-msg-success,
    #cek-msg-error,
    #cek-msg-info {
        display: none !important;
    }

    /* Bloc express en mobile */
    .cek-express-block {
        flex-direction: column;
        text-align: center;
        padding: 16px;
    }

    .cek-express-icon {
        font-size: 28px;
    }

    .cek-btn-express {
        width: 100%;
        text-align: center;
    }
}

/* ========================================
   BLOC RETOUR ÉCHANTILLONS
   ======================================== */
.cek-retour-echantillon-block {
    background: rgba(192, 57, 43, 0.05);
    border: 1px solid rgba(192, 57, 43, 0.2);
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 20px;
}

.cek-retour-item {
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cek-retour-item:last-of-type {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cek-retour-avis {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 10px;
    flex-wrap: wrap;
}

.cek-avis-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.cek-radio-avis {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 20px;
    transition: all 0.2s;
}

.cek-radio-avis input[type="radio"] {
    width: 16px;
    height: 16px;
    accent-color: #fdc662;
}

.cek-radio-valide:hover,
.cek-radio-valide:has(input:checked) {
    background: rgba(46, 204, 113, 0.15);
    color: #2ecc71;
}

.cek-radio-refuse:hover,
.cek-radio-refuse:has(input:checked) {
    background: rgba(231, 76, 60, 0.15);
    color: #e74c3c;
}

/* Sondage qualité */
.cek-sondage-qualite {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 20px;
    margin-top: 24px;
}

.cek-sondage-title {
    color: #fdc662;
    font-size: 15px;
    font-weight: 600;
    margin: 0 0 16px 0;
}

.cek-sondage-item {
    margin-bottom: 16px;
}

.cek-sondage-item:last-child {
    margin-bottom: 0;
}

.cek-sondage-question {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 13px;
    margin-bottom: 8px;
}

.cek-sondage-radios {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.cek-sondage-radios label {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 12px;
    padding: 5px 10px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    cursor: pointer;
    transition: all 0.2s;
}

.cek-sondage-radios label:hover {
    background: rgba(253, 198, 98, 0.1);
    border-color: rgba(253, 198, 98, 0.3);
}

.cek-sondage-radios label:has(input:checked) {
    background: rgba(253, 198, 98, 0.15);
    border-color: #fdc662;
    color: #fdc662;
}

.cek-sondage-radios input[type="radio"] {
    width: 14px;
    height: 14px;
    accent-color: #fdc662;
}

/* Engagement dépôt */
.cek-engagement-depot {
    margin-top: 24px;
    padding: 16px;
    background: rgba(192, 57, 43, 0.1);
    border: 1px solid rgba(192, 57, 43, 0.3);
    border-radius: 10px;
}

.cek-checkbox-engagement {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    cursor: pointer;
}

.cek-checkbox-engagement input[type="checkbox"] {
    width: 20px;
    height: 20px;
    accent-color: #c0392b;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Responsive retour échantillons */
@media (max-width: 600px) {
    .cek-retour-echantillon-block {
        padding: 16px;
    }

    .cek-retour-avis {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .cek-sondage-radios {
        flex-direction: column;
    }

    .cek-sondage-radios label {
        width: 100%;
        justify-content: flex-start;
    }
}
