#cookie-consent-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 999999;
  max-width: 560px;
  width: auto;
  height: auto !important;
  margin: 0 auto;
  background: #312e33;
  color: #ffffff;
  padding: 16px 20px;
  border-radius: 24px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-family: 'Golos Text', sans-serif;
  font-size: 13px;
  line-height: 1.4;
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

#cookie-consent-banner.cc-hide {
  opacity: 0;
  transform: translateY(20px);
}

#cookie-consent-banner span {
  flex: 1 1 260px;
  margin: 0;
}

#cookie-consent-banner a {
  color: #f5d90a;
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1px solid rgba(245, 217, 10, 0.4);
}

#cookie-consent-banner a:hover {
  border-bottom-color: #f5d90a;
}

#cookie-consent-banner .cc-buttons {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
  flex-wrap: nowrap;
}

#cookie-consent-banner button {
  padding: 7px 16px;
  border-radius: 20px;
  border: none;
  cursor: pointer;
  font-size: 12px;
  font-family: 'Golos Text', sans-serif;
  font-weight: 600;
  white-space: nowrap;
  line-height: normal;
  transition: transform 0.15s ease, opacity 0.15s ease;
}

#cookie-consent-banner button:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

#cc-accept {
  background: #f5d90a;
  color: #1a1a1a;
}

#cc-decline {
  background: transparent;
  color: #ffffff;
  border: 1px solid #5a575c !important;
}

@media (max-width: 640px) {
  #cookie-consent-banner {
    left: 12px;
    right: 12px;
    bottom: 12px;
    padding: 14px 16px;
    border-radius: 20px;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    gap: 10px;
  }
  #cookie-consent-banner span {
    flex: none;
    width: 100%;
    font-size: 12px;
  }
  #cookie-consent-banner .cc-buttons {
    justify-content: center;
    width: 100%;
  }
  #cookie-consent-banner button {
    flex: 1 1 auto;
    padding: 8px 12px;
  }
}