.ana-cookie-box {
    position: fixed;
    left: 50%;
    bottom: 34px;
    transform: translateX(-50%);
    z-index: 999999;
    width: auto;
    max-width: calc(100% - 40px);
    background: #ffffff;
    border: 1px solid #dbe3ea;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.22);
    border-radius: 10px;
    padding: 13px 15px;
    box-sizing: border-box;
    font-family: Arial, sans-serif;
}

.ana-cookie-box::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    height: 4px;
    border-radius: 10px 10px 0 0;
    background: linear-gradient(90deg, #0058b0, #af5e94, #ff9800);
}

.ana-cookie-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.ana-cookie-text {
    font-size: 15px;
    line-height: 1.35;
    color: #263445;
}

.ana-cookie-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

.ana-cookie-btn {
    border: 0;
    border-radius: 7px;
    padding: 8px 10px;
    font-size: 12px;
    font-weight: 800;
    cursor: pointer;
    font-family: Arial, sans-serif;
}

.ana-cookie-allow {
    background: #0058b0;
    color: #ffffff;
}

.ana-cookie-decline {
    background: #f1e5ef;
    color: #8a3f73;
}

.ana-cookie-btn:hover {
    opacity: 0.9;
}

@media (max-width: 640px) {
    .ana-cookie-box {
        left: 12px;
        right: 12px;
        bottom: 18px;
        transform: none;
        max-width: none;
    }

    .ana-cookie-inner {
        display: block;
        text-align: center;
    }

    .ana-cookie-text {
        font-size: 13px;
        margin-bottom: 10px;
    }

    .ana-cookie-actions {
        justify-content: center;
    }

    .ana-cookie-btn {
        flex: 1;
        padding: 10px 8px;
    }
}

.ana-cookie-text a {
    color: #0058b0;
    text-decoration: none;
}

.ana-cookie-text a:hover {
    text-decoration: underline;
}