#cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  background: #131313;
  border-top: 1px solid #ff7603;
  box-shadow: 0 -6px 30px rgba(0, 0, 0, 0.35);
  padding: 16px 32px;
  z-index: 999998;
  transform: translateY(130%);
  transition: transform 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

#cookie-consent.cookie-consent--visible {
  transform: translateY(0);
}

#cookie-consent p {
  font-family: "Montserrat", sans-serif;
  font-size: 13px;
  line-height: 1.6;
  color: #c9c9c9;
  margin: 0;
  flex: 1 1 320px;
  max-width: 640px;
}

#cookie-consent .cookie-consent__actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

#cookie-consent button {
  font-family: "Montserrat", sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 10px 20px;
  cursor: pointer;
  border-radius: 2px;
  transition: opacity 0.2s ease;
  white-space: nowrap;
}

#cookie-consent button:hover {
  opacity: 0.85;
}

#cookie-consent-decline {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #999999;
}

#cookie-consent-accept {
  background: #ff7603;
  border: 1px solid #ff7603;
  color: #131313;
}

@media (max-width: 700px) {
  #cookie-consent {
    padding: 16px 20px;
    justify-content: flex-start;
    text-align: left;
  }
  #cookie-consent .cookie-consent__actions {
    width: 100%;
    justify-content: stretch;
  }
  #cookie-consent button {
    flex: 1;
  }
}
