.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #0F2942;
    color: #FFFFFF;
    padding: 24px;
    box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.15);
    z-index: 1000;
    display: none;
}

.cookie-banner.show {
    display: block;
}

.cookie-banner-content {
    max-width: 1200px;
    margin: 0 auto;
}

.cookie-banner-main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}

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

.cookie-banner-text h3 {
    margin: 0 0 8px 0;
    font-size: 18px;
    font-weight: 600;
}

.cookie-banner-text p {
    margin: 0 0 8px 0;
    font-size: 14px;
    line-height: 1.5;
}

.cookie-banner-text a {
    color: #4ECDC4;
    text-decoration: underline;
}

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

.cookie-banner-btn {
    padding: 10px 24px;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    font-family: inherit;
    white-space: nowrap;
}

.cookie-banner-btn.accept {
    background-color: #4ECDC4;
    color: #0F2942;
}

.cookie-banner-btn.accept:hover {
    background-color: #45b8b0;
}

.cookie-banner-btn.reject {
    background-color: transparent;
    color: #FFFFFF;
    border: 1px solid #FFFFFF;
}

.cookie-banner-btn.reject:hover {
    background-color: rgba(255, 255, 255, 0.1);
}

.cookie-banner-btn.customize {
    background-color: transparent;
    color: #4ECDC4;
    border: 1px solid #4ECDC4;
}

.cookie-banner-btn.customize:hover {
    background-color: rgba(78, 205, 196, 0.1);
}

.cookie-preferences {
    display: none;
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.cookie-preferences.show {
    display: block;
}

.cookie-preferences h4 {
    margin: 0 0 16px 0;
    font-size: 16px;
    font-weight: 600;
}

.cookie-category {
    margin-bottom: 16px;
    padding: 12px;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
}

.cookie-category-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.cookie-category-info {
    flex: 1;
}

.cookie-category-info h5 {
    margin: 0 0 4px 0;
    font-size: 14px;
    font-weight: 600;
}

.cookie-category-info p {
    margin: 0;
    font-size: 13px;
    opacity: 0.85;
}

.cookie-toggle {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 24px;
}

.cookie-toggle input {
    opacity: 0;
    width: 0;
    height: 0;
}

.cookie-toggle-slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.3);
    border-radius: 24px;
    transition: 0.3s;
}

.cookie-toggle-slider:before {
    position: absolute;
    content: "";
    height: 18px;
    width: 18px;
    left: 3px;
    bottom: 3px;
    background-color: white;
    border-radius: 50%;
    transition: 0.3s;
}

.cookie-toggle input:checked + .cookie-toggle-slider {
    background-color: #4ECDC4;
}

.cookie-toggle input:checked + .cookie-toggle-slider:before {
    transform: translateX(24px);
}

.cookie-toggle input:disabled + .cookie-toggle-slider {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-preferences-actions {
    margin-top: 16px;
    display: flex;
    gap: 12px;
}

@media (max-width: 768px) {
    .cookie-banner-main {
        flex-direction: column;
    }

    .cookie-banner-buttons {
        width: 100%;
    }

    .cookie-banner-btn {
        flex: 1;
        min-width: 0;
    }

    .cookie-preferences-actions {
        flex-direction: column;
    }

    .cookie-preferences-actions .cookie-banner-btn {
        width: 100%;
    }
}
