/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    right: 0;
    background: black;
    z-index: 10000;
}

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

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.cookie-banner-content {
    max-width: 400px;
    margin: 0 auto;
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-direction: column;
}

.cookie-banner-text {
    flex: 1;
}

.cookie-banner-text h3 {
    margin: 0 0 8px 0;
    font-size: 1.2rem;
    color: #ffffff;
    font-weight: 600;
}

.cookie-banner-text p {
    margin: 0;
    font-size: 0.95rem;
    color: #c0c0c0;
    line-height: 1.5;
}

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

.cookie-banner-text a:hover {
    color: #6ab7ff;
}

.cookie-banner-actions {
    display: flex;
    gap: 12px;
    flex-shrink: 0;
}

.cookie-banner button {
    padding: 10px 76px;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.cookie-banner .btn-primary {
    background: darkgreen;
    color: #ffffff;
}

.cookie-banner .btn-primary:hover {
    background: linear-gradient(135deg, #3a8eef 0%, #2a7edf 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(74, 158, 255, 0.4);
}

.cookie-banner .btn-secondary {
    background: #333;
    color: #ffffff;
}

.cookie-banner .btn-secondary:hover {
    background: #444;
}

.cookie-banner .btn-text {
    background: transparent;
    color: #4a9eff;
    text-decoration: underline;
}

.cookie-banner .btn-text:hover {
    color: #6ab7ff;
}

/* Customization Panel */
.cookie-customize-panel {
    border-top: 1px solid #333;
    padding: 20px 32px;
    max-width: 1200px;
    margin: 0 auto;
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        max-height: 0;
    }

    to {
        opacity: 1;
        max-height: 500px;
    }
}

.cookie-customize-panel h4 {
    margin: 0 0 16px 0;
    font-size: 1.1rem;
    color: #ffffff;
}

.cookie-option {
    margin-bottom: 12px;
}

.cookie-option label {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    color: #c0c0c0;
    font-size: 0.95rem;
}

.cookie-option input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.cookie-option input[type="checkbox"]:disabled {
    cursor: not-allowed;
    opacity: 0.5;
}

.customize-actions {
    margin-top: 20px;
    display: flex;
    justify-content: flex-end;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        padding: 20px;
    }

    .cookie-banner-actions {
        flex-direction: column;
        width: 100%;
    }

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

    .cookie-customize-panel {
        padding: 16px 20px;
    }
}

/* Hidden state */
.cookie-banner.hidden {
    display: none !important;
}