#stm-cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1A1A2E;
  color: #E5E7EB;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  z-index: 9998;
  font-size: 0.9rem;
  line-height: 1.4;
  box-shadow: 0 -4px 20px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
  #stm-cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 16px;
    gap: 12px;
  }
}

.stm-cookie-text {
  max-width: 700px;
}

.stm-cookie-text a {
  color: #0085C3;
  text-decoration: underline;
}

.stm-cookie-accept {
  background: #0085C3;
  color: white;
  border: none;
  border-radius: 8px;
  padding: 10px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: background 0.2s;
}
.stm-cookie-accept:hover { background: #006FA0; }
