/* Cookie Banner Styles - Design 2 (Green/Nature Theme) */
#cookies-detailed-panel {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: linear-gradient(135deg, #2d5016 0%, #4a7c2c 100%);
    padding: 25px 0;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.4);
    border-top: 3px solid #7fb069;
}

.detailed-panel .panel-box {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: #fff;
}

.panel-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.panel-desc {
    font-size: 1rem;
    margin-bottom: 20px;
    color: #e8f5e9;
}

.cookie-categories {
    margin-bottom: 20px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.category-item {
    margin-bottom: 0;
    padding: 15px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.category-item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.category-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 1rem;
    margin-bottom: 8px;
    cursor: pointer;
}

.category-head strong {
    color: #fff;
    font-size: 1.1rem;
}

.category-head input[type="checkbox"] {
    margin-left: 10px;
    cursor: pointer;
    width: 20px;
    height: 20px;
    accent-color: #7fb069;
}

.required-badge {
    display: inline-block;
    padding: 3px 10px;
    background: #ff9800;
    color: #fff;
    font-size: 0.75rem;
    border-radius: 12px;
    font-weight: bold;
    margin-left: 10px;
}

.category-text {
    font-size: 0.9rem;
    color: #c8e6c9;
    margin: 5px 0 0 0;
    line-height: 1.4;
}

.panel-footer {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 25px;
}

.panel-btn {
    padding: 12px 30px;
    border: none;
    border-radius: 25px;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.panel-btn.primary {
    background: #7fb069;
    color: #1b3409;
    box-shadow: 0 4px 15px rgba(127, 176, 105, 0.4);
}

.panel-btn.primary:hover {
    background: #9bc97f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(127, 176, 105, 0.6);
}

.panel-btn.outline {
    background: transparent;
    color: #fff;
    border: 2px solid #7fb069;
}

.panel-btn.outline:hover {
    background: rgba(127, 176, 105, 0.2);
    border-color: #9bc97f;
}

/* Responsive */
@media (max-width: 768px) {
    .cookie-categories {
        grid-template-columns: 1fr;
    }
    
    .panel-footer {
        flex-direction: column;
    }
    
    .panel-btn {
        width: 100%;
    }
}
