#cookie-consent-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999;
    background: #15300f;
    color: #fff;
    padding: 18px 24px;
    box-shadow: 0 -4px 24px rgba(0,0,0,.2);
    display: none;
}
#cookie-consent-banner.show { display: block; }
#cookie-consent-banner .cc-inner {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
#cookie-consent-banner p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255,255,255,.85);
    flex: 1 1 420px;
}
#cookie-consent-banner a {
    color: #8ec33c;
    text-decoration: underline;
}
#cookie-consent-banner .cc-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}
#cookie-consent-banner button {
    font-size: 14px;
    font-weight: 600;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    border: none;
    white-space: nowrap;
}
#cookie-consent-banner .cc-accept {
    background: var(--cta-color, #3c7028);
    color: #fff;
}
#cookie-consent-banner .cc-accept:hover {
    background: var(--cta-color-hover, #2f5d20);
}
#cookie-consent-banner .cc-decline {
    background: transparent;
    color: rgba(255,255,255,.75);
    border: 1px solid rgba(255,255,255,.3);
}
@media (max-width: 600px) {
    #cookie-consent-banner {
        padding: 12px 16px;
    }
    #cookie-consent-banner .cc-inner {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    #cookie-consent-banner p {
        font-size: 12px;
        line-height: 1.5;
        flex: none;
    }
    #cookie-consent-banner .cc-actions {
        flex-direction: row;
        gap: 8px;
    }
    #cookie-consent-banner .cc-actions button {
        flex: 1;
        font-size: 13px;
        padding: 9px 12px;
    }
}
