/* Titan Pumps brand — red #ff0000, blue #02a8eb, black #000000, yellow #fff200 */
:root {
  --tp-red: #ff0000;
  --tp-blue: #02a8eb;
  --tp-black: #000000;
  --tp-yellow: #fff200;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: Arial, Helvetica, sans-serif;
}

.tp-gradient {
  background: linear-gradient(135deg, #000000 0%, #02a8eb 55%, #0180b8 100%);
}

.tp-container {
  max-width: 1200px;
}

.tp-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.75rem;
  background: #ffffff;
}

.tp-section-title {
  color: var(--tp-black);
}

/* Header logo: PNG with alpha — keep fully transparent (no box behind artwork) */
.site-header-logo {
  background-color: transparent;
  background-image: none;
}
header a:has(.site-header-logo) {
  background-color: transparent;
}

/* Cookie consent banner (injected by main.js; styles here so Tailwind CDN picks up no JS classes) */
.tp-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #0f172a;
  color: #e5e7eb;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.2);
  font-size: 0.875rem;
  line-height: 1.5;
  font-family: Inter, system-ui, sans-serif;
}

.tp-cookie-banner__inner {
  max-width: 80rem;
  margin: 0 auto;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

@media (min-width: 768px) {
  .tp-cookie-banner__inner {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
  }
}

.tp-cookie-banner__text {
  flex: 1 1 280px;
  margin: 0;
}

.tp-cookie-banner__text a {
  color: #02a8eb;
  text-decoration: underline;
}

.tp-cookie-banner__text a:hover {
  color: #7dd3fc;
}

.tp-cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}

.tp-cookie-banner button {
  cursor: pointer;
  font-weight: 600;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  padding: 0.5rem 1rem;
  border-radius: 0.375rem;
  border: none;
  font-family: inherit;
}

.tp-cookie-banner__accept {
  background: #02a8eb;
  color: #fff;
}

.tp-cookie-banner__accept:hover {
  background: #0185bb;
}

.tp-cookie-banner__decline {
  background: transparent;
  color: #e5e7eb;
  border: 1px solid rgba(255, 255, 255, 0.28) !important;
}

.tp-cookie-banner__decline:hover {
  background: rgba(255, 255, 255, 0.08);
}
