/** Shopify CDN: Minification failed

Line 35:63 Expected "}" to go with "{"

**/
/* 横幅文字容器布局调整 */
.hero__text-wrapper {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: center !important;
  text-align: center !important;
}

/* 标题样式 */
.hero__title {
  margin-bottom: 20px !important; /* 控制标题和按钮间距 */
}

/* 按钮基础样式 */
.hero__button {
  font-weight: bold !important; /* 按钮文字加粗 */
  padding: 12px 24px !important; /* 按钮内边距 */
  border: 2px solid white !important; /* 白色边框 */
  background-color: transparent !important; /* 透明背景 */
  color: white !important; /* 白色文字 */
  transition: all 0.3s ease !important; /* 平滑过渡效果 */
  border-radius: 4px !important; /* 轻微圆角 */
}

/* 按钮悬停效果 */
.hero__button:hover {
  background-color: #EB6200 !important; /* 悬停时使用主题橙色背景 */
  color:white !important; /* 悬停时文字颜色 */
  text-decoration: none !important; /* 移除默认下划线 */