/** Shopify CDN: Minification failed

Line 139:1 Expected "}" to go with "{"

**/
/* 整体容器样式 */
.cust-signup-banner-v2 .cust-signup-banner__container {
    display: flex;
    padding-top: 16px;
    padding-bottom: 16px;
    justify-content: space-between;
    align-items: center;
    flex: 1 0 0;
    margin: 0 auto;
    min-height: 120px;
}

/* 左侧文本样式 */
.cust-signup-banner-v2 .csb-left__title {
    margin-bottom: 8px;
    font-size: 32px;
    font-family: ChronicleDisplay-Light;
}

/* 右侧表单容器 - 关键：用这个容器控制下划线长度 */
.cust-signup-banner-v2 .csb-right__form {
    display: flex;
    align-items: flex-end; /* 确保下划线对齐到底部 */
    width: 50%; 
    position: relative;
}

/* 下划线样式 - 贯穿整个表单容器，对齐到箭头 */
.cust-signup-banner-v2 .csb-right__form::after {
    /* content: ''; */
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%; /* 宽度与表单容器一致，对齐到箭头 */
    height: 0.5px;
    background-color: var(--border-light-outline, #FFF);
    border-bottom: 0.5px solid var(--border-light-oultine, #FFF);
}

/* Email输入框样式 */
.cust-signup-banner-v2 .csb-right__email {
    flex: 1;
    font-family: "Helvetica Neue", sans-serif;
    font-size: 14px;
    font-weight: 300;
    line-height: 150%;
    color: var(--colour-grey-scale-30, #DFDFDF); /* 设置输入框文字颜色 */
    background: transparent;
    border: none;
    padding: 8px 0;
    margin-right: 24px;
    outline: none;
    position: relative; /* 确保输入框在下层不遮挡下划线 */
}
.cust-signup-banner-v2 .csb-right__email::placeholder {
    color: var(--colour-grey-scale-30, #DFDFDF); /* 设置占位符文字颜色 */
    opacity: 1;
}

/* Subscribe按钮基础样式 - 调整为图中样式，保持固定颜色 */
.cust-signup-banner-v2 .csb-right__btn-text {
    font-family: "Helvetica Neue", sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 118%;
    letter-spacing: 1.3px;
    text-transform: uppercase;
    cursor: pointer;
    position: relative; /* 确保按钮在下层不遮挡下划线 */
    border-radius: 0; /* 取消圆角 */
    padding: 0 10px; 
    height: 40px;
    display: flex;
    align-items: center;
    gap: 18px;
    color: #FFFFFF; /* 保持图中白色文字 */
    /* 移除所有hover相关的样式变化属性，确保无动画 */
}
/* 按钮 hover 样式 - 完全保持与初始状态一致，无任何变化 */
.cust-signup-banner-v2 .csb-right__btn-text:hover {
    color: #FFFFFF;
}

/* 箭头容器及样式 - 保持与按钮文字同色 */
.cust-signup-banner-v2 .csb-right__arrow-wrapper {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.cust-signup-banner-v2 .csb-right__arrow {
    width: 6px;
    height: 10px;
    stroke: #FFFFFF; /* 与按钮文字同色 */
    stroke-linecap: round;
    stroke-linejoin: round;
}
/* 箭头 hover 样式 - 保持与初始状态一致 */
.cust-signup-banner-v2 .csb-right__btn-text:hover .csb-right__arrow {
    stroke: #FFFFFF;
}

/* 移动端响应式样式 */
@media (max-width: 768px) {
.cust-signup-banner-v2 .cust-signup-banner__container {
    flex-direction: column; /* 垂直排列 */
    padding-top: 20px; 
    padding-bottom: 20px; 
    align-items: flex-start; /* 左侧对齐 */
    min-height: auto; /* 自动适应高度 */
}

.cust-signup-banner-v2 .csb-left__text {
    margin-bottom: 20px; /* 与图片中上下间距20一致 */
}

.cust-signup-banner-v2 .csb-right__form {
    width: 100%; /* 占满宽度 */
}

.cust-signup-banner-v2 .csb-right__email {
    margin-right: 10px; /* 调整间距 */
}

/* 移动端标题文字样式 */
.cust-signup-banner-v2 .csb-left__title {
    font-size: 20px;
    font-weight: 300;
    line-height: 150%;
    font-family: ChronicleDisplay-Light;
}

.cust-signup-banner-v2 .footer__newsletter-signup-banner--container {
    background: unset !important;
}