/* =======================
   Holo Subscribe styles
   ======================= */

.holo-subscribe-wrapper {
  padding: 80px 15px 100px;
  text-align: center;
  background: transparent; /* انت عامل الخلفية سوداء من الثيم */
}

.holo-subscribe-inner {
  max-width: 960px;
  margin: 0 auto;
}

/* Icon (star) */
.holo-subscribe-icon span,
.holo-subscribe-icon img {
  display: inline-block;
  font-size: 44px;
  margin-bottom: 26px;
}

/* Title: close to original look */
.holo-subscribe-title {
  font-family: "Poppins", "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 56px;
  font-weight: 800;
  font-style: italic;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #ffffff;
  margin: 0 0 18px;
}

/* Description */
.holo-subscribe-desc {
  font-family: "Poppins", "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #cfd3da;
  margin: 0 0 38px;
}

/* Form wrapper: flex row, center exactly like reference */
.holo-subscribe-form {
  display: flex;
  justify-content: center;
  align-items: stretch;
  max-width: 640px;
  margin: 0 auto;
  gap: 0;
}

/* Email input: long pill */
.holo-subscribe-email {
  flex: 1 1 auto;
  padding: 18px 22px;
  border: none;
  outline: none;
  font-size: 14px;
  font-family: "Poppins", "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #ffffff;
  color: #111111;
  border-radius: 30px 0 0 30px;
}

.holo-subscribe-email::placeholder {
  color: #7a7f88;
  text-transform: uppercase;
}

/* Button: same line, stuck to input */
.holo-subscribe-button {
  padding: 0 32px;
  border: none;
  font-size: 14px;
  font-family: "Poppins", "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-weight: 700;
  cursor: pointer;
  text-transform: uppercase;
  background: #f7c842;
  color: #000000;
  border-radius: 0 30px 30px 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
}

/* Message text */
.holo-subscribe-message {
  margin-top: 18px;
  font-size: 14px;
  font-family: "Poppins", "Montserrat", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.holo-subscribe-message.success {
  color: #9ef19e;
}

.holo-subscribe-message.error {
  color: #ff6b6b;
}

/* Responsive tweaks */
@media (max-width: 768px) {
  .holo-subscribe-title {
    font-size: 38px;
    letter-spacing: 2px;
  }

  .holo-subscribe-form {
    flex-direction: column;
    max-width: 100%;
  }

  .holo-subscribe-email {
    border-radius: 30px;
    margin-bottom: 10px;
  }

  .holo-subscribe-button {
    border-radius: 30px;
    padding: 14px 28px;
    width: 100%;
  }
}
