/* TrioTimber Cookie Consent Banner */
#tt-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1c2333;
  border-top: 3px solid #e8922a;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
#tt-cookie-banner.tt-visible {
  transform: translateY(0);
}
#tt-cookie-banner p {
  margin: 0;
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  line-height: 1.5;
  flex: 1;
}
#tt-cookie-banner p a {
  color: #e8922a;
  text-decoration: underline;
}
.tt-cookie-btns {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}
.tt-btn-accept {
  background: #e8922a;
  color: #fff;
  border: none;
  padding: 9px 20px;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}
.tt-btn-accept:hover { background: #c97a1f; }
.tt-btn-dnt {
  background: transparent;
  color: rgba(255,255,255,0.65);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 9px 16px;
  border-radius: 4px;
  font-size: 0.78rem;
  cursor: pointer;
  white-space: nowrap;
}
.tt-btn-dnt:hover { color: #fff; border-color: rgba(255,255,255,0.5); }
@media (max-width: 600px) {
  #tt-cookie-banner { flex-direction: column; align-items: flex-start; }
  .tt-cookie-btns { width: 100%; }
  .tt-btn-accept, .tt-btn-dnt { flex: 1; text-align: center; }
}
