@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&display=swap");
:root {
  --color-primary: #E87A1E;
  --color-primary-text: #fff;
  --color-primary-text-hover: #fff;
  --color-primary-hover: #B85C0F;
}

h1,
h2,
h3,
h4,
.widget-title,
.store-product .product-title {
  font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}

h1,
.text-content h1 {
    font-size: 42px;
}

h2 {
    font-size: 36px;
}

h3,
.text-content h3 {
    margin-bottom: 1rem;
}

h3,
.widget-title,
.text-content h3 {
    font-size: 32px;
}

h4 {
    font-size: 28px;
}

body,
p {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-style: normal;
}

strong,
b {
    font-weight: 700;
}

.text-content li {
    margin-bottom: 1rem;
}

.site-header-inner .info .action,
.site-header-inner .info:hover .action {
    color: var(--color-primary-text);
}

.site-home-categories .category {
    padding: 0;
}

.store-product .image {
    max-height: 243px;
}

/* === Sidebar Street Intel Module === */
.intel-sb { margin: 16px 0; }
.intel-sb__card {
  border: 1px solid rgba(255,255,255,0.10);
  background: linear-gradient(180deg, rgba(0,0,0,0.76), rgba(0,0,0,0.55));
  border-radius: 14px;
  overflow: hidden;
  padding: 14px 14px 12px;
  box-shadow: 0 12px 35px rgba(0,0,0,0.35);
}

.intel-sb__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.intel-sb__title { display: flex; flex-direction: column; gap: 4px; }
.intel-sb__tag {
  font-weight: 900;
  letter-spacing: 0.14em;
  font-size: 11px;
  opacity: 0.92;
}
.intel-sb__city {
  font-weight: 700;
  font-size: 11px;
  letter-spacing: 0.22em;
  opacity: 0.55;
}

.intel-sb__btn {
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(0,0,0,0.25);
  color: inherit;
  border-radius: 10px;
  padding: 6px 10px;
  cursor: pointer;
  transition: transform 120ms ease, background 120ms ease, border 120ms ease;
  line-height: 1;
}
.intel-sb__btn:hover {
  background: rgba(255,255,255,0.06);
  border-color: rgba(255,255,255,0.28);
  transform: translateY(-1px);
}

/* Heat bar */
.intel-sb__heat {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255,255,255,0.14);
  background: rgba(0,0,0,0.22);
  border-radius: 12px;
  padding: 8px 10px;
  margin-bottom: 10px;
  position: relative;
  overflow: hidden;
}

.intel-sb__heat-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255,255,255,0.55);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.08);
  flex: 0 0 auto;
}

.intel-sb__heat-label {
  font-weight: 900;
  font-size: 11px;
  letter-spacing: 0.14em;
  opacity: 0.85;
}

.intel-sb__stamp {
  margin-left: auto;
  font-weight: 900;
  letter-spacing: 0.18em;
  font-size: 10px;
  opacity: 0.28;
  user-select: none;
}

/* Heat states */
.intel-sb__heat.is-low  { border-color: rgba(255,255,255,0.12); }
.intel-sb__heat.is-low  .intel-sb__heat-dot { background: rgba(255,255,255,0.45); }

.intel-sb__heat.is-med  { border-color: rgba(255,255,255,0.22); }
.intel-sb__heat.is-med  .intel-sb__heat-dot { background: rgba(255,255,255,0.75); }

.intel-sb__heat.is-high { border-color: rgba(255,255,255,0.34); }
.intel-sb__heat.is-high .intel-sb__heat-dot { background: rgba(255,255,255,0.95); }

.intel-sb__body { padding-top: 2px; }

.intel-sb__text {
  margin: 0 0 10px;
  font-size: 14px;          /* narrower sidebar sizing */
  line-height: 1.45;
  letter-spacing: 0.01em;
  opacity: 0.95;
}

.intel-sb__meta {
  margin: 0 0 8px;
  font-size: 11px;
  letter-spacing: 0.12em;
  opacity: 0.62;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}
.intel-sb__dot { opacity: 0.5; }

.intel-sb__disclaimer {
  margin: 0;
  font-size: 11px;
  opacity: 0.55;
}

/* Swap animation */
.intel-sb__fade-out { opacity: 0; transform: translateY(2px); transition: opacity 160ms ease, transform 160ms ease; }
.intel-sb__fade-in  { opacity: 1; transform: translateY(0); transition: opacity 180ms ease, transform 180ms ease; }

/* Optional: make it sticky when used in a sidebar column */
@media (min-width: 992px) {
  .intel-sb.is-sticky { position: sticky; top: 18px; }
}