/* ==========================================================================
   Newsletter Subscribe
   ========================================================================== */
.watje-newsletter {
    background: #000000;
    padding: var(--w-space-3xl) 0 var(--w-space-xl);
    color: white;
}

.watje-newsletter__desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--w-space-xl);
    max-width: 700px;
}

.watje-newsletter__row {
    display: flex;
    gap: var(--w-space-md);
    margin-bottom: var(--w-space-md);
}

.watje-newsletter__input {
    flex: 1;
    padding: 16px 24px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--w-radius-full);
    color: white;
    font-family: var(--w-font-headline);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    outline: none;
    transition: border-color 0.2s;
}

.watje-newsletter__input::placeholder {
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
}

.watje-newsletter__input:focus {
    border-color: var(--w-yellow);
}

.watje-newsletter__btn {
    flex-shrink: 0;
    padding: 16px 40px;
}

.watje-newsletter__checkbox {
    display: flex;
    align-items: center;
    gap: var(--w-space-sm);
    cursor: pointer;
}

.watje-newsletter__checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    background: transparent;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
    position: relative;
    flex-shrink: 0;
}

.watje-newsletter__checkbox input[type="checkbox"]:checked {
    background: var(--w-yellow);
    border-color: var(--w-yellow);
}

.watje-newsletter__checkbox input[type="checkbox"]:checked::after {
    content: '\2713';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--w-black);
    font-size: 12px;
    font-weight: 700;
}

.watje-newsletter__checkbox span {
    font-family: var(--w-font-headline);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: rgba(255, 255, 255, 0.6);
}

.watje-newsletter__success {
    font-family: var(--w-font-headline);
    font-size: 1rem;
    font-weight: 700;
    color: var(--w-yellow);
    margin-top: var(--w-space-md);
}

@media (max-width: 600px) {
    .watje-newsletter__row {
        flex-direction: column;
    }

    .watje-newsletter__btn {
        width: 100%;
    }
}

/* ==========================================================================
   Footer — Full-width with columns
   ========================================================================== */
.watje-footer {
    background: #000000;
    color: white;
    padding: var(--w-space-2xl) 0 var(--w-space-xl);
}

.watje-footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: var(--w-space-3xl);
    padding-bottom: var(--w-space-3xl);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Brand column */
.watje-footer__logo {
    font-family: var(--w-font-display);
    font-size: 2.5rem;
    color: white;
    display: block;
    margin-bottom: var(--w-space-md);
}

.watje-footer__tagline {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.6);
    max-width: 280px;
    line-height: 1.5;
}

/* Columns */
.watje-footer__heading {
    font-family: var(--w-font-headline);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: var(--w-space-lg);
}

.watje-footer__nav {
    display: flex;
    flex-direction: column;
    gap: var(--w-space-sm);
}

.watje-footer__nav a,
.watje-footer__nav span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    transition: color 0.2s;
}

.watje-footer__nav a:hover {
    color: var(--w-yellow);
}

/* Bottom bar */
.watje-footer__bottom {
    padding-top: var(--w-space-xl);
    text-align: center;
}

.watje-footer__copy {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
}

/* Responsive */
@media (max-width: 767px) {
    .watje-footer__top {
        grid-template-columns: 1fr 1fr;
        gap: var(--w-space-2xl);
    }

    .watje-footer__brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 480px) {
    .watje-footer__top {
        grid-template-columns: 1fr;
    }
}




/* Footer badges (BOB + NIX18) side by side */
.watje-footer__badges {
    display: flex !important;
    flex-direction: row !important;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
}

.watje-footer__badge-bob,
.watje-footer__badge-nix {
    max-width: 120px !important;
    max-height: 80px !important;
    width: auto !important;
    height: auto !important;
    object-fit: contain;
    flex: 0 0 auto;
}

/* Mobile: newsletter input 16px to prevent iOS zoom */
@media (max-width: 767px) {
    .watje-newsletter__input {
        font-size: 16px;
    }
    .watje-footer__badges img {
        max-height: 50px;
    }
}
