/* Popup Background */
#brochure-popup-mobile {
  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;
}

/* Show class */
#brochure-popup-mobile.show {
  display: flex !important;
}

/* Modal Box */
.brochure-modal-mobile {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  width: 90%;
  max-width: 400px;
  position: relative;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}

/* Close Button */
.brochure-close-mobile {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 22px;
  font-weight: bold;
  cursor: pointer;
}

/* Input Fields */
.brochure-modal-mobile input {
  display: block;
  width: 100%;
  margin-bottom: 12px;
  padding: 10px;
  font-size: 14px;
  border: 1px solid #ccc;
  border-radius: 4px;
}

/* Submit Button */
.brochure-modal-mobile button {
  background: #218CBC;
  color: white;
  border: none;
  padding: 12px;
  width: 100%;
  border-radius: 4px;
  font-size: 16px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.brochure-modal-mobile button:hover {
  background: #1a6f9f;
}

/* Loader */
#brochure-loader-mobile {
  text-align: center;
  margin-top: 10px;
  font-size: 14px;
  color: #444;
  display: none;
}

#brochure-loader-mobile::after {
  content: "";
  display: block;
  margin: 10px auto;
  width: 28px;
  height: 28px;
  border: 4px solid #ccc;
  border-top-color: #218CBC;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

/* Success Message */
#brochure-success-mobile {
  text-align: center;
  margin-top: 20px;
  display: none;
}

.brochure-download-btn-mobile {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 18px;
  background: #218CBC;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  font-size: 14px;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
