.cookie-consent {
    position: fixed;
    left: 0;
    right: 0;
    z-index: 99999;
    padding: 16px 24px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.1);
    font-size: 14px;
    line-height: 1.5;
}
.cookie-consent-bottom {
    bottom: 0;
}
.cookie-consent-top {
    top: 0;
}
.cookie-light {
    background: #fff;
    color: #333;
    border-top: 1px solid #e2e8f0;
}
.cookie-dark {
    background: #1e293b;
    color: #e2e8f0;
    border-top: 1px solid #334155;
}
.cookie-consent-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}
.cookie-consent-text {
    flex: 1;
    min-width: 280px;
}
.cookie-consent-text strong {
    display: block;
    margin-bottom: 4px;
}
.cookie-consent-text p {
    margin: 0 0 4px;
    font-size: 13px;
    color: inherit;
    opacity: 0.8;
}
.cookie-consent-text a {
    font-size: 12px;
    text-decoration: underline;
}
.cookie-dark .cookie-consent-text a { color: #93c5fd; }
.cookie-light .cookie-consent-text a { color: #2563eb; }
.cookie-consent-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
    flex-wrap: wrap;
}
.cookie-consent-actions .btn { font-size: 13px; white-space: nowrap; }

/* Modal */
.cookie-modal {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
}
.cookie-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}
.cookie-modal-content {
    position: relative;
    width: 90%;
    max-width: 560px;
    max-height: 80vh;
    overflow-y: auto;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}
.cookie-modal-content.cookie-light {
    background: #fff;
    color: #333;
    border: 1px solid #e2e8f0;
}
.cookie-modal-content.cookie-dark {
    background: #1e293b;
    color: #e2e8f0;
    border: 1px solid #334155;
}
.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px 0;
}
.cookie-modal-header h5 { margin: 0; font-weight: 600; }
.cookie-modal-body { padding: 16px 24px; }
.cookie-modal-footer {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    padding: 16px 24px;
    border-top: 1px solid #e2e8f0;
    flex-wrap: wrap;
}
.cookie-dark .cookie-modal-footer { border-top-color: #334155; }
.cookie-modal-footer .btn { font-size: 13px; }

/* Category */
.cookie-category {
    padding: 12px 16px;
    margin-bottom: 8px;
    border-radius: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}
.cookie-dark .cookie-category {
    background: #0f172a;
    border-color: #334155;
}
.cookie-category-header label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    margin: 0;
}
.cookie-category-header input:disabled + strong {
    opacity: 0.6;
}
.cookie-category-desc {
    margin: 6px 0 0;
    font-size: 12px;
    opacity: 0.7;
    padding-left: 28px;
}
