.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 22px;
  z-index: 999999;
  display: none;
  justify-content: center;
  padding: 0 18px;
  box-sizing: border-box;
}

.cookie-banner.show {
  display: flex;
}

.cookie-box {
  width: 100%;
  max-width: 900px;
  background: #ffffff;
  border: 1px solid #9DC3C2;
  border-radius: 22px;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.16);
  padding: 22px;
  display: flex;
  align-items: center;
  gap: 24px;
  box-sizing: border-box;
}

.cookie-text {
  flex: 1;
}

.cookie-text h3 {
  margin: 0 0 6px 0;
  color: #4D7298;
  font-size: 20px;
  font-weight: 700;
}

.cookie-text p {
  margin: 0 0 8px 0;
  color: #333333;
  font-size: 14px;
  line-height: 1.5;
}

.cookie-text a {
  color: #4D7298;
  font-size: 13px;
  text-decoration: underline;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
}

.cookie-btn {
  border-radius: 999px;
  padding: 12px 18px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.2s ease;
}

.cookie-btn:hover {
  transform: translateY(-1px);
}

.cookie-btn-primary {
  border: none;
  background: #4D7298;
  color: white;
}

.cookie-btn-secondary {
  background: #f7fbfb;
  color: #4D7298;
  border: 1px solid #9DC3C2;
}

@media (max-width: 768px) {
  .cookie-banner {
    bottom: 12px;
  }

  .cookie-box {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 18px;
  }

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

  .cookie-btn {
    width: 100%;
  }
}