#brochure-popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(0,0,0,0.6);
  justify-content: center;
  align-items: center;
  z-index: 9999;
}

#brochure-popup.show {
  display: flex;
}

.brochure-modal {
  background: white;
  padding: 20px;
  border-radius: 10px;
  max-width: 400px;
  width: 90%;
  position: relative;
}

.brochure-close {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 20px;
  cursor: pointer;
}

.brochure-modal input {
  display: block;
  width: 100%;
  margin-bottom: 10px;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.brochure-modal button {
  background: #218CBC;
  color: white;
  border: none;
  padding: 10px;
  width: 100%;
  cursor: pointer;
  border-radius: 4px;
}

#brochure-success-modal {
  text-align: center;
  margin-top: 20px;
}

.brochure-download-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 15px;
  background: #218CBC;
  color: white;
  text-decoration: none;
  border-radius: 6px;
}

#brochure-loader p {
  font-size: 14px;
  color: #444;
}

#brochure-loader::after {
  content: "";
  display: block;
  margin: 10px auto;
  width: 30px;
  height: 30px;
  border: 4px solid #ccc;
  border-top-color: #218CBC;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}
