/* Sticky email CTA (mobile only) — loaded un-layered so it wins over Shopify base CSS */

.sticky-email-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--brand-orange);
  color: #ffffff;
  padding: 16px 20px 24px;
  z-index: 500;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.18);
  border-radius: 16px 16px 0 0;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.sticky-email-cta.visible {
  transform: translateY(0);
}
@media (min-width: 768px) {
  .sticky-email-cta { display: none !important; }
}
.sticky-cta-close {
  position: absolute;
  top: 12px;
  right: 16px;
  background: none;
  border: none;
  color: #ffffff;
  font-size: 22px;
  line-height: 1;
  cursor: pointer;
  padding: 4px 6px;
  opacity: 0.75;
}
.sticky-cta-close:hover { opacity: 1; }
.sticky-cta-heading {
  font-size: 16px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #ffffff;
  padding-right: 36px;
}
.sticky-cta-form {
  display: flex;
  gap: 8px;
}
.sticky-cta-form input[type="email"] {
  flex: 1;
  min-width: 0;
  padding: 11px 14px;
  border: none !important;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  background: #ffffff !important;
  color: #191919 !important;
  outline: none !important;
  box-shadow: none !important;
}
.sticky-cta-form input[type="email"]::placeholder {
  color: rgba(25,25,25,0.4);
}
.sticky-cta-form button[type="submit"] {
  padding: 11px 16px;
  background: #191919 !important;
  color: #ffffff !important;
  border: none !important;
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
  flex-shrink: 0;
}
.sticky-cta-form button[type="submit"]:hover {
  opacity: 0.85;
}
.sticky-cta-success {
  font-size: 16px;
  font-weight: 500;
  color: #ffffff;
  margin: 0;
  display: none;
}
