/* Hintaopas tokens — swap these hex values to the official ones when ready */
:root{
  /* Core brand */
  --primary: #00addb;            /* button/link blue */
  --primary-foreground: #FFFFFF; /* text on primary */
  --primary-hover: #007cb2;

  /* Accent (chips / highlight backgrounds) */
  --accent-bg-20: rgba(59,130,246,0.12);    /* bg-accent/20 */
  --accent-fg: #1F2937;                     /* text-accent-foreground */
  --accent-border-40: rgba(59,130,246,0.4); /* border-accent/40 */

  /* Deal semantics */
  --deal-good: #047857;     /* text-deal-good */
  --deal-bad:  #B91C1C;     /* text-deal-bad */
  --deal-neutral: #B45309;  /* amber-ish “Normal price” */

  /* Neutrals */
  --muted-bg: #F3F4F6;            /* bg-muted */
  --muted-fg: #6B7280;            /* text-muted-foreground */
  --border: rgba(0,0,0,0.12);   /* border-border/50 approx */

  /* Border radius */
  --radius: 0.5rem;
}

/* Tokens → components */
.btn-primary{
  background: var(--primary);
  color: var(--primary-foreground);
}
.btn-primary:hover{ cursor: pointer; background: var(--primary-hover); }

.badge-good{ color: var(--deal-good); background: rgba(4,120,87,.12); }
.badge-ok{ color: var(--deal-neutral); background: rgba(180,83,9,.12); }
.badge-bad{ color: var(--deal-bad); background: rgba(185,28,28,.12); }

.link-primary{ color: var(--primary); }
.link-primary:hover{ text-decoration: underline; }

.price--good{ color: var(--deal-good); }
.price--bad{  color: var(--deal-bad); }
.price--neutral{ color: var(--deal-neutral); }

.top_header {
    position: sticky;
    top: 0px;
    width: 100%;
    height: 4.5rem;
    z-index: 100;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
    background: rgb(0, 173, 219);
}

.copy {
  margin-top: 0;
  line-height: 1.4;
  font-size: 14px;
}

.some {
  display: inline-block;
  width: 27px;
  height: 27px;
  margin: 0 4px 0 4px;
  fill: rgb(106, 120, 129);
}

.header_logo {
    display: flex;
    flex-direction: row;
    -webkit-box-align: stretch;
    align-items: stretch;
    height: 100%;
  max-width: 200px;
}

.header_logo a {
display: flex;
    align-items: flex-start;
    flex-direction: column;
    -webkit-box-pack: center;
    justify-content: center;
    height: 100%;
    padding: 0px 10px;
}

.header_logo img {
  height: 35px;
  display: inline-block;
  vertical-align: middle;
  max-width: 100%;
}


@media (max-width: 480px) {
  .header_logo {
    display: flex;
    justify-content: center;
    align-items: center; 
    width: 100%;
    max-width: 100%;
  }

  .hero {
    max-width: 20rem;
  }
}



footer {
  margin-top: 50px;
  padding-top: 15px;
  border-top: 1px solid rgb(230, 232, 234)
}

.footer_logo {
  width: 180px;
  max-width: 100%;
  margin: 0 0 -15px 0;
}


