.cv-consent-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1a0e0a;
  color: #f5ede0;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  z-index: 10001;
  border-top: 2px solid #daa520;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.5);
  flex-wrap: wrap;
}

.cv-consent-bar[hidden] {
  display: none;
}

.cv-consent-text {
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.6;
  flex: 1;
  min-width: 200px;
  font-family: system-ui, -apple-system, sans-serif;
}

.cv-consent-text a {
  color: #daa520;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cv-consent-text a:hover {
  color: #f0c040;
}

.cv-consent-btns {
  display: flex;
  gap: 0.5rem;
  flex-shrink: 0;
}

#cv-btn-accept {
  background: #daa520;
  color: #1a0e0a;
  border: none;
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.875rem;
  cursor: pointer;
  transition: background 0.2s ease;
  font-family: system-ui, -apple-system, sans-serif;
}

#cv-btn-accept:hover {
  background: #c8961c;
}

#cv-btn-reject {
  background: transparent;
  color: #f5ede0;
  border: 1px solid rgba(245, 237, 224, 0.35);
  padding: 0.5rem 1.25rem;
  border-radius: 8px;
  font-size: 0.875rem;
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
  font-family: system-ui, -apple-system, sans-serif;
}

#cv-btn-reject:hover {
  border-color: rgba(245, 237, 224, 0.8);
  color: #fff;
}

@media (max-width: 600px) {
  .cv-consent-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    /* En móvil queda por encima de los FABs (Valdo z-index 9998, WhatsApp 999) */
  }

  .cv-consent-btns {
    width: 100%;
  }

  #cv-btn-accept,
  #cv-btn-reject {
    flex: 1;
    text-align: center;
  }
}
