/* ═══════════════════════════════════════════════════════
   COOKIE CONSENT — RGPD compliant banner
   Shared across all contexts (shop, healthcare, blog)
   ═══════════════════════════════════════════════════════ */

.cc-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.08);
    padding: 20px 24px;
    display: none;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.cc-banner.is-visible {
    display: block;
    animation: ccSlideUp 0.3s ease;
}

@keyframes ccSlideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}

.cc-inner {
    max-width: 1120px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 20px;
}

.cc-text {
    flex: 1;
    font-size: 13px;
    line-height: 1.5;
    color: #334155;
}

.cc-text a {
    color: #2563eb;
    font-weight: 600;
    text-decoration: none;
}

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

.cc-actions {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.cc-btn {
    padding: 8px 20px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.15s;
    font-family: inherit;
}

.cc-btn--accept {
    background: #0f172a;
    color: #fff;
}

.cc-btn--accept:hover {
    background: #1e293b;
}

.cc-btn--reject {
    background: transparent;
    color: #64748b;
    border: 1px solid #e2e8f0;
}

.cc-btn--reject:hover {
    border-color: #94a3b8;
    color: #334155;
}

@media (max-width: 640px) {
    .cc-inner {
        flex-direction: column;
        text-align: center;
    }

    .cc-actions {
        width: 100%;
    }

    .cc-btn {
        flex: 1;
    }
}
