.sz-cookie-banner {
    position: fixed;
    z-index: 100002;
    right: 20px;
    bottom: 20px;
    left: 20px;
    display: none;
    width: min(560px, calc(100% - 40px));
    margin: 0 auto;
    padding: 20px 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: #0d2137;
    color: #fff;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.32);
    font-family: "Inter", Arial, sans-serif;
}
.sz-cookie-banner.show { display: block; }
.sz-cookie-banner h3 {
    margin: 0 0 8px;
    color: #cfa834;
    font-family: "Playfair Display", Georgia, serif;
    font-size: 1.14rem;
    line-height: 1.3;
}
.sz-cookie-banner p {
    margin: 0 0 16px;
    color: rgba(255, 255, 255, 0.86);
    font-size: 0.9rem;
    line-height: 1.55;
}
.sz-cookie-banner a { color: #e6c451; text-decoration: underline; }
.sz-cookie-banner .sz-cb-buttons { display: flex; flex-wrap: wrap; gap: 10px; }
.sz-cookie-banner button {
    flex: 1 1 180px;
    min-height: 44px;
    padding: 10px 18px;
    border: 1px solid rgba(255, 255, 255, 0.5) !important;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.08) !important;
    color: #fff !important;
    font: 600 0.88rem/1.2 "Inter", Arial, sans-serif;
    cursor: pointer;
}
.sz-cookie-banner .sz-cb-accept {
    border-color: #cfa834 !important;
    background: #cfa834 !important;
    color: #0d2137 !important;
}
.sz-cookie-banner button:hover, .sz-cookie-banner button:focus-visible { border-color: #e6c451 !important; outline: 2px solid #e6c451; outline-offset: 2px; }
.sz-cookie-settings-link {
    border: 0;
    background: transparent;
    color: inherit;
    font: inherit;
    text-decoration: underline;
    cursor: pointer;
}
.sz-cookie-settings-link.is-floating {
    position: fixed;
    z-index: 9990;
    right: 12px;
    bottom: 12px;
    min-height: 36px;
    padding: 7px 10px;
    border: 1px solid rgba(13, 33, 55, 0.26);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.96);
    color: #0d2137;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.14);
    font: 600 0.76rem/1.2 "Inter", Arial, sans-serif;
    text-decoration: none;
}
@media (max-width: 768px) {
    .sz-cookie-banner {
        right: 12px;
        bottom: 12px;
        left: 12px;
        width: calc(100% - 24px);
        padding: 16px 18px;
    }
    .sz-cookie-banner .sz-cb-buttons { flex-direction: column; }
    .sz-cookie-banner button { width: 100%; flex-basis: auto; }
}
