/* Cookie Banner Styling */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: #ecf0f1;
    padding: 20px;
    z-index: 9999;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
    display: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
}

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

.cookie-banner-header h2 {
    margin: 0 0 10px 0;
    font-size: 1.3em;
    font-weight: 600;
}

.cookie-banner-body {
    margin-bottom: 15px;
    font-size: 0.95em;
    line-height: 1.5;
}

.cookie-banner-body p {
    margin: 0 0 10px 0;
}

.cookie-banner-body strong {
    color: #f39c12;
}

.cookie-details {
    margin-top: 10px;
    cursor: pointer;
}

.cookie-details summary {
    padding: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: background 0.2s;
}

.cookie-details summary:hover {
    background: rgba(255, 255, 255, 0.15);
}

.cookie-info {
    margin-top: 10px;
    padding: 10px;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 4px;
    font-size: 0.9em;
}

.cookie-info h3 {
    margin: 0 0 8px 0;
    color: #f39c12;
}

.cookie-info ul {
    margin: 8px 0;
    padding-left: 20px;
}

.cookie-info li {
    margin: 5px 0;
}

.cookie-info a {
    color: #3498db;
    text-decoration: none;
}

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

.cookie-options {
    margin: 15px 0;
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.cookie-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.cookie-checkbox input {
    margin-right: 8px;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.cookie-checkbox span {
    font-size: 0.95em;
}

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

.btn-primary,
.btn-secondary,
.btn-link {
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.95em;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.btn-primary {
    background: #27ae60;
    color: white;
}

.btn-primary:hover {
    background: #229954;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(39, 174, 96, 0.3);
}

.btn-secondary {
    background: #3498db;
    color: white;
}

.btn-secondary:hover {
    background: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 2px 8px rgba(52, 152, 219, 0.3);
}

.btn-link {
    background: transparent;
    color: #ecf0f1;
    text-decoration: underline;
}

.btn-link:hover {
    color: #f39c12;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
    }

    .cookie-banner-header h2 {
        font-size: 1.1em;
    }

    .cookie-banner-body {
        font-size: 0.9em;
    }

    .cookie-options {
        flex-direction: column;
        gap: 10px;
    }

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

    .btn-primary,
    .btn-secondary,
    .btn-link {
        width: 100%;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 12px;
    }

    .cookie-banner-header h2 {
        font-size: 1em;
    }

    .cookie-banner-body {
        font-size: 0.85em;
    }
}
