/* Conteneur principal */
.sn-ld-container {
    margin: 2.5rem 0;
    font-family: 'Outfit', 'Inter', -apple-system, sans-serif;
}

.sn-ld-main-ui {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.sn-ld-buttons {
    display: inline-flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid rgba(10, 46, 36, 0.15);
    border-radius: 999px;
    padding: 8px 12px;
    box-shadow: 0 10px 30px rgba(10, 46, 36, 0.08);
}

.sn-ld-btn {
    display: flex !important;
    align-items: center;
    gap: 10px;
    background: #0A2E24 !important;
    color: #ffffff !important;
    border: none !important;
    border-radius: 999px !important;
    padding: 10px 20px !important;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 700;
    font-size: 16px;
    line-height: 1 !important;
    text-decoration: none !important;
    box-shadow: none !important;
}

.sn-ld-btn:hover {
    background: #DCB313 !important;
    color: #0A2E24 !important;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 20px rgba(220, 179, 19, 0.4) !important;
}

.sn-ld-btn.active {
    background: #DCB313 !important;
    color: #0A2E24 !important;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1) !important;
}

.sn-ld-sep {
    width: 2px;
    height: 30px;
    background: rgba(10, 46, 36, 0.1);
    margin: 0 15px;
}

/* Lien de signalement raffiné */
.sn-ld-report-link {
    background: none;
    border: none;
    color: #0A2E24;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    padding: 5px 0;
    text-decoration: none;
    border-bottom: 1px solid rgba(10, 46, 36, 0.2);
}

.sn-ld-report-link:hover {
    color: #DCB313;
    border-bottom-color: #DCB313;
}

.sn-ld-report-icon {
    font-size: 16px;
}

/* Modal */
.sn-ld-modal {
    display: none;
    position: fixed;
    z-index: 9999999;
    /* Z-index très élevé pour passer devant tout */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 46, 36, 0.85);
    backdrop-filter: blur(8px);
}

.sn-ld-modal-content {
    background-color: #ffffff;
    margin: 10% auto;
    padding: 40px;
    border-radius: 24px;
    width: 90%;
    max-width: 550px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sn-ld-close {
    color: #ccc;
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 32px;
    font-weight: 300;
    cursor: pointer;
    line-height: 1;
    transition: all 0.3s;
}

.sn-ld-close:hover {
    color: #d63638;
    transform: rotate(90deg);
}

.sn-ld-modal h3 {
    margin: 0 0 15px 0;
    color: #0A2E24;
    font-size: 26px;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.sn-ld-modal p {
    color: #666;
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 25px;
}

.sn-ld-textarea-container {
    position: relative;
    margin-bottom: 20px;
}

.sn-ld-modal textarea {
    width: 100%;
    height: 120px;
    padding: 20px;
    border: 2px solid #f0f0f0;
    border-radius: 16px;
    resize: none;
    font-size: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-sizing: border-box;
    background: #f9f9f9;
}

.sn-ld-modal textarea:focus {
    outline: none;
    border-color: #0A2E24;
    background: #fff;
    box-shadow: 0 0 0 4px rgba(10, 46, 36, 0.05);
}

#sn-ld-char-count {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 12px;
    font-weight: 600;
    color: #999;
}

.sn-ld-modal-footer {
    display: flex;
    justify-content: flex-end;
}

.sn-ld-btn-submit {
    background: #0A2E24;
    color: #fff;
    border: none;
    padding: 14px 30px;
    border-radius: 999px;
    cursor: pointer;
    font-weight: 800;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(10, 46, 36, 0.2);
}

.sn-ld-btn-submit:hover:not(:disabled) {
    background: #DCB313;
    color: #0A2E24;
    transform: scale(1.05);
}

.sn-ld-btn-submit:disabled {
    background: #e0e0e0;
    color: #aaa;
    cursor: not-allowed;
    box-shadow: none;
}

/* Messages */
.sn-ld-message {
    margin-top: 15px;
    font-size: 15px;
    font-weight: 700;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-align: center;
}

.sn-ld-message.show {
    opacity: 1;
    transform: translateY(0);
}

.sn-ld-message.success {
    color: #17a221;
}

.sn-ld-message.error {
    color: #d63638;
}