/* Cookie Banner Styles */
#cookies-detailed-panel {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    padding: 20px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.3);
}

.detailed-panel .panel-box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: #fff;
}

.panel-title {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #fff;
}

.panel-desc {
    font-size: 0.95rem;
    margin-bottom: 20px;
    color: #ddd;
}

.cookie-categories {
    margin-bottom: 20px;
}

.category-item {
    margin-bottom: 15px;
    padding: 10px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 5px;
}

.category-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    margin-bottom: 5px;
    cursor: pointer;
}

.category-head strong {
    color: #fff;
}

.category-head input[type="checkbox"] {
    margin-left: 10px;
    cursor: pointer;
    width: 18px;
    height: 18px;
}

.required-badge {
    display: inline-block;
    padding: 2px 8px;
    background: #666;
    color: #fff;
    font-size: 0.75rem;
    border-radius: 3px;
    font-weight: normal;
    margin-left: 10px;
}

.category-text {
    font-size: 0.85rem;
    color: #bbb;
    margin: 5px 0 0 0;
}

.panel-footer {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.panel-btn {
    padding: 10px 25px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
}

.panel-btn.primary {
    background: #007bff;
    color: #fff;
}

.panel-btn.primary:hover {
    background: #0056b3;
}

.panel-btn.outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

.panel-btn.outline:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* Responsive */
@media (max-width: 768px) {
    .panel-footer {
        flex-direction: column;
    }
    
    .panel-btn {
        width: 100%;
    }
    
    .category-head {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .category-head input[type="checkbox"] {
        margin-left: 0;
        margin-top: 5px;
    }
}
