.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 9999;
  padding: 16px;
  background: rgba(27, 93, 27, 0.95);
  color: #fff;
  box-shadow: 0 -6px 20px rgba(0, 0, 0, 0.25);
  font-family: "Open Sans", Arial, sans-serif;
}

.cookie-consent[hidden] {
  display: none !important;
}

.cookie-consent__container {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-consent__content {
  flex: 1 1 480px;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-consent__content p {
  margin: 0;
}

.cookie-consent__actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-consent__link {
  color: #a8d8a8;
  text-decoration: underline;
  font-size: 14px;
}

.cookie-consent__btn {
  border: 0;
  border-radius: 4px;
  padding: 10px 16px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-consent__btn--primary {
  background: #20720d;
  color: #fff;
}

.cookie-consent__btn--primary:hover {
  background: #0d2d05;
}

.cookie-consent__btn--secondary {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.4);
}

.cookie-consent__btn--secondary:hover {
  background: rgba(255, 255, 255, 0.3);
}

@media (max-width: 720px) {
  .cookie-consent {
    padding: 14px;
  }

  .cookie-consent__container {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-consent__actions {
    width: 100%;
    justify-content: flex-start;
  }
}
