/* ============================================
   Chicwell Sports 主题主样式
   ============================================ */
/* ============================================
   Chicwell Sports 主题主样式
   ============================================ */
/* Font-face Icons */
@font-face {
    font-family: 'National-2-Condensed';
url('../fonts/National-2-Condensed.woff') format('woff'),
url('../fonts/National-2-Condensed.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'Untitled-Sans-Light';
url('../fonts/Untitled-Sans-Light.woff') format('woff'),
url('../fonts/Untitled-Sans-Light.woff2') format('woff2');
    font-weight: normal;
    font-style: normal;
}

/* 重置和基础样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Untitled-Sans-Light', sans-serif;
    line-height: 1.6;
    color: #000000;
    background-color: rgb(245 245 245);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul, ol {
    list-style: none;
}

input {
    text-transform: none !important;
}

button,
input,
textarea,
select {
    font-family: inherit;
    font-size: inherit;
    border: none;
    background: none;
    outline: none;
}

.container {
    width: 100%;
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 工具类 */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    border: 2px solid transparent;
    font-size: 12px;
    font-family: 'Untitled-Sans-Light', sans-serif;
}

.btn-primary {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
}

.btn-primary:hover {
    background-color: #333333;
    border-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
    padding: 10px 25px;
    font-size: 11px;
}

.btn-secondary:hover {
    background-color: #333333;
    border-color: #333333;
}

.btn-outline {
    background-color: transparent;
    color: #000000;
    border-color: #000000;
    padding: 10px 30px;
}

.btn-outline:hover {
    background-color: #000000;
    color: #ffffff;
    border-color: #000000;
}

/* 顶部通知栏 */
.top-notice-slider {
    background-color: #1C1C1C;
    padding: 8px 0;
    overflow: hidden;
    position: relative;
    z-index: 1001;
    border-bottom: 1px solid #eeeeee;
}

.top-notice-slider .slick-list {
    overflow: visible;
}

.notice-slide {
    text-align: center;
    padding: 5px 0;
}

.notice-slide p {
    font-size: 11px;
    font-weight: 500;
    color: #999999;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    margin: 0;
}


/* ============================================
   顶部通知栏 - 根据设计图修正
   ============================================ */

/* 顶部通知栏容器 */
.top-notice {
    background-color: #222222; /* 深灰色背景，接近黑色 */
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1001;
    border-bottom: none; /* 移除底部边框 */
}

/* 通知内容容器 */
.notice-content {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 20px; /* 为箭头留出空间 */
    max-width: 300px; /* 限制最大宽度 */
}

/* 通知文字 */
.notice-text {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #FFFFFF; /* 白色文字 */
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    text-align: center;
    line-height: 1;
    padding: 0 10px;
}

/* 通知箭头 - 根据设计图位置 */
.notice-arrow {
    background: none;
    border: none;
    color: #FFFFFF; /* 白色箭头 */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    transition: all 0.3s ease;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2;
}

.notice-arrow:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
}

.notice-arrow i {
    font-size: 10px;
}

/* 左侧箭头 - 在文字左侧 */
.notice-prev {
    left: calc(35% - 150px); /* 从中心向左偏移150px */
}

/* 右侧箭头 - 在文字右侧 */
.notice-next {
    right: calc(35% - 150px); /* 从中心向右偏移150px */
}

/* 禁用状态的箭头 */
.notice-arrow.disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.notice-arrow.disabled:hover {
    background: none;
}

/* 头部样式 */
.site-header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background-color: #ffffff;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
    position: relative;
}

/* 顶部通知栏 - 带箭头切换 */
.top-notice-slider {
    background-color: #f5f5f5;
    padding: 0;
    overflow: hidden;
    position: relative;
    z-index: 1001;
    border-bottom: 1px solid #eeeeee;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 40px; /* 固定高度 */
}

.notice-slides {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.notice-slide {
    text-align: center;
    padding: 0 40px; /* 为箭头留出空间 */
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
}

.notice-slide p {
    font-size: 11px;
    font-weight: 500;
    color: #000000;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    white-space: nowrap;
    margin: 0;
    line-height: 1;
}

/* 通知栏箭头样式 */
.notice-arrow {
    background: none;
    border: none;
    color: #c1c1c1;
    width: 40px;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    flex-shrink: 0; /* 防止箭头被压缩 */
    z-index: 2;
    position: relative;
}

.notice-arrow:hover {
    background-color: rgba(0, 0, 0, 0.05);
    color: #333333;
}

.notice-arrow i {
    font-size: 12px;
}

/* 禁用状态时的箭头 */
.notice-arrow.slick-disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.notice-arrow.slick-disabled:hover {
    background: none;
    color: #000000;
}


/* Logo 在左侧 */
.site-branding {
    flex: 0 0 auto;
}

.site-logo {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 2px;
    text-transform: uppercase;
    line-height: 1;
}

.site-logo a {
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-logo a:hover {
    color: #333333;
}

/* 主导航在中间 */
.main-navigation {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.primary-menu {
    display: flex;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
}

.primary-menu li {
    position: relative;
}

.yay-currency-custom-select{
    margin-top: 4px !important;
}

.primary-menu a {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 5px 0;
    position: relative;
    transition: color 0.3s ease;
}

.primary-menu a:hover {
    text-decoration: none;
    color: #666666;
}

.primary-menu .current-menu-item a {
    color: #000000;
}

.primary-menu .current-menu-item a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #000000;
}

.primary-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #000000;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.primary-menu a:hover::after {
    transform: scaleX(1);
}

/* 右侧图标区域 */
.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    flex: 0 0 auto;
}

/* 搜索样式 */
.header-search {
    position: relative;
}

.search-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #000000;
    font-size: 16px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
}

.search-toggle:hover {
    background-color: #f5f5f5;
    color: #333333;
}

.search-form-container {
    position: absolute;
    top: 100%;
    right: 0;
    width: 300px;
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    padding: 20px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
}

.search-form-container.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-form input[type="search"] {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #dddddd;
    border-radius: 4px;
    font-size: 14px;
    color: #333333;
    background-color: #ffffff;
    transition: all 0.3s ease;
}

.search-form input[type="search"]:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

/* 用户、购物车图标 */
.header-account a,
.header-cart a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #000000;
    font-size: 16px;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
}

.header-account a:hover,
.header-cart a:hover {
    background-color: #f5f5f5;
    color: #333333;
}

/* 购物车数量徽章 */
.header-cart .cart-count {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: #000000;
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}
.cart-count-n {
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: red;
    color: #ffffff;
    font-size: 10px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* 移动端菜单按钮 */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000000;
    transition: all 0.3s ease;
}

/* 移动端菜单 */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: #ffffff;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #eeeeee;
}

.mobile-menu-header h2 {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #000000;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background-color: #f5f5f5;
}

.mobile-menu-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-list li {
    border-bottom: 1px solid #eeeeee;
}

.mobile-menu-list li:last-child {
    border-bottom: none;
}

.mobile-menu-list a {
    display: block;
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 0;
    transition: color 0.3s ease;
}

.mobile-menu-list a:hover {
    color: #666666;
}

/* ============================================
   菜单栏设计 - 根据设计稿一比一还原
   ============================================ */

/* 主导航栏 */
.main-navigation-bar {
    background-color: #FFFFFF;
    padding: 20px 0;
    border-bottom: 1px solid #EEEEEE;
    position: relative;
    z-index: 1000;
}

.main-navigation-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo 样式 - 红黑配色 */
.site-branding {
    flex: 0 0 auto;
}

.site-logo {
    display: inline-block;
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    line-height: 1;
}

.logo-part-red {
    color: #FF0000; /* 红色部分 */
}

.logo-part-black {
    color: #000000; /* 黑色部分 */
}

/* 主导航菜单 */
.primary-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 40px;
}

.primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.menu-item {
    position: relative;
}

.menu-link {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 5px 0;
    position: relative;
    transition: all 0.3s ease;
    display: block;
}

/* 默认状态下划线效果 */
.menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #000000;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.menu-link:hover {
    color: #666666;
}

.menu-link:hover::after {
    transform: scaleX(1);
}

/* Gifts 菜单项 - 红色突出显示 */
.menu-link.active {
    color: #FF0000;
}

.menu-link.active::after {
    background-color: #FF0000;
    transform: scaleX(1);
}

.menu-link.active:hover {
    color: #FF3333;
}

/* 右侧功能区 */
.header-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

/* 文本链接 */
.header-links {
    display: flex;
    gap: 20px;
}

.header-link {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.header-link:hover {
    color: #666666;
}

/* 图标区域 */
.header-icons {
    display: flex;
    align-items: center;
    gap: 0px;
}

.header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 50%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.header-icon:hover {
    background-color: #F8F8F8;
    color: #333333;
}

/* 购物车数量徽章 */
.cart-icon .cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #FF0000;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* 搜索框容器 */
.header-search-container {
    background-color: #FFFFFF;
    border-bottom: 1px solid #EEEEEE;
    padding: 15px 0;
    display: none;
    animation: slideDown 0.3s ease;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.header-search-container.active {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-search-container .search-form {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.header-search-container input[type="search"] {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    font-size: 14px;
    color: #333333;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
}

.header-search-container input[type="search"]:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.header-search-container .search-submit {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666666;
    cursor: pointer;
    padding: 5px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.header-search-container .search-submit:hover {
    color: #000000;
}

/* 移动端菜单按钮 */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000000;
    transition: all 0.3s ease;
}

/* 移动端菜单 */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: #FFFFFF;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #EEEEEE;
}

.mobile-menu-header .site-logo {
    font-size: 20px;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #000000;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background-color: #F8F8F8;
}

.mobile-menu-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-list li {
    border-bottom: 1px solid #EEEEEE;
}

.mobile-menu-list li:last-child {
    border-bottom: none;
}

.mobile-menu-list a {
    display: block;
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 0;
    transition: color 0.3s ease;
}

.mobile-menu-list a:hover {
    color: #666666;
}

.mobile-menu-list a.active {
    color: #FF0000;
}

/* 主内容区 - 为导航栏留出空间 */
.site-main {
    padding-top: 0;
}
/* ============================================
   菜单栏设计 - 根据设计稿一比一还原
   ============================================ */

/* 主导航栏 */
.main-navigation-bar {
    background-color: #FFFFFF;
    padding: 20px 0;
    border-bottom: 1px solid #EEEEEE;
    position: relative;
    z-index: 1000;
}

.main-navigation-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo 样式 - 红黑配色 */
.site-branding {
    flex: 0 0 auto;
}

.site-logo {
    display: inline-block;
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 24px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: 1px;
    line-height: 1;
}

.logo-part-red {
    color: #FF0000; /* 红色部分 */
}

.logo-part-black {
    color: #000000; /* 黑色部分 */
}

/* 主导航菜单 */
.primary-navigation {
    flex: 1;
    display: flex;
    justify-content: center;
    margin: 0 40px;
}

.primary-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.menu-item {
    position: relative;
}

.menu-link {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    padding: 5px 0;
    position: relative;
    transition: all 0.3s ease;
    display: block;
}

/* 默认状态下划线效果 */
.menu-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #000000;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.menu-link:hover {
    color: #666666;
}

.menu-link:hover::after {
    transform: scaleX(1);
}

/* Gifts 菜单项 - 红色突出显示 */
.menu-link.active {
    color: #FF0000;
}

.menu-link.active::after {
    background-color: #FF0000;
    transform: scaleX(1);
}

.menu-link.active:hover {
    color: #FF3333;
}

/* 右侧功能区 */
.header-right {
    flex: 0 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

/* 文本链接 */
.header-links {
    display: flex;
    gap: 20px;
    font-size: 12px;
}

.header-link {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 12px;
    font-weight: 500;
    color: #000000;
    text-decoration: none;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.header-link:hover {
    color: #666666;
}

/* 图标区域 */
.header-icons {
    display: flex;
    align-items: center;
}

.header-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #000000;
    text-decoration: none;
    font-size: 16px;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 50%;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.header-icon:hover {
    background-color: #F8F8F8;
    color: #333333;
}

/* 购物车数量徽章 */
.cart-icon .cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    background-color: #FF0000;
    color: #FFFFFF;
    font-size: 10px;
    font-weight: 600;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
}

/* 搜索框容器 */
.header-search-container {
    background-color: #FFFFFF;
    border-bottom: 1px solid #EEEEEE;
    padding: 15px 0;
    display: none;
    animation: slideDown 0.3s ease;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 999;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.header-search-container.active {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.header-search-container .search-form {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
}

.header-search-container input[type="search"] {
    width: 100%;
    padding: 12px 50px 12px 20px;
    border: 1px solid #DDDDDD;
    border-radius: 4px;
    font-size: 14px;
    color: #333333;
    background-color: #FFFFFF;
    transition: all 0.3s ease;
}

.header-search-container input[type="search"]:focus {
    outline: none;
    border-color: #000000;
    box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

.header-search-container .search-submit {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: #666666;
    cursor: pointer;
    padding: 5px;
    font-size: 16px;
    transition: color 0.3s ease;
}

.header-search-container .search-submit:hover {
    color: #000000;
}

/* 移动端菜单按钮 */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 20px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.menu-bar {
    display: block;
    width: 100%;
    height: 2px;
    background-color: #000000;
    transition: all 0.3s ease;
}

/* 移动端菜单 */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 300px;
    height: 100vh;
    background-color: #FFFFFF;
    z-index: 1000;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    border-bottom: 1px solid #EEEEEE;
}

.mobile-menu-header .site-logo {
    font-size: 20px;
}

.mobile-menu-close {
    background: none;
    border: none;
    color: #000000;
    font-size: 24px;
    cursor: pointer;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.mobile-menu-close:hover {
    background-color: #F8F8F8;
}

.mobile-menu-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.mobile-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.mobile-menu-list li {
    border-bottom: 1px solid #EEEEEE;
}

.mobile-menu-list li:last-child {
    border-bottom: none;
}

.mobile-menu-list a {
    display: block;
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 15px 0;
    transition: color 0.3s ease;
}

.mobile-menu-list a:hover {
    color: #666666;
}

.mobile-menu-list a.active {
    color: #FF0000;
}

/* 主内容区 - 为导航栏留出空间 */
.site-main {
    padding-top: 0;
}



/* 主 Banner 轮播 */
.main-banner {
    position: relative;
    height: 800px;
    overflow: hidden;
    /* margin-bottom: 60px; */
}

/* Banner整体可点击 */
.banner-slide-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.banner-slide {
    height: 800px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.banner-slide:hover {
    transform: scale(1.01);
}

.banner-slide-link:hover .banner-slide {
    transform: scale(1.01);
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
}

.banner-content {
    color: #ffffff;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.banner-content h1 {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8), 0 0 30px rgba(0, 0, 0, 0.5);
}

.banner-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    text-shadow: 0 1px 8px rgba(0, 0, 0, 0.7);
}

/* Banner 导航箭头 */
.banner-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    z-index: 10;
}

.banner-prev,
.banner-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.banner-prev:hover,
.banner-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

/* 产品类别通用样式 */
.product-category {
    padding: 60px 0;
    border-bottom: 1px solid #eeeeee;
}

.category-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-header h2 {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 36px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000000;
    margin-bottom: 10px;
}

.category-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #666666;
    margin-bottom: 5px;
}

.category-header h3 {
    font-size: 20px;
    font-weight: 400;
    color: #999999;
    font-style: italic;
}

.category-content {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    align-items: start;
}

/* 特色产品 */
.featured-product {
    background-color: #f8f8f8;
    padding: 40px;
    border-radius: 4px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-info {
    text-align: center;
}

.featured-info h4 {
    font-size: 20px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-info .price {
    font-size: 36px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
}

/* 产品网格 */
.category-products {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}



.product-image {
    height: 200px;
    overflow: hidden;
    background-color: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}


.product-info {
    padding: 20px;
    text-align: center;
}

.product-info h5 {
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.product-info .price {
    font-weight: 700;
    color: #000000;
    font-size: 16px;
}

/* 日常运动装网格 */
.everyday-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.view-all-container {
    text-align: center;
}

/* 新品和趋势 */
.new-trending {
    padding: 60px 0;
    background-color: #f8f8f8;
}



.trending-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.trending-product {
    background-color: #ffffff;
    border: 1px solid #eeeeee;
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.trending-product:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.trending-product .product-image {
    height: 150px;
}

.trending-product .product-info {
    padding: 15px;
}

.btn-quick-view {
    display: block;
    width: 100%;
    padding: 10px;
    background-color: #000000;
    color: #ffffff;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    font-size: 11px;
    margin-top: 10px;
}

.btn-quick-view:hover {
    background-color: #333333;
}

/* 社交媒体 */
.social-section {
    padding: 40px 0;
    text-align: center;
    background-color: #ffffff;
    border-bottom: 1px solid #eeeeee;
}

.social-section h2 {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000000;
    margin-bottom: 20px;
}

.social-icons {
    display: flex;
    /* justify-content: center; */
    gap: 20px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: #000000;
    color: #ffffff;
    border-radius: 50%;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #333333;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* 页脚 */
.site-footer {
    color: #000000;
}

.footer-top {
    padding: 60px 0;
    border-bottom: 1px solid #dddddd;
}

.footer-widgets {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-widget h3 {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #000000;
    margin-bottom: 20px;
}

.footer-widget ul li {
    margin-bottom: 10px;
}

.footer-widget a {
    color: #666666;
    font-size: 14px;
    transition: color 0.3s ease;
}

.footer-widget a:hover {
    color: #000000;
}

.footer-widget i {
    margin-right: 10px;
    color: #000000;
    width: 20px;
    text-align: center;
}

.footer-middle {
    padding: 60px 0;
    border-bottom: 1px solid #dddddd;
}

.newsletter {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter h2 {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 24px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #000000;
    margin-bottom: 20px;
}

.newsletter p {
    color: #666666;
    font-size: 16px;
    margin-bottom: 30px;
    line-height: 1.6;
}

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.newsletter-form input {
    flex: 1;
    padding: 15px 20px;
    border: 1px solid #333333;
    border-radius: 4px;
    font-size: 16px;
    color: #ffffff;
    background-color: rgba(255, 255, 255, 0.1);
}

.newsletter-form input::placeholder {
    color: #999999;
}

.newsletter-form input:focus {
    border-color: #ffffff;
    background-color: rgba(255, 255, 255, 0.2);
}

.newsletter-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #999999;
    font-size: 14px;
}

.newsletter-note input[type="checkbox"] {
    width: 18px;
    height: 18px;
    border-radius: 3px;
    border: 1px solid #333333;
    background-color: rgba(255, 255, 255, 0.1);
    cursor: pointer;
}

.footer-bottom {
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    color: #999999;
    font-size: 14px;
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    color: #000000;
    font-size: 12px;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #000000;
    text-decoration: none;
}

.payment-methods {
    display: flex;
    gap: 15px;
    font-size: 24px;
    color: #666666;
}

/* ============================================
   SHOP POPULAR CATEGORIES 部分
   ============================================ */

/* 流行分类区域 */
.popular-categories-section {
    /* padding: 60px 0; */
    background-color: #FFFFFF;
    /* border-bottom: 1px solid #EEEEEE; */
}

/* 标题和标签头部 */
.categories-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    text-align: center;
}

.popular-categories-section .section-title.title1 {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 10px 0;
    line-height: 1.2;
    text-transform: none;
    letter-spacing: normal;
}

.popular-categories-section .section-title.title2 {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    margin: 0;
    line-height: 1.4;
    text-transform: none;
    letter-spacing: normal;
}




/* 分类内容 */
.categories-content {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.categories-content a {
    display: block;
    max-width: 50%;
    cursor: pointer;
}

.categories-content img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.categories-content.active {
    display: flex;
}

/* 分类网格 */
.category-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /*gap: 30px;*/
    gap: 0;
}

/* 分类卡片 */
.category-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

/* 分类图片 */
/*.category-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background-color: #F8F8F8;
    margin-bottom: 15px;
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999999;
    font-size: 14px;
}*/

.category-image {
    width: 100%;
    height: 380px;
    overflow: hidden;
    background-color: #F8F8F8;
    margin-bottom: 12px;
    position: relative;
    border-radius: 4px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: transparent; /* 移除灰色背景，或者直接删除该属性 */
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 关键：让图片填满容器，自动裁剪，不留空白 */
}

/* 分类名称 */
.category-name {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #000000;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.4;
}

/* ============================================
   SHOP POPULAR CATEGORIES 部分 - 修正为6个并排一行
   ============================================ */

/* 流行分类区域 */
.popular-categories-section {
    padding-top: 60px;
    background-color: #FFFFFF;
    /* border-bottom: 1px solid #EEEEEE; */
}

/* 标题和标签头部 */
.categories-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
    position: relative;
    text-align: center;
}

.popular-categories-section .section-title.title1 {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 10px 0;
    line-height: 1.2;
    text-transform: none;
    letter-spacing: normal;
}

.popular-categories-section .section-title.title2 {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    margin: 0;
    line-height: 1.4;
    text-transform: none;
    letter-spacing: normal;
}

.section-title {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 30px;
    font-weight: 800;
    color: #1C1C1C;
    letter-spacing: -1px;
    text-transform: uppercase;
    margin: 0;
}

/* 分类标签 */
.category-tabs {
    display: flex;
    background-color: transparent; /* 移除灰色背景 */
    padding: 0; /* 移除内边距 */
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    gap: 20px; /* 添加按钮间距 */
}

.tab-btn {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 0; /* 只在上下有内边距 */
    border: none;
    background: none;
    cursor: pointer;
    border-radius: 0; /* 移除圆角 */
    transition: all 0.3s ease;
    min-width: 60px; /* 减小最小宽度 */
    text-align: center;
    position: relative; /* 为下划线定位 */
}
/* 激活状态的样式 - 红色字体和下划线 */
.tab-btn.active {
    font-weight: 700;
    color: #FF0000; /* 红色字体 */
    background-color: transparent; /* 透明背景 */
}

/* 激活状态下的红色下划线 */
.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #FF0000; /* 红色下划线 */
    transform: none; /* 移除之前的缩放动画 */
}

/* 悬停效果 */
.tab-btn:hover:not(.active) {
    color: #666666; /* 悬停时变深灰色 */
    background-color: transparent; /* 透明背景 */
}

/* 移除之前为女性标签设置的特殊红色背景样式 */
.tab-btn[data-tab="women"].active {
    background-color: transparent; /* 确保背景透明 */
}

/* 分类内容 */
.categories-content {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.categories-content a {
    display: block;
    max-width: 50%;
    cursor: pointer;
}

.categories-content img {
    max-width: 100%;
    height: auto;
    object-fit: cover;
}

.categories-content.active {
    display: flex;
}

/* 分类网格 - 关键变更：6个并排一行 */
.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* 改为6列 */
    /*gap: 20px; !* 减小间距以适应6个卡片 *!*/
    gap: 0; /* 减小间距以适应6个卡片 */
}

/* 分类卡片 */
.category-card {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: transform 0.3s ease;
}

.category-card:hover {
    transform: translateY(-5px);
}

/* 分类图片 */
.category-image {
    width: 100%;
    height: 380px; /* 稍微减小高度以适应6个卡片 */
    overflow: hidden;
    background-color: #F8F8F8;
    margin-bottom: 12px;
    position: relative;
    border-radius: 4px;
}

.image-placeholder {
    width: 100%;
    height: 100%;
    background-color: #E8E8E8; /* 统一的灰色背景 */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 为每个占位图添加不同的灰度，增强视觉效果 */
.category-card:nth-child(odd) .image-placeholder {
    background-color: #F0F0F0; /* 浅灰色 */
}

.category-card:nth-child(even) .image-placeholder {
    background-color: #E8E8E8; /* 深灰色 */
}

/* 分类名称 */
.category-name {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 13px; /* 稍微减小字体大小 */
    font-weight: 500;
    color: #000000;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0;
    line-height: 1.4;
}

/* ============================================
   YOGA AND TRAINING 部分 - 修正为背景图+文字+按钮布局
   ============================================ */

/* 整体部分 */
.yoga-training-section {
    padding: 0;
    /* margin: 0 0 60px 0; */
    background-color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

/* 背景容器 */
.yoga-background {
    position: relative;
    height: 800px; /* 根据设计图设置合适高度 */
    background:
            /* linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 黑色叠加层增强文字可读性 */
            url('../images/yoga-bg.jpg') center center / cover no-repeat; /* 背景图片 */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 背景容器 */
.fitness-background {
    position: relative;
    height: 600px; /* 根据设计图设置合适高度 */
    background:
            /* linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 黑色叠加层增强文字可读性 */
            url('../images/fitness-bg.jpg') center center / cover no-repeat; /* 背景图片 */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 背景容器 */
.running-background {
    position: relative;
    height: 800px; /* 根据设计图设置合适高度 */
    background:
            linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), /* 黑色叠加层增强文字可读性 */
            url('../images/running-bg.jpg') center center / cover no-repeat; /* 背景图片 */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 背景容器 */
.everyday-background {
    position: relative;
    height: 800px; /* 根据设计图设置合适高度 */
    background:
            linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), /* 黑色叠加层增强文字可读性 */
            url('../images/everyday-bg.jpg') center center / cover no-repeat; /* 背景图片 */
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 背景叠加层，用于调节亮度和对比度 */
.bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* 内容容器 */
.yoga-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #FFFFFF;
    max-width: 900px;
    margin: 0 auto;
    padding: 40px;
}

/* 标题样式 */
.yoga-title {
    max-width: 900px;
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 70px;
    /* font-weight: 600; */
    color: #FFFFFF;
    text-transform: capitalize;
    letter-spacing: -1px;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* 折扣文本 */
.discount-text {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 26px;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 40px;
    letter-spacing: 1px;
    opacity: 0.9;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* 按钮容器 */
.shop-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* 按钮通用样式 */
.btn-shop {
    display: inline-block;
    padding: 15px 40px;
    font-family: 'Untitled-Sans-Light', sans-serif;
    opacity: 0.75;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
    text-align: center;
    min-width: 180px;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

/* 女性按钮样式 - 白色背景，黑色文字 */
.btn-women {
    background-color: #FFFFFF;
    color: #000000;
    border-color: #FFFFFF;
}

.btn-women:hover {
    background-color: #F8F8F8;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
    text-decoration: none;
}

/* 男性按钮样式 - 透明背景，白色边框和文字 */
.btn-men {
    background-color: transparent;
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.btn-men:hover {
    text-decoration: none;
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.2);
}

/* 按钮点击效果 */
.btn-shop:active {
    transform: translateY(-1px);
}

/* ============================================
   FITNESS TRAINING ARE BESTSELLERS 部分
   ============================================ */

/* 整体部分 */
.fitness-training-section {
    padding: 60px 0;
    background-color: #FFFFFF;
    border-bottom: 1px solid #EEEEEE;
    overflow: hidden; /* 隐藏溢出的内容 */
}

/* 标题和导航 */
.fitness-training-section .section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    position: relative;
}

.fitness-training-section .section-title {
    text-align: center;
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    flex: 1;
}

/* 轮播导航按钮 */
.fitness-training-section .slider-nav {
    display: flex;
    gap: 10px;
}

.fitness-training-section .slider-nav-right {
    margin-left: auto;
}

.fitness-training-section .section-subtitle {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.fitness-training-section .section-title .title1 {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 10px 0;
    line-height: 1.2;
    text-transform: none;
    letter-spacing: normal;
}

.fitness-training-section .section-title .title2 {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #333;
    margin: 0;
    line-height: 1.4;
    text-transform: none;
    letter-spacing: normal;
}

.fitness-training-section .slider-prev,
.fitness-training-section .slider-next {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #CCCCCC;
    background-color: #FFFFFF;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
    line-height: 1;
}

.fitness-training-section .slider-prev:hover,
.fitness-training-section .slider-next:hover {
    border-color: #000000;
    background-color: #F5F5F5;
}

.fitness-training-section .slider-prev:active,
.fitness-training-section .slider-next:active {
    transform: scale(0.95);
}

/* 轮播容器 */
.fitness-container {
    overflow: hidden;
    position: relative;
    width: 100%;
    margin-bottom: 30px;
}

/* 产品轮播轨道 */
.fitness-slider {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    gap: 5px;
    will-change: transform;
}

/* 产品卡片 */
.fitness-training-section .product-card {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(20% - 4px);
    flex: 0 0 calc(20% - 4px);
    min-width: calc(20% - 4px);
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s ease, opacity 0.3s ease;
    scroll-snap-align: start;
}

.fitness-training-section .product-card:hover {
    transform: translateY(-5px);
}

.fitness-slider-one .product-card,
.fitness-slider-everyday .product-card,
.fitness-slider-running .product-card,
.fitness-slider-fitness .product-card {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 calc(20% - 4px);
    flex: 0 0 calc(20% - 4px);
    min-width: calc(20% - 4px);
}

/* 产品图片 */
.fitness-training-section .product-image {
    width: 100%;
    height: 420px;
    overflow: hidden;
    margin-bottom: 20px;
    position: relative;
    background-color: #F8F8F8;
}

.fitness-training-section .image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    position: relative;
}

/* 产品信息 */
.fitness-training-section .product-info {
    text-align: center;
}

.fitness-training-section .product-title {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: #1C1C1C;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin: 0 0 10px 0;
    line-height: 1.4;
}

.fitness-training-section .product-price {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #1C1C1C;
    margin: 0 0 12px 0;
}

.fitness-training-section .shop-now-link {
    display: inline-block;
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #1C1C1C;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
    border-bottom-color: #1C1C1C;
}

.fitness-training-section .shop-now-link:hover {
    border-bottom-color: #1C1C1C;
}

/* 隐藏产品价格 */
.product-price {
    display: none !important;
}

/* 隐藏顶部购物车图标 */
.cart-icon {
    display: none !important;
}


/* ============================================
   Instagram Section - 根据设计图一比一还原
   ============================================ */

/* 整体区域 */
.instagram-section {
    padding: 60px 0;
    background-color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

/* 顶部标签区域 */
.instagram-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
    /*padding: 0 20px;*/
}

.hashtag-wrapper {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.instagram-hashtag {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    line-height: 1;
}

.instagram-handle {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #666666;
    letter-spacing: 0.5px;
    margin: 0;
}

/* 导航箭头 */
.instagram-nav {
    display: flex;
    gap: 10px;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid #DDDDDD;
    background-color: #FFFFFF;
    color: #000000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.nav-arrow:hover {
    border-color: #000000;
    background-color: #F5F5F5;
}

.nav-arrow:active {
    transform: scale(0.95);
}

/* 轮播容器 */
.instagram-carousel-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    height: 300px;
}

.instagram-carousel-track {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    gap: 0;
    will-change: transform;
}

/* 轮播项 - 关键：每个项目宽度为16.666%，一屏显示6个 */
.carousel-item {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 16.666667%;
    position: relative;
    height: 300px;
    max-width: 16.666667%;
    min-width: 16.666667%;
    width: 16.666667%;
    box-sizing: border-box;
}

/* 图片容器 */
.image-container {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

/* 图片占位符 - 使用渐变背景模拟不同场景 */
.coffee-scene {
    /*增加背景图*/
    background:url('../images/w-1.jpg') center center / cover no-repeat; /* 背景图片 */
    animation: gradientShift 15s ease infinite;
}

.city-walk {
    background:url('../images/w-2.jpg') center center / cover no-repeat; /* 背景图片 */
    animation: gradientShift 15s ease infinite;
}

.outdoor-workout {
    background:url('../images/w-3.jpg') center center / cover no-repeat; /* 背景图片 */
    animation: gradientShift 15s ease infinite;
}

.fitness-scene {
    background:url('../images/w-4.jpg') center center / cover no-repeat; /* 背景图片 */
    animation: gradientShift 15s ease infinite;
}

.lifestyle {
    background:url('../images/w-5.jpg') center center / cover no-repeat; /* 背景图片 */
    animation: gradientShift 15s ease infinite;
}

.fashion-scene {
    background:url('../images/w-6.jpg') center center / cover no-repeat; /* 背景图片 */
    animation: gradientShift 15s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* 图片悬停效果 */
.image-container:hover {
    transform: scale(1.02);
    transition: transform 0.3s ease;
}

.image-container:hover .image-overlay {
    opacity: 1;
}

/* 图片覆盖层 */
.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    padding: 20px 15px 15px 15px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.image-tag {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

/* ============================================
   EXCITING ACTIVITIES 部分 - 满屏布局
   ============================================ */

/* 整体区域 - 满屏 */
.exciting-activities-section.full-width {
    padding: 60px 0;
    background-color: #FFFFFF;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
}

.container-full {
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

/* 顶部标题区域 - 满屏 */
.section-header.full-width {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto;
    padding: 0 25px 60px 25px;
    width: 100%;
    max-width: 1700px;
    box-sizing: border-box;
}

.section-title {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

.view-more-link {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
    transition: color 0.3s ease;
}

.view-more-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #000000;
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

.view-more-link:hover {
    color: #666666;
}

.view-more-link:hover::after {
    transform: scaleX(0.8);
}

/* 三列内容区域 - 100%宽度满屏布局 */
.activities-grid-full {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    gap: 0; /* 移除列之间的间隙 */
    box-sizing: border-box;
}

/* 单列样式 - 占满宽度 */
.activity-column-full {
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    width: 100%;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-sizing: border-box;
}
.activity-column-full a:hover {
    text-decoration: none;
}
.activity-column-full:hover {
    text-decoration: none;
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* 图片区域 - 100%宽度 */
.activity-image-full {
    width: 100%;
    height: 443px; /* 固定高度，确保图片区域一致 */
    overflow: hidden;
    position: relative;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.activity-image-full img{
    width: 100%;
    /* height: 100%; */
}
.section-header a:hover{
    text-decoration: none;
}

.product-card a:hover{
    text-decoration: none;
}
.image-placeholder-full {
    width: 100%;
    height: 100%;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.5s ease;
    box-sizing: border-box;
}

.activity-column-full:hover .image-placeholder-full {
    transform: scale(1.05);
}

/* 不同图片的占位符背景 - 满屏 */
.yoga-woman-full {
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
}

.running-group-full {
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
}

.couple-wall-full {
    background-size: 400% 400%;
    animation: gradientShift 20s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* 图片标签覆盖层 */
.image-tag-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #FFFFFF;
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 3px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

/* 文字介绍区域 - 100%宽度 */
.activity-content-full {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 25px 30px;
    width: 100%;
    box-sizing: border-box;
    transition: background-color 0.3s ease;
}

.activity-column-full:hover .activity-content-full {
    background-color: #F9F9F9;
}

.activity-title-full {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #000000;
    line-height: 1.4;
    margin: 0 0 15px 0;
    min-height: 50px;
    width: 100%;
}

.activity-description-full {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #666666;
    line-height: 1.6;
    margin: 0 0 20px 0;
    flex: 1;
    width: 100%;
}

.learn-more-link-full {
    display: inline-block;
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #000000;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 0;
    position: relative;
    align-self: flex-start;
    transition: color 0.3s ease;
    width: auto;
}

.learn-more-link-full::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background-color: #000000;
    transform: scaleX(1);
    transition: transform 0.3s ease;
}

.learn-more-link-full:hover {
    color: #666666;
}

.learn-more-link-full:hover::after {
    transform: scaleX(0.8);
}

/* 移除最后一列的右边框 */
.activities-grid-full .activity-column-full:last-child .activity-content-full {
    border-right: 1px solid #EEEEEE;
}

/* 移除第一列的左边框 */
.activities-grid-full .activity-column-full:first-child .activity-content-full {
    border-left: 1px solid #EEEEEE;
}


/* ============================================
   NEWSLETTER 订阅板块
   ============================================ */

/* 整体区域 */
.newsletter-section {
    height: 280px;
    color: #000000;
    position: relative;
    overflow: hidden;
    width: 100%;
}

/* 背景装饰 */
.newsletter-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 1;
}

.bg-pattern-left,
.bg-pattern-right {
    position: absolute;
    background-repeat: no-repeat;
    background-size: contain;
    opacity: 0.1;
}



/* 容器布局 */
.newsletter-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 40px;
    gap: 40px;
    height: 100%;
}

/* 左侧文字区域 */
.newsletter-text {
    flex: 1;
    max-width: 850px;
}

.newsletter-title {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 38px;
    /* font-weight: 900; */
    /* letter-spacing: 2px; */
    text-transform: uppercase;
    margin: 0 0 12px 0;
    color: #000000;
}

.newsletter-subtitle {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.6;
    margin: 0;
    color: #000000;
    max-width: 580px;
}

/* 中间艺术字体和蝴蝶图案 */
.newsletter-logo {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 529px;
    height: 226px;
    background:url('../images/footer-logo.png') center center / cover no-repeat; /* 背景图片 */
    position: absolute;
    left: 32%;
    background-size: 100%;
}

.logo-wrapper {
    position: relative;
    display: inline-block;
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 3px;
    position: relative;
    padding-right: 50px;
}

.logo-text::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 2px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.3);
}

/* 蝴蝶样式 */
.butterfly-wrapper {
    position: absolute;
    right: -40px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
}

.butterfly {
    position: relative;
    width: 100%;
    height: 100%;
    animation: butterflyFloat 4s ease-in-out infinite;
}

@keyframes butterflyFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

.left-wing,
.right-wing {
    position: absolute;
    width: 20px;
    height: 30px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    top: 5px;
}

.left-wing {
    left: 0;
    transform: rotate(-30deg);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.right-wing {
    right: 0;
    transform: rotate(30deg);
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
}

.butterfly-body {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 4px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 2px;
}

/* 右侧订阅表单 */
.newsletter-form {
    flex: 1;
    max-width: 400px;
}

.subscribe-form {
    width: 100%;
}

.form-group {
    display: flex;
    gap: 0;
    width: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.form-group:focus-within {
    background-color: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1);
}


.subscribe-btn {
    background-color: #000000;
    color: #FFFFFF;
    border: none;
    padding: 16px 30px;
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.subscribe-btn:hover {
    background-color: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.subscribe-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* 表单容器 - 主要变化在这里 */
.form-container {
    display: flex;
    width: 100%;
    background-color: #FFFFFF; /* 白色背景 */
    border-radius: 8px; /* 整体圆角 */
    overflow: hidden; /* 确保内部元素不超出圆角 */
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    border: none;
    height: 60px; /* 固定高度 */
}

/* 输入框样式 */
.design-email-input {
    flex: 1;
    padding: 0 20px;
    border: none;
    background-color: transparent;
    color: #333333;
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 16px;
    font-weight: 400;
    outline: none;
    min-width: 0;
    border-radius: 0; /* 移除圆角，让容器控制 */
    height: 100%; /* 填充容器高度 */
}

.design-email-input::placeholder {
    color: #999999; /* 灰色提示文字 */
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 16px;
    font-weight: 400;
    opacity: 0.8;
}

.design-email-input:focus {
    background-color: #FFFFFF;
    box-shadow: none;
}

/* 提交按钮样式 - 关键变化 */
.design-subscribe-btn {
    background-color: #000000; /* 黑色背景 */
    color: #FFFFFF; /* 白色文字 */
    border: none;
    padding: 0 30px;
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    height: 100%; /* 与输入框同高 */
    min-width: 150px;
    border-radius: 0; /* 移除圆角，让容器控制 */
    position: relative; /* 为了伪元素定位 */
}

/* 按钮与输入框之间的分隔线 */
.design-subscribe-btn::before {
    content: '';
    position: absolute;
    left: 0;
    top: 15%;
    height: 70%;
    width: 1px;
    background-color: rgba(255, 255, 255, 0.3);
}

.design-subscribe-btn:hover {
    background-color: #333333;
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.design-subscribe-btn:active {
    transform: translateY(0);
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);
}

.design-subscribe-btn:disabled {
    background-color: #666666;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

/* 整体容器 */
.subscribe-box {
    max-width: 500px;
    margin: 20px 80px;
    position: relative;
    display: flex;
}

/* 输入框 */
.subscribe-input {
    flex: 1!important;
    height: 50px!important;
    padding: 0 160px 0 20px!important;
    border: 1px solid #e0e0e0!important;
    border-radius: 999px!important;
    font-size: 16px!important;
    outline: none!important;
    background: #fff!important;
    color: #000000!important;
}

/* 提交按钮 */
.subscribe-btn-e {
    position: absolute;
    right: 4px;
    top: 4px;
    height: 42px;
    padding: 0 25px;
    background: #000000;
    color: #fff;
    border: none;
    border-radius: 999px;
    font-size: 16px;
    cursor: pointer;
    transition: background 0.3s;
}

.subscribe-btn-e:hover {
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}


/* ============================================
   网页底部横幅 - 主样式
   ============================================ */

.site-footer {
    width: 100%;
    /* padding: 85px 0 0 0; */
    font-family: 'Untitled-Sans-Light', sans-serif;
}

.footer-container {
    max-width: 100%; /* 根据要求设置最大宽度 */
    /* margin: 0 auto; */
    padding: 78px;
    display: flex;
    justify-content: space-between;
    /* gap: 60px; */
    flex-wrap: wrap;
    background-color: #ffffff;
    color: #000000;
}

.footer-line-box {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    margin-top: auto;
    padding-top: 20px;
    /* border-top: 1px solid #dddddd; */
}

.footer-logo-img {
    width: 666px;
    height: 216px;
    display: block;
    margin-bottom: 15px;
}

.footer-logo-img img {
    /* max-height: 60px; */
    width: 100%;
    height: 100%;
}

.footer-line-box-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    /* justify-content: space-between; */
    width: 100%;
}

/* 左侧促销区域 */
.footer-promo {
    flex: 1;
    min-width: 300px;
    max-width: 500px;
}

.promo-title {
    font-size: 24px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 10px 0;
    color: #000000;
    line-height: 1.3;
}

.promo-text {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    margin: 0 0 30px 0;
    line-height: 1.6;
    max-width: 400px;
}

/* 订阅表单 */
.subscribe-form {
    margin-bottom: 30px;
    max-width: 500px;
}

.form-group {
    display: flex;
    width: 100%;
    background-color: #FFFFFF;
    /* border-radius: 8px; */
    overflow: hidden;
    border: none;
    height: 60px;
    /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1); */
}

.email-input {
    flex: 1;
    width: 100%;
    padding: 12px 20px 12px 20px!important;
    border: 1px solid #000000!important;
    background-color: #FFFFFF!important;
    color: #333333!important;
    font-family: 'Untitled-Sans-Light', sans-serif!important;
    font-size: 16px!important;
    font-weight: 400!important;
    outline: none!important;
    min-width: 0!important;
    border-radius: 5px!important;
    height: auto!important;
}

.email-input::placeholder {
    color: #999999;
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 16px;
    font-weight: 400;
    opacity: 0.8;
}

.email-input:focus {
    background-color: #FFFFFF;
    box-shadow: none;
}

.subscribe-btn {
    background-color: #E31B23; /* 红色按钮 */
    color: #FFFFFF;
    border: none;
    padding: 15px;
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    height: 100%;
    min-width: 150px;
    position: relative;
    margin-top: 25px;
    border-radius: 8px;
}

.subscribe-btn:hover {
    background-color: #C41219;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.subscribe-btn:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

/* 支付方式图标 */
.payment-methods {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 100px;
    flex-wrap: wrap;
}

.payment-icon {
    width: 37px;
    height: 23px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-transform: uppercase;
    position: relative;
}

/* 底部链接 */
.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    /* margin-bottom: 20px; */
}

.footer-link {
    color: #CCCCCC;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 2px;
}

.footer-link:hover {
    color: #FFFFFF;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #CCCCCC;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.footer-link:hover::after {
    transform: scaleX(1);
}

/* 右侧链接区域 */
.footer-links-container {
    display: flex;
    flex: 2;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    min-width: 300px;
    position: relative;
    color: #000000;
}

.email-input-wrapper {
    position: relative;
    display: flex;
    width: 80%;
}

.email-input-wrapper .email-input {
    flex: 1;
    padding-right: 40px;
}

.subscribe-submit-arrow {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 40px;
    background: none;
    border: none;
    color: #000000;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-column {
    flex: 1;
    min-width: 200px;
    margin-bottom: 40px;
}

.column-title {
    font-size: 18px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 20px 0;
    color: #000000;
}

.column-links {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.column-links li {
    margin-bottom: 12px;
}

.column-link {
    color: #000000;
    text-decoration: none;
    font-size: 14px;
    /* font-weight: 200; */
    transition: color 0.3s ease;
    display: inline-block;
    position: relative;
    padding-bottom: 2px;
}

.column-link:hover {
    color: #666666;
    transform: translateX(5px);
    text-decoration: none;
}

.column-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background-color: #CCCCCC;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.column-link:hover::after {
    transform: scaleX(1);
}

/* Need Help 列的特殊样式 */
.footer-column.need-help {
    min-width: 180px;
}

/* 社交媒体图标 */
.social-icons {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-icon {
    width: 20px;
    height: 20px;
    background-color: #FFFFFF;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    text-decoration: none;
    font-size: 18px;
    font-weight: 700;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-3px);
}

.social-icon.twitter {
    background-color: #000000;
    border: 1px solid #333333;
}

.social-icon.instagram {
    background-color: #000000;
    border: 1px solid #333333;
}

/* 底部版权信息 */
.footer-bottom {
    background-color: #111111;
    padding: 30px 0;
    margin-top: 40px;
    border-top: 1px solid #333333;
}

.footer-bottom-container {
    max-width: 1700px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.copyright {
    font-size: 14px;
    font-weight: 400;
    color: #000000;
    margin: 13px;
    text-align: center;
}

.footer-logo{
    display: flex;
    align-items: center;
    height: 40px;
}

.alert {
    padding: 15px;
    margin-bottom: 20px;
    border-radius: 4px;
    position: relative;
}
.alert.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}
.alert.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}
.close-btn {
    position: absolute;
    top: -9%;
    right: 1%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
}



/* ============================================
   MEGAMENU 下拉菜单样式
   ============================================ */

/* 下拉菜单面板 */
.megamenu-panel {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    height: 480px;
    background-color: #FFFFFF;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-top: 1px solid #EEEEEE;
}

.megamenu-panel.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

/* 下拉菜单容器 */
.megamenu-container {
    width: 100%;
    margin: 0 auto;
    padding: 0;
    height: 100%;
    display: flex;
}

/* 左侧一级分类 */
.megamenu-level1 {
    width: 400px;
    height: 100%;
    background-color: #FAFAFA;
    padding: 30px 0;
    flex-shrink: 0;
}

.megamenu-level1-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 70px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.megamenu-level1-text {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.megamenu-level1-arrow {
    font-size: 18px;
    color: #CCCCCC;
    transition: all 0.3s ease;
}

.megamenu-level1-item:hover {
    background-color: #FFFFFF;
}

.megamenu-level1-item:hover .megamenu-level1-text {
    color: #E31B23;
}

.megamenu-level1-item:hover .megamenu-level1-arrow {
    color: #E31B23;
    transform: translateX(3px);
}

.megamenu-level1-item.active {
    background-color: #FFFFFF;
}

.megamenu-level1-item.active .megamenu-level1-text {
    color: #E31B23;
    font-weight: 700;
}

.megamenu-level1-item.active .megamenu-level1-arrow {
    color: #E31B23;
}

.megamenu-level1-item.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #E31B23;
}

/* 中间二级分类 */
.megamenu-level2 {
    flex: 1;
    padding: 40px 50px;
    background-color: #FFFFFF;
    height: 100%;
    overflow-y: auto;
}

.megamenu-level2-content {
    display: none;
    height: 100%;
}

.megamenu-level2-content.active {
    display: flex;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateX(-10px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.megamenu-level2-grid {
    width: 600px;
    /*display: grid;*/
    /*grid-template-columns: repeat(2, 1fr);*/
    gap: 0;
    padding: 0 30px;
}

.megamenu-level2-title{
    padding: 5px 40px;
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
    margin-top: 0px;
}

.megamenu-level2-item {
    padding: 5px 40px;
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #333333;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.megamenu-level2-item:hover {
    color: #E31B23;
}

.megamenu-level2-item::before {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    background-color: #E31B23;
    transition: width 0.3s ease;
}

.megamenu-level2-item:hover::before {
    width: 100%;
}

/* 右侧产品展示 */
.megamenu-products {
    width: 800px;
    padding: 0;
    background-color: #FFFFFF;
    height: 100%;
    display: flex;
    flex-direction: row;
    gap: 65px;
    flex-shrink: 0;
    align-items: flex-start;
}

.megamenu-product {
    flex: 1;
    display: flex;
    flex-direction: column;
    cursor: pointer;
    transition: all 0.3s ease;
    max-width: 330px;
}

/*.megamenu-product:hover {*/
/*    transform: translateY(-5px);*/
/*}*/
.megamenu-product .shop-now-link{
    font-size: 14px;
    color: #333333;
    text-transform: capitalize;
    position: relative;
    display: inline-block;
    padding-bottom: 0px;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 73px;
    margin-top:7px;
    /* text-align: center; */
}
.megamenu-product a {
    text-decoration: none;
}

.megamenu-product .shop-now-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #666;
    transition: transform 0.3s ease;
    transform-origin: left center;
}

.megamenu-product-image {
    width: 100%;
    height: 330px;
    background-color: #F5F5F5;
    margin-bottom: 10px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.megamenu-product-image img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.megamenu-product:hover .megamenu-product-image {
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.megamenu-product-info {
    padding: 0 5px;
}

.megamenu-product-title {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #000000;
    margin-bottom: 5px;
    transition: color 0.3s ease;
}

.megamenu-product:hover .megamenu-product-title {
    color: #E31B23;
}

.megamenu-product-price {
    font-family: 'Untitled-Sans-Light', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #E31B23;
}

/* 响应式设计 */
@media (max-width: 1200px) {
    .megamenu-level1 {
        width: 300px;
    }

    .megamenu-products {
        width: 300px;
    }

    .megamenu-level1-item {
        padding: 15px 25px;
    }
}

@media (max-width: 992px) {
    .megamenu-panel {
        display: none;
    }
    .fitness-background .running-background{
        height: 350px;
    }

}
