/**
 * GDPR Cookie Consent Banner Styles
 * Zgodny z dyrektywą UE
 */

#gdpr-cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.15);
    z-index: 999999;
    padding: 20px;
    border-top: 3px solid #7ed6df;
    animation: slideUp 0.4s ease-out;
}

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

.gdpr-banner-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

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

.gdpr-banner-text h3 {
    margin: 0 0 10px 0;
    font-size: 18px;
    color: #333;
    font-weight: 600;
}

.gdpr-banner-text p {
    margin: 0 0 8px 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.gdpr-privacy-link {
    font-size: 13px !important;
}

.gdpr-privacy-link a {
    color: #7ed6df;
    text-decoration: underline;
}

.gdpr-privacy-link a:hover {
    color: #5bc0c9;
    text-decoration: none;
}

.gdpr-banner-actions {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.gdpr-btn {
    padding: 12px 24px;
    border: none;
    border-radius: 5px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.gdpr-btn-primary {
    background: linear-gradient(135deg, #7ed6df 0%, #5bc0c9 100%);
    color: #111827;
}

.gdpr-btn-primary:hover {
    background: linear-gradient(135deg, #5bc0c9 0%, #3aa8b2 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(126, 214, 223, 0.3);
}

.gdpr-btn-secondary {
    background: #f1f1f1;
    color: #333;
    border: 1px solid #ddd;
}

.gdpr-btn-secondary:hover {
    background: #e0e0e0;
    border-color: #ccc;
}

/* Panel ustawień */
.gdpr-settings-panel {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.gdpr-settings-panel h3 {
    margin: 0 0 15px 0;
    font-size: 20px;
    color: #333;
    font-weight: 600;
}

.gdpr-settings-panel > p {
    margin: 0 0 20px 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.gdpr-cookie-category {
    background: #f9f9f9;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 12px;
}

.gdpr-cookie-category label {
    display: block;
    cursor: pointer;
    margin: 0;
}

.gdpr-cookie-category input[type="checkbox"] {
    margin-right: 10px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    vertical-align: middle;
}

.gdpr-cookie-category input[type="checkbox"]:disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

.gdpr-cookie-category strong {
    font-size: 15px;
    color: #333;
    display: inline-block;
    margin-bottom: 5px;
}

.gdpr-cookie-category p {
    margin: 8px 0 0 28px;
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.gdpr-settings-actions {
    margin-top: 20px;
    display: flex;
    gap: 10px;
    justify-content: flex-end;
}

/* Responsywność dla urządzeń mobilnych */
@media (max-width: 768px) {
    #gdpr-cookie-banner {
        padding: 15px;
    }

    .gdpr-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .gdpr-banner-text h3 {
        font-size: 16px;
    }

    .gdpr-banner-text p {
        font-size: 13px;
    }

    .gdpr-banner-actions {
        flex-direction: column;
        gap: 8px;
    }

    .gdpr-btn {
        width: 100%;
        padding: 12px 16px;
        font-size: 13px;
    }

    .gdpr-settings-panel {
        padding: 15px;
    }

    .gdpr-settings-panel h3 {
        font-size: 18px;
    }

    .gdpr-cookie-category {
        padding: 12px;
    }

    .gdpr-cookie-category strong {
        font-size: 14px;
    }

    .gdpr-cookie-category p {
        font-size: 12px;
        margin-left: 0;
        margin-top: 5px;
    }

    .gdpr-settings-actions {
        flex-direction: column;
    }
}

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

    .gdpr-banner-text h3 {
        font-size: 15px;
    }

    .gdpr-banner-text p {
        font-size: 12px;
    }

    .gdpr-btn {
        padding: 10px 14px;
        font-size: 12px;
    }
}

/* Link do ustawień w stopce */
.gdpr-settings-link {
    color: #7ed6df;
    text-decoration: underline;
    cursor: pointer;
    font-size: 13px;
}

.gdpr-settings-link:hover {
    color: #5bc0c9;
    text-decoration: none;
}
