/* Cookie consent banner для etc-chip.ru */
#cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  background: #1f2d24;
  color: #f5f5f5;
  padding: 16px 20px;
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.25);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 14px;
  line-height: 1.5;
  display: none;
}
#cookie-consent.is-visible {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
#cookie-consent .cc-text {
  flex: 1 1 360px;
}
#cookie-consent a {
  color: #7ed957;
  text-decoration: underline;
}
#cookie-consent .cc-actions {
  display: flex;
  gap: 8px;
  flex-shrink: 0;
}
#cookie-consent button {
  border: 0;
  border-radius: 4px;
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}
#cookie-consent .cc-accept {
  background: #7ed957;
  color: #0f1a13;
}
#cookie-consent .cc-accept:hover {
  background: #8ee565;
}
#cookie-consent .cc-decline {
  background: transparent;
  color: #f5f5f5;
  border: 1px solid #4a5a50;
}
#cookie-consent .cc-decline:hover {
  background: #2a3a30;
}
@media (max-width: 600px) {
  #cookie-consent {
    padding: 12px 14px;
    font-size: 13px;
  }
  #cookie-consent .cc-actions {
    width: 100%;
  }
  #cookie-consent button {
    flex: 1;
    padding: 12px 10px;
  }
}
