.comments-area {
	margin-bottom: 50px !important;
}
.comment-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    max-width: 100%;
    /* Card styling */
    background-color: var(--base);
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
    border: 1px solid var(--accent-3);
    border-radius: 0.875rem;
    padding: 1.5rem;
    transition: all 0.25s ease 0s;
}

/* Form groups */
.comment-form p {
    margin: 0;
}

.comment-form-comment {
    display: flex;
    flex-direction: column;
}

/* Labels - screen reader only */
.screen-reader-text {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Input Fields & Textarea */
.comment-form input[type="text"],
.comment-form input[type="email"],
.comment-form input[type="url"],
.comment-form textarea {
    width: 100%;
    padding: 0.625rem 0.875rem;
    font-size: 0.9375rem;
    line-height: 1.5;
    color: var(--base-4);
    background-color: var(--base);
    border: 1px solid var(--accent-3);
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    font-family: inherit;
    box-sizing: border-box;
}

.comment-form textarea {
    min-height: 120px;
    resize: vertical;
    padding: 0.75rem 0.875rem;
}

/* Placeholder styling */
.comment-form input::placeholder,
.comment-form textarea::placeholder {
    color: var(--base-5);
    opacity: 0.6;
}

/* Focus states */
.comment-form input[type="text"]:focus,
.comment-form input[type="email"]:focus,
.comment-form input[type="url"]:focus,
.comment-form textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(192, 150, 119, 0.1);
}

/* Hover states */
.comment-form input[type="text"]:hover:not(:focus),
.comment-form input[type="email"]:hover:not(:focus),
.comment-form input[type="url"]:hover:not(:focus),
.comment-form textarea:hover:not(:focus) {
    border-color: var(--accent-2);
}

/* Checkbox styling - container */
.comment-form-cookies-consent {
    display: flex;
    align-items: flex-start;
    gap: 0.625rem;
    padding: 0.875rem 1rem;
    background-color: var(--base-2);
    border: 1px solid var(--accent-3);
    border-radius: 0.5rem;
}

/* Custom checkbox styling */
.comment-form-cookies-consent input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 1.125rem;
    height: 1.125rem;
    margin: 0.125rem 0 0 0;
    cursor: pointer;
    flex-shrink: 0;
    border: 2px solid var(--accent-3);
    border-radius: 0.25rem;
    background-color: var(--base);
    transition: all 0.2s ease;
    position: relative;
}

/* Checkbox hover */
.comment-form-cookies-consent input[type="checkbox"]:hover {
    border-color: var(--accent-2);
}

/* Checkbox checked state - groene achtergrond */
.comment-form-cookies-consent input[type="checkbox"]:checked {
    background-color: var(--contrast-2);
    border-color: var(--contrast-2);
}

/* Wit vinkje */
.comment-form-cookies-consent input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 0.3rem;
    height: 0.6rem;
    border: solid white;
    border-width: 0 2px 2px 0;
}

/* Checkbox focus */
.comment-form-cookies-consent input[type="checkbox"]:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(85, 180, 67, 0.2);
}

.comment-form-cookies-consent label {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--base-5);
    cursor: pointer;
    margin: 0;
}

/* Submit button */
.form-submit {
    margin: 0;
}

.comment-form .submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.875rem 1.75rem;
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.025em;
    color: var(--base);
    background-color: var(--contrast-2);
    border: none;
    border-radius: 1470px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.06);
    font-family: inherit;
}

.comment-form .submit:hover {
    background-color: var(--contrast);
    transform: translateY(-1px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.comment-form .submit:active {
    transform: translateY(0);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.comment-form .submit:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(85, 180, 67, 0.2), 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}

/* Responsive adjustments */
@media (max-width: 640px) {
    .comment-form {
        gap: 1rem;
        padding: 1.25rem;
    }
    
    .comment-form input[type="text"],
    .comment-form input[type="email"],
    .comment-form input[type="url"],
    .comment-form textarea {
        font-size: 1rem; /* Prevent zoom on iOS */
    }
    
    .comment-form .submit {
        width: 100%;
    }
}

.page-id-1291 .comments-area {
	max-width: 1200px;
}
.page-id-1291 #comments {
	max-width: 680px;
}