/* Email signup banner — shared sitewide (matches index.html) */
@media (max-width: 767px) {
    .email-signup-banner__inner {
        padding: 40px 24px;
        justify-content: center;
    }
    .email-signup-banner__content {
        max-width: 100%;
        min-width: 0;
        text-align: center;
    }
    .email-signup-banner__form {
        flex-direction: column;
        gap: 10px;
    }
    .email-signup-banner__form input[type="email"],
    .email-signup-banner__form button[type="submit"] {
        flex: 1 1 auto;
        width: 100%;
        min-width: 0;
    }
}
.email-signup-banner {
    position: relative;
    height: 540px;
    background: url("https://shopenforce.com/images/surfers_email_collection.png") center center / cover no-repeat;
    overflow: hidden;
}
.email-signup-banner__inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    width: 100%;
    max-width: 1440px;
    margin: 0 auto;
    padding: 0 clamp(24px, 5vw, 72px) clamp(24px, 5vw, 72px) clamp(24px, 22vw, 320px);
    box-sizing: border-box;
}
.email-signup-banner__content {
    width: 100%;
    max-width: 720px;
    min-width: min(100%, 520px);
    color: #ffffff;
    text-align: left;
}
.email-signup-banner__title {
    margin: 0 0 18px;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(30px, 3.8vw, 46px);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #ffffff;
}
.email-signup-banner__copy {
    margin: 0;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(16px, 1.5vw, 19px);
    font-weight: 400;
    line-height: 1.55;
    color: #ffffff;
}
.email-signup-banner__copy + .email-signup-banner__copy {
    margin-top: 2px;
}
.email-signup-banner__form {
    display: flex;
    align-items: stretch;
    gap: 10px;
    width: 100%;
    max-width: 100%;
    margin-top: 28px;
}
.email-signup-banner__honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}
.email-signup-banner__form input[type="email"] {
    flex: 2 1 0;
    min-width: 0;
    height: 52px;
    margin: 0;
    padding: 0 20px;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    text-transform: none;
    color: #333333;
    background: #ffffff;
    border: none;
    border-radius: 6px;
    box-shadow: none;
    appearance: none;
    outline: none;
}
.email-signup-banner__form input[type="email"]::placeholder {
    color: #9a9a9a;
}
.email-signup-banner__form input[type="email"]:focus {
    box-shadow: 0 0 0 2px #558792;
}
.email-signup-banner__form button[type="submit"] {
    flex: 0 0 auto;
    min-width: 0;
    height: 52px;
    margin: 0;
    padding: 0 22px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #558792;
    background: #000000;
    -webkit-font-smoothing: antialiased;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    white-space: nowrap;
    transition: background 0.2s ease, color 0.2s ease;
}
.email-signup-banner__form button[type="submit"]:hover,
.email-signup-banner__form button[type="submit"]:focus {
    background: #1a1a1a;
    color: #558792;
    outline: none;
}
.email-signup-banner__message {
    position: static;
    margin-top: 12px;
}
.email-signup-banner__message.message {
    border-radius: 4px;
}

/* Reinforce single-line button copy when loaded after theme-default */
button,
input[type="submit"],
input[type="button"],
input[type="reset"],
a.btn,
.btn,
.hero-btn,
.launch-section__btn,
.why-bamboo-benefits__btn,
.feature-block__btn,
.email-signup-banner__form button[type="submit"],
.seo-cta,
.cta-button,
.cta-strip .seo-cta,
.rank-card .rank-cta,
.sp-feature-box-3 .img-box a.view-btn,
a[class*="btn-"],
button[class*="btn-"] {
    white-space: nowrap !important;
    flex-shrink: 0;
}
