.cookie-banner{
    position: fixed;
    left: 16px;
    right: 16px;
    bottom: 16px;
    background: #ffffff;
    border: 1px solid rgba(20, 80, 74, 0.18);
    border-radius: 14px;
    padding: 14px 16px;
    box-shadow: 0 12px 28px rgba(20, 80, 74, 0.15);
    z-index: 9999;
    display: none;
}

.cookie-banner.is-visible{
    display: block;
}

.cookie-banner p{
    margin: 0 0 10px;
    font-family: "Inter", sans-serif;
    color: #222;
    line-height: 1.55;
}

.cookie-actions{
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-btn{
    border: 0;
    border-radius: 999px;
    padding: 8px 14px;
    cursor: pointer;
    font-family: "Inter", sans-serif;
    font-weight: 600;
    background: #f1f1f1;
}

.cookie-btn.is-primary{
    background: var(--color-teal-900);
    color: #fff;
}

.cookie-settings-link{
    border: 0;
    background: transparent;
    padding: 0;
    font: inherit;
    color: inherit;
    text-decoration: underline;
    cursor: pointer;
}

@media (max-width: 700px){
    .cookie-banner{
        left: 10px;
        right: 10px;
        bottom: 10px;
        padding: 12px;
    }
}
