/* VTQ brand theme for the TrackForge consent banner.
   Site-owned override — loaded AFTER /pipeline/consent-banner.css so it
   survives pipeline reinstalls. Brand: lime #a3e653, Inter, rounded-3xl cards. */

.pipeline-cookie-banner {
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(12px);
  backdrop-filter: blur(12px);
  color: #374151;
  border: 1px solid #e5e7eb;
  border-radius: 1.5rem;
  box-shadow: 0 12px 40px rgba(17, 24, 39, 0.12), 0 4px 16px rgba(163, 230, 53, 0.15);
  font-family: Inter, sans-serif;
}

.pipeline-cookie-banner__inner {
  padding: 18px 22px;
  gap: 14px 24px;
}

.pipeline-cookie-banner__inner p {
  font-size: 14px;
  line-height: 1.55;
  color: #4b5563;
}

.pipeline-cookie-banner__inner p strong {
  color: #111827;
  font-weight: 700;
}

.pipeline-cookie-banner__inner a {
  color: #111827;
  text-decoration: underline;
  text-decoration-color: #a3e653;
  text-decoration-thickness: 2px;
  text-underline-offset: 2px;
  font-weight: 600;
}

.pipeline-cookie-banner__inner a:hover {
  color: #65a30d;
}

.pipeline-cookie-banner__actions button {
  font-family: Inter, sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 11px 22px;
  border-radius: 0.75rem;
  transition: background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.pipeline-cookie-banner__accept {
  background: #a3e653;
  color: #111827;
  border: 1px solid #a3e653;
  box-shadow: 0 4px 16px rgba(163, 230, 53, 0.35);
}

.pipeline-cookie-banner__accept:hover {
  background: #8fd63a;
  border-color: #8fd63a;
  box-shadow: 0 6px 20px rgba(163, 230, 53, 0.45);
  transform: translateY(-1px);
}

.pipeline-cookie-banner__essential {
  background: transparent;
  color: #4b5563;
  border: 1px solid #e5e7eb;
}

.pipeline-cookie-banner__essential:hover {
  border-color: #a3e653;
  color: #111827;
}

@media (max-width: 640px) {
  .pipeline-cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }
  .pipeline-cookie-banner__actions {
    width: 100%;
  }
  .pipeline-cookie-banner__actions button {
    flex: 1 1 auto;
  }
}

/* Step 2 confirm modal (js/consent-step2.js) */
.vtq-consent-step2 {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  background: rgba(17, 24, 39, 0.55);
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.2s ease;
}

.vtq-consent-step2.is-visible {
  opacity: 1;
}

.vtq-consent-step2__card {
  position: relative;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 1.5rem;
  box-shadow: 0 24px 60px rgba(17, 24, 39, 0.25), 0 4px 16px rgba(163, 230, 53, 0.15);
  max-width: 440px;
  width: 100%;
  padding: 30px 28px 24px;
  font-family: Inter, sans-serif;
  text-align: center;
}

.vtq-consent-step2__card h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 800;
  color: #111827;
}

.vtq-consent-step2__card p {
  margin: 0 0 22px;
  font-size: 14px;
  line-height: 1.6;
  color: #4b5563;
}

.vtq-consent-step2__accept {
  display: block;
  width: 100%;
  font-family: Inter, sans-serif;
  font-size: 16px;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 0.75rem;
  border: 1px solid #a3e653;
  background: #a3e653;
  color: #111827;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(163, 230, 53, 0.35);
  transition: background-color 0.2s ease, box-shadow 0.2s ease, transform 0.15s ease;
}

.vtq-consent-step2__accept:hover {
  background: #8fd63a;
  border-color: #8fd63a;
  box-shadow: 0 6px 20px rgba(163, 230, 53, 0.45);
  transform: translateY(-1px);
}

.vtq-consent-step2__essential {
  display: inline-block;
  margin-top: 14px;
  background: none;
  border: none;
  padding: 4px 6px;
  font-family: Inter, sans-serif;
  font-size: 13px;
  color: #9ca3af;
  text-decoration: underline;
  text-underline-offset: 2px;
  cursor: pointer;
}

.vtq-consent-step2__essential:hover {
  color: #4b5563;
}

.vtq-consent-step2__close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  font-size: 22px;
  line-height: 1;
  color: #9ca3af;
  cursor: pointer;
  padding: 4px;
}

.vtq-consent-step2__close:hover {
  color: #111827;
}
