.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: #fff;
    box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.15);
    padding: 0;
    transform: translateY(100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 90vh;
    overflow-y: auto;
}

.cookie-banner--visible {
    transform: translateY(0);
}

.cookie-banner__inner {
    max-width: 720px;
    margin: 0 auto;
    padding: 24px 20px;
}

.cookie-banner__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-heading, #1a1a1a);
    margin-bottom: 8px;
}

.cookie-banner__text {
    font-size: 13px;
    color: var(--text-secondary, #6b6b6b);
    line-height: 1.6;
    margin-bottom: 16px;
}

.cookie-banner__text a {
    color: var(--color-primary, #8B7355);
    text-decoration: underline;
}

.cookie-banner__actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.cookie-banner__actions .btn {
    flex: 1;
    min-width: 120px;
    justify-content: center;
    font-size: 13px;
    padding: 10px 16px;
}

.cookie-banner__details {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color, #e5e5e5);
}

.cookie-banner__category {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-color, #e5e5e5);
}

.cookie-banner__category:last-child {
    border-bottom: none;
}

.cookie-banner__category-info h4 {
    font-size: 14px;
    font-weight: 600;
    color: var(--text-heading, #1a1a1a);
    margin: 0 0 2px 0;
}

.cookie-banner__category-info p {
    font-size: 12px;
    color: var(--text-muted, #999);
    margin: 0;
}

.cookie-banner__overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 99998;
    opacity: 0;
    transition: opacity 0.3s;
}

.cookie-banner__overlay--visible {
    opacity: 1;
}

@media (max-width: 480px) {
    .cookie-banner__inner {
        padding: 20px 16px;
    }

    .cookie-banner__actions {
        flex-direction: column;
    }

    .cookie-banner__actions .btn {
        width: 100%;
    }
}
