.hp-cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 2000;
    padding: 16px 20px calc(16px + env(safe-area-inset-bottom, 0px));
    background: rgba(6, 31, 38, 0.96);
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(14px);
    box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
    transform: translateY(110%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.35s ease, opacity 0.35s ease, visibility 0.35s;
    font-family: Inter, system-ui, sans-serif;
}

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

.hp-cookie-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px 20px;
}

.hp-cookie-text {
    flex: 1 1 280px;
    margin: 0;
    font-size: 13px;
    line-height: 1.55;
    color: #97aec2;
}

.hp-cookie-text a {
    color: #33b8b8;
    text-decoration: underline;
}

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

.hp-cookie-btn {
    border: none;
    border-radius: 10px;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.hp-cookie-btn:active {
    transform: scale(0.98);
}

.hp-cookie-btn--accept {
    background: linear-gradient(135deg, #007a7a, #009999);
    color: #fff;
    box-shadow: 0 8px 20px rgba(0, 153, 153, 0.25);
}

.hp-cookie-btn--reject {
    background: rgba(255, 255, 255, 0.08);
    color: #d8e5f1;
    border: 1px solid rgba(255, 255, 255, 0.14);
}

@media (max-width: 768px) {
    .hp-cookie-inner {
        flex-direction: column;
        align-items: stretch;
    }

    .hp-cookie-actions {
        width: 100%;
    }

    .hp-cookie-btn {
        flex: 1;
        text-align: center;
    }
}
