/* ===== NetLayers Cookie Consent Banner ===== */
#nl-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999998;
  padding: 0 20px 20px;
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  transform: translateY(110%);
  transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  pointer-events: none;
}
#nl-cookie-banner.visible {
  transform: translateY(0);
  pointer-events: all;
}

#nl-cookie-inner {
  max-width: 960px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 -4px 6px rgba(0,0,0,0.04), 0 8px 40px rgba(11,31,58,0.14);
  border: 1px solid rgba(178,194,214,0.35);
  padding: 18px 52px 18px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  position: relative;
}

#nl-cookie-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  line-height: 1;
}

#nl-cookie-content {
  flex: 1;
}

#nl-cookie-message {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.55;
  color: #374151;
}

#nl-cookie-message a {
  color: #1e6fd9;
  text-decoration: underline;
  font-weight: 600;
  margin-left: 4px;
  white-space: nowrap;
}
#nl-cookie-message a:hover {
  color: #185db5;
}

#nl-cookie-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}

#nl-cookie-decline {
  padding: 8px 18px;
  border-radius: 8px;
  border: 1px solid #d1d5db;
  background: transparent;
  color: #6b7280;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
  font-family: inherit;
}
#nl-cookie-decline:hover {
  background: #f3f4f6;
  border-color: #9ca3af;
  color: #374151;
}

#nl-cookie-accept {
  padding: 8px 20px;
  border-radius: 8px;
  border: none;
  background: linear-gradient(135deg, #1e6fd9 0%, #185db5 100%);
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.15s ease;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(30,111,217,0.3);
  font-family: inherit;
}
#nl-cookie-accept:hover {
  background: linear-gradient(135deg, #185db5 0%, #144d96 100%);
  box-shadow: 0 4px 14px rgba(30,111,217,0.4);
  transform: translateY(-1px);
}

#nl-cookie-close {
  position: absolute;
  top: 10px;
  right: 12px;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: #9ca3af;
  cursor: pointer;
  line-height: 1;
  padding: 4px 6px;
  transition: color 0.15s;
}
#nl-cookie-close:hover {
  color: #374151;
}

/* Mobile */
@media (max-width: 640px) {
  #nl-cookie-banner { padding: 0 12px 12px; }
  #nl-cookie-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    padding: 16px 40px 16px 16px;
  }
  #nl-cookie-actions { width: 100%; }
  #nl-cookie-decline,
  #nl-cookie-accept { flex: 1; text-align: center; }
}
