.cookie-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    background: #ffffff;
    color: #1f2937;
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.08);
    font-family: inherit;
}

.cookie-banner[hidden] {
    display: none;
}

.cookie-banner__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 16px 20px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
}

.cookie-banner__text {
    flex: 1 1 320px;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-banner__text p {
    margin: 0 0 6px 0;
}

.cookie-banner__text p:last-child {
    margin-bottom: 0;
}

.cookie-banner__text a {
    color: inherit;
    text-decoration: underline;
}

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

.cookie-banner__btn {
    appearance: none;
    border: 1px solid transparent;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    line-height: 1;
}

.cookie-banner__btn--accept {
    background: #f58220;
    color: #ffffff;
}

.cookie-banner__btn--accept:hover {
    background: #d9700e;
}

.cookie-banner__btn--reject {
    background: transparent;
    color: #374151;
    border-color: #d1d5db;
}

.cookie-banner__btn--reject:hover {
    background: #f3f4f6;
}

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

    .cookie-banner__actions {
        width: 100%;
        justify-content: flex-end;
    }
}
