.pol-cookies {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 8500;
    background: #0F1825;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.5);
    transform: translateY(100%);
    transition: transform 0.3s ease;
    padding: 20px 0;
}

.pol-cookies.is-open {
    transform: translateY(0);
}

.pol-cookies__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.pol-cookies__text {
    margin: 0;
    color: var(--pol-text-muted);
    font-size: 14px;
    line-height: 1.5;
    flex: 1;
}

.pol-cookies__actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.pol-cookies__actions .pol-btn {
    padding: 12px 22px;
    font-size: 12px;
}

@media (max-width: 767px) {
    .pol-cookies__inner {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .pol-cookies__actions {
        width: 100%;
        justify-content: center;
    }
}
