#cookie-consent-banner {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    width: 300px;
    background: #fff;
    color: #252837;
    z-index: 9999;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    font-family: "Poppins", sans-serif;
    font-size: 13px;
    border: 1px solid #e9ecef;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
}

#cookie-consent-banner.is-visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.cookie-consent__inner {
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cookie-consent__text {
    margin: 0;
    line-height: 1.6;
    color: #555;
}

.cookie-consent__text a {
    color: #1e73be;
    text-decoration: underline;
}

.cookie-consent__text a:hover {
    color: #10495c;
}

.cookie-consent__actions {
    display: flex;
    gap: 0.5rem;
}

#cookie-accept {
    flex: 1;
    background: #1e73be;
    color: #fff;
    border: 2px solid #1e73be;
    padding: 8px 12px;
    border-radius: 30px;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

#cookie-accept:hover {
    background: #10495c;
    border-color: #10495c;
}

#cookie-decline {
    flex: 1;
    background: transparent;
    color: #888;
    border: 2px solid #e9ecef;
    padding: 8px 12px;
    border-radius: 30px;
    font-family: "Poppins", sans-serif;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.04rem;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
}

#cookie-decline:hover {
    border-color: #888;
    color: #252837;
}

@media (max-width: 400px) {
    #cookie-consent-banner {
        bottom: 0;
        right: 0;
        width: 100%;
        border-radius: 10px 10px 0 0;
    }
}
