/* Shared form control styles */
input[type="checkbox"]:not(.product-checkbox) {
    width: 1.35rem;
    height: 1.35rem;
    margin: 0.2rem 0.35rem 0.2rem 0;
    border: 2px solid #344054;
    border-radius: 0.25rem;
    accent-color: var(--brand-olive, #5a6b2e);
    cursor: pointer;
    vertical-align: middle;
}

input[type="checkbox"]:not(.product-checkbox):focus-visible {
    outline: 3px solid rgba(90, 107, 46, 0.35);
    outline-offset: 2px;
}

input[type="checkbox"]:not(.product-checkbox):checked {
    background-color: var(--brand-olive, #5a6b2e);
    border-color: var(--brand-olive, #5a6b2e);
}

input[type="checkbox"]:not(.product-checkbox):disabled {
    cursor: not-allowed;
    opacity: 0.65;
}

.site-footer {
    padding: 6px 20px;
    color: var(--brand-dark-green, #3d4a1f);
    background: var(--brand-cream, #f5f1e8);
    border-top: 2px solid var(--brand-brown, #8b5a3c);
    text-align: center;
}

.site-footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px 8px;
    font-size: 0.8rem;
    line-height: 1.3;
}

.site-footer-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.site-footer-right {
    margin-left: auto;
}

.site-footer-links,
.site-footer-contact {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 4px;
}

.site-footer-links a,
.site-footer-contact a {
    color: var(--brand-olive, #5a6b2e);
    font-weight: 700;
    text-decoration: none;
}

.site-footer-links a:hover,
.site-footer-contact a:hover {
    color: var(--brand-dark-green, #3d4a1f);
    text-decoration: underline;
}

.site-footer-contact {
    margin-top: 10px;
    gap: 8px 20px;
}

.site-footer-contact i {
    margin-right: 4px;
}

.site-footer-copyright {
    margin-top: 10px;
    font-size: 0.9rem;
}

.site-footer-dev {
    font-size: 0.8rem;
    white-space: nowrap;
    line-height: 1.3;
}

.site-footer-dev a {
    color: var(--brand-olive, #5a6b2e);
    font-weight: 700;
    text-decoration: none;
}

.site-footer-dev a:hover {
    color: var(--brand-dark-green, #3d4a1f);
    text-decoration: underline;
}

@media (max-width: 767.98px) {
    .site-footer-content {
        flex-direction: column;
        text-align: center;
    }
    
    .site-footer-right {
        margin-left: 0;
    }
}

.policy-page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.policy-content {
    flex: 1;
    max-width: 900px;
    padding-top: 48px;
    padding-bottom: 48px;
}

.policy-content h1 {
    color: var(--brand-dark-green, #3d4a1f);
    margin-bottom: 28px;
}

.policy-content h2 {
    color: var(--brand-olive, #5a6b2e);
    margin-top: 28px;
    font-size: 1.35rem;
}
