#cv-gdpr-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 99999;
  background: #fff;
  box-shadow: 0 -2px 12px rgba(0,0,0,.12);
  display: none;
}

.cv-gdpr-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.cv-gdpr-text {
  flex: 1 1 400px;
  font-size: .85rem;
  color: #444;
  line-height: 1.5;
}

.cv-gdpr-text strong {
  display: block;
  margin-bottom: .25rem;
  color: #1a1a1a;
  font-size: .9rem;
}

.cv-gdpr-actions {
  display: flex;
  align-items: center;
  gap: .6rem;
  flex-wrap: wrap;
  flex-shrink: 0;
}

.cv-gdpr-accept {
  background: #E84E0F;
  color: #fff;
  border: none;
  border-radius: 4px;
  padding: .5rem 1.1rem;
  font-size: .85rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: background .15s;
}
.cv-gdpr-accept:hover { background: #c94008; }

.cv-gdpr-refuse {
  background: transparent;
  color: #555;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: .5rem 1.1rem;
  font-size: .85rem;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color .15s, color .15s;
}
.cv-gdpr-refuse:hover { border-color: #888; color: #222; }

.cv-gdpr-link {
  font-size: .8rem;
  color: #888;
  text-decoration: underline;
  white-space: nowrap;
}
.cv-gdpr-link:hover { color: #444; }

@media (max-width: 600px) {
  .cv-gdpr-inner { flex-direction: column; align-items: flex-start; gap: .75rem; }
  .cv-gdpr-actions { width: 100%; }
  .cv-gdpr-accept, .cv-gdpr-refuse { flex: 1; text-align: center; }
}
