.cookie-consent {
  position: fixed;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 1000;
  display: none;
  max-width: 760px;
  margin: 0 auto;
  padding: 18px;
  color: #1f2933;
  background: #ffffff;
  border: 1px solid #d8e2ea;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(44, 62, 80, 0.2);
}

.cookie-consent.is-visible {
  display: block;
}

.cookie-consent__title {
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  color: #2c3e50;
}

.cookie-consent__text {
  margin: 0 0 14px;
  font-size: 0.95rem;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-consent__button {
  padding: 10px 14px;
  border: 1px solid #3498db;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
  color: #2980b9;
  background: #ffffff;
}

.cookie-consent__button:hover,
.cookie-consent__button:focus {
  background: #edf7ff;
}

.cookie-consent__button--primary {
  color: #ffffff;
  background: #2980b9;
}

.cookie-consent__button--primary:hover,
.cookie-consent__button--primary:focus {
  background: #1f6f9e;
}

.cookie-settings-link {
  border: 0;
  padding: 0;
  cursor: pointer;
  color: #3498db;
  background: transparent;
  font: inherit;
  text-decoration: none;
}

.cookie-settings-link:hover,
.cookie-settings-link:focus {
  text-decoration: underline;
}

@media (max-width: 600px) {
  .cookie-consent {
    right: 12px;
    bottom: 12px;
    left: 12px;
    padding: 16px;
  }

  .cookie-consent__actions {
    flex-direction: column;
  }
}
