@import url('https://fonts.googleapis.com/css2?family=Parkinsans:wght@400;500;600;700;800&display=swap');

#ht-cookie-banner {
  --ht-blue-light: #A8CCDD;
  --ht-blue-mid:   #6AA5D2;
  --ht-blue-deep:  #4F7CC1;
  --ht-off-white:  #F2F3F7;
  --ht-accent:     #F3714A;
  --ht-text:       #1e3045;
  --ht-muted:      #6a7f8e;
  --ht-font:       'Parkinsans', -apple-system, sans-serif;

  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(130px);
  opacity: 0;
  z-index: 99999;
  width: calc(100% - 32px);
  max-width: 460px;
  background: #fff;
  border-radius: 20px;
  box-shadow:
    0 8px 40px rgba(79,124,193,.18),
    0 2px 8px  rgba(79,124,193,.08),
    0 0 0 1px rgba(168,204,221,.35);
  overflow: hidden;
  box-sizing: border-box;
  font-family: var(--ht-font);
  transition: transform .5s cubic-bezier(.34,1.4,.64,1), opacity .38s ease;
}

#ht-cookie-banner.ht-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

#ht-cookie-banner.ht-hiding {
  transform: translateX(-50%) translateY(150px);
  opacity: 0;
  transition: transform .35s cubic-bezier(.55,0,1,.45), opacity .25s ease;
}

.ht-cookie-bar {
  height: 5px;
  background: linear-gradient(90deg, #A8CCDD 0%, #6AA5D2 40%, #4F7CC1 80%, #F3714A 100%);
}

.ht-cookie-inner {
  padding: 22px 24px 24px;
}

.ht-cookie-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 13px;
}

.ht-logo-wrap {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #F2F3F7;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 6px;
  box-sizing: border-box;
}

.ht-logo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ht-cookie-title {
  font-size: 16px;
  font-weight: 700;
  color: #1e3045;
  margin: 0;
  letter-spacing: -.02em;
}

.ht-cookie-body {
  font-size: 13.5px;
  line-height: 1.65;
  color: #6a7f8e;
  margin: 0 0 20px;
  font-weight: 400;
}

.ht-cookie-body a {
  color: #4F7CC1;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1.5px solid rgba(79,124,193,.25);
  transition: color .2s, border-color .2s;
}

.ht-cookie-body a:hover {
  color: #6AA5D2;
  border-color: #6AA5D2;
}

.ht-cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.ht-btn {
  width: 100%;
  padding: 13px 20px;
  border-radius: 50px;
  border: none;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  font-family: 'Parkinsans', -apple-system, sans-serif;
  letter-spacing: -.01em;
  transition: transform .15s, box-shadow .2s, background .2s, color .2s;
}

.ht-btn:active { transform: scale(.97); }

.ht-btn-primary {
  background: linear-gradient(90deg, #6AA5D2 0%, #4F7CC1 100%);
  color: #fff;
  box-shadow: 0 4px 18px rgba(79,124,193,.35);
}

.ht-btn-primary:hover {
  box-shadow: 0 6px 26px rgba(79,124,193,.5);
  background: linear-gradient(90deg, #7ab5de 0%, #5a8dd4 100%);
}

.ht-btn-secondary {
  background: transparent;
  color: #4F7CC1;
  border: 2px solid rgba(79,124,193,.28);
}

.ht-btn-secondary:hover {
  background: #F2F3F7;
  border-color: #6AA5D2;
  color: #6AA5D2;
}

.ht-cookie-footer {
  margin-top: 14px;
  text-align: center;
  font-size: 11.5px;
  color: #b0c0cc;
  font-weight: 400;
}

@media (max-width: 480px) {
  #ht-cookie-banner {
    bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    max-width: 100%;
    width: 100%;
  }
}
