.cookie-banner {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    z-index: 100000;
    display: none;
    align-items: flex-end;
    justify-content: center;
}

.cookie-banner::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    pointer-events: auto;
}

.cookie-banner.show {
    display: flex;
    animation: fadeIn 0.4s ease-out;
}

.cookie-banner-content {
    position: relative;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    color: #fff;
    padding: 2rem;
    width: 100%;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    z-index: 100001;
    animation: slideUp 0.4s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
    }
    to {
        transform: translateY(0);
    }
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 2rem;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    position: relative;
    z-index: 100001;
}

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

.cookie-text h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: #A23469;
}

.cookie-text p {
    font-size: 0.95rem;
    line-height: 1.6;
    opacity: 0.9;
}

.cookie-text a {
    color: #fff !important;
    text-decoration: underline !important;
    font-weight: 600 !important;
    cursor: pointer !important;
}

.cookie-text a:hover {
    color: #A23469 !important;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.9rem 2rem;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Inter', sans-serif;
}

.cookie-btn-accept {
    background: #A23469;
    color: #fff;
}

.cookie-btn-accept:hover {
    background: #8a2d5a;
    transform: translateY(-2px);
}

.cookie-btn-decline {
    background: #A23469;
    color: #fff;
    border: none;
}

.cookie-btn-decline:hover {
    background: #8a2d5a;
    transform: translateY(-2px);
}

.cookie-settings {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
}

.cookie-settings-btn {
    background: rgba(162, 52, 105, 0.9);
    color: #fff;
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    cursor: pointer;
    font-size: 0.9rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.cookie-settings-btn:hover {
    background: rgba(162, 52, 105, 1);
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        align-items: stretch;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-btn {
        width: 100%;
    }
    
    .cookie-settings {
        bottom: 1rem;
        right: 1rem;
    }
}
