
/* ===============================================
   CUSTOM WISHLIST STYLES - OTAKU CHILD THEME
   =============================================== */

/* Wishlist页面专用布局 - 宽度与header保持一致(1400px)，不影响其他页面 */

/* 合并的wishlist页面样式 - 确保与header宽度一致 */
body.page-id-24249 .page_content_wrap .content_wrap .content,
body.otaku-wishlist-page .page_content_wrap .content_wrap .content {
    display: flex !important;
    flex-direction: row !important;
    gap: 30px !important;
    width: 100% !important;
    align-items: flex-start !important;
    max-width: 1400px !important;
    width: var(--theme-var-page_width_boxed, 100%);
    margin: 0 auto;
    padding: 20px;
}

body.otaku-wishlist-page .page_content_wrap .content_wrap .content .wishlist-main-content,
body.page-id-24249 .page_content_wrap .content_wrap .content .wishlist-main-content {
    flex: 2 1 auto !important;
    min-width: 0 !important;
    order: 1 !important;
}

body.otaku-wishlist-page .page_content_wrap .content_wrap .content .wishlist-sidebar,
body.page-id-24249 .page_content_wrap .content_wrap .content .wishlist-sidebar {
    flex: 1 0 auto !important;
    max-width: 350px !important;
    min-width: 300px !important;
    order: 2 !important;
}

/* Wishlist Container */
.otaku-wishlist-container {
    max-width: 100%;
    padding: 0;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* Wishlist Header */
.wishlist-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 2px solid #e5e7eb;
}

.wishlist-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 28px;
    font-weight: 700;
    color: #1f2937;
    margin: 0;
}

.wishlist-title svg {
    color: #F59E0B;
}

.wishlist-header .wishlist-count {
    background: #f3f4f6;
    color: #6b7280;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 600;
    position: static;
    width: auto;
    height: auto;
    display: inline-block;
}

/* Empty Wishlist */
.wishlist-empty {
    text-align: center;
    padding: 60px 20px;
    background: #f9fafb;
    border-radius: 12px;
    margin: 40px 0;
}

.wishlist-empty .empty-icon {
    margin-bottom: 20px;
}

.wishlist-empty .empty-icon svg {
    color: #d1d5db;
}

.wishlist-empty h3 {
    font-size: 24px;
    color: #374151;
    margin-bottom: 12px;
}

.wishlist-empty p {
    color: #6b7280;
    font-size: 16px;
    margin-bottom: 24px;
}

/* Products Grid */
.wishlist-products-grid {
    display: flex;
    flex-direction: column;
    gap: 0px;
    margin-bottom: 40px;
}

/* Product Card */
.wishlist-product-card {
    background: white;
    border-bottom: 2px solid #D9DADB;
    padding: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    position: relative;
    min-height: 120px;
}



/* Card Image */
.card-image {
    flex-shrink: 0;
    width: 120px;
    height: 170px;
    border-radius: 8px;
    overflow: hidden;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
}

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

.card-image:hover img {
    transform: scale(1.05);
}

/* Card Content */
.card-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 120px;
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    color: #1f2937;
    margin: 0 0 8px 0;
    line-height: 1.4;
}

.product-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.product-title a:hover {
    color: #F59E0B;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: #e74c3c;
    margin-bottom: 8px;
}

.product-price del {
    color: #9ca3af;
    font-weight: 400;
    margin-right: 8px;
}

.date-added {
    font-size: 12px;
    color: #6b7280;
    margin-bottom: 15px;
}

/* Card Actions */
.card-actions {
    display: flex;
    gap: 10px;
    margin-top: auto;
    align-items: center;
}

.action-btn {
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid #dee2e6;
    text-align: center;
    background: #f8f9fa;
    color: #495057;
    min-width: 100px;
    display: inline-block;
}

.action-btn:hover {
    background: #e9ecef;
    border-color: #adb5bd;
    color: #495057;
    text-decoration: none;
}

/* Buy Now链接按钮样式 */
.add-to-cart-btn {
    color: white !important;
    text-decoration: none !important;
}

.add-to-cart-btn:hover {
    color: white !important;
    text-decoration: none !important;
}

.add-to-cart-btn:visited {
    color: white !important;
    text-decoration: none !important;
}

/* Delete按钮特殊样式 */
.delete-btn {
    background: #b2b3b5 !important;
}

.delete-btn:hover {
    color: white !important;
    text-decoration: none;
    background: #dd0b0b !important;
}

/* 侧边栏组件样式 */
.sidebar-widget {
    background: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 30px;
}

.widget-title {
    font-size: 18px;
    font-weight: 700;
    color: #2c3e50;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

.widget-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: #3498db;
}

/* 隐藏搜索框组件 */
.search-widget {
    display: none !important;
}

/* 搜索框样式（备用） */
.search-input-wrapper {
    position: relative;
    display: flex;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    border: 2px solid #e9ecef;
}

.search-field {
    flex: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 14px;
    background: transparent;
}

.search-submit {
    background: #3498db;
    border: none;
    padding: 12px 15px;
    color: white;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.search-submit:hover {
    background: #2980b9;
}

/* 产品分类组件样式 - 匹配图片设计 */
.product-classification {
    background: white !important;
    border: 1px solid #e1e5e9 !important;
    border-radius: 12px !important;
    padding: 0 !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}

.product-classification .widget-title {
    color: #333 !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    text-transform: none !important;
    letter-spacing: normal !important;
    margin: 0 !important;
    padding: 16px 20px 12px 20px !important;
    border-bottom: 1px solid #e1e5e9 !important;
    background: none !important;
}

.product-classification .widget-title::after {
    display: none !important;
}

/* 产品分类列表样式 */
.product-classification .categories-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.product-classification .categories-list li {
    margin: 0;
    border-bottom: 1px solid #e1e5e9;
    transition: none;
}

.product-classification .categories-list li:last-child {
    border-bottom: none;
}

.product-classification .categories-list li:hover {
    background-color: transparent;
}

.product-classification .categories-list li a {
    color: #333;
    text-decoration: none;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.2s ease;
    display: block;
    padding: 14px 20px;
    border-radius: 0;
    border-left: none;
    background: none !important;
}

.product-classification .categories-list li a:hover {
    color: #666;
    background-color: transparent !important;
    border-left-color: transparent;
    transform: none;
}

.product-classification .categories-list li a::before {
    display: none;
}

.product-classification .categories-list li a:hover::after {
    display: none;
}

/* 隐藏产品数量 */
.product-classification .categories-list li a {
    position: relative;
}

/* 如果需要显示数量，可以用更简洁的样式 */
.product-classification .categories-list li a .count {
    color: #999;
    font-size: 12px;
    float: right;
}

/* 最近文章样式 */
.recent-posts-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.post-thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
}

.post-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    flex: 1;
}

.post-category {
    display: inline-block;
    background: #3498db;
    color: white;
    font-size: 10px;
    font-weight: 600;
    padding: 3px 8px;
    border-radius: 3px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.post-date {
    display: block;
    font-size: 12px;
    color: #6c757d;
    margin-bottom: 5px;
}

.post-title {
    margin: 0;
    font-size: 14px;
    line-height: 1.4;
}

.post-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.post-title a:hover {
    color: #3498db;
}

/* 标签云样式 */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag-link {
    display: inline-block;
    padding: 6px 12px;
    background: white;
    color: #555;
    text-decoration: none;
    border-radius: 15px;
    font-size: 12px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
}

.tag-link:hover {
    background: #3498db;
    color: white;
    border-color: #3498db;
    text-decoration: none;
}

/* TI Wishlist Integration */
.tinv-wishlist-wrapper {
    margin: 20px 0;
}

.tinv-wishlist-wrapper .tinv-wishlist {
    background: transparent;
    border: none;
    box-shadow: none;
}

/* 隐藏原始表格布局 */
.tinv-wishlist .tinvwl-table-manage-list {
    display: none !important;
}

/* ===================================================================
   Wishlist页面响应式设计 - 分断点优化，避免样式冲突
   =================================================================== */

/* 平板端优化 (769px - 1024px) - 只影响wishlist页面 */
@media (min-width: 769px) and (max-width: 1024px) {
    /* 容器宽度和间距设置 */
    body.otaku-wishlist-page .page_content_wrap,
    body.page-id-24249 .page_content_wrap {
        padding-left: 20px !important;
        padding-right: 20px !important;
    }

    body.otaku-wishlist-page .content_wrap,
    body.page-id-24249 .content_wrap {
        width: 100% !important;
        max-width: 1024px !important;
        margin: 0 auto !important;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    body.otaku-wishlist-page .content_container,
    body.page-id-24249 .content_container {
        width: 100% !important;
        max-width: 980px !important;
        margin: 0 auto !important;
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    /* 主布局：上下结构 */
    body.otaku-wishlist-page .page_content_wrap .content_wrap .content,
    body.page-id-24249 .page_content_wrap .content_wrap .content {
        flex-direction: column !important;
        padding: 20px !important;
        gap: 24px !important;
        max-width: 100% !important;
        align-items: stretch !important;
    }

    /* 主内容：置顶，全宽 */
    body.otaku-wishlist-page .page_content_wrap .content_wrap .content .wishlist-main-content,
    body.page-id-24249 .page_content_wrap .content_wrap .content .wishlist-main-content {
        order: -1 !important;
        width: 100% !important;
        flex: none !important;
    }

    /* 侧边栏：居后，全宽 */
    body.otaku-wishlist-page .page_content_wrap .content_wrap .content .wishlist-sidebar,
    body.page-id-24249 .page_content_wrap .content_wrap .content .wishlist-sidebar {
        max-width: none !important;
        min-width: auto !important;
        order: 1 !important;
        width: 100% !important;
        flex: none !important;
    }

    /* 容器样式 */
    .otaku-wishlist-container {
        padding: 16px;
    }

    /* 头部优化 */
    .wishlist-header {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap;
        gap: 12px;
        align-items: center !important;
        justify-content: space-between !important;
    }

    .wishlist-title {
        font-size: 26px;
        flex-shrink: 1;
        min-width: 0;
    }
    
    .wishlist-header .wishlist-count {
        flex-shrink: 0;
        white-space: nowrap;
    }

    /* 卡片布局优化 */
    .wishlist-product-card {
        display: flex !important;
        flex-direction: row !important;
        gap: 16px;
        align-items: flex-start;
        padding: 16px;
        text-align: left !important;
    }

    .card-image {
        width: 120px !important;
        height: 150px !important;
        margin: 0 !important;
        flex-shrink: 0;
    }

    .card-content {
        flex: 1;
        min-height: auto;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }

    .card-actions {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: auto;
        width: auto !important;
    }

    .card-actions .action-btn {
        flex: 1 1 calc(50% - 5px);
        min-width: 120px;
        width: auto !important;
        text-align: center;
    }

    /* 侧边栏组件优化 */
    .sidebar-widget {
        margin-bottom: 20px;
        padding: 16px;
    }
    
    /* 平板端隐藏产品分类和整个侧边栏 */
    .product-classification {
        display: none !important;
    }
    
    /* 由于侧边栏内容为空，隐藏整个侧边栏 */
    body.otaku-wishlist-page .page_content_wrap .content_wrap .content .wishlist-sidebar,
    body.page-id-24249 .page_content_wrap .content_wrap .content .wishlist-sidebar {
        display: none !important;
    }
    
    /* 主内容在平板端占据全部空间 */
    body.otaku-wishlist-page .page_content_wrap .content_wrap .content .wishlist-main-content,
    body.page-id-24249 .page_content_wrap .content_wrap .content .wishlist-main-content {
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 !important;
    }

    .widget-title {
        font-size: 17px;
    }

    .recent-post-item {
        flex-direction: row;
        text-align: left;
        gap: 12px;
        align-items: flex-start;
    }

    .post-thumbnail {
        margin: 0;
        flex-shrink: 0;
    }
}

/* 手机端优化 (最大768px) - 只影响wishlist页面 */
@media (max-width: 768px) {
    /* 容器宽度和间距设置 */
    body.otaku-wishlist-page .page_content_wrap,
    body.page-id-24249 .page_content_wrap {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    body.otaku-wishlist-page .content_wrap,
    body.page-id-24249 .content_wrap {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    body.otaku-wishlist-page .content_container,
    body.page-id-24249 .content_container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    /* 主布局：上下结构 */
    body.otaku-wishlist-page .page_content_wrap .content_wrap .content,
    body.page-id-24249 .page_content_wrap .content_wrap .content {
        flex-direction: column !important;
        padding: 15px !important;
        gap: 20px !important;
        max-width: 100% !important;
        align-items: stretch !important;
    }
    
    /* 主内容：置顶，全宽 */
    body.otaku-wishlist-page .page_content_wrap .content_wrap .content .wishlist-main-content,
    body.page-id-24249 .page_content_wrap .content_wrap .content .wishlist-main-content {
        order: -1 !important;
        width: 100% !important;
        flex: none !important;
    }
    
    /* 侧边栏：居后，全宽 */
    body.otaku-wishlist-page .page_content_wrap .content_wrap .content .wishlist-sidebar,
    body.page-id-24249 .page_content_wrap .content_wrap .content .wishlist-sidebar {
        max-width: none !important;
        min-width: auto !important;
        order: 1 !important;
        width: 100% !important;
        flex: none !important;
    }
    
    /* 容器样式 */
    .otaku-wishlist-container {
        padding: 15px;
    }
    
    /* 头部优化 */
    .wishlist-header {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px;
        text-align: left;
        flex-wrap: nowrap !important;
    }
    
    .wishlist-title {
        font-size: 22px;
        flex-shrink: 1;
        min-width: 0;
    }
    
    .wishlist-header .wishlist-count {
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    /* 卡片布局：垂直居中布局 */
    .wishlist-product-card {
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
        padding: 15px;
        gap: 15px;
        align-items: center;
    }
    
    .card-image {
        width: 120px !important;
        height: 150px !important;
        margin: 0 auto !important;
        flex-shrink: 0;
    }
    
    .card-content {
        width: 100%;
        min-height: auto;
        text-align: center;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    
    .card-actions {
        display: flex !important;
        flex-direction: column !important;
        gap: 8px;
        width: 100% !important;
        margin-top: 15px;
    }
    
    .card-actions .action-btn {
        width: 100% !important;
        min-width: auto !important;
        flex: none;
        text-align: center;
    }
    
    /* 侧边栏组件优化 */
    .sidebar-widget {
        margin-bottom: 20px;
        padding: 15px;
    }
    
    /* 手机端隐藏产品分类和整个侧边栏 */
    .product-classification {
        display: none !important;
    }
    
    /* 由于侧边栏内容为空，隐藏整个侧边栏 */
    body.otaku-wishlist-page .page_content_wrap .content_wrap .content .wishlist-sidebar,
    body.page-id-24249 .page_content_wrap .content_wrap .content .wishlist-sidebar {
        display: none !important;
    }
    
    /* 主内容在手机端占据全部空间 */
    body.otaku-wishlist-page .page_content_wrap .content_wrap .content .wishlist-main-content,
    body.page-id-24249 .page_content_wrap .content_wrap .content .wishlist-main-content {
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 !important;
    }
    
    .widget-title {
        font-size: 16px;
    }
    
    .recent-post-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        align-items: center;
    }
    
    .post-thumbnail {
        margin: 0 auto;
    }
}

/* 小手机端进一步优化 (最大480px) */
@media (max-width: 480px) {
    /* 容器宽度和间距设置 */
    body.otaku-wishlist-page .page_content_wrap,
    body.page-id-24249 .page_content_wrap {
        padding-left: 10px !important;
        padding-right: 10px !important;
    }

    body.otaku-wishlist-page .content_wrap,
    body.page-id-24249 .content_wrap {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding-left: 8px !important;
        padding-right: 8px !important;
    }

    body.otaku-wishlist-page .content_container,
    body.page-id-24249 .content_container {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding-left: 5px !important;
        padding-right: 5px !important;
    }

    body.otaku-wishlist-page .page_content_wrap .content_wrap .content,
    body.page-id-24249 .page_content_wrap .content_wrap .content {
        padding: 12px !important;
        gap: 18px !important;
    }
    
    .otaku-wishlist-container {
        padding: 12px;
    }
    
    .wishlist-title {
        font-size: 20px;
        flex-shrink: 1;
        min-width: 0;
    }
    
    /* 头部在小屏幕也保持水平布局 */
    .wishlist-header {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 8px;
        flex-wrap: nowrap !important;
    }
    
    .wishlist-header .wishlist-count {
        flex-shrink: 0;
        white-space: nowrap;
        font-size: 13px;
    }
    
    .wishlist-product-card {
        padding: 12px;
        gap: 12px;
    }
    
    .card-image {
        width: 100px !important;
        height: 125px !important;
    }
    
    .sidebar-widget {
        padding: 12px;
        margin-bottom: 16px;
    }
    
    /* 小手机端隐藏产品分类和整个侧边栏 */
    .product-classification {
        display: none !important;
    }
    
    /* 由于侧边栏内容为空，隐藏整个侧边栏 */
    body.otaku-wishlist-page .page_content_wrap .content_wrap .content .wishlist-sidebar,
    body.page-id-24249 .page_content_wrap .content_wrap .content .wishlist-sidebar {
        display: none !important;
    }
    
    /* 主内容在小手机端占据全部空间 */
    body.otaku-wishlist-page .page_content_wrap .content_wrap .content .wishlist-main-content,
    body.page-id-24249 .page_content_wrap .content_wrap .content .wishlist-main-content {
        width: 100% !important;
        max-width: 100% !important;
        flex: 1 !important;
    }
    
    .widget-title {
        font-size: 15px;
    }
}

.linkprint-homepage {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background: #F8FAFC;
}


/* LinkPrint Header Styles */
.linkprint-top-banner {
    background: #000000;
    color: white;
    padding: 8px 0;
    font-size: 0.9rem;
}


.linkprint-top-banner .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width:  var(--theme-var-page_width_boxed);
    max-width: 1400px !important;
    margin: 0 auto;
    padding-left: var(--theme-var-page_fullwide_extra);
    padding-right: var(--theme-var-page_fullwide_extra);
}



.banner-location, .banner-brand {
    color: #e59c0e;
    font-size: 0.85rem;
    font-weight: bold;
}

.linkprint-header {
    background: #000000;
    color: white;
    padding: 0;
}
.linkprint-header .container,.header-navigation .container,.linkprint-footer .container {
    width:  var(--theme-var-page_width_boxed);
    max-width: 1400px !important;
    margin: 0 auto;
    padding-left: var(--theme-var-page_fullwide_extra);
    padding-right: var(--theme-var-page_fullwide_extra);
}

.header-content {
    display: flex;
    align-items: center;
    padding: 5px 0;
    justify-content: space-between;
    width: 100%;
    
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header-logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-image {
    width: 40px !important;
    height: 40px !important;
}

.logo-text {
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

.header-search {
    flex: 1;
    max-width: 550px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
}

.search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    height: 40px;
    width: 400px !important;
    max-width: 550px !important;
}

.search-field {
    width: 100%;
    padding: 15px 60px 15px 25px !important;
    border: none;
    border-radius: 30px !important;
    background: transparent;
    font-size: 16px;
    outline: none;
    color: #333;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

.search-field::placeholder {
    color: #94A3B8;
    font-weight: 400;
}

.search-submit {
    position: absolute;
    right: 0px;
    top: 50%;
    transform: translateY(-50%);
    border: none;
    color: black !important;
    cursor: pointer;
    padding: 12px 15px !important;
    border-radius: 30px !important;
    display: flex;
    align-items: center;
    background: white !important;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 4px rgba(99, 102, 241, 0.3) !important;
}

.search-submit:hover {
    
    color: black !important;
}

.search-submit svg {
    width: 18px;
    height: 18px;
    stroke-width: 2.5;
}

/* 搜索按钮加载动画 */
.search-submit.loading {
    pointer-events: none;
    opacity: 0.7;
}

.search-submit .animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

/* 搜索框聚焦效果 */
.search-field:focus {
    outline: none;
}

.search-wrapper:focus-within {
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.2);
}

/* 搜索框响应式优化 */
@media (max-width: 768px) {
    .search-wrapper {
        height: 45px;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .search-field {
        padding: 12px 55px 12px 20px;
        font-size: 15px;
    }
    
    .search-submit {
        padding: 10px 12px;
    }
    
    .search-submit svg {
        width: 16px;
        height: 16px;
    }
    .wishlist-count {
        left: 25px !important;
    }
}

.header-actions {
    display: flex;
    gap: 15px;
    margin-left: auto;
    align-items: center;
    justify-content: flex-end;
    flex-shrink: 0;
    min-width: fit-content;
    overflow: visible;
}

.header-action {
    display: flex;
    align-items: center;
    gap: 7px;
    color: white;
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
    position: relative;
    flex-shrink: 0;
    white-space: nowrap;
}

.header-action:hover {
    color: white; /* 保持整体颜色不变 */
}

.header-action:hover span {
    color: #EE9CA7; /* 只有文字变色 */
}

.header-action:hover svg {
    color: white; /* 图标保持白色不变 */
}

.header-action svg {
    width: 24px;
    height: 24px;
}

.cart-count,
.wishlist-count {
    position: absolute;
    top: -8px;
    left: 15px;
    background: #EF4444;
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wishlist-count {
    background: #EF4444;
}

.header-navigation {
    padding-top: 0;
    background: #1A1A1A;
    width: 100%;
    position: relative;
    /* 当菜单项目过多时允许横向滚动（桌面端也启用） */
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}

.header-navigation::-webkit-scrollbar { /* WebKit */
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 25px;
    justify-content: center; /* 水平居中 */
    height: 50px;
    align-items: center;
    font-size: 0.9rem;
    /* 防止换行，内容超出时配合父级产生横向滚动 */
    flex-wrap: nowrap;
    min-width: max-content;
}

/* 确保导航菜单始终可见 */
.header-navigation {
    min-height: 50px;
    visibility: visible !important;
    opacity: 1 !important;
}

.nav-item {
    position: relative;
    flex-shrink: 0; /* 保持每个项目宽度，避免挤压换行 */
}

.nav-link {
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px 0;
    font-size: 1rem;
    transition: color 0.3s ease;
    position: relative;
    white-space: nowrap; /* 文本不换行 */
}

.nav-link:hover,
.nav-item.current .nav-link {
    color: #EE9CA7;
}

/* 强制 header 导航项目文字不换行，提升优先级覆盖父主题样式 */
.header-navigation .nav-item,
.header-navigation .nav-item .nav-link {
    white-space: nowrap !important;
    word-break: keep-all;
    overflow-wrap: normal;
    hyphens: none;
    -webkit-hyphens: none;
    font-family: Helvetica;
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    
}


/* 平板端样式 (769px - 1024px) */
@media (max-width: 1024px) and (min-width: 769px) {
    /* Top Banner 平板端优化 */
    .linkprint-top-banner {
        padding: 8px 0;
        font-size: 14px;
    }
    
    .linkprint-top-banner .container {
        padding: 0 20px;
    }
    
    /* Header 平板端优化 */
    .linkprint-header .container {
        padding: 0 20px;
    }
    
    .header-content {
        padding: 12px 0;
        gap: 20px;
        justify-content: space-between;
    }
    
    /* Logo 调整 */
    .logo-image {
        width: 38px;
        height: 38px;
    }
    
    .logo-text {
        font-size: 1.15rem;
    }
    
    /* 搜索框 平板端优化 */
    .header-search {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .search-wrapper {
        height: 42px;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .search-field {
        padding: 14px 58px 14px 22px !important;
        font-size: 15px;
    }
    
    .search-submit {
        padding: 11px 14px !important;
    }
    
    .search-submit svg {
        width: 17px;
        height: 17px;
    }
    
    /* 操作按钮 平板端优化 */
    .header-actions {
        gap: 18px;
        min-width: fit-content;
        flex-shrink: 0;
    }
    
    .header-action {
        font-size: 0.85rem;
        flex-shrink: 0;
        gap: 5px !important;
    }
    
    .header-action svg {
        width: 24px;
        height: 20px;
    }
    
    /* 数字徽章在平板端居中修复 */
    .header-actions .cart-count,
    .header-actions .wishlist-count {
        position: absolute !important;
        top: -9px !important;
        left: 10px !important;
        right: auto !important;
        width: 18px !important;
        height: 18px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        font-size: 0.7rem !important;
        line-height: 1 !important;
        text-align: center !important;
        transform: translateX(0) !important;
    }
    
    /* 确保文字正常显示 */
    .header-action span {
        display: inline;
        white-space: nowrap;
    }
    

}

/* 移动端汉堡菜单样式 */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    padding: 10px;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 20px;
    height: 3px;
    background: white;
    margin: 2px 0;
    transition: 0.3s;
}

/* 汉堡菜单动画 */
.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

/* 移动端导航覆盖层 */
.mobile-nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.mobile-nav-overlay.active {
    display: block;
}

/* 移动端导航菜单 */
.mobile-nav-menu {
    position: fixed;
    top: 0;
    right: -300px;
    width: 280px;
    height: 100%;
    background: #1A202C;
    transition: right 0.3s ease;
    z-index: 1000;
    padding: 80px 20px 20px;
    overflow-y: auto;
}

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

.mobile-nav-menu .nav-menu {
    flex-direction: column;
    gap: 0;
    padding: 0;
}

.mobile-nav-menu .nav-item {
    width: 100%;
    border-bottom: 1px solid #374151;
}

.mobile-nav-menu .nav-link {
    display: block;
    padding: 15px 0;
    font-size: 1rem;
    color: white;
    text-decoration: none;
    border-radius: 0;
    background: none;
    transition: color 0.3s ease;
}

.mobile-nav-menu .nav-link:hover,
.mobile-nav-menu .nav-item.current .nav-link {
    color: #60A5FA;
    background: none;
}

/* 小屏幕样式 (最大768px) */
@media (max-width: 768px) {
    /* 显示汉堡菜单按钮 */
    .mobile-menu-toggle {
        display: block;
        order: 2;
    }
    
    /* Top Banner 手机端优化 */
    .linkprint-top-banner .container {
        flex-direction: column;
        gap: 5px;
        text-align: center;
        padding: 0 15px;
    }
    
    /* Header 手机端布局 */
    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 15px;
        padding: 15px 0;
    }
    
    .header-logo {
        order: 1;
        justify-content: flex-start;
    }
    

    
    /* 隐藏桌面版导航 */
    .header-navigation {
        display: none;
    }
    
    /* 移动端搜索和操作区域 */
    .mobile-header-bottom {
        background: #1A202C;
        border-top: 1px solid #374151;
        padding: 12px 15px;
    }
    
    .mobile-search {
        margin-bottom: 15px;
    }
    
    .mobile-search .search-wrapper {
        height: 45px;
    }
    
    .mobile-search .search-field {
        padding: 12px 55px 12px 20px !important;
        font-size: 15px;
    }
    
    .mobile-actions {
        display: flex;
        justify-content: center;
        gap: 25px;
    }
    
    .mobile-actions .header-action {
        flex-direction: column;
        gap: 8px;
        font-size: 0.8rem;
    }
    
    .mobile-actions .header-action svg {
        width: 18px;
        height: 18px;
    }
}

/* Hero Section */
.linkprint-hero {
    min-height: 500px;
    position: relative;
    overflow: hidden;
}

/* Hero Bland Images - 桌面端平铺显示 */
.hero-bland-images {
    width: 100%;
    position: relative;
}

/* 桌面端和平板端样式 - 默认显示 */
.hero-images-desktop {
    display: flex;
    width: 100%;
    gap: 0;
}

.hero-images-desktop .hero-image-item {
    flex: 1;
    width: 33.333%;
    position: relative;
}

.hero-images-desktop .hero-image-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* 移动端轮播 - 默认隐藏 */
.hero-images-mobile {
    display: none;
}

/* 移动端样式 - 768px以下 */
@media (max-width: 768px) {
    /* 隐藏桌面端版本 */
    .hero-images-desktop {
        display: none;
    }
    
    /* 显示移动端轮播版本 */
    .hero-images-mobile {
        display: block;
        position: relative;
        margin-bottom: 0;
    }
    
    .hero-carousel {
        position: relative;
        overflow: hidden;
        width: 100%;
    }
    
    .hero-carousel-track {
        display: flex;
        transition: transform 0.3s ease;
        width: 300%; /* 3张图片 × 100% */
    }
    
    .hero-carousel-slide {
        width: 33.333%; /* 每张图片占track的1/3 */
        flex-shrink: 0;
    }
    
    .hero-carousel-slide img {
        width: 100%;
        height: auto;
        display: block;
    }
    
    /* 轮播指示器 */
    .hero-carousel-dots {
        position: absolute;
        bottom: 8px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        justify-content: center;
        gap: 10px;
        z-index: 10;
    }
    
    .hero-dot {
        width: 12px;
        height: 12px;
        border-radius: 50%;
        border: 2px solid #ffffff;
        background: #ffffff;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
        /* 确保是完美正圆 */
        box-sizing: border-box;
        flex-shrink: 0;
    }
    
    .hero-dot.active {
        background: #000000;
        border-color: #ffffff;
    }
    
    .hero-dot:hover {
        background: rgba(0, 0, 0, 0.6);
    }
}
.woocommerce ul.products li.product a img, .woocommerce-page ul.products li.product a img {
    max-height: 360px !important;
}

/* Features Section */
.linkprint-features {
    padding: 10px 0;
    background: #F8FAFC;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature-item {
    text-align: center;
    padding: 40px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #667EEA 0%, #764BA2 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.feature-icon img {
    width: 40px;
    height: 40px;
    filter: brightness(0) invert(1);
}

.feature-item h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin: 20px 0 15px;
    color: #1E293B;
}

.feature-item p {
    color: #64748B;
    line-height: 1.6;
}

/* Products Section */
.linkprint-products {
    padding: 80px 0;
    background: white;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 0px;
}

.section-header h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1E293B;
}

.navigation-arrows {
    display: flex;
    gap: 10px;
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border: 2px solid #E2E8F0;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #64748B;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    border-color: #6366F1;
    color: #6366F1;
    background: #F8FAFC;
}

.products-slider {
    display: flex;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.products-slider::-webkit-scrollbar {
    display: none;
}

.product-item {
    flex: 0 0 220px;
    text-align: center;
    padding: 20px;
    border-radius: 12px;
    background: #F8FAFC;
    transition: transform 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
}

.product-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 15px;
}

.mystery-box {
    width: 100%;
    height: 160px;
    background: linear-gradient(135deg, #FF6B6B, #FF8E53);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.mystery-icon {
    font-size: 60px;
    color: white;
    font-weight: bold;
}

.product-item h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1E293B;
    margin: 0;
}

.product-item p {
    font-size: 0.9rem;
    color: #64748B;
    margin: 8px 0 0;
}

/* Recommendations Section */
.linkprint-recommendations {
    padding: 80px 0;
    background: #F8FAFC;
}

.linkprint-recommendations h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1E293B;
    text-align: center;
    margin-bottom: 50px;
}

.recommendations-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.product-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

.product-link:hover {
    text-decoration: none;
    color: inherit;
}

.product-image {
    position: relative;
    overflow: hidden;
}

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

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.favorite-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #64748B;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.favorite-btn:hover {
    color: #EF4444;
    background: #FEF2F2;
}

.product-info {
    padding: 20px;
}

.product-info h4 {
    font-size: 1.1rem;
    font-weight: 500;
    color: #1E293B;
    margin: 0 0 15px;
    line-height: 1.4;
}

.price {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 5px !important;
}

.current-price {
    font-size: 1.2rem;
    font-weight: 600;
    color: #EF4444;
}

.original-price {
    font-size: 1rem;
    color: #94A3B8;
    text-decoration: line-through;
}

.add-to-cart {
    width: 100%;
    padding: 12px;
    background: #6366F1;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 0.95rem;
}

.add-to-cart:hover {
    background: #4F46E5;
}

/* CTA Banners Section */
.linkprint-cta-banners {
    padding: 80px 0;
    background: white;
}

.cta-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cta-banner {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    min-height: 200px;
}

.service-banner {
    background: linear-gradient(135deg, #FEF3C7 0%, #FDE68A 100%);
}

.partner-banner {
    background: linear-gradient(135deg, #E0E7FF 0%, #C7D2FE 100%);
}

.banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 40px;
    height: 100%;
}

.linkprint-top-banner .container .banner-text {
    flex: 1;
    min-width: 70%;
    text-align: left;
    color: #FFF;
    font-family: Helvetica;
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
} 

.linkprint-top-banner .container .banner-brand {
    flex: 1;
    min-width: 30%;
    text-align: right;
    background: linear-gradient(90deg, #F8DDE6 0%, #E97F84 100%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
} 

.cta-button {
    padding: 12px 24px;
    background: #6366F1;
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: background 0.3s ease;
    font-size: 1rem;
}

.cta-button:hover {
    background: #4F46E5;
}

.banner-image {
    flex: 1;
    text-align: right;
}

.banner-image img {
    max-width: 200px;
    height: auto;
}

/* LinkPrint Footer Styles */
.linkprint-footer {
    background: #000000;
    color: white;
    padding: 60px 0 20px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
    z-index: 10 !important;
    clear: both !important;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.linkprint-footer .footer-content .contact-info .map-link
,.linkprint-footer .footer-content .contact-info .email-link
,.linkprint-footer .footer-content .privacy-link{
    color: #EE9CA7 !important;
}

/* Footer 平板端优化 */
@media (max-width: 1024px) and (min-width: 769px) {
    .footer-content {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
    
    .footer-section {
        text-align: left;
    }
    
    .footer-section h3 {
        font-size: 1rem;
        margin-bottom: 15px;
    }
    
    .footer-section p {
        font-size: 0.85rem;
        line-height: 1.4;
        margin-bottom: 12px;
    }
    
    .footer-section.menu ul {
        padding: 0;
        margin: 0;
    }
    
    .footer-section.menu li {
        margin-bottom: 8px;
    }
    
    .footer-section.menu a {
        font-size: 0.85rem;
    }
    
    .newsletter-form {
        max-width: 100%;
    }
    
    .newsletter-input {
        font-size: 0.85rem;
        padding: 10px 40px 10px 12px;
    }
    
    .newsletter-button {
        right: 8px;
        width: 28px;
        height: 28px;
    }
    
    .newsletter-checkbox {
        font-size: 0.75rem;
        margin-top: 8px;
    }
}

/* Footer 小平板端优化 (如iPad mini) */
@media (max-width: 834px) and (min-width: 769px) {
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .footer-section {
        text-align: left;
    }
    
    .footer-section h3 {
        font-size: 1.05rem;
        margin-bottom: 16px;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .newsletter-form {
        max-width: 300px;
    }
}

/* iPad Pro / 大平板端特殊优化 (1024px宽度) */
@media (min-width: 1020px) and (max-width: 1030px) {
    .linkprint-footer {
        display: block !important;
        visibility: visible !important;
        position: relative !important;
        width: 100% !important;
        margin-top: 0 !important;
        clear: both !important;
    }
    
    .footer-content {
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 12px !important;
        display: grid !important;
    }
    
    .footer-section {
        display: block !important;
        visibility: visible !important;
    }
    
    .footer-section h3 {
        font-size: 0.95rem !important;
        margin-bottom: 12px !important;
    }
    
    .footer-section p {
        font-size: 0.8rem !important;
        margin-bottom: 10px !important;
    }
    
    .newsletter-input {
        font-size: 0.8rem !important;
        padding: 8px 35px 8px 10px !important;
    }
    
    .newsletter-button {
        width: 24px !important;
        height: 24px !important;
    }
}

/* 强制footer显示 - 覆盖JS动态设置 */
body .linkprint-footer {
    position: relative !important;
    bottom: auto !important;
    left: auto !important;
    transform: none !important;
    margin-top: 0 !important;
    min-height: auto !important;
}

/* Footer 手机端优化 */
@media (max-width: 768px) {
    .linkprint-footer {
        padding: 40px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-section {
        text-align: center;
    }
    
    .footer-section h3 {
        font-size: 1.1rem;
        margin-bottom: 15px;
    }
    
    .footer-section p {
        font-size: 0.9rem;
        margin-bottom: 15px;
    }
    
    .footer-section.menu ul {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;
    }
    
    .footer-section.menu li {
        margin-bottom: 0;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .newsletter-form {
        max-width: 100%;
        margin: 0 auto;
    }
    
    .newsletter-input {
        font-size: 15px;
        padding: 14px 50px 14px 15px;
    }
    
    .newsletter-checkbox {
        font-size: 0.8rem;
        justify-content: center;
        text-align: center;
    }
}

.footer-section {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.footer-section.contacts,
.footer-section.menu {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: white ;
    display: block !important;
    visibility: visible !important;
}

.footer-section p {
    line-height: 1.6;
    color: #CBD5E1;
    margin-bottom: 6px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s ease;
}

.social-links a:hover {
    background: #6366F1;
}

.contact-item {
    margin-bottom: 15px;
    color: #CBD5E1;
    line-height: 1.5;
}

.contact-item strong {
    color: white;
}

.quick-links ul,
.footer-section.menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.quick-links li,
.footer-section.menu li {
    margin-bottom: 6px;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.quick-links a,
.footer-section.menu a {
    color: #CBD5E1;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.quick-links a:hover,
.footer-section.menu a:hover {
    color: #60A5FA;
}

.newsletter-form {
    max-width: 300px;
}

.input-group {
    position: relative;
    margin-bottom: 15px;
}

.newsletter-input {
    width: 100%;
    padding: 12px 50px 12px 15px;
    border: 1px solid #374151;
    border-radius: 8px;
    background: #374151;
    color: white;
    font-size: 0.9rem;
    outline: none;
}

.newsletter-input::placeholder {   
      color: #9CA3AF;

}

.newsletter-input:focus {
    color: var(--theme-color-input_text)  !important;
    background: #374151 !important;
    border-color: var(--theme-color-input_bd_color)  !important;
    background-color: var(--theme-color-input_bg_color)  !important;
    text-overflow: ellipsis !important;
}

.newsletter-button {
    position: absolute;
    right: 0px;
    top: 10px;
    transform: translateY(-50%);
    background: none !important;
    color: white;
    border: 0px !important;
    width: 35px;
    height: 35px;
    border-radius: 6px;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.newsletter-button:hover {
    background: none !important ;
}

.newsletter-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.85rem;
    color: #CBD5E1;
    cursor: pointer;
    line-height: 1.4;
}

.newsletter-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 18px;
    height: 18px;
    border: 2px solid #374151;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.newsletter-checkbox input[type="checkbox"]:checked + .checkmark {
    background: #6366F1;
    border-color: #6366F1;
}

.newsletter-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: white;
    font-size: 12px;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 10px;
    border-top: 1px solid #374151;
}

.footer-copyright p {
    margin: 0;
    color: #9CA3AF;
    font-size: 0.9rem;
}

.scroll-top-btn {
    width: 35px;
    height: 35px;
    background: #6366F1;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s ease;
}

.scroll-top-btn:hover {
    background: #4F46E5;
}

.scroll-top-btn svg {
    width: 20px;
    height: 20px;
}

/* Footer Mobile Styles */
@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .newsletter-form {
        max-width: none;
    }
    
    .social-links {
        justify-content: center;
    }
}

/* Container */
/* .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
} */

/* Responsive Design */
@media (max-width: 768px) {
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .products-slider {
        gap: 20px;
    }
    
    .product-item {
        flex: 0 0 180px;
    }
    
    .recommendations-slider {
        grid-template-columns: 1fr;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .banner-content {
        flex-direction: column;
        text-align: center;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .banner-text {
        max-width: none;
    }
}

@media (max-width: 480px) {
    .product-item {
        flex: 0 0 160px;
    }
    
    .cta-grid {
        grid-template-columns: 1fr;
    }
    
    .banner-content {
        padding: 20px;
    }
}

/* ================================================================ */
/* LinkPrint Header 响应式设计 */
/* ================================================================ */

/* 平板端 (768px - 1024px) */
@media (max-width: 1024px) {
    .linkprint-top-banner .container {
        padding: 0 15px;
    }
    
    .header-content {
        padding: 8px 0;
        gap: 20px;
    }
    
    .header-search {
        max-width: 400px;
        margin-left: 25px;
    }
    
    .header-actions {
        gap: 15px;
        margin-left: 20px;
    }
    

    
   
}

/* 手机端 (最大768px) */
@media (max-width: 768px) {
    /* Top Banner 手机端优化 */
    .linkprint-top-banner {
        padding: 6px 0;
        font-size: 12px;
    }
    
    .linkprint-top-banner .container {
        padding: 0 10px;
        flex-direction: column;
        gap: 4px;
        text-align: center;
    }
    
    .linkprint-top-banner .container .banner-text,
    .linkprint-top-banner .container .banner-brand {
        font-size: 12px;
        text-align: center;
    }
    
    /* Header 手机端布局 */
    .linkprint-header .container {
        padding: 0 10px;
    }
    
    .header-content {
        flex-direction: column;
        gap: 15px;
        padding: 15px 0;
        align-items: center;
    }
    
    /* Logo 调整 */
    .header-logo {
        order: 1;
        justify-content: center;
    }
    
    .logo-image {
        width: 35px;
        height: 35px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    /* 搜索框 手机端优化 */
    .header-search {
        order: 2;
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
    }
    
    .search-wrapper {
        height: 45px;
        width: calc(100% - 60px + 70px) !important;
        max-width: calc(100% - 60px + 70px) !important;
        margin: 0 auto;
    }
    
    .search-field {
        padding: 12px 55px 12px 20px !important;
        font-size: 15px;
    }
    
    .search-submit {
        padding: 10px 12px !important;
    }
    
    .search-submit svg {
        width: 16px;
        height: 16px;
    }
    
    /* 操作按钮 手机端优化 */
    .header-actions {
        order: 3;
        margin-left: 0;
        justify-content: center;
        gap: 25px;
    }
    
    .header-action {
        flex-direction: column;
        gap: 8px;
        font-size: 0.8rem;
    }
    
    .header-action svg {
        width: 22px;
        height: 18px;
    }
    
    /* 导航菜单 手机端 */
    .header-navigation {
        display: block !important;
        width: 100%;
        background: #1A202C;
        border-top: 1px solid #374151;
        margin-top: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu {
        display: flex !important;
        flex-wrap: nowrap;
        gap: 15px;
        justify-content: flex-start;
        padding: 12px 10px;
        min-width: max-content;
        margin: 0;
    }
    
    .nav-item {
        flex-shrink: 0;
        white-space: nowrap;
    }
    
    .nav-link {
        display: block;
        padding: 8px 16px;
        font-size: 0.9rem;
        color: white;
        text-decoration: none;
        border-radius: 6px;
        transition: all 0.3s ease;
        background: rgba(255, 255, 255, 0.1);
    }
    
    .nav-link:hover,
    .nav-item.current .nav-link {
        background: rgba(99, 102, 241, 0.2);
        color: #A5B4FC;
    }
    
   
}

/* 小手机端 (最大480px) */
@media (max-width: 480px) {
    .linkprint-top-banner {
        padding: 4px 0;
        font-size: 11px;
    }
    
    .linkprint-top-banner .container {
        padding: 0 8px;
    }
    
    .header-content {
        padding: 10px 0;
        gap: 12px;
    }
    
    .logo-image {
        width: 30px;
        height: 30px;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .search-wrapper {
        height: 40px;
        width: calc(100% - 60px + 70px) !important;
        max-width: calc(100% - 60px + 70px) !important;
        margin: 0 auto;
    }
    
    .search-field {
        padding: 10px 50px 10px 16px !important;
        font-size: 14px;
    }
    
    .search-submit {
        padding: 8px 10px !important;
    }
    
    .search-submit svg {
        width: 14px;
        height: 14px;
    }
    
    .header-actions {
        gap: 20px;
    }
    
    .header-action {
        font-size: 0.75rem;
    }
    
    .header-action svg {
        width: 20px;
        height: 16px;
    }
    
    .header-navigation {
        overflow-x: auto;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .header-navigation::-webkit-scrollbar {
        display: none;
    }
    
    .nav-menu {
        gap: 12px;
        padding: 10px 8px;
        justify-content: flex-start;
    }
    
    .nav-link {
        padding: 6px 12px;
        font-size: 0.85rem;
        background: rgba(255, 255, 255, 0.08);
        border-radius: 4px;
    }
}

/* ================================================================ */
/* Dynamic Product Category Navigation Styles */
/* ================================================================ */

/* Dropdown navigation styles */
.nav-dropdown.nav-menu .nav-item.has-dropdown {
    position: relative;
}

.nav-dropdown.nav-menu .dropdown-arrow {
    margin-left: 8px;
    font-size: 0.8em;
    transition: transform 0.3s ease;
}

.nav-dropdown.nav-menu .nav-item.has-dropdown:hover .dropdown-arrow {
    transform: rotate(180deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #1A202C;
    border: 1px solid #374151;
    border-radius: 8px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    list-style: none;
    padding: 8px 0;
    margin: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.nav-item.has-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-item {
    margin: 0;
}

.nav-dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #D1D5DB;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.nav-dropdown-link:hover {
    background: #374151;
    color: #ffffff;
    border-left-color: #6366F1;
}

.nav-dropdown-item.current .nav-dropdown-link {
    background: #374151;
    color: #6366F1;
    border-left-color: #6366F1;
}

/* Product category specific styling */
.nav-item .nav-link[href*="product-category"] {
    position: relative;
}

.nav-item .nav-link[href*="product-category"]:after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #6366F1;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.nav-item.current .nav-link[href*="product-category"]:after,
.nav-item .nav-link[href*="product-category"]:hover:after {
    width: 80%;
}

/* Mobile responsive adjustments for dynamic navigation */
@media (max-width: 768px) {
    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: #0F172A;
        border: none;
        border-radius: 0;
        box-shadow: none;
        margin-top: 8px;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-item.has-dropdown:hover .nav-dropdown-menu,
    .nav-item.has-dropdown.active .nav-dropdown-menu {
        max-height: 300px;
    }
    
    .nav-dropdown-link {
        padding: 10px 15px;
        font-size: 0.85rem;
        border-left: none;
        border-bottom: 1px solid #374151;
    }
    
    .dropdown-arrow {
        display: none;
    }
}

@media (max-width: 480px) {
    .nav-dropdown-link {
        padding: 8px 12px;
        font-size: 0.8rem;
    }
}

/* ========================================================================
   移动端头部样式 (Mobile Header Styles)
   ======================================================================== */

/* 移动端头部布局 */
.linkprint-header-mobile {
    background: #000000;
}

.linkprint-header-mobile .container {
    padding: 0 15px;
}

/* 顶部导航栏 - 汉堡菜单 + Logo + 图标按钮 */
.header-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 8px 0;
    gap: 5px; /* 移除元素间的间距 */
}

/* 汉堡菜单按钮 */
.mobile-menu-toggle {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 4px;
    display: flex;
    flex-direction: column;
    gap: 0px;
    z-index: 1001;
    border-radius: 2px;
    order: 1; /* 确保在最左边 */
}

.hamburger-line {
    width: 16px;
    height: 2px;
    background: white;
    border-radius: 1px;
}

/* Logo 样式 */
.linkprint-header-mobile .header-logo {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: flex-start;
    order: 2; /* Logo紧跟汉堡菜单 */
    margin-left: 0px; /* 紧贴汉堡菜单，无间距 */
}

.linkprint-header-mobile .header-logo a {
    display: flex;
    align-items: center;
    gap: 0px;
    text-decoration: none;
    color: white;
}

.linkprint-header-mobile .logo-image {
    width: 30px !important;
    height: 30px !important;
}

.linkprint-header-mobile .logo-text-1 {
    

    color: #F8DEE1 !important;
    font-family: Inter !important;
    font-size: 16px !important;
    font-style: normal !important;
    font-weight: bold !important;
    line-height: normal !important;
}

/* Header Actions - 只显示图标 */
.header-actions.mobile-actions {
    display: flex;
    align-items: center;
    gap: 1px;
    flex-shrink: 0;
    order: 3; /* 图标在最右边 */
}

.mobile-actions .header-action {
    position: relative;
    color: white;
    text-decoration: none;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
}

.mobile-actions .header-action svg {
    width: 20px;
    height: 20px;
    color: white;
}

/* 移动端按钮悬浮效果 */
.mobile-actions .header-action:hover {
    color: white;
}

.mobile-actions .header-action:hover svg {
    color: white; /* 图标保持白色不变 */
}

/* 数字徽章 - 移动端专用 */
.mobile-actions .cart-count,
.mobile-actions .wishlist-count {
    position: absolute;
    top: -3px;
    left: 20px !important;
    background: #EF4444;
    color: white;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    font-size: 9px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    line-height: 1;
    font-weight: bold;
    border: 1px solid white;
    visibility: visible !important;
    opacity: 1 !important;
}

/* 搜索框 - 移动端样式 */
.header-search-mobile {
    padding: 8px 0 12px 0;
}

.header-search-mobile .search-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.header-search-mobile .search-field {
    flex: 1;
    border: none;
    outline: none;
    padding: 12px 50px 12px 20px;
    font-size: 14px;
    background: transparent;
}

.header-search-mobile .search-field::placeholder {
    color: #9CA3AF;
}

.header-search-mobile .search-submit {
    position: absolute;
    right: 5px;
    background: #000000;
    border: none;
    padding: 8px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
}

.header-search-mobile .search-submit svg {
    width: 18px;
    height: 18px;
    stroke: #000000 !important;
    fill: none !important;
    stroke-width: 2;
}

.header-search-mobile .search-submit {
    text-indent: 0 !important;
    overflow: visible !important;
    color: white !important;
}

/* 移动端侧边栏 */
.mobile-sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

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

.mobile-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 280px;
    height: 100%;
    background: #1F2937;
    z-index: 1999;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    overflow-y: auto;
}

.mobile-sidebar.active {
    transform: translateX(0);
}

/* 侧边栏头部 */
.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    background: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: white;
}

.sidebar-logo .logo-image {
    width: 28px;
    height: 28px;
}

.sidebar-logo .logo-text {
    font-size: 16px;
    font-weight: bold;
}

.sidebar-close {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 8px;
    border-radius: 4px;
    transition: background 0.3s ease;
}

.sidebar-close:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* 侧边栏内容 */
.sidebar-content {
    padding: 0;
}

.sidebar-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    color: white;
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    gap: 12px;
}

.sidebar-item:hover {
    background: rgba(255, 255, 255, 0.05);
    padding-left: 25px;
}

.sidebar-item span {
    flex: 1;
    font-size: 16px;
}

.sidebar-item svg {
    color: #9CA3AF;
    flex-shrink: 0;
}

.sidebar-item.account-item {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

.sidebar-item.account-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* 防止页面滚动 */
body.sidebar-open {
    overflow: hidden;
} 