.cookie-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0D5FAC;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.2);
}

.cookie-bar-message {
  flex: 1;
  min-width: 200px;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
  margin: 0;
}

.cookie-bar-message a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.cookie-bar-message a:hover {
  color: #0F9DC0;
}

.cookie-bar-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  align-items: center;
}

.cookie-btn-accept {
  background: #FDC104;
  color: #1A1A1A;
  border: none;
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s ease, transform 0.1s ease;
  line-height: 1;
}

.cookie-btn-accept:hover {
  background: #e6af00;
  transform: translateY(-1px);
}

.cookie-btn-accept:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

.cookie-btn-decline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255, 255, 255, 0.65);
  border-radius: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 8px 20px;
  cursor: pointer;
  white-space: nowrap;
  transition: border-color 0.2s ease;
  line-height: 1;
}

.cookie-btn-decline:hover {
  border-color: #fff;
}

.cookie-btn-decline:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 2px;
}

/* Sit above the mobile sticky CTA bar wherever it is visible (0-1023px) */
@media (max-width: 1023px) {
  .cookie-bar {
    bottom: 64px;
  }
}

@media (max-width: 767px) {
  .cookie-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 14px 16px;
    gap: 12px;
  }

  .cookie-bar-actions {
    width: 100%;
  }

  .cookie-btn-accept,
  .cookie-btn-decline {
    flex: 1;
    text-align: center;
    justify-content: center;
  }
}
