/* Cookie Banner Styles */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1e1b4b;
    border-top: 3px solid #ea580c;
    padding: 1.5rem 0;
    z-index: 10000;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.3);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
}

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

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.cookie-text h4 {
    color: #ffffff;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.cookie-text p {
    color: #d1d5db;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
}

.cookie-text a {
    color: #ea580c;
    text-decoration: none;
}

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

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

.cookie-btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 120px;
    white-space: nowrap;
}

.cookie-btn.accept {
    background-color: #ea580c;
    color: #ffffff;
}

.cookie-btn.accept:hover {
    background-color: #dc2626;
    transform: translateY(-1px);
}

.cookie-btn.reject {
    background-color: #6b7280;
    color: #ffffff;
}

.cookie-btn.reject:hover {
    background-color: #4b5563;
}

.cookie-btn.customize {
    background-color: transparent;
    color: #ea580c;
    border: 1px solid #374151;
}

.cookie-btn.customize:hover {
    background-color: #ea580c;
    color: #ffffff;
}

.cookie-btn.decline {
    background-color: #6b7280;
    color: #ffffff;
}

.cookie-btn.decline:hover {
    background-color: #4b5563;
}

/* Cookie Preferences Panel */
.cookie-preferences {
    background-color: #111827;
    border-top: 1px solid #374151;
    padding: 2rem 0;
    margin-top: 1rem;
}

.preferences-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.preferences-content h4 {
    color: #ffffff;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    text-align: center;
}

.cookie-category {
    background-color: #1f2937;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #374151;
}

.category-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.category-header input[type="checkbox"] {
    width: 18px;
    height: 18px;
    accent-color: #ea580c;
}

.category-header label {
    color: #ffffff;
    font-size: 1rem;
    cursor: pointer;
    flex: 1;
}

.cookie-category p {
    color: #d1d5db;
    font-size: 0.9rem;
    line-height: 1.5;
    margin: 0;
    margin-left: 2.25rem;
}

.preferences-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .cookie-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }

    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        min-width: 100px;
    }

    .preferences-buttons {
        flex-direction: column;
        align-items: center;
    }

    .preferences-buttons .cookie-btn {
        width: 200px;
    }
}

@media (max-width: 480px) {
    .cookie-content {
        padding: 0 15px;
    }

    .cookie-buttons {
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
        justify-content: center;
    }

    .cookie-btn {
        flex: 1;
        min-width: 90px;
        font-size: 0.8rem;
        padding: 0.6rem 1rem;
    }

    .cookie-category p {
        margin-left: 0;
        margin-top: 0.5rem;
    }
}