.cookie-widget {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 100%;
    max-width: 420px;
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 24px;
    box-sizing: border-box;
    z-index: 2147483647;
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    transform: translateY(150%);
    opacity: 0;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease;
}

.cookie-widget.cookie-show {
    transform: translateY(0);
    opacity: 1;
}

.cookie-widget.cookie-hidden-permanent {
    display: none !important;
}

.cookie-widget__content {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 20px;
}

.cookie-widget__icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    background: rgba(43, 108, 176, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cookie-widget__text {
    font-size: 13px;
    line-height: 1.5;
    color: #4a5568;
    margin: 0;
}

.cookie-widget__actions {
    display: flex;
    gap: 12px;
}

.cookie-widget__btn {
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
    box-sizing: border-box;
    border: none;
    outline: none;
}

.cookie-widget__btn--primary {
    background: #2b6cb0;
    color: #ffffff;
}

.cookie-widget__btn--primary:hover {
    background: #2c5282;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(43, 108, 176, 0.2);
}

.cookie-widget__btn--secondary {
    background: #edf2f7;
    color: #4a5568;
}

.cookie-widget__btn--secondary:hover {
    background: #e2e8f0;
    color: #2d3748;
}

@media (max-width: 480px) {
    .cookie-widget {
        bottom: 16px;
        left: 16px;
        right: 16px;
        width: auto;
        max-width: none;
        padding: 20px;
    }

    .cookie-widget__actions {
        flex-direction: column;
    }

    .cookie-widget__btn {
        width: 100%;
        text-align: center;
    }
}
