/* Comments Styles */
.custom-comment-form {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.custom-comment-form .comment-left {
    flex: 60%;
}

.custom-comment-form .comment-right {
    flex: 40%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.custom-comment-form textarea,
.custom-comment-form input[type="text"],
.custom-comment-form input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
    font-size: 16px;
    font-family: "Montserrat", sans-serif;
    box-shadow: none;
    outline: none;
}

.custom-comment-form textarea:focus,
.custom-comment-form input[type="text"]:focus,
.custom-comment-form input[type="email"]:focus {
    border-color: #ccc;
    box-shadow: none;
}

.custom-comment-form textarea {
    resize: vertical;
    height: 120px;
}

.comments-list .comment-item {
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 15px;
}

.comments-list .comment-reply {
    margin-left: 20px;
    border-left: 2px solid #ccc;
    padding-left: 15px;
}

.error-message {
    color: red;
    font-size: 16px;
    margin-top: 5px;
}

.checkbox-wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
}

.checkbox-wrapper input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    padding: 0;
}

.checkbox-wrapper label {
    font-size: 16px;
    color: #333;
    font-family: "Montserrat", sans-serif;
}

.btn-naranja {
    background-color: #333;
    color: #fff;
    border: none;
    cursor: pointer;
    padding: 10px 20px;
    font-size: 14px;
    border-radius: 5px;
    font-family: "Montserrat", sans-serif;
    transition: background-color 0.3s ease;
}

.btn-naranja:hover {
    background-color: #e04900;
    color: #fff;
}

.comment-submit-wrapper {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    width: 100%;
}

.comment-notice {
    width: 100%;
    margin-bottom: 15px;
    padding: 12px 16px;
    border-radius: 4px;
    font-family: "Montserrat", sans-serif;
    font-size: 15px;
    line-height: 1.4;
}

.comment-notice--pending {
    background-color: #f8f5e5;
    border: 1px solid #f2df8c;
    color: #5c4a00;
}

.grecaptcha-badge {
    visibility: hidden;
}
