@keyframes borderPulse {
  0% {
    opacity: 1;
    transform: scale(1);
  }

  /* 40% {
    opacity: 0.5;
    transform: scale(1.2);
  } */
  100% {
    opacity: 0;
    transform: scale(1.3);
  }
}
@keyframes arrowSlide {
  0% {
    transform: translateX(0px);
  }
  50% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0px);
  }
}
@keyframes sparkleFloat {
  0% {
    transform: scale(1.1) rotate(0deg);
  }
  25% {
    transform: scale(1) rotate(9deg);
  }
  50% {
    transform: scale(1) rotate(-9deg);
  }
  100% {
    transform: scale(1.1) rotate(0deg);
  }
}
.faq-answer {
  display: none;
}
.faq-open .faq-answer {
  display: block;
}
.faq-open svg {
  transform: rotate(180deg);
}
/* Policy Content Styling */
.prose {
  max-width: 100%;
  line-height: 1.7;
  color: #1f2937;
}
/* Headings */
.prose h1:not(.hero-title) {
  font-size: 28px;
  margin-bottom: 20px;
  font-weight: 800;
}
.prose h2 {
  font-size: 24px;
  margin-top: 36px;
  margin-bottom: 20px;
  font-weight: 500;
  color: #4a1c2b;
}
.prose h3 {
  font-size: 20px;
  margin-top: 30px;
  margin-bottom: 16px;
  font-weight: 500;
  color: #4a1c2b;

}
/* Paragraph */
.prose p {
  font-size: 16px;
  margin-bottom: 14px;
  color: #8b6b73;
}
/* First paragraph slightly larger */
.prose p:first-of-type {
  font-size: 18px;
  color: #4a1c2b;
}
/* Lists */
.prose ul,
.prose ol {
  margin-top: 10px;
  margin-bottom: 16px;
  padding-left: 1.5rem;
}
.prose ul {
  list-style: disc;
  color: #8b6b73;
}
.prose ol {
  list-style: decimal;
}
.prose li {
  margin-bottom: 6px;
}
/* Links */
.prose a {
  color: #E2A45F;
  text-decoration: underline;
}
.prose a:hover {
  opacity: 0.8;
}
.prose strong {
  font-size: 18px;
  color: #4a1c2b;
}
/* Responsive */
@media (max-width: 768px) {
  .prose h1 {
    font-size: 22px;
  }
  .prose h2 {
    font-size: 18px;
  }
  .prose h3 {
    font-size: 18px;
  }
  .prose p {
    font-size: 14px;
  }
}
/* FORM CONTAINER */
.ig_es_subscription_form {
  max-width: 28rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
/* responsive layout */
@media (min-width:640px) {
  .ig_es_subscription_form {
    flex-direction: row;
    align-items: center;
  }
}
/* INPUT WRAPPER */
.ig_es_subscription_form .ig-es-form-field {
  position: relative;
  flex: 1;
}
/* remove default label text spacing */
.ig_es_subscription_form .es-field-label {
  font-size: 0;
  display: block;
  margin: 0;
}
/* EMAIL INPUT */
.ig_es_subscription_form .ig_es_form_field_email {
  width: 100%;
  height: 36px;
  padding-left: 40px;
  padding-right: 12px;
  font-size: 14px;
  background: #f3e6e2;
  outline: none;
  transition: all .2s ease;
  color: #64748b;
}
/* focus style */
.ig_es_subscription_form .ig_es_form_field_email:focus {
  border-color: #f79413c0;
  box-shadow: 0 0 0 3px rgba(243, 149, 7, 0.486);
}
/* BUTTON CONTAINER */
.ig_es_subscription_form .es-submit-container {
  display: flex;
  align-items: center;
}
/* icon inside button */
.ig_es_subscription_form .es-subscribe-btn svg {
  width: 16px;
  height: 16px;
  display: inline-block;
}
.es-submit-container {
  margin-top: 0 !important;
}
body form[data-form-id="2"] .es-subscribe-btn {
  margin-top: 0 !important;
  padding: 0 1em !important;
  border-radius: 8px !important;
}
body form.es_subscription_form.es_subscription_form[data-form-id="2"].wysiwyg-form {
  padding: 0px !important;

}
body form.es_subscription_form.es_subscription_form[data-form-id="2"].wysiwyg-form input.ig-es-form-input {
  border-radius: 8px !important;
}
body form[data-form-id="2"] .es-subscribe-btn:hover {
  background-color: rgba(139, 94, 60, 0.9);
  /* crater brown / 90 */
  transform: translateY(-1px);
}
/* Optional: SVG icon animation on hover */
body form[data-form-id="2"] .es-subscribe-btn:hover svg {
  transform: translateX(3px);
  transition: transform 0.3s ease;
}
.es_subscription_message.success {
  display: block;
  width: 100%;
  text-align: center;
}

/* Hide Edge / IE default password reveal icon */
input[type="password"]::-ms-reveal,
input[type="password"]::-ms-clear {
    display: none;
}

/* Hide Chromium (Edge/Chrome newer builds) password icon */
input[type="password"]::-webkit-credentials-auto-fill-button,
input[type="password"]::-webkit-textfield-decoration-container {
    display: none !important;
}

/* Optional: remove extra padding if browser adds space */
input[type="password"] {
    padding-right: 2.5rem; /* keep space for your custom eye icon */
}