#gws-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #0e2233;
    color: #fff;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.25);
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

#gws-cookie-banner.gws-cookie-banner--visible {
    transform: translateY(0);
}

#gws-cookie-banner.gws-cookie-banner--hiding {
    transform: translateY(100%);
}

.gws-cookie-banner__text {
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    flex: 1;
    min-width: 0;
}

.gws-cookie-banner__text a {
    color: #62b8e8;
    text-decoration: underline;
}

.gws-cookie-banner__text a:hover {
    color: #fff;
}

.gws-cookie-banner__actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

#gws-cookie-accept {
    background: #0065a4;
    color: #fff;
    border: none;
    border-radius: 6px;
    padding: 10px 24px;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease;
}

#gws-cookie-accept:hover {
    background: #004f80;
}

#gws-cookie-essential {
    background: none;
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    border-radius: 6px;
    padding: 10px 20px;
    font-family: 'Be Vietnam Pro', sans-serif;
    font-size: 14px;
    font-weight: 400;
    cursor: pointer;
    white-space: nowrap;
    transition: border-color 0.2s ease, color 0.2s ease;
}

#gws-cookie-essential:hover {
    border-color: #fff;
}

@media (max-width: 768px) {
    #gws-cookie-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px 24px;
        gap: 16px;
    }

    .gws-cookie-banner__actions {
        width: 100%;
    }

    #gws-cookie-accept,
    #gws-cookie-essential {
        flex: 1;
        text-align: center;
    }
}
