/* TCPE Cookie Consent Banner */
#tcpe-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #023953;
  color: #fff;
  padding: 20px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.2);
  font-family: 'Unitext', Arial, sans-serif;
  font-size: 0.875rem;
  line-height: 1.6;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

#tcpe-cookie-banner.visible {
  transform: translateY(0);
}

#tcpe-cookie-banner p {
  margin: 0;
  color: rgba(255,255,255,0.85);
  max-width: 680px;
}

#tcpe-cookie-banner a {
  color: #41AAE1;
  text-decoration: underline;
}

#tcpe-cookie-banner a:hover {
  color: #fff;
}

.tcpe-cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

#tcpe-cookie-accept {
  background: #41AAE1;
  color: #fff;
  border: none;
  padding: 10px 22px;
  border-radius: 6px;
  font-family: 'Unitext', Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.15s;
}

#tcpe-cookie-accept:hover {
  background: #006898;
}

#tcpe-cookie-decline {
  background: transparent;
  color: rgba(255,255,255,0.7);
  border: 1.5px solid rgba(255,255,255,0.3);
  padding: 10px 22px;
  border-radius: 6px;
  font-family: 'Unitext', Arial, sans-serif;
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  white-space: nowrap;
  transition: all 0.15s;
}

#tcpe-cookie-decline:hover {
  border-color: rgba(255,255,255,0.7);
  color: #fff;
}

@media (max-width: 640px) {
  #tcpe-cookie-banner {
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 16px;
  }
  .tcpe-cookie-btns {
    width: 100%;
  }
  #tcpe-cookie-accept,
  #tcpe-cookie-decline {
    flex: 1;
    text-align: center;
  }
}
