.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9999;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    color: #333;
    transform: translateY(100%);
    transition: transform 0.4s ease-out;
}

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

.cookie-banner-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    flex: 1;
    min-width: 250px;
}

.cookie-banner-text h3 {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 4px 0;
    color: #222;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 13px;
    color: #666;
    line-height: 1.5;
}

.cookie-banner-text a {
    color: #f40000;
    text-decoration: none;
    font-weight: 500;
}

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

.cookie-banner-options {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-banner-options label {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 13px;
    color: #444;
    cursor: pointer;
    white-space: nowrap;
}

.cookie-banner-options label.cookie-option-disabled {
    color: #999;
    cursor: default;
}

.cookie-banner-options input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: #f40000;
    cursor: pointer;
}

.cookie-banner-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center;
}

.cookie-btn {
    padding: 10px 22px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    white-space: nowrap;
    font-family: 'Montserrat', sans-serif;
}

.cookie-btn-accept {
    background: #f40000;
    color: #fff;
    border: none;
}

.cookie-btn-accept:hover {
    background: #d50000;
}

.cookie-btn-save {
    background: #f5f5f5;
    color: #333;
    border: 1px solid #ccc;
}

.cookie-btn-save:hover {
    background: #e8e8e8;
}

.cookie-btn-decline {
    background: none;
    color: #666;
    border: 1px solid #ccc;
    padding: 10px 22px;
    text-decoration: none;
    font-weight: 500;
}

.cookie-btn-decline:hover {
    background: #f5f5f5;
    color: #333;
    border-color: #999;
}

@media (max-width: 768px) {
    .cookie-banner-inner {
        flex-direction: column;
        align-items: stretch;
        padding: 12px 16px;
        gap: 8px;
    }

    .cookie-banner-text {
        text-align: center;
    }

    .cookie-banner-text h3 {
        font-size: 13px;
        margin-bottom: 2px;
    }

    .cookie-banner-text p {
        font-size: 11px;
    }

    .cookie-banner-options {
        justify-content: center;
        gap: 10px;
    }

    .cookie-banner-options label {
        font-size: 11px;
        gap: 3px;
    }

    .cookie-banner-options input[type="checkbox"] {
        width: 14px;
        height: 14px;
    }

    .cookie-banner-buttons {
        justify-content: center;
        gap: 8px;
    }

    .cookie-btn {
        padding: 8px 14px;
        font-size: 11px;
    }

    .cookie-btn-decline {
        padding: 8px 14px;
    }
}
